2013-12-27 23:59:59 +01:00
|
|
|
package appeng.tile.misc;
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
import io.netty.buffer.ByteBuf;
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-03-07 07:15:54 +01:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2014-03-11 07:52:48 +01:00
|
|
|
import appeng.api.networking.IGridNode;
|
|
|
|
import appeng.api.networking.ticking.IGridTickable;
|
|
|
|
import appeng.api.networking.ticking.TickRateModulation;
|
|
|
|
import appeng.api.networking.ticking.TickingRequest;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.api.util.AECableType;
|
2014-03-11 07:52:48 +01:00
|
|
|
import appeng.me.GridAccessException;
|
2014-03-09 04:35:53 +01:00
|
|
|
import appeng.recipes.handlers.Inscribe;
|
2014-03-11 07:52:48 +01:00
|
|
|
import appeng.recipes.handlers.Inscribe.InscriberRecipe;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.tile.events.AETileEventHandler;
|
|
|
|
import appeng.tile.events.TileEventType;
|
|
|
|
import appeng.tile.grid.AENetworkPowerTile;
|
|
|
|
import appeng.tile.inventory.AppEngInternalInventory;
|
|
|
|
import appeng.tile.inventory.InvOperation;
|
2014-03-07 07:15:54 +01:00
|
|
|
import appeng.util.Platform;
|
|
|
|
import appeng.util.item.AEItemStack;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-03-11 07:52:48 +01:00
|
|
|
public class TileInscriber extends AENetworkPowerTile implements IGridTickable
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
|
2014-03-07 07:15:54 +01:00
|
|
|
final int top[] = new int[] { 0 };
|
|
|
|
final int bottom[] = new int[] { 1 };
|
|
|
|
final int sides[] = new int[] { 2, 3 };
|
|
|
|
|
|
|
|
AppEngInternalInventory inv = new AppEngInternalInventory( this, 4 );
|
2014-03-11 07:52:48 +01:00
|
|
|
|
|
|
|
public final int maxProessingTime = 100;
|
|
|
|
public int processingTime = 0;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public AECableType getCableConnectionType(ForgeDirection dir)
|
|
|
|
{
|
|
|
|
return AECableType.COVERED;
|
|
|
|
}
|
|
|
|
|
|
|
|
private class TileInscriberHandler extends AETileEventHandler
|
|
|
|
{
|
|
|
|
|
|
|
|
public TileInscriberHandler() {
|
2014-03-07 07:15:54 +01:00
|
|
|
super( TileEventType.TICK, TileEventType.WORLD_NBT, TileEventType.NETWORK );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeToNBT(NBTTagCompound data)
|
|
|
|
{
|
|
|
|
inv.writeToNBT( data, "inscriberInv" );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readFromNBT(NBTTagCompound data)
|
|
|
|
{
|
|
|
|
inv.readFromNBT( data, "inscriberInv" );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
public boolean readFromStream(ByteBuf data) throws IOException
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-03-07 07:15:54 +01:00
|
|
|
int slot = data.readByte();
|
|
|
|
|
|
|
|
for (int num = 0; num < inv.getSizeInventory(); num++)
|
|
|
|
{
|
2014-03-11 07:52:48 +01:00
|
|
|
if ( (slot & (1 << num)) > 0 )
|
2014-03-07 07:15:54 +01:00
|
|
|
inv.setInventorySlotContents( num, AEItemStack.loadItemStackFromPacket( data ).getItemStack() );
|
|
|
|
else
|
|
|
|
inv.setInventorySlotContents( num, null );
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
public void writeToStream(ByteBuf data) throws IOException
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-03-07 07:15:54 +01:00
|
|
|
int slot = 0;
|
|
|
|
|
|
|
|
for (int num = 0; num < inv.getSizeInventory(); num++)
|
|
|
|
{
|
|
|
|
if ( inv.getStackInSlot( num ) != null )
|
|
|
|
slot = slot | (1 << num);
|
|
|
|
}
|
|
|
|
|
2014-03-11 07:52:48 +01:00
|
|
|
data.writeByte( slot );
|
2014-03-07 07:15:54 +01:00
|
|
|
for (int num = 0; num < inv.getSizeInventory(); num++)
|
|
|
|
{
|
2014-03-11 07:52:48 +01:00
|
|
|
if ( (slot & (1 << num)) > 0 )
|
2014-03-07 07:15:54 +01:00
|
|
|
{
|
|
|
|
AEItemStack st = AEItemStack.create( inv.getStackInSlot( num ) );
|
|
|
|
st.writeToPacket( data );
|
|
|
|
}
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void Tick()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
public TileInscriber() {
|
|
|
|
gridProxy.setValidSides( EnumSet.noneOf( ForgeDirection.class ) );
|
|
|
|
internalMaxPower = 1500;
|
|
|
|
gridProxy.setIdlePowerUsage( 0 );
|
|
|
|
addNewHandler( new TileInscriberHandler() );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setOrientation(ForgeDirection inForward, ForgeDirection inUp)
|
|
|
|
{
|
|
|
|
super.setOrientation( inForward, inUp );
|
|
|
|
gridProxy.setValidSides( EnumSet.of( getUp(), getUp().getOpposite() ) );
|
|
|
|
setPowerSides( EnumSet.of( getUp(), getUp().getOpposite() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IInventory getInternalInventory()
|
|
|
|
{
|
|
|
|
return inv;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int[] getAccessibleSlotsFromSide(int side)
|
|
|
|
{
|
2014-03-07 07:15:54 +01:00
|
|
|
ForgeDirection d = ForgeDirection.getOrientation( side );
|
|
|
|
|
|
|
|
if ( d == ForgeDirection.UP )
|
|
|
|
return top;
|
|
|
|
|
|
|
|
if ( d == ForgeDirection.DOWN )
|
|
|
|
return bottom;
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
return sides;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getInventoryStackLimit()
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isItemValidForSlot(int i, ItemStack itemstack)
|
|
|
|
{
|
2014-03-07 07:15:54 +01:00
|
|
|
if ( i == 0 || i == 1 )
|
|
|
|
{
|
2014-03-09 04:35:53 +01:00
|
|
|
for (ItemStack s : Inscribe.plates)
|
2014-03-07 07:15:54 +01:00
|
|
|
if ( Platform.isSameItemPrecise( s, itemstack ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( i == 2 )
|
|
|
|
{
|
2014-03-09 04:35:53 +01:00
|
|
|
for (ItemStack s : Inscribe.inputs)
|
2014-03-07 07:15:54 +01:00
|
|
|
if ( Platform.isSameItemPrecise( s, itemstack ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canExtractItem(int i, ItemStack itemstack, int j)
|
|
|
|
{
|
2014-03-07 07:15:54 +01:00
|
|
|
return i == 0 || i == 1 || i == 3;
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onChangeInventory(IInventory inv, int slot, InvOperation mc, ItemStack removed, ItemStack added)
|
|
|
|
{
|
2014-03-11 07:52:48 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
processingTime = 0;
|
|
|
|
gridProxy.getTick().wakeDevice( gridProxy.getNode() );
|
|
|
|
}
|
|
|
|
catch (GridAccessException e)
|
|
|
|
{
|
|
|
|
// :P
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private ItemStack getTask()
|
|
|
|
{
|
|
|
|
|
|
|
|
for (InscriberRecipe i : Inscribe.recipes)
|
|
|
|
{
|
|
|
|
ItemStack PlateA = getStackInSlot( 0 );
|
|
|
|
ItemStack PlateB = getStackInSlot( 1 );
|
|
|
|
|
|
|
|
boolean matchA = (PlateA == null && i.plateA == null) || (Platform.isSameItemPrecise( PlateA, i.plateA )) && // and...
|
|
|
|
(PlateB == null && i.plateB == null) | (Platform.isSameItemPrecise( PlateB, i.plateB ));
|
|
|
|
|
|
|
|
boolean matchB = (PlateB == null && i.plateA == null) || (Platform.isSameItemPrecise( PlateB, i.plateA )) && // and...
|
|
|
|
(PlateA == null && i.plateB == null) | (Platform.isSameItemPrecise( PlateA, i.plateB ));
|
|
|
|
|
|
|
|
if ( matchA || matchB )
|
|
|
|
{
|
|
|
|
for (ItemStack opion : i.imprintable)
|
|
|
|
{
|
|
|
|
if ( Platform.isSameItemPrecise( opion, getStackInSlot( 2 ) ) )
|
|
|
|
return i.output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean hasWork()
|
|
|
|
{
|
|
|
|
if ( getTask() != null )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
processingTime = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TickingRequest getTickingRequest(IGridNode node)
|
|
|
|
{
|
|
|
|
return new TickingRequest( 1, 1, !hasWork(), false );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TickRateModulation tickingRequest(IGridNode node, int TicksSinceLastCall)
|
|
|
|
{
|
|
|
|
if ( processingTime == 0 )
|
|
|
|
processingTime++;
|
|
|
|
else
|
|
|
|
processingTime += TicksSinceLastCall;
|
|
|
|
|
|
|
|
if ( processingTime > maxProessingTime )
|
|
|
|
{
|
|
|
|
processingTime = 0;
|
|
|
|
|
|
|
|
ItemStack out = getTask();
|
|
|
|
if ( out != null )
|
|
|
|
{
|
|
|
|
setInventorySlotContents( 2, null );
|
|
|
|
setInventorySlotContents( 3, out );
|
|
|
|
}
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-03-11 07:52:48 +01:00
|
|
|
return hasWork() ? TickRateModulation.URGENT : TickRateModulation.SLEEP;
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|