2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityEnergizer.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.tile;
|
2015-06-21 02:28:49 +02:00
|
|
|
|
|
|
|
import cofh.api.energy.EnergyStorage;
|
|
|
|
import cofh.api.energy.IEnergyContainerItem;
|
|
|
|
import cofh.api.energy.IEnergyReceiver;
|
2016-07-25 02:07:16 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.compat.TeslaUtil;
|
|
|
|
import net.darkhax.tesla.api.ITeslaConsumer;
|
|
|
|
import net.darkhax.tesla.api.ITeslaHolder;
|
2015-06-21 02:28:49 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-06-21 02:28:49 +02:00
|
|
|
|
2016-07-02 15:01:46 +02:00
|
|
|
public class TileEntityEnergizer extends TileEntityInventoryBase implements IEnergyReceiver{
|
2015-06-21 02:28:49 +02:00
|
|
|
|
2016-05-19 20:05:12 +02:00
|
|
|
public final 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 TileEntityEnergizer(){
|
|
|
|
super(2, "energizer");
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
2016-02-01 20:32:49 +01:00
|
|
|
this.storage.writeToNBT(compound);
|
2016-07-02 15:01:46 +02:00
|
|
|
super.writeSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
2016-02-01 20:32:49 +01:00
|
|
|
this.storage.readFromNBT(compound);
|
2016-07-02 15:01:46 +02:00
|
|
|
super.readSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2016-05-02 17:46:53 +02:00
|
|
|
if(!this.worldObj.isRemote){
|
2016-07-25 02:07:16 +02:00
|
|
|
if(this.slots[0] != null && this.slots[1] == null){
|
2015-06-22 18:09:00 +02:00
|
|
|
if(this.storage.getEnergyStored() > 0){
|
2016-07-25 02:07:16 +02:00
|
|
|
int received = 0;
|
|
|
|
boolean canTakeUp = false;
|
|
|
|
|
|
|
|
if(this.slots[0].getItem() instanceof IEnergyContainerItem){
|
|
|
|
IEnergyContainerItem item = (IEnergyContainerItem)this.slots[0].getItem();
|
|
|
|
received = (item.receiveEnergy(this.slots[0], this.storage.getEnergyStored(), false));
|
|
|
|
canTakeUp = item.getEnergyStored(this.slots[0]) >= item.getMaxEnergyStored(this.slots[0]);
|
|
|
|
}
|
|
|
|
else if(ActuallyAdditions.teslaLoaded){
|
|
|
|
if(this.slots[0].hasCapability(TeslaUtil.teslaConsumer, null)){
|
|
|
|
ITeslaConsumer cap = this.slots[0].getCapability(TeslaUtil.teslaConsumer, null);
|
|
|
|
if(cap != null){
|
|
|
|
received = (int)cap.givePower(this.storage.getEnergyStored(), false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(this.slots[0].hasCapability(TeslaUtil.teslaHolder, null)){
|
|
|
|
ITeslaHolder cap = this.slots[0].getCapability(TeslaUtil.teslaHolder, null);
|
|
|
|
if(cap != null){
|
|
|
|
canTakeUp = cap.getStoredPower() >= cap.getCapacity();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(received > 0){
|
|
|
|
this.storage.extractEnergy(received, false);
|
|
|
|
}
|
2015-06-22 18:09:00 +02:00
|
|
|
|
2016-07-25 02:07:16 +02:00
|
|
|
if(canTakeUp){
|
|
|
|
this.slots[1] = this.slots[0].copy();
|
|
|
|
this.slots[0].stackSize--;
|
|
|
|
if(this.slots[0].stackSize <= 0){
|
|
|
|
this.slots[0] = null;
|
|
|
|
}
|
2015-10-03 10:16:18 +02:00
|
|
|
}
|
2015-06-22 18:09:00 +02:00
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
2015-07-02 04:21:21 +02:00
|
|
|
|
2016-05-02 17:46:53 +02:00
|
|
|
if(this.lastEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()){
|
2015-07-02 04:21:21 +02:00
|
|
|
this.lastEnergy = this.storage.getEnergyStored();
|
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
2016-07-25 02:07:16 +02:00
|
|
|
return i == 0 && (stack.getItem() instanceof IEnergyContainerItem || (ActuallyAdditions.teslaLoaded && stack.hasCapability(TeslaUtil.teslaConsumer, null)));
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
|
2015-12-19 10:30:39 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
|
2016-02-01 17:49:55 +01:00
|
|
|
return this.isItemValidForSlot(slot, stack);
|
2015-12-19 10:30:39 +01:00
|
|
|
}
|
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
|
2015-06-21 02:28:49 +02:00
|
|
|
return slot == 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getEnergyScaled(int i){
|
2015-10-02 16:48:01 +02:00
|
|
|
return this.storage.getEnergyStored()*i/this.storage.getMaxEnergyStored();
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public int receiveEnergy(EnumFacing from, int maxReceive, boolean simulate){
|
2015-06-21 02:28:49 +02:00
|
|
|
return this.storage.receiveEnergy(maxReceive, simulate);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public int getEnergyStored(EnumFacing from){
|
2015-06-21 02:28:49 +02:00
|
|
|
return this.storage.getEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public int getMaxEnergyStored(EnumFacing from){
|
2015-06-21 02:28:49 +02:00
|
|
|
return this.storage.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public boolean canConnectEnergy(EnumFacing from){
|
2015-06-21 02:28:49 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|