2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("TileEntityCanolaPress.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-01-03 16:05:51 +01:00
|
|
|
* http://ellpeck.de/actaddlicense/
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-01-03 16:05:51 +01:00
|
|
|
* © 2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2015-12-30 22:02:15 +01:00
|
|
|
package de.ellpeck.actuallyadditions.tile;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
import cofh.api.energy.EnergyStorage;
|
|
|
|
import cofh.api.energy.IEnergyReceiver;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-12-30 22:02:15 +01:00
|
|
|
import de.ellpeck.actuallyadditions.blocks.InitBlocks;
|
|
|
|
import de.ellpeck.actuallyadditions.items.InitItems;
|
|
|
|
import de.ellpeck.actuallyadditions.items.metalists.TheMiscItems;
|
|
|
|
import de.ellpeck.actuallyadditions.util.WorldUtil;
|
2015-05-20 22:39:43 +02:00
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
import net.minecraftforge.fluids.*;
|
|
|
|
|
2015-12-15 18:51:13 +01:00
|
|
|
public class TileEntityCanolaPress extends TileEntityInventoryBase implements IEnergyReceiver, IFluidHandler, IEnergySaver, IFluidSaver{
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-12-22 17:54:55 +01:00
|
|
|
public static final int PRODUCE = 120;
|
2015-12-01 19:48:09 +01:00
|
|
|
public static final int ENERGY_USE = 35;
|
|
|
|
private static final int TIME = 30;
|
2015-06-12 19:12:06 +02:00
|
|
|
public EnergyStorage storage = new EnergyStorage(40000);
|
2015-05-20 22:39:43 +02:00
|
|
|
public FluidTank tank = new FluidTank(2*FluidContainerRegistry.BUCKET_VOLUME);
|
|
|
|
public int currentProcessTime;
|
2015-10-03 10:16:18 +02:00
|
|
|
private int lastEnergyStored;
|
|
|
|
private int lastTankAmount;
|
2015-07-02 04:21:21 +02:00
|
|
|
private int lastProcessTime;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
|
|
|
public TileEntityCanolaPress(){
|
|
|
|
super(3, "canolaPress");
|
|
|
|
}
|
|
|
|
|
2015-12-01 19:48:09 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getTankScaled(int i){
|
|
|
|
return this.tank.getFluidAmount()*i/this.tank.getCapacity();
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getProcessScaled(int i){
|
|
|
|
return this.currentProcessTime*i/TIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getEnergyScaled(int i){
|
|
|
|
return this.storage.getEnergyStored()*i/this.storage.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2015-05-20 22:39:43 +02:00
|
|
|
if(!worldObj.isRemote){
|
2015-11-28 19:02:01 +01:00
|
|
|
if(this.isCanola(0) && PRODUCE <= this.tank.getCapacity()-this.tank.getFluidAmount()){
|
|
|
|
if(this.storage.getEnergyStored() >= ENERGY_USE){
|
2015-06-13 12:52:22 +02:00
|
|
|
this.currentProcessTime++;
|
2015-11-28 19:02:01 +01:00
|
|
|
this.storage.extractEnergy(ENERGY_USE, false);
|
|
|
|
if(this.currentProcessTime >= TIME){
|
2015-06-13 12:52:22 +02:00
|
|
|
this.currentProcessTime = 0;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-06-13 12:52:22 +02:00
|
|
|
this.slots[0].stackSize--;
|
2015-10-03 10:16:18 +02:00
|
|
|
if(this.slots[0].stackSize == 0){
|
|
|
|
this.slots[0] = null;
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-11-28 19:02:01 +01:00
|
|
|
this.tank.fill(new FluidStack(InitBlocks.fluidCanolaOil, PRODUCE), true);
|
2015-06-13 12:52:22 +02:00
|
|
|
this.markDirty();
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
else{
|
|
|
|
this.currentProcessTime = 0;
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-07-01 15:14:39 +02:00
|
|
|
WorldUtil.fillBucket(tank, slots, 1, 2);
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2015-07-02 01:26:37 +02:00
|
|
|
if(this.tank.getFluidAmount() > 0){
|
2015-05-20 22:39:43 +02:00
|
|
|
WorldUtil.pushFluid(worldObj, xCoord, yCoord, zCoord, ForgeDirection.DOWN, this.tank);
|
2015-12-03 18:40:43 +01:00
|
|
|
if(!this.isRedstonePowered){
|
2015-07-02 01:26:37 +02:00
|
|
|
WorldUtil.pushFluid(worldObj, xCoord, yCoord, zCoord, ForgeDirection.NORTH, this.tank);
|
|
|
|
WorldUtil.pushFluid(worldObj, xCoord, yCoord, zCoord, ForgeDirection.EAST, this.tank);
|
|
|
|
WorldUtil.pushFluid(worldObj, xCoord, yCoord, zCoord, ForgeDirection.SOUTH, this.tank);
|
|
|
|
WorldUtil.pushFluid(worldObj, xCoord, yCoord, zCoord, ForgeDirection.WEST, this.tank);
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
2015-07-02 04:21:21 +02:00
|
|
|
|
2015-12-01 17:28:50 +01:00
|
|
|
if((this.storage.getEnergyStored() != this.lastEnergyStored || this.tank.getFluidAmount() != this.lastTankAmount | this.currentProcessTime != this.lastProcessTime) && this.sendUpdateWithInterval()){
|
2015-07-02 04:21:21 +02:00
|
|
|
this.lastEnergyStored = this.storage.getEnergyStored();
|
|
|
|
this.lastProcessTime = this.currentProcessTime;
|
|
|
|
this.lastTankAmount = this.tank.getFluidAmount();
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-19 10:30:39 +01:00
|
|
|
@Override
|
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
compound.setInteger("ProcessTime", this.currentProcessTime);
|
|
|
|
this.storage.writeToNBT(compound);
|
|
|
|
this.tank.writeToNBT(compound);
|
|
|
|
super.writeSyncableNBT(compound, sync);
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-12-19 10:30:39 +01:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
this.currentProcessTime = compound.getInteger("ProcessTime");
|
|
|
|
this.storage.readFromNBT(compound);
|
|
|
|
this.tank.readFromNBT(compound);
|
|
|
|
super.readSyncableNBT(compound, sync);
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isCanola(int slot){
|
|
|
|
return this.slots[slot] != null && this.slots[slot].getItem() == InitItems.itemMisc && this.slots[slot].getItemDamage() == TheMiscItems.CANOLA.ordinal();
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, int side){
|
|
|
|
return this.isItemValidForSlot(slot, stack);
|
|
|
|
}
|
|
|
|
|
2015-12-19 10:30:39 +01:00
|
|
|
@Override
|
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
|
|
|
return (i == 0 && stack.getItem() == InitItems.itemMisc && stack.getItemDamage() == TheMiscItems.CANOLA.ordinal()) || (i == 1 && stack.getItem() == Items.bucket);
|
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
@Override
|
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, int side){
|
2015-06-06 01:25:53 +02:00
|
|
|
return slot == 2 && FluidContainerRegistry.containsFluid(this.slots[0], new FluidStack(InitBlocks.fluidCanolaOil, FluidContainerRegistry.BUCKET_VOLUME));
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int receiveEnergy(ForgeDirection from, int maxReceive, boolean simulate){
|
|
|
|
return this.storage.receiveEnergy(maxReceive, simulate);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getEnergyStored(ForgeDirection from){
|
|
|
|
return this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMaxEnergyStored(ForgeDirection from){
|
|
|
|
return this.storage.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canConnectEnergy(ForgeDirection from){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int fill(ForgeDirection from, FluidStack resource, boolean doFill){
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public FluidStack drain(ForgeDirection from, FluidStack resource, boolean doDrain){
|
2015-10-03 10:16:18 +02:00
|
|
|
if(resource.getFluid() == InitBlocks.fluidCanolaOil){
|
|
|
|
return this.tank.drain(resource.amount, doDrain);
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public FluidStack drain(ForgeDirection from, int maxDrain, boolean doDrain){
|
|
|
|
return this.tank.drain(maxDrain, doDrain);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canFill(ForgeDirection from, Fluid fluid){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canDrain(ForgeDirection from, Fluid fluid){
|
2015-05-29 18:17:28 +02:00
|
|
|
return from != ForgeDirection.UP;
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public FluidTankInfo[] getTankInfo(ForgeDirection from){
|
|
|
|
return new FluidTankInfo[]{this.tank.getInfo()};
|
|
|
|
}
|
2015-12-13 00:54:25 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getEnergy(){
|
|
|
|
return this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setEnergy(int energy){
|
|
|
|
this.storage.setEnergyStored(energy);
|
|
|
|
}
|
2015-12-15 18:51:13 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public FluidStack[] getFluids(){
|
|
|
|
return new FluidStack[]{this.tank.getFluid()};
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setFluids(FluidStack[] fluids){
|
|
|
|
this.tank.setFluid(fluids[0]);
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|