mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
85 lines
2.2 KiB
Java
85 lines
2.2 KiB
Java
package com.hbm.tileentity.machine.rbmk;
|
|
|
|
import api.hbm.fluid.IFluidStandardReceiver;
|
|
import com.hbm.blocks.machine.rbmk.RBMKBase;
|
|
import com.hbm.inventory.fluid.Fluids;
|
|
import com.hbm.inventory.fluid.tank.FluidTank;
|
|
import com.hbm.tileentity.IBufPacketReceiver;
|
|
import com.hbm.tileentity.TileEntityLoadedBase;
|
|
|
|
import io.netty.buffer.ByteBuf;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
public class TileEntityRBMKInlet extends TileEntityLoadedBase implements IFluidStandardReceiver, IBufPacketReceiver {
|
|
|
|
public FluidTank water;
|
|
|
|
public TileEntityRBMKInlet() {
|
|
water = new FluidTank(Fluids.WATER, 32000);
|
|
}
|
|
|
|
@Override
|
|
public void updateEntity() {
|
|
|
|
if(!worldObj.isRemote) {
|
|
|
|
this.subscribeToAllAround(water.getTankType(), this);
|
|
|
|
if(RBMKDials.getReasimBoilers(worldObj)) for(int i = 2; i < 6; i++) {
|
|
ForgeDirection dir = ForgeDirection.getOrientation(i);
|
|
Block b = worldObj.getBlock(xCoord + dir.offsetX, yCoord, zCoord + dir.offsetZ);
|
|
|
|
if(b instanceof RBMKBase) {
|
|
int[] pos = ((RBMKBase)b).findCore(worldObj, xCoord + dir.offsetX, yCoord, zCoord + dir.offsetZ);
|
|
|
|
if(pos != null) {
|
|
TileEntity te = worldObj.getTileEntity(pos[0], pos[1], pos[2]);
|
|
|
|
if(te instanceof TileEntityRBMKBase) {
|
|
TileEntityRBMKBase rbmk = (TileEntityRBMKBase) te;
|
|
|
|
int prov = Math.min(rbmk.maxWater - rbmk.reasimWater, water.getFill());
|
|
rbmk.reasimWater += prov;
|
|
water.setFill(water.getFill() - prov);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void readFromNBT(NBTTagCompound nbt) {
|
|
super.readFromNBT(nbt);
|
|
this.water.readFromNBT(nbt, "tank");
|
|
}
|
|
|
|
@Override
|
|
public void writeToNBT(NBTTagCompound nbt) {
|
|
super.writeToNBT(nbt);
|
|
this.water.writeToNBT(nbt, "tank");
|
|
}
|
|
|
|
public void serialize(ByteBuf buf) {
|
|
this.water.serialize(buf);
|
|
}
|
|
|
|
public void deserialize(ByteBuf buf) {
|
|
this.water.deserialize(buf);
|
|
}
|
|
|
|
@Override
|
|
public FluidTank[] getAllTanks() {
|
|
return new FluidTank[] {water};
|
|
}
|
|
|
|
@Override
|
|
public FluidTank[] getReceivingTanks() {
|
|
return new FluidTank[] {water};
|
|
}
|
|
|
|
}
|