ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/tile/TileEntityLavaFactoryController.java

100 lines
3.7 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("TileEntityLavaFactoryController.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* <EFBFBD> 2015 Ellpeck
*/
2015-06-06 01:25:53 +02:00
package ellpeck.actuallyadditions.tile;
import cofh.api.energy.EnergyStorage;
import cofh.api.energy.IEnergyReceiver;
2015-06-18 13:14:57 +02:00
import ellpeck.actuallyadditions.blocks.InitBlocks;
2015-06-06 01:25:53 +02:00
import ellpeck.actuallyadditions.blocks.metalists.TheMiscBlocks;
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
import ellpeck.actuallyadditions.util.WorldUtil;
2015-06-06 01:25:53 +02:00
import net.minecraft.init.Blocks;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraftforge.common.util.ForgeDirection;
public class TileEntityLavaFactoryController extends TileEntityBase implements IEnergyReceiver{
public EnergyStorage storage = new EnergyStorage(3000000);
2015-06-06 01:25:53 +02:00
private int currentWorkTime;
//The Positions the Case Blocks should be in for the Factory to work
private static final int[][] CASE_POSITIONS = {{-1, 1, 0}, {1, 1, 0}, {0, 1, -1}, {0, 1, 1}};
2015-06-06 01:25:53 +02:00
@Override
@SuppressWarnings("unchecked")
public void updateEntity(){
if(!worldObj.isRemote){
2015-08-15 20:41:45 +02:00
if(this.storage.getEnergyStored() >= ConfigIntValues.LAVA_FACTORY_ENERGY_USED.getValue() && this.isMultiblock() == HAS_AIR){
2015-06-06 01:25:53 +02:00
this.currentWorkTime++;
2015-08-15 20:41:45 +02:00
if(this.currentWorkTime >= ConfigIntValues.LAVA_FACTORY_TIME.getValue()){
2015-06-06 01:25:53 +02:00
this.currentWorkTime = 0;
worldObj.setBlock(xCoord, yCoord+1, zCoord, Blocks.lava);
2015-08-15 20:41:45 +02:00
this.storage.extractEnergy(ConfigIntValues.LAVA_FACTORY_ENERGY_USED.getValue(), false);
2015-06-06 01:25:53 +02:00
}
}
2015-10-02 16:48:01 +02:00
else{
this.currentWorkTime = 0;
}
2015-06-06 01:25:53 +02:00
}
}
public int isMultiblock(){
if(WorldUtil.hasBlocksInPlacesGiven(CASE_POSITIONS, InitBlocks.blockMisc, TheMiscBlocks.LAVA_FACTORY_CASE.ordinal(), worldObj, xCoord, yCoord, zCoord)){
if(worldObj.getBlock(xCoord, yCoord+1, zCoord) == Blocks.lava || worldObj.getBlock(xCoord, yCoord+1, zCoord) == Blocks.flowing_lava){
return HAS_LAVA;
}
if(worldObj.getBlock(xCoord, yCoord+1, zCoord) == null || worldObj.isAirBlock(xCoord, yCoord+1, zCoord)){
return HAS_AIR;
2015-06-06 01:25:53 +02:00
}
}
return NOT_MULTI;
}
public static final int NOT_MULTI = 0;
public static final int HAS_LAVA = 1;
public static final int HAS_AIR = 2;
@Override
public void writeToNBT(NBTTagCompound compound){
this.storage.writeToNBT(compound);
compound.setInteger("WorkTime", this.currentWorkTime);
super.writeToNBT(compound);
}
@Override
public void readFromNBT(NBTTagCompound compound){
this.storage.readFromNBT(compound);
this.currentWorkTime = compound.getInteger("WorkTime");
super.readFromNBT(compound);
}
@Override
public int receiveEnergy(ForgeDirection from, int maxExtract, boolean simulate){
return from != ForgeDirection.UP ? this.storage.receiveEnergy(maxExtract, simulate) : 0;
}
@Override
public int getEnergyStored(ForgeDirection from){
return from != ForgeDirection.UP ? this.storage.getEnergyStored() : 0;
}
@Override
public int getMaxEnergyStored(ForgeDirection from){
return from != ForgeDirection.UP ? this.storage.getMaxEnergyStored() : 0;
}
@Override
public boolean canConnectEnergy(ForgeDirection from){
return from != ForgeDirection.UP;
}
}