Applied-Energistics-2-tiler.../block/misc/BlockInterface.java

64 lines
1.5 KiB
Java
Raw Normal View History

package appeng.block.misc;
import java.util.EnumSet;
import net.minecraft.block.material.Material;
2013-12-28 22:09:58 +01:00
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;
2014-03-20 04:28:53 +01:00
import appeng.api.util.IOrientable;
import appeng.block.AEBaseBlock;
2014-03-20 04:28:53 +01:00
import appeng.client.render.BaseBlockRender;
import appeng.client.render.blocks.RenderBlockInterface;
import appeng.core.features.AEFeature;
2013-12-28 22:09:58 +01:00
import appeng.core.sync.GuiBridge;
import appeng.tile.misc.TileInterface;
2013-12-28 22:09:58 +01:00
import appeng.util.Platform;
public class BlockInterface extends AEBaseBlock
{
public BlockInterface() {
super( BlockInterface.class, Material.iron );
setfeature( EnumSet.of( AEFeature.Core ) );
setTileEntiy( TileInterface.class );
}
2014-03-20 04:28:53 +01:00
@Override
protected Class<? extends BaseBlockRender> getRenderer()
{
return RenderBlockInterface.class;
}
@Override
protected boolean hasCustomRotation()
{
return true;
}
@Override
2014-04-04 06:12:35 +02:00
protected void customRotateBlock(IOrientable rotatable, ForgeDirection axis)
2014-03-20 04:28:53 +01:00
{
2014-04-04 06:12:35 +02:00
if ( rotatable instanceof TileInterface )
2014-03-20 04:28:53 +01:00
{
2014-04-04 06:12:35 +02:00
((TileInterface) rotatable).setSide( axis );
2014-03-20 04:28:53 +01:00
}
}
2013-12-28 22:09:58 +01:00
@Override
public boolean onActivated(World w, int x, int y, int z, EntityPlayer p, int side, float hitX, float hitY, float hitZ)
{
if ( p.isSneaking() )
return false;
TileInterface tg = getTileEntity( w, x, y, z );
if ( tg != null )
{
if ( Platform.isServer() )
Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_INTERFACE );
return true;
}
return false;
}
}