167 lines
3.5 KiB
Java
167 lines
3.5 KiB
Java
package appeng.tile.crafting;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
import appeng.api.implementations.IPowerChannelState;
|
|
import appeng.api.networking.GridFlags;
|
|
import appeng.api.networking.events.MENetworkChannelsChanged;
|
|
import appeng.api.networking.events.MENetworkEventSubscribe;
|
|
import appeng.api.networking.events.MENetworkPowerStatusChange;
|
|
import appeng.api.parts.ISimplifiedBundle;
|
|
import appeng.me.cluster.IAECluster;
|
|
import appeng.me.cluster.IAEMultiBlock;
|
|
import appeng.me.cluster.implementations.CraftingCPUCalculator;
|
|
import appeng.me.cluster.implementations.CraftingCPUCluster;
|
|
import appeng.me.helpers.AENetworkProxy;
|
|
import appeng.me.helpers.AENetworkProxyMultiblock;
|
|
import appeng.tile.grid.AENetworkTile;
|
|
import appeng.util.Platform;
|
|
|
|
public class TileCraftingTile extends AENetworkTile implements IAEMultiBlock, IPowerChannelState
|
|
{
|
|
|
|
CraftingCPUCluster clust;
|
|
final CraftingCPUCalculator calc = new CraftingCPUCalculator( this );
|
|
public ISimplifiedBundle lightCache;
|
|
|
|
@Override
|
|
protected AENetworkProxy createProxy()
|
|
{
|
|
return new AENetworkProxyMultiblock( this, "proxy", getItemFromTile( this ), true );
|
|
}
|
|
|
|
public void updateStatus(CraftingCPUCluster c)
|
|
{
|
|
clust = c;
|
|
updateMeta();
|
|
}
|
|
|
|
public void updateMultiBlock()
|
|
{
|
|
calc.calculateMultiblock( worldObj, getLocation() );
|
|
}
|
|
|
|
public TileCraftingTile() {
|
|
gridProxy.setFlags( GridFlags.MULTIBLOCK, GridFlags.REQUIRE_CHANNEL );
|
|
gridProxy.setValidSides( EnumSet.noneOf( ForgeDirection.class ) );
|
|
}
|
|
|
|
@Override
|
|
public void onReady()
|
|
{
|
|
super.onReady();
|
|
updateMultiBlock();
|
|
}
|
|
|
|
@Override
|
|
public boolean canBeRotated()
|
|
{
|
|
return true;// return BlockCraftingUnit.checkType( worldObj.getBlockMetadata( xCoord, yCoord, zCoord ),
|
|
// BlockCraftingUnit.BASE_MONITOR );
|
|
}
|
|
|
|
@Override
|
|
public void disconnect(boolean update)
|
|
{
|
|
if ( clust != null )
|
|
{
|
|
clust.destroy();
|
|
if ( update )
|
|
updateMeta();
|
|
}
|
|
}
|
|
|
|
@MENetworkEventSubscribe
|
|
public void onPowerStateChage(MENetworkPowerStatusChange ev)
|
|
{
|
|
updateMeta();
|
|
}
|
|
|
|
@MENetworkEventSubscribe
|
|
public void ChannelChangesd(MENetworkChannelsChanged ev)
|
|
{
|
|
updateMeta();
|
|
}
|
|
|
|
public void updateMeta()
|
|
{
|
|
if ( !gridProxy.isReady() )
|
|
return;
|
|
|
|
boolean formed = clust != null;
|
|
boolean power = false;
|
|
power = gridProxy.isActive();
|
|
|
|
int current = worldObj.getBlockMetadata( xCoord, yCoord, zCoord );
|
|
int newmeta = (current & 3) | (formed ? 8 : 0) | (power ? 4 : 0);
|
|
|
|
if ( current != newmeta )
|
|
{
|
|
worldObj.setBlockMetadataWithNotify( xCoord, yCoord, zCoord, newmeta, 2 );
|
|
|
|
if ( isFormed() )
|
|
gridProxy.setValidSides( EnumSet.allOf( ForgeDirection.class ) );
|
|
else
|
|
gridProxy.setValidSides( EnumSet.noneOf( ForgeDirection.class ) );
|
|
}
|
|
}
|
|
|
|
private void dropAndBreak()
|
|
{
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
@Override
|
|
public IAECluster getCluster()
|
|
{
|
|
return clust;
|
|
}
|
|
|
|
@Override
|
|
public boolean isValid()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean isPowered()
|
|
{
|
|
return (worldObj.getBlockMetadata( xCoord, yCoord, zCoord ) & 4) == 4;
|
|
}
|
|
|
|
public boolean isFormed()
|
|
{
|
|
return (worldObj.getBlockMetadata( xCoord, yCoord, zCoord ) & 8) == 8;
|
|
}
|
|
|
|
public boolean isAccelerator()
|
|
{
|
|
return (worldObj.getBlockMetadata( xCoord, yCoord, zCoord ) & 3) == 1;
|
|
}
|
|
|
|
public boolean isStatus()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public boolean isStorage()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public int getStorageBytes()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public boolean isActive()
|
|
{
|
|
if ( Platform.isServer() )
|
|
return gridProxy.isActive();
|
|
return isPowered() && isFormed();
|
|
}
|
|
|
|
}
|