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.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.block.AEBaseBlock;
|
|
|
|
import appeng.client.render.BaseBlockRender;
|
|
|
|
import appeng.client.render.blocks.RenderDrive;
|
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
import appeng.core.sync.GuiBridge;
|
|
|
|
import appeng.tile.storage.TileDrive;
|
|
|
|
import appeng.util.Platform;
|
|
|
|
|
|
|
|
public class BlockDrive extends AEBaseBlock
|
|
|
|
{
|
|
|
|
|
|
|
|
public BlockDrive() {
|
|
|
|
super( BlockDrive.class, Material.iron );
|
|
|
|
setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.MEDrive ) );
|
|
|
|
setTileEntiy( TileDrive.class );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Class<? extends BaseBlockRender> getRenderer()
|
|
|
|
{
|
|
|
|
return RenderDrive.class;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onActivated(World w, int x, int y, int z, EntityPlayer p, int side, float hitX, float hitY, float hitZ)
|
|
|
|
{
|
2013-12-28 22:09:58 +01:00
|
|
|
if ( p.isSneaking() )
|
|
|
|
return false;
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
TileDrive tg = getTileEntity( w, x, y, z );
|
2013-12-28 22:09:58 +01:00
|
|
|
if ( tg != null )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2013-12-28 22:09:58 +01:00
|
|
|
if ( Platform.isServer() )
|
|
|
|
Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_DRIVE );
|
2013-12-27 23:59:59 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|