2013-12-27 23:59:59 +01:00
|
|
|
package appeng.parts.misc;
|
|
|
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.client.renderer.RenderBlocks;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraftforge.common.ForgeDirection;
|
|
|
|
import appeng.api.AEApi;
|
|
|
|
import appeng.api.networking.IGridNode;
|
|
|
|
import appeng.api.networking.events.MENetworkCellArrayUpdate;
|
2014-01-05 09:43:49 +01:00
|
|
|
import appeng.api.networking.security.BaseActionSource;
|
|
|
|
import appeng.api.networking.security.MachineSource;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.api.networking.ticking.IGridTickable;
|
|
|
|
import appeng.api.networking.ticking.ITickManager;
|
|
|
|
import appeng.api.networking.ticking.TickRateModulation;
|
|
|
|
import appeng.api.networking.ticking.TickingRequest;
|
|
|
|
import appeng.api.parts.IPartCollsionHelper;
|
|
|
|
import appeng.api.parts.IPartRenderHelper;
|
|
|
|
import appeng.api.storage.ICellContainer;
|
|
|
|
import appeng.api.storage.IExternalStorageHandler;
|
|
|
|
import appeng.api.storage.IMEInventory;
|
|
|
|
import appeng.api.storage.IMEInventoryHandler;
|
|
|
|
import appeng.api.storage.IMEMonitor;
|
2014-01-01 22:46:16 +01:00
|
|
|
import appeng.api.storage.IMEMonitorHandlerReciever;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.api.storage.StorageChannel;
|
|
|
|
import appeng.api.storage.data.IAEItemStack;
|
|
|
|
import appeng.client.texture.CableBusTextures;
|
|
|
|
import appeng.me.GridAccessException;
|
|
|
|
import appeng.me.storage.MEInventoryHandler;
|
|
|
|
import appeng.me.storage.MEMonitorIInventory;
|
|
|
|
import appeng.parts.PartBasicState;
|
2013-12-28 22:07:13 +01:00
|
|
|
import appeng.util.Platform;
|
|
|
|
import buildcraft.api.transport.IPipeConnection;
|
|
|
|
import buildcraft.api.transport.IPipeTile.PipeType;
|
2013-12-30 06:57:43 +01:00
|
|
|
import cpw.mods.fml.common.Optional.Interface;
|
|
|
|
import cpw.mods.fml.common.Optional.Method;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2013-12-28 22:07:13 +01:00
|
|
|
@Interface(modid = "BuildCraft|Transport", iface = "buildcraft.api.transport.IPipeConnection")
|
2014-01-01 22:46:16 +01:00
|
|
|
public class PartStorageBus extends PartBasicState implements IGridTickable, ICellContainer, IMEMonitorHandlerReciever<IAEItemStack>, IPipeConnection
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
int priority = 0;
|
2014-01-05 09:43:49 +01:00
|
|
|
BaseActionSource mySrc;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public PartStorageBus(ItemStack is) {
|
|
|
|
super( PartStorageBus.class, is );
|
2014-01-05 09:43:49 +01:00
|
|
|
mySrc = new MachineSource( this );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
boolean cached = false;
|
|
|
|
MEMonitorIInventory monitor = null;
|
|
|
|
MEInventoryHandler handler = null;
|
|
|
|
|
|
|
|
int handlerHash = 0;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isValid(Object verificationToken)
|
|
|
|
{
|
|
|
|
return handler == verificationToken;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onNeighborChanged()
|
|
|
|
{
|
|
|
|
cached = false;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
proxy.getGrid().postEvent( new MENetworkCellArrayUpdate() );
|
|
|
|
}
|
|
|
|
catch (GridAccessException e)
|
|
|
|
{
|
|
|
|
// :3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private MEInventoryHandler getHandler()
|
|
|
|
{
|
|
|
|
if ( cached )
|
|
|
|
return handler;
|
|
|
|
|
|
|
|
boolean wasSleeping = monitor == null;
|
|
|
|
|
|
|
|
cached = true;
|
|
|
|
TileEntity self = getHost().getTile();
|
|
|
|
TileEntity target = self.worldObj.getBlockTileEntity( self.xCoord + side.offsetX, self.yCoord + side.offsetY, self.zCoord + side.offsetZ );
|
|
|
|
|
2013-12-28 22:07:13 +01:00
|
|
|
int newHandlerHash = Platform.generateTileHash( target );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-01-03 19:28:52 +01:00
|
|
|
if ( handlerHash == newHandlerHash && handlerHash != 0 )
|
2013-12-27 23:59:59 +01:00
|
|
|
return handler;
|
|
|
|
|
|
|
|
handlerHash = newHandlerHash;
|
|
|
|
handler = null;
|
|
|
|
monitor = null;
|
|
|
|
if ( target != null )
|
|
|
|
{
|
|
|
|
IExternalStorageHandler esh = AEApi.instance().registries().externalStorage().getHandler( target, side.getOpposite(), StorageChannel.ITEMS );
|
|
|
|
if ( esh != null )
|
|
|
|
{
|
|
|
|
IMEInventory inv = esh.getInventory( target, side.getOpposite(), StorageChannel.ITEMS );
|
|
|
|
|
2014-01-05 09:43:49 +01:00
|
|
|
if ( inv instanceof MEMonitorIInventory )
|
|
|
|
((MEMonitorIInventory) inv).mySource = new MachineSource( this );
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
if ( inv instanceof MEMonitorIInventory )
|
|
|
|
monitor = (MEMonitorIInventory) inv;
|
|
|
|
|
|
|
|
if ( inv != null )
|
|
|
|
{
|
|
|
|
handler = new MEInventoryHandler( inv );
|
|
|
|
|
|
|
|
if ( inv instanceof IMEMonitor )
|
|
|
|
((IMEMonitor) inv).addListener( this, handler );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// update sleep state...
|
|
|
|
if ( wasSleeping != (monitor == null) )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ITickManager tm = proxy.getTick();
|
|
|
|
if ( monitor == null )
|
|
|
|
tm.sleepDevice( proxy.getNode() );
|
|
|
|
else
|
|
|
|
tm.wakeDevice( proxy.getNode() );
|
|
|
|
}
|
|
|
|
catch (GridAccessException e)
|
|
|
|
{
|
|
|
|
// :(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void renderInventory(IPartRenderHelper rh, RenderBlocks renderer)
|
|
|
|
{
|
|
|
|
rh.setTexture( CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorBack.getIcon(),
|
|
|
|
is.getIconIndex(), CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorSides.getIcon() );
|
|
|
|
|
|
|
|
rh.setBounds( 3, 3, 15, 13, 13, 16 );
|
|
|
|
rh.renderInventoryBox( renderer );
|
|
|
|
|
|
|
|
rh.setBounds( 2, 2, 14, 14, 14, 15 );
|
|
|
|
rh.renderInventoryBox( renderer );
|
|
|
|
|
|
|
|
rh.setBounds( 5, 5, 12, 11, 11, 14 );
|
|
|
|
rh.renderInventoryBox( renderer );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void renderStatic(int x, int y, int z, IPartRenderHelper rh, RenderBlocks renderer)
|
|
|
|
{
|
2014-01-01 10:00:13 +01:00
|
|
|
rh.useSimpliedRendering( x, y, z, this );
|
2013-12-27 23:59:59 +01:00
|
|
|
rh.setTexture( CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorBack.getIcon(),
|
|
|
|
is.getIconIndex(), CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorSides.getIcon() );
|
|
|
|
|
|
|
|
rh.setBounds( 3, 3, 15, 13, 13, 16 );
|
|
|
|
rh.renderBlock( x, y, z, renderer );
|
|
|
|
|
|
|
|
rh.setBounds( 2, 2, 14, 14, 14, 15 );
|
|
|
|
rh.renderBlock( x, y, z, renderer );
|
|
|
|
|
|
|
|
rh.setTexture( CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorBack.getIcon(),
|
|
|
|
is.getIconIndex(), CableBusTextures.PartMonitorSides.getIcon(), CableBusTextures.PartMonitorSides.getIcon() );
|
|
|
|
|
|
|
|
rh.setBounds( 5, 5, 12, 11, 11, 13 );
|
|
|
|
rh.renderBlock( x, y, z, renderer );
|
|
|
|
|
|
|
|
rh.setTexture( CableBusTextures.PartMonitorSidesStatus.getIcon(), CableBusTextures.PartMonitorSidesStatus.getIcon(),
|
|
|
|
CableBusTextures.PartMonitorBack.getIcon(), is.getIconIndex(), CableBusTextures.PartMonitorSidesStatus.getIcon(),
|
|
|
|
CableBusTextures.PartMonitorSidesStatus.getIcon() );
|
|
|
|
|
|
|
|
rh.setBounds( 5, 5, 13, 11, 11, 14 );
|
|
|
|
rh.renderBlock( x, y, z, renderer );
|
|
|
|
|
|
|
|
renderLights( x, y, z, rh, renderer );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void getBoxes(IPartCollsionHelper bch)
|
|
|
|
{
|
|
|
|
bch.addBox( 3, 3, 15, 13, 13, 16 );
|
|
|
|
bch.addBox( 2, 2, 14, 14, 14, 15 );
|
|
|
|
bch.addBox( 5, 5, 12, 11, 11, 13 );
|
|
|
|
bch.addBox( 5, 5, 13, 11, 11, 14 );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int cableConnectionRenderTo()
|
|
|
|
{
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TickingRequest getTickingRequest(IGridNode node)
|
|
|
|
{
|
|
|
|
return new TickingRequest( 5, 20 * 3, monitor == null, false );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TickRateModulation tickingRequest(IGridNode node, int TicksSinceLastCall)
|
|
|
|
{
|
|
|
|
if ( monitor != null )
|
|
|
|
return monitor.onTick();
|
|
|
|
|
|
|
|
return TickRateModulation.SLEEP;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeToNBT(NBTTagCompound extra)
|
|
|
|
{
|
|
|
|
super.writeToNBT( extra );
|
|
|
|
extra.setInteger( "priority", priority );
|
|
|
|
}
|
|
|
|
|
|
|
|
public void readFromNBT(NBTTagCompound extra)
|
|
|
|
{
|
|
|
|
super.readFromNBT( extra );
|
|
|
|
priority = extra.getInteger( "priority" );
|
|
|
|
};
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<IMEInventoryHandler> getCellArray(StorageChannel channel)
|
|
|
|
{
|
|
|
|
IMEInventoryHandler out = getHandler();
|
|
|
|
if ( out == null )
|
|
|
|
return Arrays.asList( new IMEInventoryHandler[] {} );
|
|
|
|
return Arrays.asList( new IMEInventoryHandler[] { out } );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getPriority()
|
|
|
|
{
|
|
|
|
return priority;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void blinkCell(int slot)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-01-05 09:43:49 +01:00
|
|
|
public void postChange(IMEMonitor<IAEItemStack> monitor, IAEItemStack change, BaseActionSource source)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2014-01-05 09:43:49 +01:00
|
|
|
proxy.getStorage().postAlterationOfStoredItems( StorageChannel.ITEMS, change, mySrc );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
catch (GridAccessException e)
|
|
|
|
{
|
|
|
|
// :(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-28 22:07:13 +01:00
|
|
|
@Override
|
|
|
|
@Method(modid = "BuildCraft|Transport")
|
|
|
|
public ConnectOverride overridePipeConnection(PipeType type, ForgeDirection with)
|
|
|
|
{
|
|
|
|
return type == PipeType.ITEM && with == side ? ConnectOverride.CONNECT : ConnectOverride.DISCONNECT;
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|