mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
236 lines
5.2 KiB
Java
236 lines
5.2 KiB
Java
package com.hbm.tileentity.machine;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
import com.hbm.interfaces.IFluidAcceptor;
|
|
import com.hbm.interfaces.IFluidSource;
|
|
import com.hbm.inventory.FluidStack;
|
|
import com.hbm.inventory.FluidTank;
|
|
import com.hbm.inventory.fluid.FluidType;
|
|
import com.hbm.inventory.fluid.Fluids;
|
|
import com.hbm.inventory.recipes.LiquefactionRecipes;
|
|
import com.hbm.lib.Library;
|
|
import com.hbm.tileentity.TileEntityMachineBase;
|
|
|
|
import api.hbm.energy.IEnergyUser;
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.util.AxisAlignedBB;
|
|
|
|
public class TileEntityMachineLiquefactor extends TileEntityMachineBase implements IEnergyUser, IFluidSource {
|
|
|
|
public long power;
|
|
public static final long maxPower = 100000;
|
|
public static final int usage = 500;
|
|
public int progress;
|
|
public static final int processTime = 200;
|
|
|
|
public FluidTank tank;
|
|
|
|
public TileEntityMachineLiquefactor() {
|
|
super(4);
|
|
tank = new FluidTank(Fluids.NONE, 24000, 0);
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return "container.machineLiquefactor";
|
|
}
|
|
|
|
@Override
|
|
public void updateEntity() {
|
|
|
|
if(!worldObj.isRemote) {
|
|
this.power = Library.chargeTEFromItems(slots, 1, power, maxPower);
|
|
tank.updateTank(this);
|
|
|
|
this.trySubscribe(worldObj, xCoord + 2, yCoord + 1, zCoord, Library.POS_X);
|
|
this.trySubscribe(worldObj, xCoord - 2, yCoord + 1, zCoord, Library.NEG_X);
|
|
this.trySubscribe(worldObj, xCoord, yCoord + 1, zCoord + 2, Library.POS_Z);
|
|
this.trySubscribe(worldObj, xCoord, yCoord + 1, zCoord - 2, Library.NEG_Z);
|
|
|
|
if(this.canProcess())
|
|
this.process();
|
|
else
|
|
this.progress = 0;
|
|
|
|
if(worldObj.getTotalWorldTime() % 10 == 0) {
|
|
this.fillFluidInit(tank.getTankType());
|
|
}
|
|
|
|
NBTTagCompound data = new NBTTagCompound();
|
|
data.setLong("power", this.power);
|
|
data.setInteger("progress", this.progress);
|
|
this.networkPack(data, 50);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean isItemValidForSlot(int i, ItemStack itemStack) {
|
|
return i == 0 && LiquefactionRecipes.getOutput(itemStack) != null;
|
|
}
|
|
|
|
@Override
|
|
public int[] getAccessibleSlotsFromSide(int side) {
|
|
return new int[] { 0 };
|
|
}
|
|
|
|
public boolean canProcess() {
|
|
|
|
if(this.power < usage)
|
|
return false;
|
|
|
|
if(slots[0] == null)
|
|
return false;
|
|
|
|
FluidStack out = LiquefactionRecipes.getOutput(slots[0]);
|
|
|
|
if(out.type != tank.getTankType() && tank.getFill() > 0)
|
|
return false;
|
|
|
|
if(out.fill + tank.getFill() > tank.getMaxFill())
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
public void process() {
|
|
|
|
this.power -= usage;
|
|
|
|
progress++;
|
|
|
|
if(progress >= processTime) {
|
|
|
|
FluidStack out = LiquefactionRecipes.getOutput(slots[0]);
|
|
tank.setTankType(out.type);
|
|
tank.setFill(tank.getFill() + out.fill);
|
|
this.decrStackSize(0, 1);
|
|
|
|
progress = 0;
|
|
|
|
this.markDirty();
|
|
}
|
|
}
|
|
|
|
public void networkUnpack(NBTTagCompound nbt) {
|
|
this.power = nbt.getLong("power");
|
|
this.progress = nbt.getInteger("progress");
|
|
}
|
|
|
|
@Override
|
|
public void readFromNBT(NBTTagCompound nbt) {
|
|
super.readFromNBT(nbt);
|
|
tank.readFromNBT(nbt, "tank");
|
|
}
|
|
|
|
@Override
|
|
public void writeToNBT(NBTTagCompound nbt) {
|
|
super.writeToNBT(nbt);
|
|
tank.writeToNBT(nbt, "tank");
|
|
}
|
|
|
|
@Override
|
|
public void setPower(long power) {
|
|
this.power = power;
|
|
}
|
|
|
|
@Override
|
|
public long getPower() {
|
|
return power;
|
|
}
|
|
|
|
@Override
|
|
public long getMaxPower() {
|
|
return maxPower;
|
|
}
|
|
|
|
@Override
|
|
public void setFillstate(int fill, int index) {
|
|
tank.setFill(fill);
|
|
}
|
|
|
|
@Override
|
|
public void setFluidFill(int fill, FluidType type) {
|
|
if(type == tank.getTankType())
|
|
tank.setFill(fill);
|
|
}
|
|
|
|
@Override
|
|
public void setType(FluidType type, int index) {
|
|
tank.setTankType(type);
|
|
}
|
|
|
|
@Override
|
|
public List<FluidTank> getTanks() {
|
|
List<FluidTank> tanks = new ArrayList();
|
|
tanks.add(tank);
|
|
return tanks;
|
|
}
|
|
|
|
@Override
|
|
public int getFluidFill(FluidType type) {
|
|
return type == tank.getTankType() ? tank.getFill() : 0;
|
|
}
|
|
|
|
@Override
|
|
public void fillFluidInit(FluidType type) {
|
|
fillFluid(xCoord, yCoord - 1, zCoord, getTact(), type);
|
|
fillFluid(xCoord, yCoord + 4, zCoord, getTact(), type);
|
|
fillFluid(xCoord + 2, yCoord + 1, zCoord, getTact(), type);
|
|
fillFluid(xCoord - 2, yCoord + 1, zCoord, getTact(), type);
|
|
fillFluid(xCoord, yCoord + 1, zCoord + 2, getTact(), type);
|
|
fillFluid(xCoord, yCoord + 1, zCoord - 2, getTact(), type);
|
|
}
|
|
|
|
@Override
|
|
public void fillFluid(int x, int y, int z, boolean newTact, FluidType type) {
|
|
Library.transmitFluid(x, y, z, newTact, this, worldObj, type);
|
|
}
|
|
|
|
@Override
|
|
public boolean getTact() {
|
|
return worldObj.getTotalWorldTime() % 20 < 10;
|
|
}
|
|
|
|
private List<IFluidAcceptor> consumers = new ArrayList();
|
|
|
|
@Override
|
|
public List<IFluidAcceptor> getFluidList(FluidType type) {
|
|
return consumers;
|
|
}
|
|
|
|
@Override
|
|
public void clearFluidList(FluidType type) {
|
|
consumers.clear();
|
|
}
|
|
|
|
AxisAlignedBB bb = null;
|
|
|
|
@Override
|
|
public AxisAlignedBB getRenderBoundingBox() {
|
|
|
|
if(bb == null) {
|
|
bb = AxisAlignedBB.getBoundingBox(
|
|
xCoord - 1,
|
|
yCoord,
|
|
zCoord - 1,
|
|
xCoord + 2,
|
|
yCoord + 4,
|
|
zCoord + 2
|
|
);
|
|
}
|
|
|
|
return bb;
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public double getMaxRenderDistanceSquared() {
|
|
return 65536.0D;
|
|
}
|
|
}
|