mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
102 lines
3.4 KiB
Java
102 lines
3.4 KiB
Java
package com.hbm.blocks.machine;
|
|
|
|
import com.hbm.inventory.fluid.FluidType;
|
|
import com.hbm.items.machine.IItemFluidIdentifier;
|
|
import com.hbm.tileentity.machine.TileEntityRefueler;
|
|
|
|
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.AxisAlignedBB;
|
|
import net.minecraft.util.ChatComponentText;
|
|
import net.minecraft.util.ChatComponentTranslation;
|
|
import net.minecraft.util.ChatStyle;
|
|
import net.minecraft.util.EnumChatFormatting;
|
|
import net.minecraft.util.MathHelper;
|
|
import net.minecraft.world.IBlockAccess;
|
|
import net.minecraft.world.World;
|
|
|
|
public class BlockRefueler extends BlockContainer {
|
|
|
|
public BlockRefueler(Material mat) {
|
|
super(mat);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int meta) {
|
|
return new TileEntityRefueler();
|
|
}
|
|
|
|
@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 && !player.isSneaking()) {
|
|
if(player.getHeldItem() != null && player.getHeldItem().getItem() instanceof IItemFluidIdentifier) {
|
|
TileEntity te = world.getTileEntity(x, y, z);
|
|
|
|
if(!(te instanceof TileEntityRefueler))
|
|
return false;
|
|
|
|
TileEntityRefueler refueler = (TileEntityRefueler) te;
|
|
FluidType type = ((IItemFluidIdentifier) player.getHeldItem().getItem()).getType(world, x, y, z, player.getHeldItem());
|
|
refueler.tank.setTankType(type);
|
|
refueler.markDirty();
|
|
player.addChatComponentMessage(new ChatComponentText("Changed type to ").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.YELLOW)).appendSibling(new ChatComponentTranslation(type.getConditionalName())).appendSibling(new ChatComponentText("!")));
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack stack) {
|
|
int i = MathHelper.floor_double(player.rotationYaw * 4.0F / 360.0F + 0.5D) & 3;
|
|
|
|
if(i == 0) world.setBlockMetadataWithNotify(x, y, z, 2, 2);
|
|
if(i == 1) world.setBlockMetadataWithNotify(x, y, z, 5, 2);
|
|
if(i == 2) world.setBlockMetadataWithNotify(x, y, z, 3, 2);
|
|
if(i == 3) world.setBlockMetadataWithNotify(x, y, z, 4, 2);
|
|
}
|
|
|
|
@Override
|
|
public void setBlockBoundsBasedOnState(IBlockAccess world, int x, int y, int z) {
|
|
float f = 0.0625F;
|
|
|
|
switch(world.getBlockMetadata(x, y, z)) {
|
|
case 2: this.setBlockBounds(0F, 0F, 12 * f, 1F, 1F, 1F); break;
|
|
case 3: this.setBlockBounds(0F, 0F, 0F, 1F, 1F, 4 * f); break;
|
|
case 4: this.setBlockBounds(12 * f, 0F, 0F, 1F, 1F, 1F); break;
|
|
case 5: this.setBlockBounds(0F, 0F, 0F, 4 * f, 1F, 1F); break;
|
|
default: this.setBlockBounds(0F, 0F, 0F, 1F, 1F, 1F); break;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public AxisAlignedBB getCollisionBoundingBoxFromPool(World world, int x, int y, int z) {
|
|
this.setBlockBoundsBasedOnState(world, x, y, z);
|
|
return AxisAlignedBB.getBoundingBox(x + this.minX, y + this.minY, z + this.minZ, x + this.maxX, y + this.maxY, z + this.maxZ);
|
|
}
|
|
|
|
}
|