implement expanded processing pattern terminal
This commit is contained in:
@@ -77,6 +77,7 @@ public final class ApiParts implements IParts
|
||||
private final IItemDefinition darkMonitor;
|
||||
private final IItemDefinition interfaceTerminal;
|
||||
private final IItemDefinition patternTerminal;
|
||||
private final IItemDefinition expandedProcessingPatternTerminal;
|
||||
private final IItemDefinition craftingTerminal;
|
||||
private final IItemDefinition terminal;
|
||||
private final IItemDefinition storageMonitor;
|
||||
@@ -139,6 +140,7 @@ public final class ApiParts implements IParts
|
||||
this.darkMonitor = new DamagedItemDefinition( "part.monitor.dark", itemPart.createPart( PartType.DARK_MONITOR ) );
|
||||
this.interfaceTerminal = new DamagedItemDefinition( "part.terminal.interface", itemPart.createPart( PartType.INTERFACE_TERMINAL ) );
|
||||
this.patternTerminal = new DamagedItemDefinition( "part.terminal.pattern", itemPart.createPart( PartType.PATTERN_TERMINAL ) );
|
||||
this.expandedProcessingPatternTerminal = new DamagedItemDefinition( "part.terminal.expanded_processing_pattern", itemPart.createPart( PartType.EXPANDED_PROCESSING_PATTERN_TERMINAL ) );
|
||||
this.craftingTerminal = new DamagedItemDefinition( "part.terminal.crafting", itemPart.createPart( PartType.CRAFTING_TERMINAL ) );
|
||||
this.terminal = new DamagedItemDefinition( "part.terminal", itemPart.createPart( PartType.TERMINAL ) );
|
||||
this.storageMonitor = new DamagedItemDefinition( "part.monitor.storage", itemPart.createPart( PartType.STORAGE_MONITOR ) );
|
||||
@@ -379,6 +381,12 @@ public final class ApiParts implements IParts
|
||||
return this.patternTerminal;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IItemDefinition expandedProcessingPatternTerminal()
|
||||
{
|
||||
return this.expandedProcessingPatternTerminal;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IItemDefinition craftingTerminal()
|
||||
{
|
||||
|
||||
@@ -21,6 +21,8 @@ package appeng.core.sync;
|
||||
|
||||
import java.lang.reflect.Constructor;
|
||||
|
||||
import appeng.container.implementations.*;
|
||||
import appeng.parts.reporting.PartExpandedProcessingPatternTerminal;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.entity.player.InventoryPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
@@ -53,39 +55,6 @@ import appeng.client.gui.GuiNull;
|
||||
import appeng.container.AEBaseContainer;
|
||||
import appeng.container.ContainerNull;
|
||||
import appeng.container.ContainerOpenContext;
|
||||
import appeng.container.implementations.ContainerCellWorkbench;
|
||||
import appeng.container.implementations.ContainerChest;
|
||||
import appeng.container.implementations.ContainerCondenser;
|
||||
import appeng.container.implementations.ContainerCraftAmount;
|
||||
import appeng.container.implementations.ContainerCraftConfirm;
|
||||
import appeng.container.implementations.ContainerCraftingCPU;
|
||||
import appeng.container.implementations.ContainerCraftingStatus;
|
||||
import appeng.container.implementations.ContainerCraftingTerm;
|
||||
import appeng.container.implementations.ContainerDrive;
|
||||
import appeng.container.implementations.ContainerFormationPlane;
|
||||
import appeng.container.implementations.ContainerGrinder;
|
||||
import appeng.container.implementations.ContainerIOPort;
|
||||
import appeng.container.implementations.ContainerInscriber;
|
||||
import appeng.container.implementations.ContainerInterface;
|
||||
import appeng.container.implementations.ContainerInterfaceTerminal;
|
||||
import appeng.container.implementations.ContainerLevelEmitter;
|
||||
import appeng.container.implementations.ContainerMAC;
|
||||
import appeng.container.implementations.ContainerMEMonitorable;
|
||||
import appeng.container.implementations.ContainerMEPortableCell;
|
||||
import appeng.container.implementations.ContainerNetworkStatus;
|
||||
import appeng.container.implementations.ContainerNetworkTool;
|
||||
import appeng.container.implementations.ContainerPatternTerm;
|
||||
import appeng.container.implementations.ContainerPriority;
|
||||
import appeng.container.implementations.ContainerQNB;
|
||||
import appeng.container.implementations.ContainerQuartzKnife;
|
||||
import appeng.container.implementations.ContainerSecurityStation;
|
||||
import appeng.container.implementations.ContainerSkyChest;
|
||||
import appeng.container.implementations.ContainerSpatialIOPort;
|
||||
import appeng.container.implementations.ContainerStorageBus;
|
||||
import appeng.container.implementations.ContainerUpgradeable;
|
||||
import appeng.container.implementations.ContainerVibrationChamber;
|
||||
import appeng.container.implementations.ContainerWireless;
|
||||
import appeng.container.implementations.ContainerWirelessTerm;
|
||||
import appeng.fluids.container.ContainerFluidFormationPlane;
|
||||
import appeng.fluids.container.ContainerFluidIO;
|
||||
import appeng.fluids.container.ContainerFluidInterface;
|
||||
@@ -185,6 +154,8 @@ public enum GuiBridge implements IGuiHandler
|
||||
|
||||
GUI_PATTERN_TERMINAL( ContainerPatternTerm.class, PartPatternTerminal.class, GuiHostType.WORLD, SecurityPermissions.CRAFT ),
|
||||
|
||||
GUI_EXPANDED_PROCESSING_PATTERN_TERMINAL( ContainerExpandedProcessingPatternTerm.class, PartExpandedProcessingPatternTerminal.class, GuiHostType.WORLD, SecurityPermissions.CRAFT ),
|
||||
|
||||
GUI_FLUID_TERMINAL( ContainerFluidTerminal.class, ITerminalHost.class, GuiHostType.WORLD, SecurityPermissions.BUILD ),
|
||||
|
||||
// extends (Container/Gui) + Bus
|
||||
|
||||
@@ -23,11 +23,12 @@ import java.io.ByteArrayInputStream;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
import appeng.api.config.FuzzyMode;
|
||||
import appeng.api.storage.data.IItemList;
|
||||
import appeng.container.implementations.ContainerExpandedProcessingPatternTerm;
|
||||
import appeng.container.implementations.ContainerPatternTerm;
|
||||
import gregtech.common.items.MetaTool;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
@@ -69,8 +70,9 @@ import appeng.util.prioritylist.IPartitionList;
|
||||
public class PacketJEIRecipe extends AppEngPacket
|
||||
{
|
||||
|
||||
private ItemStack[][] recipe;
|
||||
private ItemStack[] output;
|
||||
private List<ItemStack[]> recipe;
|
||||
private List<ItemStack> output;
|
||||
static ItemStack[] emptyArray = {ItemStack.EMPTY};
|
||||
|
||||
|
||||
// automatic.
|
||||
@@ -81,28 +83,35 @@ public class PacketJEIRecipe extends AppEngPacket
|
||||
final NBTTagCompound comp = CompressedStreamTools.readCompressed( bytes );
|
||||
if( comp != null )
|
||||
{
|
||||
this.recipe = new ItemStack[9][];
|
||||
for( int x = 0; x < this.recipe.length; x++ )
|
||||
this.recipe = new ArrayList<>();
|
||||
|
||||
for( int x = 0; x < comp.getKeySet().size(); x++ )
|
||||
{
|
||||
final NBTTagList list = comp.getTagList( "#" + x, 10 );
|
||||
if( list.tagCount() > 0 )
|
||||
if( comp.hasKey( "#" + x ) )
|
||||
{
|
||||
this.recipe[x] = new ItemStack[list.tagCount()];
|
||||
for( int y = 0; y < list.tagCount(); y++ )
|
||||
final NBTTagList list = comp.getTagList( "#" + x, 10 );
|
||||
if( list.tagCount() > 0 )
|
||||
{
|
||||
this.recipe[x][y] = new ItemStack( list.getCompoundTagAt( y ) );
|
||||
this.recipe.add( new ItemStack[list.tagCount()] );
|
||||
for( int y = 0; y < list.tagCount(); y++ )
|
||||
{
|
||||
this.recipe.get( x )[y] = new ItemStack( list.getCompoundTagAt( y ) );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this.recipe.add( emptyArray );
|
||||
}
|
||||
}
|
||||
}
|
||||
if ( comp.hasKey("outputs") ) {
|
||||
final NBTTagList outputList = comp.getTagList("outputs", 10);
|
||||
this.output = new ItemStack[3];
|
||||
for( int x = 0; x < this.output.length; x++ )
|
||||
|
||||
if( comp.hasKey( "outputs" ) )
|
||||
{
|
||||
final NBTTagList outputList = comp.getTagList( "outputs", 10 );
|
||||
this.output = new ArrayList<>();
|
||||
for( int z = 0; z < outputList.tagCount(); z++ )
|
||||
{
|
||||
if( outputList.tagCount() > 0 )
|
||||
{
|
||||
this.output[x] = new ItemStack(outputList.getCompoundTagAt( x ));
|
||||
}
|
||||
this.output.add( new ItemStack( outputList.getCompoundTagAt( z ) ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -172,9 +181,12 @@ public class PacketJEIRecipe extends AppEngPacket
|
||||
// already the correct item?
|
||||
ItemStack newItem = this.canUseInSlot( x, currentItem );
|
||||
|
||||
if ( !cct.useRealItems() && this.recipe[x] != null ) {
|
||||
if (this.recipe[x].length > 0 )
|
||||
currentItem.setCount( recipe[x][0].getCount() );
|
||||
if( !cct.useRealItems() && this.recipe.get( x ) != null )
|
||||
{
|
||||
if( this.recipe.get( x ).length > 0 )
|
||||
{
|
||||
currentItem.setCount( recipe.get( x )[0].getCount() );
|
||||
}
|
||||
}
|
||||
|
||||
// put away old item
|
||||
@@ -193,12 +205,12 @@ public class PacketJEIRecipe extends AppEngPacket
|
||||
}
|
||||
}
|
||||
|
||||
if( currentItem.isEmpty() && this.recipe[x] != null )
|
||||
if( currentItem.isEmpty() && recipe.size() > x && recipe.get( x ) != null )
|
||||
{
|
||||
// for each variant
|
||||
for( int y = 0; y < this.recipe[x].length && currentItem.isEmpty(); y++ )
|
||||
for( int y = 0; y < this.recipe.get( x ).length && currentItem.isEmpty(); y++ )
|
||||
{
|
||||
final IAEItemStack request = AEItemStack.fromItemStack( this.recipe[x][y] );
|
||||
final IAEItemStack request = AEItemStack.fromItemStack( this.recipe.get( x )[y] );
|
||||
if( request != null )
|
||||
{
|
||||
// try ae
|
||||
@@ -247,7 +259,7 @@ public class PacketJEIRecipe extends AppEngPacket
|
||||
{
|
||||
if (!cct.useRealItems())
|
||||
{
|
||||
out.setStackSize( recipe[x][y].getCount() );
|
||||
out.setStackSize( recipe.get( x )[y].getCount() );
|
||||
}
|
||||
currentItem = out.createItemStack();
|
||||
}
|
||||
@@ -260,20 +272,20 @@ public class PacketJEIRecipe extends AppEngPacket
|
||||
|
||||
if( cct.useRealItems() )
|
||||
{
|
||||
currentItem = ad.removeSimilarItems(1, this.recipe[x][y],FuzzyMode.IGNORE_ALL, null );
|
||||
currentItem = ad.removeSimilarItems( 1, this.recipe.get( x )[y], FuzzyMode.IGNORE_ALL, null );
|
||||
}
|
||||
else
|
||||
{
|
||||
currentItem = ad.simulateSimilarRemove(recipe[x][y].getCount(), this.recipe[x][y],FuzzyMode.IGNORE_ALL, null );
|
||||
currentItem = ad.simulateSimilarRemove( recipe.get( x )[y].getCount(), this.recipe.get( x )[y], FuzzyMode.IGNORE_ALL, null );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!cct.useRealItems())
|
||||
{
|
||||
if( currentItem.isEmpty() && this.recipe[x] != null )
|
||||
if( currentItem.isEmpty() && recipe.size() > x && this.recipe.get( x ) != null )
|
||||
{
|
||||
currentItem = this.recipe[x][0].copy();
|
||||
currentItem = this.recipe.get( x )[0].copy();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -282,14 +294,19 @@ public class PacketJEIRecipe extends AppEngPacket
|
||||
|
||||
con.onCraftMatrixChanged( new WrapperInvItemHandler( craftMatrix ) );
|
||||
|
||||
if( this.output != null && con instanceof ContainerPatternTerm && !( (ContainerPatternTerm) con ).isCraftingMode() )
|
||||
if( this.output != null && ( ( con instanceof ContainerPatternTerm && !( (ContainerPatternTerm) con ).isCraftingMode() ) || con instanceof ContainerExpandedProcessingPatternTerm ) )
|
||||
{
|
||||
IItemHandler outputSlots = cct.getInventoryByName( "output" );
|
||||
for( int i = 0; i < this.output.length; ++i )
|
||||
|
||||
for( int i = 0; i < this.output.size(); ++i )
|
||||
{
|
||||
if( this.output[i] == null ) continue;
|
||||
ItemHandlerUtil.setStackInSlot( outputSlots, i, this.output[i] );
|
||||
if( this.output.get( i ) == null )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
ItemHandlerUtil.setStackInSlot( outputSlots, i, this.output.get( i ) );
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -302,9 +319,9 @@ public class PacketJEIRecipe extends AppEngPacket
|
||||
*/
|
||||
private ItemStack canUseInSlot( int slot, ItemStack is )
|
||||
{
|
||||
if( this.recipe[slot] != null )
|
||||
if( this.recipe.get( slot ) != null )
|
||||
{
|
||||
for( ItemStack option : this.recipe[slot] )
|
||||
for( ItemStack option : this.recipe.get( slot ) )
|
||||
{
|
||||
if( ItemStack.areItemStacksEqual( is, option ) )
|
||||
{
|
||||
|
||||
@@ -24,6 +24,7 @@ import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
import appeng.container.implementations.*;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.buffer.Unpooled;
|
||||
|
||||
@@ -40,17 +41,6 @@ import appeng.api.util.IConfigManager;
|
||||
import appeng.api.util.IConfigurableObject;
|
||||
import appeng.client.gui.implementations.GuiCraftingCPU;
|
||||
import appeng.container.AEBaseContainer;
|
||||
import appeng.container.implementations.ContainerCellWorkbench;
|
||||
import appeng.container.implementations.ContainerCraftConfirm;
|
||||
import appeng.container.implementations.ContainerCraftingCPU;
|
||||
import appeng.container.implementations.ContainerCraftingStatus;
|
||||
import appeng.container.implementations.ContainerLevelEmitter;
|
||||
import appeng.container.implementations.ContainerNetworkTool;
|
||||
import appeng.container.implementations.ContainerPatternTerm;
|
||||
import appeng.container.implementations.ContainerPriority;
|
||||
import appeng.container.implementations.ContainerQuartzKnife;
|
||||
import appeng.container.implementations.ContainerSecurityStation;
|
||||
import appeng.container.implementations.ContainerStorageBus;
|
||||
import appeng.core.sync.AppEngPacket;
|
||||
import appeng.core.sync.network.INetworkInfo;
|
||||
import appeng.fluids.container.ContainerFluidLevelEmitter;
|
||||
@@ -166,58 +156,109 @@ public class PacketValueConfig extends AppEngPacket
|
||||
final ContainerFluidLevelEmitter lvc = (ContainerFluidLevelEmitter) c;
|
||||
lvc.setLevel( Long.parseLong( this.Value ), player );
|
||||
}
|
||||
else if( this.Name.startsWith( "PatternTerminal." ) && c instanceof ContainerPatternTerm )
|
||||
else if( this.Name.startsWith( "PatternTerminal." ) )
|
||||
{
|
||||
final ContainerPatternTerm cpt = (ContainerPatternTerm) c;
|
||||
if( this.Name.equals( "PatternTerminal.CraftMode" ) )
|
||||
if( c instanceof ContainerPatternTerm )
|
||||
{
|
||||
cpt.getPatternTerminal().setCraftingRecipe( this.Value.equals( "1" ) );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.Encode" ) )
|
||||
{
|
||||
if (this.Value.equals( "2" )) {
|
||||
cpt.encodeAndMoveToInventory();
|
||||
}
|
||||
else
|
||||
final ContainerPatternTerm cpt = (ContainerPatternTerm) c;
|
||||
if( this.Name.equals( "PatternTerminal.CraftMode" ) )
|
||||
{
|
||||
cpt.encode();
|
||||
cpt.getPatternTerminal().setCraftingRecipe( this.Value.equals( "1" ) );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.Encode" ) )
|
||||
{
|
||||
if( this.Value.equals( "2" ) )
|
||||
{
|
||||
cpt.encodeAndMoveToInventory();
|
||||
}
|
||||
else
|
||||
{
|
||||
cpt.encode();
|
||||
}
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.Clear" ) )
|
||||
{
|
||||
cpt.clear();
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MultiplyByTwo" ) )
|
||||
{
|
||||
cpt.multiply( 2 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MultiplyByThree" ) )
|
||||
{
|
||||
cpt.multiply( 3 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DivideByTwo" ) )
|
||||
{
|
||||
cpt.divide( 2 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DivideByThree" ) )
|
||||
{
|
||||
cpt.divide( 3 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.IncreaseByOne" ) )
|
||||
{
|
||||
cpt.increase( 1 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DecreaseByOne" ) )
|
||||
{
|
||||
cpt.decrease( 1 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MaximizeCount" ) )
|
||||
{
|
||||
cpt.maximizeCount();
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.Substitute" ) )
|
||||
{
|
||||
cpt.getPatternTerminal().setSubstitution( this.Value.equals( "1" ) );
|
||||
}
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.Clear" ) )
|
||||
else if( c instanceof ContainerExpandedProcessingPatternTerm )
|
||||
{
|
||||
cpt.clear();
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MultiplyByTwo" ) )
|
||||
{
|
||||
cpt.multiply(2);
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MultiplyByThree" ) )
|
||||
{
|
||||
cpt.multiply(3);
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DivideByTwo" ) )
|
||||
{
|
||||
cpt.divide(2);
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DivideByThree" ) )
|
||||
{
|
||||
cpt.divide(3);
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.IncreaseByOne" ) )
|
||||
{
|
||||
cpt.increase(1);
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DecreaseByOne" ) )
|
||||
{
|
||||
cpt.decrease(1);
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MaximizeCount" ) )
|
||||
{
|
||||
cpt.maximizeCount();
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.Substitute" ) )
|
||||
{
|
||||
cpt.getPatternTerminal().setSubstitution( this.Value.equals( "1" ) );
|
||||
final ContainerExpandedProcessingPatternTerm cept = (ContainerExpandedProcessingPatternTerm) c;
|
||||
if( this.Name.equals( "PatternTerminal.Encode" ) )
|
||||
{
|
||||
if( this.Value.equals( "2" ) )
|
||||
{
|
||||
cept.encodeAndMoveToInventory();
|
||||
}
|
||||
else
|
||||
{
|
||||
cept.encode();
|
||||
}
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.Clear" ) )
|
||||
{
|
||||
cept.clear();
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MultiplyByTwo" ) )
|
||||
{
|
||||
cept.multiply( 2 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MultiplyByThree" ) )
|
||||
{
|
||||
cept.multiply( 3 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DivideByTwo" ) )
|
||||
{
|
||||
cept.divide( 2 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DivideByThree" ) )
|
||||
{
|
||||
cept.divide( 3 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.IncreaseByOne" ) )
|
||||
{
|
||||
cept.increase( 1 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.DecreaseByOne" ) )
|
||||
{
|
||||
cept.decrease( 1 );
|
||||
}
|
||||
else if( this.Name.equals( "PatternTerminal.MaximizeCount" ) )
|
||||
{
|
||||
cept.maximizeCount();
|
||||
}
|
||||
}
|
||||
}
|
||||
else if( this.Name.startsWith( "StorageBus." ) )
|
||||
|
||||
Reference in New Issue
Block a user