| package mekanism.common.tile; |
| |
| import io.netty.buffer.ByteBuf; |
| |
| import java.util.ArrayList; |
| import java.util.List; |
| |
| import mekanism.api.Coord4D; |
| import mekanism.api.MekanismConfig.usage; |
| import mekanism.api.Range4D; |
| import mekanism.api.gas.Gas; |
| import mekanism.api.gas.GasRegistry; |
| import mekanism.api.gas.GasStack; |
| import mekanism.api.gas.GasTank; |
| import mekanism.api.gas.GasTransmission; |
| import mekanism.api.gas.IGasHandler; |
| import mekanism.api.gas.IGasItem; |
| import mekanism.api.gas.ITubeConnection; |
| import mekanism.common.Mekanism; |
| import mekanism.common.Upgrade; |
| import mekanism.common.Upgrade.IUpgradeInfoHandler; |
| import mekanism.common.base.ITankManager; |
| import mekanism.common.base.IRedstoneControl; |
| import mekanism.common.base.ISustainedData; |
| import mekanism.common.base.IUpgradeTile; |
| import mekanism.common.block.BlockMachine.MachineType; |
| import mekanism.common.network.PacketTileEntity.TileEntityMessage; |
| import mekanism.common.recipe.RecipeHandler; |
| import mekanism.common.recipe.inputs.GasInput; |
| import mekanism.common.recipe.machines.WasherRecipe; |
| import mekanism.common.tile.component.TileComponentUpgrade; |
| import mekanism.common.util.ChargeUtils; |
| import mekanism.common.util.FluidContainerUtils; |
| import mekanism.common.util.InventoryUtils; |
| import mekanism.common.util.MekanismUtils; |
| import mekanism.common.util.PipeUtils; |
| import net.minecraft.entity.player.EntityPlayer; |
| import net.minecraft.entity.player.EntityPlayerMP; |
| import net.minecraft.item.ItemStack; |
| import net.minecraft.nbt.NBTTagCompound; |
| import net.minecraft.tileentity.TileEntity; |
| import net.minecraftforge.common.util.ForgeDirection; |
| import net.minecraftforge.fluids.Fluid; |
| import net.minecraftforge.fluids.FluidContainerRegistry; |
| import net.minecraftforge.fluids.FluidRegistry; |
| import net.minecraftforge.fluids.FluidStack; |
| import net.minecraftforge.fluids.FluidTank; |
| import net.minecraftforge.fluids.FluidTankInfo; |
| import net.minecraftforge.fluids.IFluidContainerItem; |
| import net.minecraftforge.fluids.IFluidHandler; |
| |
| public class TileEntityChemicalWasher extends TileEntityNoisyElectricBlock implements IGasHandler, ITubeConnection, IRedstoneControl, IFluidHandler, IUpgradeTile, ISustainedData, IUpgradeInfoHandler, ITankManager |
| { |
| public FluidTank fluidTank = new FluidTank(MAX_FLUID); |
| public GasTank inputTank = new GasTank(MAX_GAS); |
| public GasTank outputTank = new GasTank(MAX_GAS); |
| |
| public static final int MAX_GAS = 10000; |
| public static final int MAX_FLUID = 10000; |
| |
| public static int WATER_USAGE = 5; |
| |
| public int updateDelay; |
| |
| public int gasOutput = 256; |
| |
| public boolean isActive; |
| |
| public boolean clientActive; |
| |
| public double prevEnergy; |
| |
| public final double BASE_ENERGY_USAGE = usage.chemicalWasherUsage; |
| |
| public double energyPerTick = BASE_ENERGY_USAGE; |
| |
| public WasherRecipe cachedRecipe; |
| |
| public TileComponentUpgrade upgradeComponent = new TileComponentUpgrade(this, 4); |
| |
| /** This machine's current RedstoneControl type. */ |
| public RedstoneControl controlType = RedstoneControl.DISABLED; |
| |
| public TileEntityChemicalWasher() |
| { |
| super("washer", "ChemicalWasher", MachineType.CHEMICAL_WASHER.baseEnergy); |
| inventory = new ItemStack[5]; |
| } |
| |
| @Override |
| public void onUpdate() |
| { |
| super.onUpdate(); |
| |
| if(worldObj.isRemote && updateDelay > 0) |
| { |
| updateDelay--; |
| |
| if(updateDelay == 0 && clientActive != isActive) |
| { |
| isActive = clientActive; |
| MekanismUtils.updateBlock(worldObj, xCoord, yCoord, zCoord); |
| } |
| } |
| |
| if(!worldObj.isRemote) |
| { |
| if(updateDelay > 0) |
| { |
| updateDelay--; |
| |
| if(updateDelay == 0 && clientActive != isActive) |
| { |
| Mekanism.packetHandler.sendToReceivers(new TileEntityMessage(Coord4D.get(this), getNetworkedData(new ArrayList())), new Range4D(Coord4D.get(this))); |
| } |
| } |
| |
| ChargeUtils.discharge(3, this); |
| manageBuckets(); |
| |
| if(inventory[2] != null && outputTank.getGas() != null) |
| { |
| outputTank.draw(GasTransmission.addGas(inventory[2], outputTank.getGas()), true); |
| } |
| |
| WasherRecipe recipe = getRecipe(); |
| |
| if(canOperate(recipe) && getEnergy() >= energyPerTick && MekanismUtils.canFunction(this)) |
| { |
| setActive(true); |
| |
| int operations = operate(recipe); |
| |
| setEnergy(getEnergy() - energyPerTick*operations); |
| } |
| else { |
| if(prevEnergy >= getEnergy()) |
| { |
| setActive(false); |
| } |
| } |
| |
| if(outputTank.getGas() != null) |
| { |
| GasStack toSend = new GasStack(outputTank.getGas().getGas(), Math.min(outputTank.getStored(), gasOutput)); |
| |
| TileEntity tileEntity = Coord4D.get(this).getFromSide(MekanismUtils.getRight(facing)).getTileEntity(worldObj); |
| |
| if(tileEntity instanceof IGasHandler) |
| { |
| if(((IGasHandler)tileEntity).canReceiveGas(MekanismUtils.getRight(facing).getOpposite(), outputTank.getGas().getGas())) |
| { |
| outputTank.draw(((IGasHandler)tileEntity).receiveGas(MekanismUtils.getRight(facing).getOpposite(), toSend, true), true); |
| } |
| } |
| } |
| |
| prevEnergy = getEnergy(); |
| } |
| } |
| |
| public WasherRecipe getRecipe() |
| { |
| GasInput input = getInput(); |
| |
| if(cachedRecipe == null || !input.testEquality(cachedRecipe.getInput())) |
| { |
| cachedRecipe = RecipeHandler.getChemicalWasherRecipe(getInput()); |
| } |
| |
| return cachedRecipe; |
| } |
| |
| public GasInput getInput() |
| { |
| return new GasInput(inputTank.getGas()); |
| } |
| |
| public boolean canOperate(WasherRecipe recipe) |
| { |
| return recipe != null && recipe.canOperate(inputTank, fluidTank, outputTank); |
| } |
| |
| public int operate(WasherRecipe recipe) |
| { |
| int operations = getUpgradedUsage(); |
| |
| recipe.operate(inputTank, fluidTank, outputTank, operations); |
| |
| return operations; |
| } |
| |
| private void manageBuckets() |
| { |
| if(inventory[0] != null) |
| { |
| if(inventory[0].getItem() instanceof IFluidContainerItem) |
| { |
| fluidTank.fill(FluidContainerUtils.extractFluid(fluidTank, inventory[0], FluidRegistry.WATER), true); |
| |
| if(((IFluidContainerItem)inventory[0].getItem()).getFluid(inventory[0]) == null || fluidTank.getFluidAmount() == fluidTank.getCapacity()) |
| { |
| if(inventory[1] == null) |
| { |
| inventory[1] = inventory[0].copy(); |
| inventory[0] = null; |
| |
| markDirty(); |
| } |
| } |
| } |
| else if(FluidContainerRegistry.isFilledContainer(inventory[0])) |
| { |
| FluidStack itemFluid = FluidContainerRegistry.getFluidForFilledItem(inventory[0]); |
| |
| if((fluidTank.getFluid() == null && itemFluid.amount <= MAX_FLUID) || fluidTank.getFluid().amount+itemFluid.amount <= MAX_FLUID) |
| { |
| if(itemFluid.getFluid() != FluidRegistry.WATER || (fluidTank.getFluid() != null && !fluidTank.getFluid().isFluidEqual(itemFluid))) |
| { |
| return; |
| } |
| |
| ItemStack containerItem = inventory[0].getItem().getContainerItem(inventory[0]); |
| |
| boolean filled = false; |
| |
| if(containerItem != null) |
| { |
| if(inventory[1] == null || (inventory[1].isItemEqual(containerItem) && inventory[1].stackSize+1 <= containerItem.getMaxStackSize())) |
| { |
| inventory[0] = null; |
| |
| if(inventory[1] == null) |
| { |
| inventory[1] = containerItem; |
| } |
| else { |
| inventory[1].stackSize++; |
| } |
| |
| filled = true; |
| } |
| } |
| else { |
| inventory[0].stackSize--; |
| |
| if(inventory[0].stackSize == 0) |
| { |
| inventory[0] = null; |
| } |
| |
| filled = true; |
| } |
| |
| if(filled) |
| { |
| fluidTank.fill(itemFluid, true); |
| markDirty(); |
| } |
| } |
| } |
| } |
| } |
| |
| public int getUpgradedUsage() |
| { |
| int possibleProcess = (int)Math.pow(2, upgradeComponent.getUpgrades(Upgrade.SPEED)); |
| possibleProcess = Math.min(Math.min(inputTank.getStored(), outputTank.getNeeded()), possibleProcess); |
| possibleProcess = Math.min((int)(getEnergy()/energyPerTick), possibleProcess); |
| |
| return Math.min(fluidTank.getFluidAmount()/WATER_USAGE, possibleProcess); |
| } |
| |
| @Override |
| public void handlePacketData(ByteBuf dataStream) |
| { |
| if(!worldObj.isRemote) |
| { |
| int type = dataStream.readInt(); |
| |
| if(type == 0) |
| { |
| inputTank.setGas(null); |
| } |
| |
| for(EntityPlayer player : playersUsing) |
| { |
| Mekanism.packetHandler.sendTo(new TileEntityMessage(Coord4D.get(this), getNetworkedData(new ArrayList())), (EntityPlayerMP)player); |
| } |
| |
| return; |
| } |
| |
| super.handlePacketData(dataStream); |
| |
| isActive = dataStream.readBoolean(); |
| controlType = RedstoneControl.values()[dataStream.readInt()]; |
| |
| if(dataStream.readBoolean()) |
| { |
| fluidTank.setFluid(new FluidStack(FluidRegistry.getFluid(dataStream.readInt()), dataStream.readInt())); |
| } |
| else { |
| fluidTank.setFluid(null); |
| } |
| |
| if(dataStream.readBoolean()) |
| { |
| inputTank.setGas(new GasStack(GasRegistry.getGas(dataStream.readInt()), dataStream.readInt())); |
| } |
| else { |
| inputTank.setGas(null); |
| } |
| |
| if(dataStream.readBoolean()) |
| { |
| outputTank.setGas(new GasStack(GasRegistry.getGas(dataStream.readInt()), dataStream.readInt())); |
| } |
| else { |
| outputTank.setGas(null); |
| } |
| |
| MekanismUtils.updateBlock(worldObj, xCoord, yCoord, zCoord); |
| } |
| |
| @Override |
| public ArrayList getNetworkedData(ArrayList data) |
| { |
| super.getNetworkedData(data); |
| |
| data.add(isActive); |
| data.add(controlType.ordinal()); |
| |
| if(fluidTank.getFluid() != null) |
| { |
| data.add(true); |
| data.add(fluidTank.getFluid().getFluid().getID()); |
| data.add(fluidTank.getFluidAmount()); |
| } |
| else { |
| data.add(false); |
| } |
| |
| if(inputTank.getGas() != null) |
| { |
| data.add(true); |
| data.add(inputTank.getGas().getGas().getID()); |
| data.add(inputTank.getStored()); |
| } |
| else { |
| data.add(false); |
| } |
| |
| if(outputTank.getGas() != null) |
| { |
| data.add(true); |
| data.add(outputTank.getGas().getGas().getID()); |
| data.add(outputTank.getStored()); |
| } |
| else { |
| data.add(false); |
| } |
| |
| return data; |
| } |
| |
| @Override |
| public void readFromNBT(NBTTagCompound nbtTags) |
| { |
| super.readFromNBT(nbtTags); |
| |
| isActive = nbtTags.getBoolean("isActive"); |
| controlType = RedstoneControl.values()[nbtTags.getInteger("controlType")]; |
| |
| fluidTank.readFromNBT(nbtTags.getCompoundTag("leftTank")); |
| inputTank.read(nbtTags.getCompoundTag("rightTank")); |
| outputTank.read(nbtTags.getCompoundTag("centerTank")); |
| } |
| |
| @Override |
| public void writeToNBT(NBTTagCompound nbtTags) |
| { |
| super.writeToNBT(nbtTags); |
| |
| nbtTags.setBoolean("isActive", isActive); |
| nbtTags.setInteger("controlType", controlType.ordinal()); |
| |
| nbtTags.setTag("leftTank", fluidTank.writeToNBT(new NBTTagCompound())); |
| nbtTags.setTag("rightTank", inputTank.write(new NBTTagCompound())); |
| nbtTags.setTag("centerTank", outputTank.write(new NBTTagCompound())); |
| } |
| |
| @Override |
| public boolean canSetFacing(int i) |
| { |
| return i != 0 && i != 1; |
| } |
| |
| public GasTank getTank(ForgeDirection side) |
| { |
| if(side == MekanismUtils.getLeft(facing)) |
| { |
| return inputTank; |
| } |
| else if(side == MekanismUtils.getRight(facing)) |
| { |
| return outputTank; |
| } |
| |
| return null; |
| } |
| |
| @Override |
| public void setActive(boolean active) |
| { |
| isActive = active; |
| |
| if(clientActive != active && updateDelay == 0) |
| { |
| Mekanism.packetHandler.sendToReceivers(new TileEntityMessage(Coord4D.get(this), getNetworkedData(new ArrayList())), new Range4D(Coord4D.get(this))); |
| |
| updateDelay = 10; |
| clientActive = active; |
| } |
| } |
| |
| @Override |
| public boolean getActive() |
| { |
| return isActive; |
| } |
| |
| @Override |
| public boolean renderUpdate() |
| { |
| return false; |
| } |
| |
| @Override |
| public boolean lightUpdate() |
| { |
| return true; |
| } |
| |
| @Override |
| public boolean canTubeConnect(ForgeDirection side) |
| { |
| return side == MekanismUtils.getLeft(facing) || side == MekanismUtils.getRight(facing); |
| } |
| |
| @Override |
| public boolean canReceiveGas(ForgeDirection side, Gas type) |
| { |
| return getTank(side) != null && getTank(side) != outputTank ? getTank(side).canReceive(type) : false; |
| } |
| |
| @Override |
| public RedstoneControl getControlType() |
| { |
| return controlType; |
| } |
| |
| @Override |
| public void setControlType(RedstoneControl type) |
| { |
| controlType = type; |
| MekanismUtils.saveChunk(this); |
| } |
| |
| @Override |
| public boolean canPulse() |
| { |
| return false; |
| } |
| |
| @Override |
| public int receiveGas(ForgeDirection side, GasStack stack, boolean doTransfer) |
| { |
| if(canReceiveGas(side, stack != null ? stack.getGas() : null)) |
| { |
| return getTank(side).receive(stack, doTransfer); |
| } |
| |
| return 0; |
| } |
| |
| @Override |
| public GasStack drawGas(ForgeDirection side, int amount, boolean doTransfer) |
| { |
| if(canDrawGas(side, null)) |
| { |
| return getTank(side).draw(amount, doTransfer); |
| } |
| |
| return null; |
| } |
| |
| @Override |
| public boolean canDrawGas(ForgeDirection side, Gas type) |
| { |
| return getTank(side) == outputTank ? getTank(side).canDraw(type) : false; |
| } |
| |
| @Override |
| public boolean isItemValidForSlot(int slotID, ItemStack itemstack) |
| { |
| if(slotID == 0) |
| { |
| return FluidContainerRegistry.getFluidForFilledItem(itemstack) != null && FluidContainerRegistry.getFluidForFilledItem(itemstack).getFluid() == FluidRegistry.WATER; |
| } |
| else if(slotID == 2) |
| { |
| return ChargeUtils.canBeDischarged(itemstack); |
| } |
| |
| return false; |
| } |
| |
| @Override |
| public boolean canExtractItem(int slotID, ItemStack itemstack, int side) |
| { |
| if(slotID == 1) |
| { |
| return itemstack != null && itemstack.getItem() instanceof IGasItem && ((IGasItem)itemstack.getItem()).canProvideGas(itemstack, null); |
| } |
| else if(slotID == 2) |
| { |
| return ChargeUtils.canBeOutputted(itemstack, false); |
| } |
| |
| return false; |
| } |
| |
| @Override |
| public int[] getAccessibleSlotsFromSide(int side) |
| { |
| if(side == MekanismUtils.getLeft(facing).ordinal()) |
| { |
| return new int[] {0}; |
| } |
| else if(side == MekanismUtils.getRight(facing).ordinal()) |
| { |
| return new int[] {1}; |
| } |
| else if(side == 0 || side == 1) |
| { |
| return new int[2]; |
| } |
| |
| return InventoryUtils.EMPTY; |
| } |
| |
| @Override |
| public int fill(ForgeDirection from, FluidStack resource, boolean doFill) |
| { |
| if(canFill(from, resource.getFluid())) |
| { |
| return fluidTank.fill(resource, doFill); |
| } |
| |
| return 0; |
| } |
| |
| @Override |
| public FluidStack drain(ForgeDirection from, FluidStack resource, boolean doDrain) |
| { |
| return null; |
| } |
| |
| @Override |
| public FluidStack drain(ForgeDirection from, int maxDrain, boolean doDrain) |
| { |
| return null; |
| } |
| |
| @Override |
| public boolean canFill(ForgeDirection from, Fluid fluid) |
| { |
| return from == ForgeDirection.UP && fluid == FluidRegistry.WATER; |
| } |
| |
| @Override |
| public boolean canDrain(ForgeDirection from, Fluid fluid) |
| { |
| return false; |
| } |
| |
| @Override |
| public FluidTankInfo[] getTankInfo(ForgeDirection from) |
| { |
| if(from == ForgeDirection.UP) |
| { |
| return new FluidTankInfo[] {fluidTank.getInfo()}; |
| } |
| |
| return PipeUtils.EMPTY; |
| } |
| |
| @Override |
| public void writeSustainedData(ItemStack itemStack) |
| { |
| if(fluidTank.getFluid() != null) |
| { |
| itemStack.stackTagCompound.setTag("fluidTank", fluidTank.getFluid().writeToNBT(new NBTTagCompound())); |
| } |
| |
| if(inputTank.getGas() != null) |
| { |
| itemStack.stackTagCompound.setTag("inputTank", inputTank.getGas().write(new NBTTagCompound())); |
| } |
| |
| if(outputTank.getGas() != null) |
| { |
| itemStack.stackTagCompound.setTag("outputTank", outputTank.getGas().write(new NBTTagCompound())); |
| } |
| } |
| |
| @Override |
| public void readSustainedData(ItemStack itemStack) |
| { |
| fluidTank.setFluid(FluidStack.loadFluidStackFromNBT(itemStack.stackTagCompound.getCompoundTag("fluidTank"))); |
| inputTank.setGas(GasStack.readFromNBT(itemStack.stackTagCompound.getCompoundTag("inputTank"))); |
| outputTank.setGas(GasStack.readFromNBT(itemStack.stackTagCompound.getCompoundTag("outputTank"))); |
| } |
| |
| @Override |
| public TileComponentUpgrade getComponent() |
| { |
| return upgradeComponent; |
| } |
| |
| @Override |
| public void recalculateUpgradables(Upgrade upgrade) |
| { |
| super.recalculateUpgradables(upgrade); |
| |
| switch(upgrade) |
| { |
| case ENERGY: |
| maxEnergy = MekanismUtils.getMaxEnergy(this, BASE_MAX_ENERGY); |
| energyPerTick = MekanismUtils.getBaseEnergyPerTick(this, BASE_ENERGY_USAGE); |
| default: |
| break; |
| } |
| } |
| |
| @Override |
| public List<String> getInfo(Upgrade upgrade) |
| { |
| return upgrade == Upgrade.SPEED ? upgrade.getExpScaledInfo(this) : upgrade.getMultScaledInfo(this); |
| } |
| |
| @Override |
| public Object[] getTanks() |
| { |
| return new Object[] {fluidTank, inputTank, outputTank}; |
| } |
| } |