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

147 lines
4.9 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityCoalGenerator.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
2015-05-20 22:39:43 +02:00
2018-08-10 05:04:07 +02:00
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IAcceptor;
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IRemover;
2015-05-20 22:39:43 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
2015-05-20 22:39:43 +02:00
import net.minecraft.tileentity.TileEntityFurnace;
import net.minecraft.util.EnumFacing;
2016-11-26 08:58:42 +01:00
import net.minecraftforge.energy.IEnergyStorage;
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
2018-08-10 05:04:07 +02:00
public class TileEntityCoalGenerator extends TileEntityInventoryBase implements ISharingEnergyProvider {
2015-05-20 22:39:43 +02:00
2015-12-01 19:48:09 +01:00
public static final int PRODUCE = 30;
2016-11-26 20:43:50 +01:00
public final CustomEnergyStorage storage = new CustomEnergyStorage(60000, 0, 80);
2015-05-20 22:39:43 +02:00
public int maxBurnTime;
public int currentBurnTime;
2015-10-03 10:16:18 +02:00
private int lastEnergy;
private int lastBurnTime;
private int lastCurrentBurnTime;
2016-11-28 13:02:42 +01:00
private int lastCompare;
2015-05-20 22:39:43 +02:00
2018-08-10 05:04:07 +02:00
public TileEntityCoalGenerator() {
2015-05-20 22:39:43 +02:00
super(1, "coalGenerator");
}
2015-12-01 19:48:09 +01:00
@SideOnly(Side.CLIENT)
2018-08-10 05:04:07 +02:00
public int getEnergyScaled(int i) {
return this.storage.getEnergyStored() * i / this.storage.getMaxEnergyStored();
2015-12-01 19:48:09 +01:00
}
@SideOnly(Side.CLIENT)
2018-08-10 05:04:07 +02:00
public int getBurningScaled(int i) {
return this.currentBurnTime * i / this.maxBurnTime;
2015-12-01 19:48:09 +01:00
}
@Override
2018-08-10 05:04:07 +02:00
public void writeSyncableNBT(NBTTagCompound compound, NBTType type) {
if (type != NBTType.SAVE_BLOCK) {
compound.setInteger("BurnTime", this.currentBurnTime);
compound.setInteger("MaxBurnTime", this.maxBurnTime);
}
this.storage.writeToNBT(compound);
super.writeSyncableNBT(compound, type);
}
@Override
2018-08-10 05:04:07 +02:00
public void readSyncableNBT(NBTTagCompound compound, NBTType type) {
if (type != NBTType.SAVE_BLOCK) {
this.currentBurnTime = compound.getInteger("BurnTime");
this.maxBurnTime = compound.getInteger("MaxBurnTime");
}
this.storage.readFromNBT(compound);
super.readSyncableNBT(compound, type);
}
2015-05-20 22:39:43 +02:00
@Override
2018-08-10 05:04:07 +02:00
public void updateEntity() {
super.updateEntity();
2018-08-10 05:04:07 +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
2018-08-10 05:04:07 +02:00
if (this.currentBurnTime > 0) {
2015-05-20 22:39:43 +02:00
this.currentBurnTime--;
this.storage.receiveEnergyInternal(PRODUCE, false);
2015-05-20 22:39:43 +02:00
}
ItemStack stack = inv.getStackInSlot(0);
int burn = TileEntityFurnace.getItemBurnTime(stack);
2018-08-10 05:04:07 +02:00
if (!this.isRedstonePowered && this.currentBurnTime <= 0 && burn > 0 && this.storage.getEnergyStored() < this.storage.getMaxEnergyStored()) {
this.maxBurnTime = burn;
this.currentBurnTime = burn;
2018-07-28 02:11:58 +02:00
ItemStack copy = stack.copy();
stack.shrink(1);
2018-08-10 05:04:07 +02:00
if (stack.isEmpty()) inv.setStackInSlot(0, copy.getItem().getContainerItem(copy));
2015-05-20 22:39:43 +02:00
}
2018-08-10 05:04:07 +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
}
2018-08-10 05:04:07 +02:00
if ((this.storage.getEnergyStored() != this.lastEnergy || this.currentBurnTime != this.lastCurrentBurnTime || this.lastBurnTime != this.maxBurnTime) && this.sendUpdateWithInterval()) {
this.lastEnergy = this.storage.getEnergyStored();
this.lastCurrentBurnTime = this.currentBurnTime;
this.lastBurnTime = this.currentBurnTime;
}
2015-05-20 22:39:43 +02:00
}
}
2016-11-28 13:02:42 +01:00
@Override
2018-08-10 05:04:07 +02:00
public int getComparatorStrength() {
float calc = ((float) this.storage.getEnergyStored() / (float) this.storage.getMaxEnergyStored()) * 15F;
return (int) calc;
2016-11-28 13:02:42 +01:00
}
2015-05-20 22:39:43 +02:00
@Override
2018-08-10 05:04:07 +02:00
public IAcceptor getAcceptor() {
return (slot, stack, automation) -> TileEntityFurnace.getItemBurnTime(stack) > 0;
2015-05-20 22:39:43 +02:00
}
2015-12-19 10:30:39 +01:00
@Override
2018-08-10 05:04:07 +02:00
public IRemover getRemover() {
return (slot, automation) -> {
if (!automation) return true;
return TileEntityFurnace.getItemBurnTime(this.inv.getStackInSlot(0)) <= 0;
};
2015-05-20 22:39:43 +02:00
}
@Override
2018-08-10 05:04:07 +02:00
public int getEnergyToSplitShare() {
return this.storage.getEnergyStored();
}
@Override
2018-08-10 05:04:07 +02:00
public boolean doesShareEnergy() {
return true;
}
@Override
2018-08-10 05:04:07 +02:00
public EnumFacing[] getEnergyShareSides() {
return EnumFacing.values();
}
2016-11-26 08:58:42 +01:00
@Override
2018-08-10 05:04:07 +02:00
public boolean canShareTo(TileEntity tile) {
return true;
}
2016-11-26 08:58:42 +01:00
@Override
2018-08-10 05:04:07 +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
}