mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
188 lines
5.9 KiB
Java
188 lines
5.9 KiB
Java
package com.hbm.blocks.machine;
|
|
|
|
import com.hbm.blocks.ModBlocks;
|
|
import com.hbm.handler.MultiblockHandler;
|
|
import com.hbm.interfaces.IMultiblock;
|
|
import com.hbm.main.MainRegistry;
|
|
import com.hbm.tileentity.machine.TileEntityAMSLimiter;
|
|
import com.hbm.tileentity.machine.TileEntityConverterHeRf;
|
|
import com.hbm.tileentity.machine.TileEntityDummy;
|
|
|
|
import cpw.mods.fml.common.network.internal.FMLNetworkHandler;
|
|
import net.minecraft.block.BlockContainer;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.MathHelper;
|
|
import net.minecraft.world.World;
|
|
|
|
public class BlockAMSLimiter extends BlockContainer implements IMultiblock {
|
|
|
|
public BlockAMSLimiter(Material p_i45386_1_) {
|
|
super(p_i45386_1_);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) {
|
|
return new TileEntityAMSLimiter();
|
|
}
|
|
|
|
@Override
|
|
public int getRenderType(){
|
|
return -1;
|
|
}
|
|
|
|
@Override
|
|
public boolean isOpaqueCube() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean renderAsNormalBlock() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ) {
|
|
if(world.isRemote)
|
|
{
|
|
return true;
|
|
} else if(!player.isSneaking())
|
|
{
|
|
TileEntityAMSLimiter entity = (TileEntityAMSLimiter) world.getTileEntity(x, y, z);
|
|
if(entity != null)
|
|
{
|
|
FMLNetworkHandler.openGui(player, MainRegistry.instance, ModBlocks.guiID_ams_limiter, world, x, y, z);
|
|
}
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack itemStack) {
|
|
int i = MathHelper.floor_double(player.rotationYaw * 4.0F / 360.0F + 0.5D) & 3;
|
|
|
|
if (i == 0) {
|
|
world.setBlockMetadataWithNotify(x, y, z, 5, 2);
|
|
if(MultiblockHandler.checkSpace(world, x, y, z, MultiblockHandler.AMSLimiterDimensionEast)) {
|
|
MultiblockHandler.fillUp(world, x, y, z, MultiblockHandler.AMSLimiterDimensionEast, ModBlocks.dummy_block_ams_limiter);
|
|
|
|
//
|
|
DummyBlockAMSLimiter.safeBreak = true;
|
|
world.setBlock(x + 2, y, z, ModBlocks.dummy_port_ams_limiter);
|
|
TileEntity te = world.getTileEntity(x + 2, y, z);
|
|
if(te instanceof TileEntityDummy) {
|
|
TileEntityDummy dummy = (TileEntityDummy)te;
|
|
dummy.targetX = x;
|
|
dummy.targetY = y;
|
|
dummy.targetZ = z;
|
|
}
|
|
world.setBlock(x - 2, y, z, ModBlocks.dummy_port_ams_limiter);
|
|
TileEntity te2 = world.getTileEntity(x - 2, y, z);
|
|
if(te2 instanceof TileEntityDummy) {
|
|
TileEntityDummy dummy = (TileEntityDummy)te2;
|
|
dummy.targetX = x;
|
|
dummy.targetY = y;
|
|
dummy.targetZ = z;
|
|
}
|
|
DummyBlockAMSLimiter.safeBreak = false;
|
|
//
|
|
|
|
} else
|
|
world.func_147480_a(x, y, z, true);
|
|
}
|
|
if (i == 1) {
|
|
world.setBlockMetadataWithNotify(x, y, z, 3, 2);
|
|
if(MultiblockHandler.checkSpace(world, x, y, z, MultiblockHandler.AMSLimiterDimensionSouth)) {
|
|
MultiblockHandler.fillUp(world, x, y, z, MultiblockHandler.AMSLimiterDimensionSouth, ModBlocks.dummy_block_ams_limiter);
|
|
|
|
//
|
|
DummyBlockAMSLimiter.safeBreak = true;
|
|
world.setBlock(x, y, z + 2, ModBlocks.dummy_port_ams_limiter);
|
|
TileEntity te = world.getTileEntity(x, y, z + 2);
|
|
if(te instanceof TileEntityDummy) {
|
|
TileEntityDummy dummy = (TileEntityDummy)te;
|
|
dummy.targetX = x;
|
|
dummy.targetY = y;
|
|
dummy.targetZ = z;
|
|
}
|
|
world.setBlock(x, y, z - 2, ModBlocks.dummy_port_ams_limiter);
|
|
TileEntity te2 = world.getTileEntity(x, y, z - 2);
|
|
if(te2 instanceof TileEntityDummy) {
|
|
TileEntityDummy dummy = (TileEntityDummy)te2;
|
|
dummy.targetX = x;
|
|
dummy.targetY = y;
|
|
dummy.targetZ = z;
|
|
}
|
|
DummyBlockAMSLimiter.safeBreak = false;
|
|
//
|
|
|
|
} else
|
|
world.func_147480_a(x, y, z, true);
|
|
}
|
|
if (i == 2) {
|
|
world.setBlockMetadataWithNotify(x, y, z, 4, 2);
|
|
if(MultiblockHandler.checkSpace(world, x, y, z, MultiblockHandler.AMSLimiterDimensionWest)) {
|
|
MultiblockHandler.fillUp(world, x, y, z, MultiblockHandler.AMSLimiterDimensionWest, ModBlocks.dummy_block_ams_limiter);
|
|
|
|
//
|
|
DummyBlockAMSLimiter.safeBreak = true;
|
|
world.setBlock(x + 2, y, z, ModBlocks.dummy_port_ams_limiter);
|
|
TileEntity te = world.getTileEntity(x + 2, y, z);
|
|
if(te instanceof TileEntityDummy) {
|
|
TileEntityDummy dummy = (TileEntityDummy)te;
|
|
dummy.targetX = x;
|
|
dummy.targetY = y;
|
|
dummy.targetZ = z;
|
|
}
|
|
world.setBlock(x - 2, y, z, ModBlocks.dummy_port_ams_limiter);
|
|
TileEntity te2 = world.getTileEntity(x - 2, y, z);
|
|
if(te2 instanceof TileEntityDummy) {
|
|
TileEntityDummy dummy = (TileEntityDummy)te2;
|
|
dummy.targetX = x;
|
|
dummy.targetY = y;
|
|
dummy.targetZ = z;
|
|
}
|
|
DummyBlockAMSLimiter.safeBreak = false;
|
|
//
|
|
|
|
} else
|
|
world.func_147480_a(x, y, z, true);
|
|
}
|
|
if (i == 3) {
|
|
world.setBlockMetadataWithNotify(x, y, z, 2, 2);
|
|
if(MultiblockHandler.checkSpace(world, x, y, z, MultiblockHandler.AMSLimiterDimensionNorth)) {
|
|
MultiblockHandler.fillUp(world, x, y, z, MultiblockHandler.AMSLimiterDimensionNorth, ModBlocks.dummy_block_ams_limiter);
|
|
|
|
//
|
|
DummyBlockAMSLimiter.safeBreak = true;
|
|
world.setBlock(x, y, z + 2, ModBlocks.dummy_port_ams_limiter);
|
|
TileEntity te = world.getTileEntity(x, y, z + 2);
|
|
if(te instanceof TileEntityDummy) {
|
|
TileEntityDummy dummy = (TileEntityDummy)te;
|
|
dummy.targetX = x;
|
|
dummy.targetY = y;
|
|
dummy.targetZ = z;
|
|
}
|
|
world.setBlock(x, y, z - 2, ModBlocks.dummy_port_ams_limiter);
|
|
TileEntity te2 = world.getTileEntity(x, y, z - 2);
|
|
if(te2 instanceof TileEntityDummy) {
|
|
TileEntityDummy dummy = (TileEntityDummy)te2;
|
|
dummy.targetX = x;
|
|
dummy.targetY = y;
|
|
dummy.targetZ = z;
|
|
}
|
|
DummyBlockAMSLimiter.safeBreak = false;
|
|
//
|
|
|
|
} else
|
|
world.func_147480_a(x, y, z, true);
|
|
}
|
|
}
|
|
|
|
}
|