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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 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
|
|
|
|
2016-07-25 02:07:16 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-07-25 02:07:16 +02:00
|
|
|
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-11-26 19:00:02 +01:00
|
|
|
import net.minecraftforge.energy.CapabilityEnergy;
|
2016-11-26 08:58:42 +01:00
|
|
|
import net.minecraftforge.energy.IEnergyStorage;
|
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-11-26 20:43:50 +01:00
|
|
|
public class TileEntityEnergizer extends TileEntityInventoryBase{
|
2015-06-21 02:28:49 +02:00
|
|
|
|
2016-11-26 20:43:50 +01:00
|
|
|
public final CustomEnergyStorage storage = new CustomEnergyStorage(50000, 1000, 0);
|
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-11-26 21:32:27 +01:00
|
|
|
if(!this.world.isRemote){
|
2016-12-04 00:10:52 +01:00
|
|
|
if(StackUtil.isValid(this.slots.getStackInSlot(0)) && !StackUtil.isValid(this.slots.getStackInSlot(1))){
|
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;
|
|
|
|
|
2016-12-04 00:10:52 +01:00
|
|
|
if(this.slots.getStackInSlot(0).hasCapability(CapabilityEnergy.ENERGY, null)){
|
|
|
|
IEnergyStorage cap = this.slots.getStackInSlot(0).getCapability(CapabilityEnergy.ENERGY, null);
|
2016-11-26 19:00:02 +01:00
|
|
|
if(cap != null){
|
|
|
|
received = cap.receiveEnergy(this.storage.getEnergyStored(), false);
|
|
|
|
canTakeUp = cap.getEnergyStored() >= cap.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
}
|
2016-07-25 02:07:16 +02:00
|
|
|
else if(ActuallyAdditions.teslaLoaded){
|
2016-12-04 00:10:52 +01:00
|
|
|
if(this.slots.getStackInSlot(0).hasCapability(TeslaUtil.teslaConsumer, null)){
|
|
|
|
ITeslaConsumer cap = this.slots.getStackInSlot(0).getCapability(TeslaUtil.teslaConsumer, null);
|
2016-07-25 02:07:16 +02:00
|
|
|
if(cap != null){
|
|
|
|
received = (int)cap.givePower(this.storage.getEnergyStored(), false);
|
|
|
|
}
|
|
|
|
}
|
2016-12-04 00:10:52 +01:00
|
|
|
if(this.slots.getStackInSlot(0).hasCapability(TeslaUtil.teslaHolder, null)){
|
|
|
|
ITeslaHolder cap = this.slots.getStackInSlot(0).getCapability(TeslaUtil.teslaHolder, null);
|
2016-07-25 02:07:16 +02:00
|
|
|
if(cap != null){
|
|
|
|
canTakeUp = cap.getStoredPower() >= cap.getCapacity();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(received > 0){
|
2016-11-23 18:10:55 +01:00
|
|
|
this.storage.extractEnergyInternal(received, false);
|
2016-07-25 02:07:16 +02:00
|
|
|
}
|
2015-06-22 18:09:00 +02:00
|
|
|
|
2016-07-25 02:07:16 +02:00
|
|
|
if(canTakeUp){
|
2016-12-04 00:10:52 +01:00
|
|
|
this.slots.setStackInSlot(1, this.slots.getStackInSlot(0).copy());
|
|
|
|
this.slots.setStackInSlot(0, StackUtil.addStackSize(this.slots.getStackInSlot(0), -1));
|
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-11-26 20:43:50 +01:00
|
|
|
return i == 0 && ((ActuallyAdditions.teslaLoaded && stack.hasCapability(TeslaUtil.teslaConsumer, null)) || stack.hasCapability(CapabilityEnergy.ENERGY, null));
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|
|
|
|
|
2015-12-19 10:30:39 +01:00
|
|
|
@Override
|
2016-12-04 00:10:52 +01:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack){
|
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
|
|
|
}
|
|
|
|
|
2016-11-26 08:58:42 +01:00
|
|
|
@Override
|
|
|
|
public IEnergyStorage getEnergyStorage(EnumFacing facing){
|
|
|
|
return this.storage;
|
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|