2013-12-27 23:59:59 +01:00
|
|
|
package appeng.block.qnb;
|
|
|
|
|
2014-03-07 04:24:01 +01:00
|
|
|
import java.util.Arrays;
|
2013-12-27 23:59:59 +01:00
|
|
|
import java.util.EnumSet;
|
2014-03-07 04:24:01 +01:00
|
|
|
import java.util.List;
|
2014-01-20 17:41:37 +01:00
|
|
|
import java.util.Random;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
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-07 04:24:01 +01:00
|
|
|
import net.minecraft.entity.Entity;
|
2014-01-20 17:41:37 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2014-03-07 04:24:01 +01:00
|
|
|
import net.minecraft.util.AxisAlignedBB;
|
2014-01-20 17:41:37 +01:00
|
|
|
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;
|
2014-02-23 23:50:53 +01:00
|
|
|
import appeng.client.EffectType;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.client.render.BaseBlockRender;
|
|
|
|
import appeng.client.render.blocks.RenderQNB;
|
2014-01-28 20:27:22 +01:00
|
|
|
import appeng.core.CommonHelper;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.core.features.AEFeature;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.core.sync.GuiBridge;
|
2014-03-07 04:24:01 +01:00
|
|
|
import appeng.helpers.ICustomCollision;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.tile.qnb.TileQuantumBridge;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.util.Platform;
|
2014-01-28 20:27:22 +01:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-03-07 04:24:01 +01:00
|
|
|
public class BlockQuantumLinkChamber extends AEBaseBlock implements ICustomCollision
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
public BlockQuantumLinkChamber() {
|
|
|
|
super( BlockQuantumLinkChamber.class, Material.glass );
|
|
|
|
setfeature( EnumSet.of( AEFeature.QuantumNetworkBridge ) );
|
|
|
|
setTileEntiy( TileQuantumBridge.class );
|
|
|
|
float shave = 2.0f / 16.0f;
|
|
|
|
setBlockBounds( shave, shave, shave, 1.0f - shave, 1.0f - shave, 1.0f - shave );
|
|
|
|
setLightOpacity( 0 );
|
|
|
|
isFullSize = isOpaque = false;
|
|
|
|
}
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
@Override
|
2014-01-28 20:27:22 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2014-01-20 17:41:37 +01:00
|
|
|
public void randomDisplayTick(World w, int bx, int by, int bz, Random r)
|
|
|
|
{
|
|
|
|
TileQuantumBridge bridge = getTileEntity( w, bx, by, bz );
|
|
|
|
if ( bridge != null )
|
|
|
|
{
|
|
|
|
if ( bridge.hasQES() )
|
|
|
|
{
|
2014-01-30 03:47:55 +01:00
|
|
|
if ( CommonHelper.proxy.shouldAddParticles( r ) )
|
2014-07-09 10:17:11 +02:00
|
|
|
CommonHelper.proxy.spawnEffect( EffectType.Energy, w, bx + 0.5, by + 0.5, bz + 0.5, null );
|
2014-01-20 17:41:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
public void onNeighborBlockChange(World w, int x, int y, int z, Block pointlessnumber)
|
2014-01-20 17:41:37 +01:00
|
|
|
{
|
|
|
|
TileQuantumBridge bridge = getTileEntity( w, x, y, z );
|
|
|
|
if ( bridge != null )
|
|
|
|
bridge.neighborUpdate();
|
|
|
|
}
|
|
|
|
|
2014-07-02 07:04:35 +02:00
|
|
|
@Override
|
|
|
|
public void breakBlock(World w, int x, int y, int z, Block a, int b)
|
|
|
|
{
|
|
|
|
TileQuantumBridge bridge = getTileEntity( w, x, y, z );
|
|
|
|
if ( bridge != null )
|
|
|
|
bridge.breakCluster();
|
|
|
|
|
|
|
|
super.breakBlock( w, x, y, z, a, b );
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@Override
|
|
|
|
protected Class<? extends BaseBlockRender> getRenderer()
|
|
|
|
{
|
|
|
|
return RenderQNB.class;
|
|
|
|
}
|
|
|
|
|
2014-01-20 17:41:37 +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;
|
|
|
|
|
|
|
|
TileQuantumBridge tg = getTileEntity( w, x, y, z );
|
|
|
|
if ( tg != null )
|
|
|
|
{
|
|
|
|
if ( Platform.isServer() )
|
|
|
|
Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_QNB );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-07 04:24:01 +01:00
|
|
|
@Override
|
|
|
|
public Iterable<AxisAlignedBB> getSelectedBoundingBoxsFromPool(World w, int x, int y, int z, Entity e, boolean isVisual)
|
|
|
|
{
|
|
|
|
double OnePx = 2.0 / 16.0;
|
|
|
|
return Arrays.asList( new AxisAlignedBB[] { AxisAlignedBB.getBoundingBox( OnePx, OnePx, OnePx, 1.0 - OnePx, 1.0 - OnePx, 1.0 - OnePx ) } );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addCollidingBlockToList(World w, int x, int y, int z, AxisAlignedBB bb, List out, Entity e)
|
|
|
|
{
|
|
|
|
double OnePx = 2.0 / 16.0;
|
2014-06-05 05:59:56 +02:00
|
|
|
out.add( AxisAlignedBB.getBoundingBox( OnePx, OnePx, OnePx, 1.0 - OnePx, 1.0 - OnePx, 1.0 - OnePx ) );
|
2014-03-07 04:24:01 +01:00
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|