2015-06-21 02:28:49 +02:00
|
|
|
package ellpeck.actuallyadditions.tile;
|
|
|
|
|
|
|
|
import cofh.api.energy.EnergyStorage;
|
|
|
|
import cofh.api.energy.IEnergyContainerItem;
|
|
|
|
import cofh.api.energy.IEnergyProvider;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-07-02 04:21:21 +02:00
|
|
|
import ellpeck.actuallyadditions.network.sync.IPacketSyncerToClient;
|
|
|
|
import ellpeck.actuallyadditions.network.sync.PacketSyncerToClient;
|
2015-06-21 02:28:49 +02:00
|
|
|
import ellpeck.actuallyadditions.util.WorldUtil;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
|
2015-07-02 04:21:21 +02:00
|
|
|
public class TileEntityEnervator extends TileEntityInventoryBase implements IEnergyProvider, IPacketSyncerToClient{
|
2015-06-21 02:28:49 +02:00
|
|
|
|
|
|
|
public EnergyStorage storage = new EnergyStorage(500000);
|
2015-07-02 04:21:21 +02:00
|
|
|
private int lastEnergy;
|
2015-06-21 02:28:49 +02:00
|
|
|
|
|
|
|
public TileEntityEnervator(){
|
|
|
|
super(2, "enervator");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
2015-06-22 18:09:00 +02:00
|
|
|
if(!worldObj.isRemote){
|
|
|
|
if(this.slots[0] != null && this.slots[0].getItem() instanceof IEnergyContainerItem && this.slots[1] == null){
|
|
|
|
if(((IEnergyContainerItem)this.slots[0].getItem()).getEnergyStored(this.slots[0]) > 0){
|
|
|
|
int toReceive = ((IEnergyContainerItem)this.slots[0].getItem()).extractEnergy(this.slots[0], this.storage.getMaxEnergyStored()-this.storage.getEnergyStored(), false);
|
|
|
|
this.storage.receiveEnergy(toReceive, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(((IEnergyContainerItem)this.slots[0].getItem()).getEnergyStored(this.slots[0]) <= 0){
|
|
|
|
this.slots[1] = this.slots[0].copy();
|
|
|
|
this.slots[0].stackSize--;
|
|
|
|
if(this.slots[0].stackSize <= 0) this.slots[0] = null;
|
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
|
2015-06-22 18:09:00 +02:00
|
|
|
if(this.getEnergyStored(ForgeDirection.UNKNOWN) > 0){
|
|
|
|
WorldUtil.pushEnergy(worldObj, xCoord, yCoord, zCoord, ForgeDirection.UP, storage);
|
|
|
|
WorldUtil.pushEnergy(worldObj, xCoord, yCoord, zCoord, ForgeDirection.DOWN, storage);
|
|
|
|
WorldUtil.pushEnergy(worldObj, xCoord, yCoord, zCoord, ForgeDirection.NORTH, storage);
|
|
|
|
WorldUtil.pushEnergy(worldObj, xCoord, yCoord, zCoord, ForgeDirection.EAST, storage);
|
|
|
|
WorldUtil.pushEnergy(worldObj, xCoord, yCoord, zCoord, ForgeDirection.SOUTH, storage);
|
|
|
|
WorldUtil.pushEnergy(worldObj, xCoord, yCoord, zCoord, ForgeDirection.WEST, storage);
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
2015-07-02 04:21:21 +02:00
|
|
|
|
|
|
|
if(lastEnergy != this.storage.getEnergyStored()){
|
|
|
|
this.lastEnergy = this.storage.getEnergyStored();
|
|
|
|
this.sendUpdate();
|
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeToNBT(NBTTagCompound compound){
|
|
|
|
this.storage.writeToNBT(compound);
|
|
|
|
super.writeToNBT(compound);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readFromNBT(NBTTagCompound compound){
|
|
|
|
this.storage.readFromNBT(compound);
|
|
|
|
super.readFromNBT(compound);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int extractEnergy(ForgeDirection from, int maxExtract, boolean simulate){
|
|
|
|
return this.storage.extractEnergy(maxExtract, simulate);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getEnergyStored(ForgeDirection from){
|
|
|
|
return this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMaxEnergyStored(ForgeDirection from){
|
|
|
|
return this.storage.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canConnectEnergy(ForgeDirection from){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getEnergyScaled(int i){
|
2015-07-02 00:35:38 +02:00
|
|
|
return this.storage.getEnergyStored() * i / this.storage.getMaxEnergyStored();
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
|
2015-07-12 03:08:43 +02:00
|
|
|
@Override
|
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
|
|
|
return i == 0 && stack.getItem() instanceof IEnergyContainerItem;
|
|
|
|
}
|
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
@Override
|
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, int side){
|
2015-07-12 03:08:43 +02:00
|
|
|
return this.isItemValidForSlot(slot, stack);
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, int side){
|
|
|
|
return slot == 1;
|
|
|
|
}
|
2015-07-02 04:21:21 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int[] getValues(){
|
|
|
|
return new int[]{this.storage.getEnergyStored()};
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setValues(int[] values){
|
|
|
|
this.storage.setEnergyStored(values[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void sendUpdate(){
|
|
|
|
PacketSyncerToClient.sendPacket(this);
|
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|