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