TechReborn/src/main/java/techreborn/tiles/TileAesu.java

159 lines
3.5 KiB
Java
Raw Normal View History

2015-05-09 21:19:40 +02:00
package techreborn.tiles;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
2015-11-23 15:45:16 +01:00
import net.minecraft.util.EnumFacing;
import reborncore.api.power.EnumPowerTier;
2016-10-08 21:46:16 +02:00
import reborncore.common.IWrenchable;
import reborncore.common.powerSystem.TilePowerAcceptor;
2015-11-08 13:15:45 +01:00
import reborncore.common.util.Inventory;
2015-06-14 13:15:24 +02:00
import techreborn.config.ConfigTechReborn;
2015-05-09 21:19:40 +02:00
import techreborn.init.ModBlocks;
2016-10-08 21:46:16 +02:00
public class TileAesu extends TilePowerAcceptor implements IWrenchable {
2016-03-25 10:47:34 +01:00
2016-03-28 21:51:23 +02:00
public static final int MAX_OUTPUT = ConfigTechReborn.AesuMaxOutput;
public static final int MAX_STORAGE = ConfigTechReborn.AesuMaxStorage;
2016-03-25 10:47:34 +01:00
public Inventory inventory = new Inventory(4, "TileAesu", 64, this);
private int OUTPUT = 64; // The current output
private double euLastTick = 0;
private double euChange;
private int ticks;
2016-10-08 21:46:16 +02:00
public TileAesu() {
super(5);
}
2016-03-25 10:47:34 +01:00
@Override
2016-10-08 21:46:16 +02:00
public void updateEntity() {
super.updateEntity();
2016-10-08 21:46:16 +02:00
if (ticks == ConfigTechReborn.AverageEuOutTickTime) {
2016-03-25 10:47:34 +01:00
euChange = -1;
ticks = 0;
2016-10-08 21:46:16 +02:00
} else {
2016-03-25 10:47:34 +01:00
ticks++;
euChange += getEnergy() - euLastTick;
2016-10-08 21:46:16 +02:00
if (euLastTick == getEnergy()) {
2016-03-25 10:47:34 +01:00
euChange = 0;
}
}
euLastTick = getEnergy();
}
@Override
2016-10-08 21:46:16 +02:00
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, EnumFacing side) {
return true;
2016-03-25 10:47:34 +01:00
}
@Override
2016-10-08 21:46:16 +02:00
public EnumFacing getFacing() {
2016-03-25 10:47:34 +01:00
return getFacingEnum();
}
@Override
2016-10-08 21:46:16 +02:00
public boolean wrenchCanRemove(EntityPlayer entityPlayer) {
return entityPlayer.isSneaking();
2016-03-25 10:47:34 +01:00
}
@Override
2016-10-08 21:46:16 +02:00
public float getWrenchDropRate() {
2016-03-25 10:47:34 +01:00
return 1.0F;
}
@Override
2016-10-08 21:46:16 +02:00
public ItemStack getWrenchDrop(EntityPlayer entityPlayer) {
2016-03-25 10:47:34 +01:00
return getDropWithNBT();
}
2016-10-08 21:46:16 +02:00
public boolean isComplete() {
2016-03-25 10:47:34 +01:00
return false;
}
2016-10-08 21:46:16 +02:00
public void handleGuiInputFromClient(int id) {
if (id == 0) {
2016-03-25 10:47:34 +01:00
OUTPUT += 256;
}
2016-10-08 21:46:16 +02:00
if (id == 1) {
2016-03-25 10:47:34 +01:00
OUTPUT += 64;
}
2016-10-08 21:46:16 +02:00
if (id == 2) {
2016-03-25 10:47:34 +01:00
OUTPUT -= 64;
}
2016-10-08 21:46:16 +02:00
if (id == 3) {
2016-03-25 10:47:34 +01:00
OUTPUT -= 256;
}
2016-10-08 21:46:16 +02:00
if (OUTPUT > MAX_OUTPUT) {
2016-03-25 10:47:34 +01:00
OUTPUT = MAX_OUTPUT;
}
2016-10-08 21:46:16 +02:00
if (OUTPUT <= -1) {
2016-03-25 10:47:34 +01:00
OUTPUT = 0;
}
}
2016-10-08 21:46:16 +02:00
public double getEuChange() {
if (euChange == -1) {
2016-03-25 10:47:34 +01:00
return -1;
}
return (euChange / ticks);
}
2016-10-08 21:46:16 +02:00
public ItemStack getDropWithNBT() {
2016-03-25 10:47:34 +01:00
NBTTagCompound tileEntity = new NBTTagCompound();
2016-12-05 10:40:55 +01:00
ItemStack dropStack = new ItemStack(ModBlocks.AESU, 1);
writeToNBTWithoutCoords(tileEntity);
2016-03-25 10:47:34 +01:00
dropStack.setTagCompound(new NBTTagCompound());
dropStack.getTagCompound().setTag("tileEntity", tileEntity);
return dropStack;
}
2016-10-08 21:46:16 +02:00
public NBTTagCompound writeToNBT(NBTTagCompound tagCompound) {
2016-03-25 10:47:34 +01:00
super.writeToNBT(tagCompound);
tagCompound.setDouble("euChange", euChange);
tagCompound.setDouble("euLastTick", euLastTick);
tagCompound.setInteger("output", OUTPUT);
inventory.writeToNBT(tagCompound);
2016-05-18 17:53:54 +02:00
return tagCompound;
2016-03-25 10:47:34 +01:00
}
2016-10-08 21:46:16 +02:00
public void readFromNBT(NBTTagCompound nbttagcompound) {
2016-03-25 10:47:34 +01:00
super.readFromNBT(nbttagcompound);
this.euChange = nbttagcompound.getDouble("euChange");
this.euLastTick = nbttagcompound.getDouble("euLastTick");
this.OUTPUT = nbttagcompound.getInteger("output");
inventory.readFromNBT(nbttagcompound);
}
@Override
2016-10-08 21:46:16 +02:00
public double getMaxPower() {
2016-03-25 10:47:34 +01:00
return TileAesu.MAX_STORAGE;
}
@Override
2016-10-08 21:46:16 +02:00
public boolean canAcceptEnergy(EnumFacing direction) {
return getFacingEnum() != direction;
}
@Override
2016-10-08 21:46:16 +02:00
public boolean canProvideEnergy(EnumFacing direction) {
return getFacingEnum() == direction;
}
@Override
2016-10-08 21:46:16 +02:00
public double getMaxOutput() {
2016-03-25 10:47:34 +01:00
return OUTPUT;
}
@Override
2016-10-08 21:46:16 +02:00
public double getMaxInput() {
return 4096 * 2;
2016-03-25 10:47:34 +01:00
}
@Override
2016-10-08 21:46:16 +02:00
public EnumPowerTier getTier() {
return EnumPowerTier.EXTREME;
}
2015-05-09 21:19:40 +02:00
}