2013-12-27 23:59:59 +01:00
|
|
|
package appeng.block.storage;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.world.World;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.api.AEApi;
|
|
|
|
import appeng.api.storage.ICellHandler;
|
|
|
|
import appeng.api.storage.IMEInventoryHandler;
|
|
|
|
import appeng.api.storage.StorageChannel;
|
|
|
|
import appeng.block.AEBaseBlock;
|
|
|
|
import appeng.client.render.BaseBlockRender;
|
|
|
|
import appeng.client.render.blocks.RenderMEChest;
|
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
import appeng.core.localization.PlayerMessages;
|
|
|
|
import appeng.core.sync.GuiBridge;
|
2014-02-09 08:56:24 +01:00
|
|
|
import appeng.helpers.AENoHandler;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.tile.storage.TileChest;
|
|
|
|
import appeng.util.Platform;
|
|
|
|
|
|
|
|
public class BlockChest extends AEBaseBlock
|
|
|
|
{
|
|
|
|
|
|
|
|
public BlockChest() {
|
|
|
|
super( BlockChest.class, Material.iron );
|
|
|
|
setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.MEChest ) );
|
|
|
|
setTileEntiy( TileChest.class );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Class<? extends BaseBlockRender> getRenderer()
|
|
|
|
{
|
|
|
|
return RenderMEChest.class;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onActivated(World w, int x, int y, int z, EntityPlayer p, int side, float hitX, float hitY, float hitZ)
|
|
|
|
{
|
|
|
|
TileChest tg = getTileEntity( w, x, y, z );
|
|
|
|
if ( tg != null && !p.isSneaking() )
|
|
|
|
{
|
|
|
|
if ( Platform.isClient() )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if ( side != tg.getUp().ordinal() )
|
|
|
|
{
|
|
|
|
Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_CHEST );
|
|
|
|
}
|
|
|
|
else if ( tg.isPowered() )
|
|
|
|
{
|
|
|
|
ItemStack cell = tg.getStackInSlot( 1 );
|
|
|
|
if ( cell != null )
|
|
|
|
{
|
|
|
|
ICellHandler ch = AEApi.instance().registries().cell().getHander( cell );
|
|
|
|
|
2014-02-09 08:56:24 +01:00
|
|
|
try
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-02-09 08:56:24 +01:00
|
|
|
IMEInventoryHandler ih = tg.getHandler( StorageChannel.ITEMS );
|
|
|
|
if ( ch != null && ih != null )
|
|
|
|
{
|
|
|
|
IMEInventoryHandler mine = ih;
|
|
|
|
ch.openChestGui( p, tg, ch, mine, cell, StorageChannel.ITEMS );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
catch (AENoHandler e)
|
|
|
|
{
|
|
|
|
// :P
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
2014-02-09 08:56:24 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
IMEInventoryHandler fh = tg.getHandler( StorageChannel.FLUIDS );
|
|
|
|
if ( ch != null && fh != null )
|
|
|
|
{
|
|
|
|
IMEInventoryHandler mine = fh;
|
|
|
|
ch.openChestGui( p, tg, ch, mine, cell, StorageChannel.FLUIDS );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (AENoHandler e)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-02-09 08:56:24 +01:00
|
|
|
// :P
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
p.addChatMessage( PlayerMessages.ChestCannotReadStorageCell.get() );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
else
|
2014-02-09 02:34:52 +01:00
|
|
|
p.addChatMessage( PlayerMessages.MachineNotPowered.get() );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|