ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityOilGenerator.java

190 lines
6.5 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
2015-05-20 22:39:43 +02:00
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
import de.ellpeck.actuallyadditions.api.recipe.OilGenRecipe;
2018-04-14 19:54:08 +02:00
import de.ellpeck.actuallyadditions.mod.config.values.ConfigIntListValues;
import de.ellpeck.actuallyadditions.mod.util.Util;
2015-05-20 22:39:43 +02:00
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
2016-11-26 08:58:42 +01:00
import net.minecraftforge.energy.IEnergyStorage;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidStack;
import net.minecraftforge.fluids.FluidTank;
2016-06-05 02:16:52 +02:00
import net.minecraftforge.fluids.capability.IFluidHandler;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-05-20 22:39:43 +02:00
2019-05-02 09:10:29 +02:00
public class TileEntityOilGenerator extends TileEntityBase implements ISharingEnergyProvider, ISharingFluidHandler {
2015-05-20 22:39:43 +02:00
2018-04-14 19:54:08 +02:00
int[] i = ConfigIntListValues.OIL_POWER.getValue();
2019-02-27 19:53:05 +01:00
public final CustomEnergyStorage storage = new CustomEnergyStorage(50000, 0, Math.max(Math.max(this.i[0], this.i[1]), Math.max(this.i[2], this.i[3])) + 20);
2019-05-02 09:10:29 +02:00
public final FluidTank tank = new FluidTank(2 * Util.BUCKET) {
2016-06-05 02:16:52 +02:00
@Override
2019-05-02 09:10:29 +02:00
public boolean canDrain() {
2016-06-05 02:16:52 +02:00
return false;
}
@Override
2019-05-02 09:10:29 +02:00
public boolean canFillFluidType(FluidStack stack) {
Fluid fluid = stack == null ? null : stack.getFluid();
return fluid != null && getRecipeForFluid(fluid.getName()) != null;
2016-06-05 02:16:52 +02:00
}
};
public int currentEnergyProduce;
2015-05-20 22:39:43 +02:00
public int currentBurnTime;
public int maxBurnTime;
2015-10-03 10:16:18 +02:00
private int lastEnergy;
private int lastTank;
private int lastBurnTime;
private int lastMaxBurnTime;
private int lastEnergyProduce;
2016-11-28 13:02:42 +01:00
private int lastCompare;
2015-05-20 22:39:43 +02:00
2019-05-02 09:10:29 +02:00
public TileEntityOilGenerator() {
super("oilGenerator");
2015-05-20 22:39:43 +02:00
}
2019-05-02 09:10:29 +02:00
private static OilGenRecipe getRecipeForFluid(String fluidName) {
if (fluidName != null) {
for (OilGenRecipe recipe : ActuallyAdditionsAPI.OIL_GENERATOR_RECIPES) {
if (recipe != null && fluidName.equals(recipe.fluidName)) { return recipe; }
2016-11-26 21:32:27 +01:00
}
}
return null;
}
2015-12-01 19:48:09 +01:00
@SideOnly(Side.CLIENT)
2019-05-02 09:10:29 +02:00
public int getBurningScaled(int i) {
return this.currentBurnTime * i / this.maxBurnTime;
}
2019-05-02 09:10:29 +02:00
private OilGenRecipe getRecipeForCurrentFluid() {
FluidStack stack = this.tank.getFluid();
2019-05-02 09:10:29 +02:00
if (stack != null) {
Fluid fluid = stack.getFluid();
2019-05-02 09:10:29 +02:00
if (fluid != null) { return getRecipeForFluid(fluid.getName()); }
}
return null;
}
@Override
2019-05-02 09:10:29 +02:00
public void writeSyncableNBT(NBTTagCompound compound, NBTType type) {
if (type != NBTType.SAVE_BLOCK) {
compound.setInteger("BurnTime", this.currentBurnTime);
compound.setInteger("CurrentEnergy", this.currentEnergyProduce);
compound.setInteger("MaxBurnTime", this.maxBurnTime);
}
this.storage.writeToNBT(compound);
this.tank.writeToNBT(compound);
super.writeSyncableNBT(compound, type);
}
@Override
2019-05-02 09:10:29 +02:00
public void readSyncableNBT(NBTTagCompound compound, NBTType type) {
if (type != NBTType.SAVE_BLOCK) {
this.currentBurnTime = compound.getInteger("BurnTime");
this.currentEnergyProduce = compound.getInteger("CurrentEnergy");
this.maxBurnTime = compound.getInteger("MaxBurnTime");
}
this.storage.readFromNBT(compound);
this.tank.readFromNBT(compound);
super.readSyncableNBT(compound, type);
}
2015-05-20 22:39:43 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void updateEntity() {
super.updateEntity();
2019-05-02 09:10:29 +02:00
if (!this.world.isRemote) {
2015-06-21 02:28:49 +02:00
boolean flag = this.currentBurnTime > 0;
2015-05-20 22:39:43 +02:00
2019-05-02 09:10:29 +02:00
if (this.currentBurnTime > 0 && this.currentEnergyProduce > 0) {
2015-05-20 22:39:43 +02:00
this.currentBurnTime--;
2016-11-28 12:51:45 +01:00
this.storage.receiveEnergyInternal(this.currentEnergyProduce, false);
2019-05-02 09:10:29 +02:00
} else if (!this.isRedstonePowered) {
int fuelUsed = 50;
OilGenRecipe recipe = this.getRecipeForCurrentFluid();
2019-05-02 09:10:29 +02:00
if (recipe != null && this.storage.getEnergyStored() < this.storage.getMaxEnergyStored() && this.tank.getFluidAmount() >= fuelUsed) {
this.currentEnergyProduce = recipe.genAmount;
this.maxBurnTime = recipe.genTime;
this.currentBurnTime = this.maxBurnTime;
2016-06-05 02:16:52 +02:00
this.tank.drainInternal(fuelUsed, true);
2019-05-02 09:10:29 +02:00
} else {
this.currentEnergyProduce = 0;
this.currentBurnTime = 0;
this.maxBurnTime = 0;
}
2015-05-20 22:39:43 +02:00
}
2019-05-02 09:10:29 +02:00
if (flag != this.currentBurnTime > 0 || this.lastCompare != this.getComparatorStrength()) {
2016-11-28 13:02:42 +01:00
this.lastCompare = this.getComparatorStrength();
this.markDirty();
2015-06-21 02:28:49 +02:00
}
2019-05-02 09:10:29 +02:00
if ((this.storage.getEnergyStored() != this.lastEnergy || this.tank.getFluidAmount() != this.lastTank || this.lastBurnTime != this.currentBurnTime || this.lastEnergyProduce != this.currentEnergyProduce || this.lastMaxBurnTime != this.maxBurnTime) && this.sendUpdateWithInterval()) {
this.lastEnergy = this.storage.getEnergyStored();
this.lastTank = this.tank.getFluidAmount();
this.lastBurnTime = this.currentBurnTime;
this.lastEnergyProduce = this.currentEnergyProduce;
this.lastMaxBurnTime = this.maxBurnTime;
}
}
}
2016-11-28 12:51:45 +01:00
@Override
2019-05-02 09:10:29 +02:00
public int getComparatorStrength() {
float calc = (float) this.storage.getEnergyStored() / (float) this.storage.getMaxEnergyStored() * 15F;
return (int) calc;
2016-11-28 12:51:45 +01:00
}
2015-05-20 22:39:43 +02:00
@Override
2019-05-02 09:10:29 +02:00
public IFluidHandler getFluidHandler(EnumFacing facing) {
2016-12-05 14:16:53 +01:00
return this.tank;
2015-05-20 22:39:43 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public int getMaxFluidAmountToSplitShare() {
return 0;
}
@Override
2019-05-02 09:10:29 +02:00
public boolean doesShareFluid() {
return false;
}
@Override
2019-05-02 09:10:29 +02:00
public EnumFacing[] getFluidShareSides() {
return null;
}
@Override
2019-05-02 09:10:29 +02:00
public int getEnergyToSplitShare() {
return this.storage.getEnergyStored();
}
@Override
2019-05-02 09:10:29 +02:00
public boolean doesShareEnergy() {
return true;
}
@Override
2019-05-02 09:10:29 +02:00
public EnumFacing[] getEnergyShareSides() {
return EnumFacing.values();
}
2016-11-26 08:58:42 +01:00
@Override
2019-05-02 09:10:29 +02:00
public boolean canShareTo(TileEntity tile) {
return true;
}
2016-11-26 08:58:42 +01:00
@Override
2019-05-02 09:10:29 +02:00
public IEnergyStorage getEnergyStorage(EnumFacing facing) {
2016-11-26 08:58:42 +01:00
return this.storage;
}
2015-05-20 22:39:43 +02:00
}