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

174 lines
3.8 KiB
Java
Raw Normal View History

2015-05-09 21:19:40 +02:00
package techreborn.tiles;
import ic2.api.tile.IWrenchable;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraftforge.common.util.ForgeDirection;
2015-06-14 13:15:24 +02:00
import techreborn.config.ConfigTechReborn;
2015-05-09 21:19:40 +02:00
import techreborn.init.ModBlocks;
import techreborn.powerSystem.TilePowerAcceptor;
2015-05-09 21:19:40 +02:00
import techreborn.util.Inventory;
public class TileAesu extends TilePowerAcceptor implements IWrenchable {
2015-05-09 21:19:40 +02:00
2015-07-21 18:53:20 +02:00
public static final int MAX_OUTPUT = ConfigTechReborn.aesuMaxOutput;
public static final int MAX_STORAGE = ConfigTechReborn.aesuMaxStorage;
2015-05-09 21:19:40 +02:00
public Inventory inventory = new Inventory(2, "TileAesu", 64);
private int OUTPUT = 64; //The current output
private double euLastTick = 0;
2015-06-14 13:15:24 +02:00
private double euChange;
private int ticks;
2015-05-09 21:19:40 +02:00
public TileAesu()
{
super(5);
2015-05-09 21:19:40 +02:00
}
@Override
public void updateEntity()
{
super.updateEntity();
2015-06-14 13:15:24 +02:00
if(ticks == ConfigTechReborn.aveargeEuOutTickTime){
euChange = -1;
ticks = 0;
2015-06-14 13:15:24 +02:00
} else {
ticks ++;
euChange += getEnergy() - euLastTick;
if(euLastTick == getEnergy()){
euChange = 0;
}
2015-06-14 13:15:24 +02:00
}
euLastTick = getEnergy();
2015-05-09 21:19:40 +02:00
}
@Override
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side)
{
if(!entityPlayer.isSneaking()){
return true;
}
return false;
2015-05-09 21:19:40 +02:00
}
@Override
public short getFacing()
{
return (short) worldObj.getBlockMetadata(xCoord, yCoord, zCoord);
2015-05-09 21:19:40 +02:00
}
@Override
public void setFacing(short facing)
{
2015-06-07 20:11:08 +02:00
worldObj.setBlockMetadataWithNotify(xCoord, yCoord, zCoord, facing, 2);
}
2015-05-09 21:19:40 +02:00
@Override
public boolean wrenchCanRemove(EntityPlayer entityPlayer)
{
if (entityPlayer.isSneaking())
{
return true;
}
return false;
2015-05-09 21:19:40 +02:00
}
@Override
public float getWrenchDropRate()
{
return 1.0F;
}
@Override
public ItemStack getWrenchDrop(EntityPlayer entityPlayer)
{
return getDropWithNBT();
2015-05-09 21:19:40 +02:00
}
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(){
2015-06-14 13:15:24 +02:00
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.stackTagCompound.setTag("tileEntity", tileEntity);
return dropStack;
}
public void writeToNBTWithoutCoords(NBTTagCompound tagCompound)
{
super.writeToNBTWithoutCoords(tagCompound);
tagCompound.setDouble("euChange", euChange);
tagCompound.setDouble("euLastTick", euLastTick);
inventory.writeToNBT(tagCompound);
}
public void readFromNBTWithoutCoords(NBTTagCompound nbttagcompound) {
super.readFromNBTWithoutCoords(nbttagcompound);
this.euChange = nbttagcompound.getDouble("euChange");
this.euLastTick = nbttagcompound.getDouble("euLastTick");
inventory.readFromNBT(nbttagcompound);
}
@Override
public double getMaxPower() {
return TileAesu.MAX_STORAGE;
}
@Override
public boolean canAcceptEnergy(ForgeDirection direction) {
return true;
}
@Override
public boolean canProvideEnergy(ForgeDirection direction) {
return true;
}
@Override
public double getMaxOutput() {
return OUTPUT;
}
@Override
public double getMaxInput() {
return 4096 * 2;
}
2015-05-09 21:19:40 +02:00
}