mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
62 lines
2.2 KiB
Java
62 lines
2.2 KiB
Java
package com.hbm.blocks.machine;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.blocks.BlockDummyable;
|
|
import com.hbm.blocks.IPersistentInfoProvider;
|
|
import com.hbm.inventory.fluid.Fluids;
|
|
import com.hbm.inventory.fluid.tank.FluidTank;
|
|
import com.hbm.tileentity.TileEntityProxyCombo;
|
|
import com.hbm.tileentity.machine.oil.TileEntityMachineHydrotreater;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.EnumChatFormatting;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
public class MachineHydrotreater extends BlockDummyable implements IPersistentInfoProvider {
|
|
|
|
public MachineHydrotreater(Material mat) {
|
|
super(mat);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int meta) {
|
|
if(meta >= 12) return new TileEntityMachineHydrotreater();
|
|
if(meta >= 6) return new TileEntityProxyCombo().fluid().power();
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ) {
|
|
return standardOpenBehavior(world, x, y, z, player, side);
|
|
}
|
|
|
|
@Override public int[] getDimensions() { return new int[] {6, 0, 1, 1, 1, 1}; }
|
|
@Override public int getOffset() { return 1; }
|
|
|
|
@Override
|
|
protected void fillSpace(World world, int x, int y, int z, ForgeDirection dir, int o) {
|
|
super.fillSpace(world, x, y, z, dir, o);
|
|
|
|
this.makeExtra(world, x - dir.offsetX + 1, y, z - dir.offsetZ + 1);
|
|
this.makeExtra(world, x - dir.offsetX + 1, y, z - dir.offsetZ - 1);
|
|
this.makeExtra(world, x - dir.offsetX - 1, y, z - dir.offsetZ + 1);
|
|
this.makeExtra(world, x - dir.offsetX - 1, y, z - dir.offsetZ - 1);
|
|
}
|
|
|
|
@Override
|
|
public void addInformation(ItemStack stack, NBTTagCompound persistentTag, EntityPlayer player, List list, boolean ext) {
|
|
|
|
for(int i = 0; i < 4; i++) {
|
|
FluidTank tank = new FluidTank(Fluids.NONE, 0);
|
|
tank.readFromNBT(persistentTag, "" + i);
|
|
list.add(EnumChatFormatting.YELLOW + "" + tank.getFill() + "/" + tank.getMaxFill() + "mB " + tank.getTankType().getLocalizedName());
|
|
}
|
|
}
|
|
}
|