2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityFurnaceSolar.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-03-30 15:08:19 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
import cofh.api.energy.EnergyStorage;
|
|
|
|
import cofh.api.energy.IEnergyProvider;
|
2016-07-04 20:15:41 +02:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2015-05-20 22:39:43 +02:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 23:42:42 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2016-07-02 15:01:46 +02:00
|
|
|
public class TileEntityFurnaceSolar extends TileEntityBase implements IEnergyProvider, IEnergyDisplay{
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2016-01-07 16:07:23 +01:00
|
|
|
public static final int PRODUCE = 8;
|
2016-05-19 20:05:12 +02:00
|
|
|
public final EnergyStorage storage = new EnergyStorage(30000);
|
2015-12-21 22:18:33 +01:00
|
|
|
private int oldEnergy;
|
2015-11-28 19:02:01 +01:00
|
|
|
|
2016-05-06 23:23:29 +02:00
|
|
|
public TileEntityFurnaceSolar(){
|
|
|
|
super("solarPanel");
|
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
@Override
|
2016-01-07 23:42:42 +01:00
|
|
|
public int extractEnergy(EnumFacing from, int maxExtract, boolean simulate){
|
2015-05-20 22:39:43 +02:00
|
|
|
return this.storage.extractEnergy(maxExtract, simulate);
|
|
|
|
}
|
2015-03-30 15:08:19 +02:00
|
|
|
|
|
|
|
@Override
|
2016-01-07 23:42:42 +01:00
|
|
|
public int getEnergyStored(EnumFacing from){
|
2015-05-20 22:39:43 +02:00
|
|
|
return this.storage.getEnergyStored();
|
2015-04-24 19:22:03 +02:00
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
@Override
|
2016-01-07 23:42:42 +01:00
|
|
|
public int getMaxEnergyStored(EnumFacing from){
|
2015-05-20 22:39:43 +02:00
|
|
|
return this.storage.getMaxEnergyStored();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 23:42:42 +01:00
|
|
|
public boolean canConnectEnergy(EnumFacing from){
|
|
|
|
return from != EnumFacing.UP;
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.writeSyncableNBT(compound, type);
|
2016-02-01 17:49:55 +01:00
|
|
|
this.storage.writeToNBT(compound);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.readSyncableNBT(compound, type);
|
2016-02-01 17:49:55 +01:00
|
|
|
this.storage.readFromNBT(compound);
|
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
@Override
|
2015-03-30 15:08:19 +02:00
|
|
|
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){
|
|
|
|
if(!this.hasBlockAbove() && this.worldObj.isDaytime()){
|
2016-01-07 23:42:42 +01:00
|
|
|
if(PRODUCE <= this.storage.getMaxEnergyStored()-this.storage.getEnergyStored()){
|
2015-11-28 19:02:01 +01:00
|
|
|
this.storage.receiveEnergy(PRODUCE, false);
|
2015-05-20 22:39:43 +02:00
|
|
|
this.markDirty();
|
|
|
|
}
|
|
|
|
}
|
2015-03-30 15:08:19 +02:00
|
|
|
|
2015-12-21 22:18:33 +01:00
|
|
|
if(this.oldEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()){
|
|
|
|
this.oldEnergy = this.storage.getEnergyStored();
|
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-01 19:48:09 +01:00
|
|
|
|
|
|
|
public boolean hasBlockAbove(){
|
2016-05-02 17:46:53 +02:00
|
|
|
for(int y = 1; y <= this.worldObj.getHeight(); y++){
|
2016-07-06 21:56:15 +02:00
|
|
|
BlockPos offset = this.pos.up(y);
|
2016-07-04 20:15:41 +02:00
|
|
|
IBlockState state = this.worldObj.getBlockState(offset);
|
|
|
|
if(!state.getBlock().isAir(state, this.worldObj, offset)){
|
2015-12-01 19:48:09 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2015-12-13 00:54:25 +01:00
|
|
|
|
|
|
|
@Override
|
2016-07-21 13:22:55 +02:00
|
|
|
public EnergyStorage getEnergyStorage(){
|
|
|
|
return this.storage;
|
2015-12-13 00:54:25 +01:00
|
|
|
}
|
2016-07-02 18:39:47 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean needsHoldShift(){
|
|
|
|
return false;
|
|
|
|
}
|
2015-03-30 15:08:19 +02:00
|
|
|
}
|