Mekanism-tilera-Edition/src/main/java/mekanism/common/tile/TileEntityDynamicTank.java

508 lines
12 KiB
Java
Raw Normal View History

package mekanism.common.tile;
import io.netty.buffer.ByteBuf;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import mekanism.api.Coord4D;
import mekanism.common.Mekanism;
import mekanism.common.network.PacketTileEntity.TileEntityMessage;
import mekanism.common.tank.SynchronizedTankData;
import mekanism.common.tank.SynchronizedTankData.ValveData;
import mekanism.common.tank.TankUpdateProtocol;
import mekanism.common.util.MekanismUtils;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.AxisAlignedBB;
import net.minecraftforge.common.util.ForgeDirection;
2013-07-20 18:10:14 +02:00
import net.minecraftforge.fluids.FluidContainerRegistry;
import net.minecraftforge.fluids.FluidStack;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class TileEntityDynamicTank extends TileEntityContainerBlock
{
/** Unique inventory ID for the dynamic tank, serves as a way to retrieve cached inventories. */
public int inventoryID = -1;
/** The tank data for this structure. */
public SynchronizedTankData structure;
/** Whether or not to send this tank's structure in the next update packet. */
2013-05-02 03:00:48 +02:00
public boolean sendStructure;
/** This tank's previous "has structure" state. */
public boolean prevStructure;
/** Whether or not this tank has it's structure, for the client side mechanics. */
public boolean clientHasStructure;
2013-07-20 18:10:14 +02:00
/** The cached fluid this tank segment contains. */
public FluidStack cachedFluid;
2013-07-20 18:10:14 +02:00
/** A client-sided and server-sided map of valves on this tank's structure, used on the client for rendering fluids. */
public Map<ValveData, Integer> valveViewing = new HashMap<ValveData, Integer>();
/** The capacity this tank has on the client-side. */
public int clientCapacity;
/** Whether or not this tank segment is rendering the structure. */
public boolean isRendering;
2013-12-13 04:31:27 +01:00
public float prevScale;
public TileEntityDynamicTank()
{
this("DynamicTank");
}
public TileEntityDynamicTank(String name)
{
super(name);
inventory = new ItemStack[2];
}
public void update()
{
2013-08-04 09:33:40 +02:00
if(!worldObj.isRemote && (structure == null || !structure.didTick))
{
new TankUpdateProtocol(this).updateTanks();
if(structure != null)
{
structure.didTick = true;
}
}
}
@Override
public void onUpdate()
{
if(worldObj.isRemote)
{
if(structure == null)
{
structure = new SynchronizedTankData();
}
if(structure != null && clientHasStructure && isRendering)
{
for(ValveData data : valveViewing.keySet())
{
if(valveViewing.get(data) > 0)
{
valveViewing.put(data, valveViewing.get(data)-1);
}
}
if(!prevStructure)
{
Mekanism.proxy.doTankAnimation(this);
}
float targetScale = (float)(structure.fluidStored != null ? structure.fluidStored.amount : 0)/clientCapacity;
if(Math.abs(prevScale - targetScale) > 0.01)
{
prevScale = (9*prevScale + targetScale)/10;
}
}
prevStructure = clientHasStructure;
if(!clientHasStructure || !isRendering)
{
for(ValveData data : valveViewing.keySet())
{
TileEntityDynamicTank tileEntity = (TileEntityDynamicTank)data.location.getTileEntity(worldObj);
if(tileEntity != null)
{
tileEntity.clientHasStructure = false;
}
}
valveViewing.clear();
}
}
if(playersUsing.size() > 0 && ((worldObj.isRemote && !clientHasStructure) || (!worldObj.isRemote && structure == null)))
{
for(EntityPlayer player : playersUsing)
{
player.closeScreen();
}
}
if(!worldObj.isRemote)
{
if(structure == null)
{
isRendering = false;
}
if(inventoryID != -1 && structure == null)
{
2013-07-20 18:10:14 +02:00
MekanismUtils.updateCache(inventoryID, cachedFluid, inventory, this);
}
2013-11-14 22:31:02 +01:00
if(structure == null && ticker == 5)
{
update();
}
if(prevStructure != (structure != null))
{
2013-05-02 03:00:48 +02:00
if(structure != null && !structure.hasRenderer)
{
structure.hasRenderer = true;
isRendering = true;
sendStructure = true;
}
2013-12-19 22:55:41 +01:00
for(ForgeDirection side : ForgeDirection.VALID_DIRECTIONS)
{
Coord4D obj = Coord4D.get(this).getFromSide(side);
2013-12-19 22:55:41 +01:00
if(!(obj.getTileEntity(worldObj) instanceof TileEntityDynamicTank))
{
2014-05-07 22:37:58 +02:00
worldObj.notifyBlockOfNeighborChange(obj.xCoord, obj.yCoord, obj.zCoord, getBlockType());
2013-12-19 22:55:41 +01:00
}
}
Mekanism.packetHandler.sendToAll(new TileEntityMessage(Coord4D.get(this), getNetworkedData(new ArrayList())));
}
prevStructure = structure != null;
if(structure != null)
{
structure.didTick = false;
if(inventoryID != -1)
{
2013-07-20 18:10:14 +02:00
MekanismUtils.updateCache(inventoryID, structure.fluidStored, structure.inventory, this);
2013-07-20 18:10:14 +02:00
cachedFluid = structure.fluidStored;
inventory = structure.inventory;
}
manageInventory();
}
}
}
public void manageInventory()
{
2013-11-27 04:44:14 +01:00
int max = structure.volume*TankUpdateProtocol.FLUID_PER_TANK;
if(structure.inventory[0] != null)
{
2013-07-20 18:10:14 +02:00
if(FluidContainerRegistry.isEmptyContainer(structure.inventory[0]))
{
2013-07-20 18:10:14 +02:00
if(structure.fluidStored != null && structure.fluidStored.amount >= FluidContainerRegistry.BUCKET_VOLUME)
{
2013-07-20 18:10:14 +02:00
ItemStack filled = FluidContainerRegistry.fillFluidContainer(structure.fluidStored, structure.inventory[0]);
if(filled != null)
{
if(structure.inventory[1] == null || (structure.inventory[1].isItemEqual(filled) && structure.inventory[1].stackSize+1 <= filled.getMaxStackSize()))
{
structure.inventory[0].stackSize--;
if(structure.inventory[0].stackSize <= 0)
{
structure.inventory[0] = null;
}
if(structure.inventory[1] == null)
{
structure.inventory[1] = filled;
}
else {
structure.inventory[1].stackSize++;
}
markDirty();
2013-07-20 18:10:14 +02:00
structure.fluidStored.amount -= FluidContainerRegistry.getFluidForFilledItem(filled).amount;
2013-07-20 18:10:14 +02:00
if(structure.fluidStored.amount == 0)
{
2013-07-20 18:10:14 +02:00
structure.fluidStored = null;
}
Mekanism.packetHandler.sendToAll(new TileEntityMessage(Coord4D.get(this), getNetworkedData(new ArrayList())));
}
}
}
}
2013-07-20 18:10:14 +02:00
else if(FluidContainerRegistry.isFilledContainer(structure.inventory[0]))
{
2013-07-20 18:10:14 +02:00
FluidStack itemFluid = FluidContainerRegistry.getFluidForFilledItem(structure.inventory[0]);
2013-07-20 18:10:14 +02:00
if((structure.fluidStored == null && itemFluid.amount <= max) || structure.fluidStored.amount+itemFluid.amount <= max)
{
2013-07-20 18:10:14 +02:00
if(structure.fluidStored != null && !structure.fluidStored.isFluidEqual(itemFluid))
{
return;
}
2014-05-07 22:37:58 +02:00
ItemStack containerItem = structure.inventory[0].getItem().getContainerItem(structure.inventory[0]);
boolean filled = false;
if(containerItem != null)
{
if(structure.inventory[1] == null || (structure.inventory[1].isItemEqual(containerItem) && structure.inventory[1].stackSize+1 <= containerItem.getMaxStackSize()))
{
structure.inventory[0] = null;
if(structure.inventory[1] == null)
{
structure.inventory[1] = containerItem;
}
else {
structure.inventory[1].stackSize++;
}
markDirty();
filled = true;
}
}
else {
structure.inventory[0].stackSize--;
if(structure.inventory[0].stackSize == 0)
{
structure.inventory[0] = null;
}
filled = true;
}
if(filled)
{
2013-07-20 18:10:14 +02:00
if(structure.fluidStored == null)
{
2013-07-20 18:10:14 +02:00
structure.fluidStored = itemFluid.copy();
}
else {
2013-07-20 18:10:14 +02:00
structure.fluidStored.amount += itemFluid.amount;
}
}
Mekanism.packetHandler.sendToAll(new TileEntityMessage(Coord4D.get(this), getNetworkedData(new ArrayList())));
}
}
}
}
@Override
public ArrayList getNetworkedData(ArrayList data)
{
super.getNetworkedData(data);
data.add(isRendering);
data.add(structure != null);
2013-11-27 04:44:14 +01:00
data.add(structure != null ? structure.volume*TankUpdateProtocol.FLUID_PER_TANK : 0);
2013-07-20 18:10:14 +02:00
if(structure != null && structure.fluidStored != null)
{
data.add(1);
2013-07-20 18:10:14 +02:00
data.add(structure.fluidStored.fluidID);
data.add(structure.fluidStored.amount);
}
else {
data.add(0);
}
2013-05-02 03:00:48 +02:00
if(structure != null && isRendering)
{
2013-05-02 03:00:48 +02:00
if(sendStructure)
{
sendStructure = false;
2013-05-02 03:00:48 +02:00
data.add(true);
2013-05-02 03:00:48 +02:00
data.add(structure.volHeight);
data.add(structure.volWidth);
data.add(structure.volLength);
structure.renderLocation.write(data);
2013-05-02 03:00:48 +02:00
}
else {
data.add(false);
}
data.add(structure.valves.size());
for(ValveData valveData : structure.valves)
{
valveData.location.write(data);
data.add(valveData.side.ordinal());
2013-07-20 18:10:14 +02:00
data.add(valveData.serverFluid);
}
}
return data;
}
@Override
public void handlePacketData(ByteBuf dataStream)
{
super.handlePacketData(dataStream);
if(structure == null)
{
structure = new SynchronizedTankData();
}
isRendering = dataStream.readBoolean();
clientHasStructure = dataStream.readBoolean();
clientCapacity = dataStream.readInt();
if(dataStream.readInt() == 1)
{
2013-07-20 18:10:14 +02:00
structure.fluidStored = new FluidStack(dataStream.readInt(), dataStream.readInt());
}
else {
2013-07-20 18:10:14 +02:00
structure.fluidStored = null;
}
2013-05-02 03:00:48 +02:00
if(clientHasStructure && isRendering)
{
2013-05-02 03:00:48 +02:00
if(dataStream.readBoolean())
{
structure.volHeight = dataStream.readInt();
structure.volWidth = dataStream.readInt();
structure.volLength = dataStream.readInt();
structure.renderLocation = Coord4D.read(dataStream);
2013-05-02 03:00:48 +02:00
}
int size = dataStream.readInt();
for(int i = 0; i < size; i++)
{
ValveData data = new ValveData();
data.location = Coord4D.read(dataStream);
data.side = ForgeDirection.getOrientation(dataStream.readInt());
int viewingTicks = 0;
if(dataStream.readBoolean())
{
viewingTicks = 30;
}
if(viewingTicks == 0)
{
if(valveViewing.containsKey(data) && valveViewing.get(data) > 0)
{
continue;
}
}
valveViewing.put(data, viewingTicks);
TileEntityDynamicTank tileEntity = (TileEntityDynamicTank)data.location.getTileEntity(worldObj);
if(tileEntity != null)
{
tileEntity.clientHasStructure = true;
}
}
}
}
public void sendPacketToRenderer()
{
if(structure != null)
{
for(Coord4D obj : structure.locations)
{
TileEntityDynamicTank tileEntity = (TileEntityDynamicTank)obj.getTileEntity(worldObj);
if(tileEntity != null && tileEntity.isRendering)
{
Mekanism.packetHandler.sendToAll(new TileEntityMessage(Coord4D.get(tileEntity), tileEntity.getNetworkedData(new ArrayList())));
}
}
}
}
2013-07-20 18:10:14 +02:00
public int getScaledFluidLevel(int i)
{
2013-07-20 18:10:14 +02:00
if(clientCapacity == 0 || structure.fluidStored == null)
{
return 0;
}
2013-07-20 18:10:14 +02:00
return structure.fluidStored.amount*i / clientCapacity;
}
@Override
public ItemStack getStackInSlot(int slotID)
{
return structure != null ? structure.inventory[slotID] : null;
}
@Override
public void setInventorySlotContents(int slotID, ItemStack itemstack)
{
if(structure != null)
{
structure.inventory[slotID] = itemstack;
if(itemstack != null && itemstack.stackSize > getInventoryStackLimit())
{
itemstack.stackSize = getInventoryStackLimit();
}
}
}
@Override
public void readFromNBT(NBTTagCompound nbtTags)
{
super.readFromNBT(nbtTags);
if(structure == null)
{
inventoryID = nbtTags.getInteger("inventoryID");
if(inventoryID != -1)
{
if(nbtTags.hasKey("cachedFluid"))
{
cachedFluid = FluidStack.loadFluidStackFromNBT(nbtTags.getCompoundTag("cachedFluid"));
}
}
}
}
@Override
public void writeToNBT(NBTTagCompound nbtTags)
{
super.writeToNBT(nbtTags);
nbtTags.setInteger("inventoryID", inventoryID);
if(cachedFluid != null)
{
nbtTags.setTag("cachedFluid", cachedFluid.writeToNBT(new NBTTagCompound()));
}
}
@Override
@SideOnly(Side.CLIENT)
public AxisAlignedBB getRenderBoundingBox()
{
return INFINITE_EXTENT_AABB;
}
}