2013-12-27 23:59:59 +01:00
|
|
|
package appeng.block.spatial;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraft.block.Block;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.block.material.Material;
|
2014-03-05 08:27:42 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.world.World;
|
2014-03-05 08:27:42 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.block.AEBaseBlock;
|
|
|
|
import appeng.core.features.AEFeature;
|
2014-03-05 08:27:42 +01:00
|
|
|
import appeng.core.sync.GuiBridge;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.tile.spatial.TileSpatialIOPort;
|
2014-03-05 08:27:42 +01:00
|
|
|
import appeng.util.Platform;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public class BlockSpatialIOPort extends AEBaseBlock
|
|
|
|
{
|
|
|
|
|
|
|
|
public BlockSpatialIOPort() {
|
|
|
|
super( BlockSpatialIOPort.class, Material.iron );
|
|
|
|
setfeature( EnumSet.of( AEFeature.SpatialIO ) );
|
|
|
|
setTileEntiy( TileSpatialIOPort.class );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
public final void onNeighborBlockChange(World w, int x, int y, int z, Block junk)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
TileSpatialIOPort te = getTileEntity( w, x, y, z );
|
|
|
|
if ( te != null )
|
|
|
|
te.updateRedstoneState();
|
|
|
|
}
|
|
|
|
|
2014-03-05 08:27:42 +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;
|
|
|
|
|
|
|
|
TileSpatialIOPort tg = getTileEntity( w, x, y, z );
|
|
|
|
if ( tg != null )
|
|
|
|
{
|
|
|
|
if ( Platform.isServer() )
|
|
|
|
Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_SPATIALIOPORT );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|