Applied-Energistics-2-tiler.../tile/misc/TileCellWorkbench.java

221 lines
5 KiB
Java
Raw Normal View History

2014-01-20 17:41:37 +01:00
package appeng.tile.misc;
import java.util.ArrayList;
2014-01-20 17:41:37 +01:00
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.world.World;
2014-04-07 01:05:09 +02:00
import appeng.api.config.CopyMode;
import appeng.api.config.Settings;
2014-01-20 17:41:37 +01:00
import appeng.api.config.Upgrades;
2014-01-23 20:02:48 +01:00
import appeng.api.implementations.IUpgradeableHost;
2014-01-20 17:41:37 +01:00
import appeng.api.storage.ICellWorkbenchItem;
import appeng.api.util.IConfigManager;
2014-04-07 01:05:09 +02:00
import appeng.api.util.IConfigureableObject;
2014-01-20 17:41:37 +01:00
import appeng.tile.AEBaseTile;
import appeng.tile.events.AETileEventHandler;
import appeng.tile.events.TileEventType;
import appeng.tile.inventory.AppEngInternalAEInventory;
import appeng.tile.inventory.AppEngInternalInventory;
import appeng.tile.inventory.IAEAppEngInventory;
import appeng.tile.inventory.InvOperation;
2014-04-07 01:05:09 +02:00
import appeng.util.ConfigManager;
import appeng.util.IConfigManagerHost;
2014-01-20 17:41:37 +01:00
2014-04-07 01:05:09 +02:00
public class TileCellWorkbench extends AEBaseTile implements IUpgradeableHost, IAEAppEngInventory, IConfigureableObject, IConfigManagerHost
2014-01-20 17:41:37 +01:00
{
AppEngInternalInventory cell = new AppEngInternalInventory( this, 1 );
AppEngInternalAEInventory config = new AppEngInternalAEInventory( this, 63 );
2014-04-07 01:05:09 +02:00
ConfigManager cm = new ConfigManager( this );
2014-01-20 17:41:37 +01:00
IInventory cacheUpgrades = null;
IInventory cacheConfig = null;
public IInventory getCellUpgradeInventory()
{
if ( cacheUpgrades == null )
{
ICellWorkbenchItem cwbi = getCell();
if ( cwbi == null )
return null;
ItemStack is = cell.getStackInSlot( 0 );
if ( is == null )
return null;
IInventory inv = cwbi.getUpgradesInventory( is );
if ( inv == null )
return null;
return cacheUpgrades = inv;
}
return cacheUpgrades;
}
public IInventory getCellConfigInventory()
{
if ( cacheConfig == null )
{
ICellWorkbenchItem cwbi = getCell();
if ( cwbi == null )
return null;
ItemStack is = cell.getStackInSlot( 0 );
if ( is == null )
return null;
IInventory inv = cwbi.getConfigInventory( is );
if ( inv == null )
return null;
return cacheConfig = inv;
}
return cacheConfig;
}
class TileCellWorkbenchHandler extends AETileEventHandler
{
public TileCellWorkbenchHandler() {
2014-01-26 07:46:16 +01:00
super( TileEventType.WORLD_NBT );
2014-01-20 17:41:37 +01:00
}
@Override
public void writeToNBT(NBTTagCompound data)
{
cell.writeToNBT( data, "cell" );
config.writeToNBT( data, "config" );
2014-04-07 01:05:09 +02:00
cm.writeToNBT( data );
2014-01-20 17:41:37 +01:00
}
@Override
public void readFromNBT(NBTTagCompound data)
{
cell.readFromNBT( data, "cell" );
config.readFromNBT( data, "config" );
2014-04-07 01:05:09 +02:00
cm.readFromNBT( data );
2014-01-20 17:41:37 +01:00
}
}
public TileCellWorkbench() {
addNewHandler( new TileCellWorkbenchHandler() );
2014-04-07 01:05:09 +02:00
cm.registerSetting( Settings.COPY_MODE, CopyMode.CLEAR_ON_REMOVE );
2014-01-20 17:41:37 +01:00
cell.enableClientEvents = true;
}
@Override
public IInventory getInventoryByName(String name)
{
if ( name.equals( "config" ) )
return config;
if ( name.equals( "cell" ) )
return cell;
return null;
}
@Override
public int getInstalledUpgrades(Upgrades u)
{
return 0;
}
private boolean locked = false;
@Override
public void onChangeInventory(IInventory inv, int slot, InvOperation mc, ItemStack removedStack, ItemStack newStack)
{
if ( inv == cell && locked == false )
{
locked = true;
cacheUpgrades = null;
cacheConfig = null;
IInventory c = getCellConfigInventory();
if ( c != null )
{
boolean cellHasConfig = false;
for (int x = 0; x < c.getSizeInventory(); x++)
{
if ( c.getStackInSlot( x ) != null )
{
cellHasConfig = true;
break;
}
}
if ( cellHasConfig )
{
for (int x = 0; x < config.getSizeInventory(); x++)
config.setInventorySlotContents( x, c.getStackInSlot( x ) );
}
else
{
for (int x = 0; x < config.getSizeInventory(); x++)
c.setInventorySlotContents( x, config.getStackInSlot( x ) );
2014-04-07 01:05:09 +02:00
2014-02-09 02:34:52 +01:00
c.markDirty();
2014-01-20 17:41:37 +01:00
}
2014-04-07 01:05:09 +02:00
}
else if ( cm.getSetting( Settings.COPY_MODE ) == CopyMode.CLEAR_ON_REMOVE )
{
for (int x = 0; x < config.getSizeInventory(); x++)
config.setInventorySlotContents( x, null );
2014-01-20 17:41:37 +01:00
2014-04-07 01:05:09 +02:00
this.markDirty();
2014-01-20 17:41:37 +01:00
}
locked = false;
}
else if ( inv == config && locked == false )
{
IInventory c = getCellConfigInventory();
if ( c != null )
{
for (int x = 0; x < config.getSizeInventory(); x++)
c.setInventorySlotContents( x, config.getStackInSlot( x ) );
2014-04-07 01:05:09 +02:00
2014-02-09 02:34:52 +01:00
c.markDirty();
2014-01-20 17:41:37 +01:00
}
}
}
@Override
public void getDrops(World w, int x, int y, int z, ArrayList<ItemStack> drops)
{
super.getDrops( w, x, y, z, drops );
if ( cell.getStackInSlot( 0 ) != null )
drops.add( cell.getStackInSlot( 0 ) );
}
2014-01-20 17:41:37 +01:00
public ICellWorkbenchItem getCell()
{
if ( cell.getStackInSlot( 0 ) == null )
return null;
if ( cell.getStackInSlot( 0 ).getItem() instanceof ICellWorkbenchItem )
return ((ICellWorkbenchItem) cell.getStackInSlot( 0 ).getItem());
return null;
}
@Override
public IConfigManager getConfigManager()
{
2014-04-07 01:05:09 +02:00
return cm;
}
@Override
public void updateSetting(IConfigManager manager, Enum settingName, Enum newValue)
{
// nothing here..
2014-01-20 17:41:37 +01:00
}
}