ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/CustomEnergyStorage.java
2022-10-14 18:58:04 -05:00

77 lines
2.1 KiB
Java

/*
* This file ("CustomEnergyStorage.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
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.tile;
import net.minecraft.nbt.CompoundNBT;
import net.minecraftforge.energy.EnergyStorage;
public class CustomEnergyStorage extends EnergyStorage {
boolean dirty = false;
public CustomEnergyStorage(int capacity, int maxReceive, int maxExtract) {
super(capacity, maxReceive, maxExtract);
}
@Override
public int receiveEnergy(int maxReceive, boolean simulate) {
dirty = true;
return super.receiveEnergy(maxReceive, simulate);
}
@Override
public int extractEnergy(int maxExtract, boolean simulate) {
dirty = true;
return super.extractEnergy(maxExtract, simulate);
}
public int extractEnergyInternal(int maxExtract, boolean simulate) {
int before = this.maxExtract;
this.maxExtract = Integer.MAX_VALUE;
int toReturn = this.extractEnergy(maxExtract, simulate);
this.maxExtract = before;
return toReturn;
}
public int receiveEnergyInternal(int maxReceive, boolean simulate) {
int before = this.maxReceive;
this.maxReceive = Integer.MAX_VALUE;
int toReturn = this.receiveEnergy(maxReceive, simulate);
this.maxReceive = before;
return toReturn;
}
public boolean isDirty() {
return dirty;
}
public void clearDirty() {
dirty = false;
}
public void readFromNBT(CompoundNBT compound) {
if (compound.contains("Energy"))
this.setEnergyStored(compound.getInt("Energy"));
}
public void writeToNBT(CompoundNBT compound) {
compound.putInt("Energy", this.getEnergyStored());
}
public void setEnergyStored(int energy) {
this.energy = energy;
this.dirty = true;
}
}