Also use the player's inventory to handle NEI fills
If the items for a recipe are not available in the ME network when you shift-left-click the NEI question mark, also try to pull from the player's inventory. The 'ic' local variable was renamed to 'testInv', as it's used to test the IRecipe on various crafting propositions to see if the item satisfies the recipe. Closes #564, "Shift clicking "?" on NEI recipe ignores items in the player's inventory".
This commit is contained in:
parent
1fc2ddedec
commit
60569ac221
3 changed files with 42 additions and 9 deletions
|
@ -90,6 +90,10 @@ public class ContainerCraftingTerm extends ContainerMEMonitorable implements IAE
|
||||||
@Override
|
@Override
|
||||||
public IInventory getInventoryByName(String name)
|
public IInventory getInventoryByName(String name)
|
||||||
{
|
{
|
||||||
|
if (name.equals("player"))
|
||||||
|
{
|
||||||
|
return invPlayer;
|
||||||
|
}
|
||||||
return ct.getInventoryByName( name );
|
return ct.getInventoryByName( name );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -447,6 +447,10 @@ public class ContainerPatternTerm extends ContainerMEMonitorable implements IAEA
|
||||||
@Override
|
@Override
|
||||||
public IInventory getInventoryByName(String name)
|
public IInventory getInventoryByName(String name)
|
||||||
{
|
{
|
||||||
|
if (name.equals("player"))
|
||||||
|
{
|
||||||
|
return invPlayer;
|
||||||
|
}
|
||||||
return ct.getInventoryByName( name );
|
return ct.getInventoryByName( name );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -104,25 +104,26 @@ public class PacketNEIRecipe extends AppEngPacket
|
||||||
IEnergyGrid energy = grid.getCache( IEnergyGrid.class );
|
IEnergyGrid energy = grid.getCache( IEnergyGrid.class );
|
||||||
ISecurityGrid security = grid.getCache( ISecurityGrid.class );
|
ISecurityGrid security = grid.getCache( ISecurityGrid.class );
|
||||||
IInventory craftMatrix = cct.getInventoryByName( "crafting" );
|
IInventory craftMatrix = cct.getInventoryByName( "crafting" );
|
||||||
|
IInventory playerInventory = cct.getInventoryByName( "player" );
|
||||||
|
|
||||||
Actionable realForFake = cct.useRealItems() ? Actionable.MODULATE : Actionable.SIMULATE;
|
Actionable realForFake = cct.useRealItems() ? Actionable.MODULATE : Actionable.SIMULATE;
|
||||||
|
|
||||||
if ( inv != null && recipe != null && security != null )
|
if ( inv != null && recipe != null && security != null )
|
||||||
{
|
{
|
||||||
InventoryCrafting ic = new InventoryCrafting( new ContainerNull(), 3, 3 );
|
InventoryCrafting testInv = new InventoryCrafting( new ContainerNull(), 3, 3 );
|
||||||
for (int x = 0; x < 9; x++)
|
for (int x = 0; x < 9; x++)
|
||||||
{
|
{
|
||||||
if ( recipe[x] != null && recipe[x].length > 0 )
|
if ( recipe[x] != null && recipe[x].length > 0 )
|
||||||
{
|
{
|
||||||
ic.setInventorySlotContents( x, recipe[x][0] );
|
testInv.setInventorySlotContents(x, recipe[x][0]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IRecipe r = Platform.findMatchingRecipe( ic, pmp.worldObj );
|
IRecipe r = Platform.findMatchingRecipe( testInv, pmp.worldObj );
|
||||||
|
|
||||||
if ( r != null && security.hasPermission( player, SecurityPermissions.EXTRACT ) )
|
if ( r != null && security.hasPermission( player, SecurityPermissions.EXTRACT ) )
|
||||||
{
|
{
|
||||||
ItemStack is = r.getCraftingResult( ic );
|
ItemStack is = r.getCraftingResult( testInv );
|
||||||
|
|
||||||
if ( is != null )
|
if ( is != null )
|
||||||
{
|
{
|
||||||
|
@ -132,14 +133,14 @@ public class PacketNEIRecipe extends AppEngPacket
|
||||||
|
|
||||||
for (int x = 0; x < craftMatrix.getSizeInventory(); x++)
|
for (int x = 0; x < craftMatrix.getSizeInventory(); x++)
|
||||||
{
|
{
|
||||||
ItemStack PatternItem = ic.getStackInSlot( x );
|
ItemStack PatternItem = testInv.getStackInSlot( x );
|
||||||
|
|
||||||
ItemStack currentItem = craftMatrix.getStackInSlot( x );
|
ItemStack currentItem = craftMatrix.getStackInSlot( x );
|
||||||
if ( currentItem != null )
|
if ( currentItem != null )
|
||||||
{
|
{
|
||||||
ic.setInventorySlotContents( x, currentItem );
|
testInv.setInventorySlotContents(x, currentItem);
|
||||||
ItemStack newItemStack = r.matches( ic, pmp.worldObj ) ? r.getCraftingResult( ic ) : null;
|
ItemStack newItemStack = r.matches( testInv, pmp.worldObj ) ? r.getCraftingResult( testInv ) : null;
|
||||||
ic.setInventorySlotContents( x, PatternItem );
|
testInv.setInventorySlotContents(x, PatternItem);
|
||||||
|
|
||||||
if ( newItemStack == null || !Platform.isSameItemPrecise( newItemStack, is ) )
|
if ( newItemStack == null || !Platform.isSameItemPrecise( newItemStack, is ) )
|
||||||
{
|
{
|
||||||
|
@ -158,11 +159,15 @@ public class PacketNEIRecipe extends AppEngPacket
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// True if we need to fetch an item for the recipe
|
||||||
if ( PatternItem != null && currentItem == null )
|
if ( PatternItem != null && currentItem == null )
|
||||||
{
|
{
|
||||||
ItemStack whichItem = Platform.extractItemsByRecipe( energy, cct.getSource(), storage, player.worldObj, r, is, ic,
|
// Grab from network by recipe
|
||||||
|
ItemStack whichItem = Platform.extractItemsByRecipe( energy, cct.getSource(), storage, player.worldObj, r, is, testInv,
|
||||||
PatternItem, x, all, realForFake, filter );
|
PatternItem, x, all, realForFake, filter );
|
||||||
|
|
||||||
|
// If that doesn't get it, grab exact items from network (?)
|
||||||
|
// TODO see if this code is necessary
|
||||||
if ( whichItem == null )
|
if ( whichItem == null )
|
||||||
{
|
{
|
||||||
for (int y = 0; y < recipe[x].length; y++)
|
for (int y = 0; y < recipe[x].length; y++)
|
||||||
|
@ -184,6 +189,26 @@ public class PacketNEIRecipe extends AppEngPacket
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If that doesn't work, grab from the player's inventory
|
||||||
|
if ( whichItem == null && playerInventory != null ) {
|
||||||
|
for ( int y = 0; y < playerInventory.getSizeInventory(); y++ )
|
||||||
|
{
|
||||||
|
// Put the item in the test inventory, and check if the recipe is satisfied
|
||||||
|
testInv.setInventorySlotContents(x, playerInventory.getStackInSlot(y));
|
||||||
|
if ( r.matches(testInv, pmp.worldObj) )
|
||||||
|
{
|
||||||
|
// Take the item out.
|
||||||
|
if ( realForFake == Actionable.SIMULATE ) {
|
||||||
|
whichItem = playerInventory.getStackInSlot(y).copy();
|
||||||
|
whichItem.stackSize = 1;
|
||||||
|
} else {
|
||||||
|
whichItem = playerInventory.decrStackSize(y, 1);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
craftMatrix.setInventorySlotContents( x, whichItem );
|
craftMatrix.setInventorySlotContents( x, whichItem );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue