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

131 lines
4.3 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityLavaFactoryController.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-06 01:25:53 +02:00
import cofh.api.energy.EnergyStorage;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.InitBlocks;
import de.ellpeck.actuallyadditions.mod.blocks.metalists.TheMiscBlocks;
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
2016-07-04 20:15:41 +02:00
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
2015-06-06 01:25:53 +02:00
import net.minecraft.init.Blocks;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumFacing;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
2015-06-06 01:25:53 +02:00
public class TileEntityLavaFactoryController extends TileEntityBase implements ICustomEnergyReceiver, IEnergyDisplay{
2015-06-06 01:25:53 +02:00
2015-10-03 10:16:18 +02:00
public static final int NOT_MULTI = 0;
public static final int HAS_LAVA = 1;
public static final int HAS_AIR = 2;
2015-12-01 19:48:09 +01:00
public static final int ENERGY_USE = 150000;
public final CustomEnergyStorage storage = new CustomEnergyStorage(300000, 2000);
2015-10-03 10:16:18 +02:00
private int currentWorkTime;
2015-12-23 14:03:41 +01:00
private int oldEnergy;
public TileEntityLavaFactoryController(){
super("lavaFactory");
}
2016-02-01 17:49:55 +01:00
@Override
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
super.writeSyncableNBT(compound, type);
2016-02-01 17:49:55 +01:00
this.storage.writeToNBT(compound);
if(type != NBTType.SAVE_BLOCK){
compound.setInteger("WorkTime", this.currentWorkTime);
}
2016-02-01 17:49:55 +01:00
}
@Override
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
super.readSyncableNBT(compound, type);
2016-02-01 17:49:55 +01:00
this.storage.readFromNBT(compound);
if(type != NBTType.SAVE_BLOCK){
this.currentWorkTime = compound.getInteger("WorkTime");
}
2016-02-01 17:49:55 +01:00
}
2015-06-06 01:25:53 +02:00
@Override
public void updateEntity(){
super.updateEntity();
2016-05-02 17:46:53 +02:00
if(!this.worldObj.isRemote){
if(this.storage.getEnergyStored() >= ENERGY_USE && this.isMultiblock() == HAS_AIR){
2015-06-06 01:25:53 +02:00
this.currentWorkTime++;
if(this.currentWorkTime >= 200){
2015-06-06 01:25:53 +02:00
this.currentWorkTime = 0;
2016-07-04 20:15:41 +02:00
this.worldObj.setBlockState(this.pos.up(), Blocks.LAVA.getDefaultState(), 2);
this.storage.extractEnergyInternal(ENERGY_USE, false);
2015-06-06 01:25:53 +02:00
}
}
2015-10-02 16:48:01 +02:00
else{
this.currentWorkTime = 0;
}
2015-12-23 14:03:41 +01:00
if(this.oldEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()){
this.oldEnergy = this.storage.getEnergyStored();
}
2015-06-06 01:25:53 +02:00
}
}
public int isMultiblock(){
2016-01-08 13:31:58 +01:00
BlockPos thisPos = this.pos;
BlockPos[] positions = new BlockPos[]{
2016-07-04 20:15:41 +02:00
thisPos.add(1, 1, 0),
thisPos.add(-1, 1, 0),
thisPos.add(0, 1, 1),
thisPos.add(0, 1, -1)
};
2016-05-02 17:46:53 +02:00
if(WorldUtil.hasBlocksInPlacesGiven(positions, InitBlocks.blockMisc, TheMiscBlocks.LAVA_FACTORY_CASE.ordinal(), this.worldObj)){
2016-07-04 20:15:41 +02:00
BlockPos pos = thisPos.up();
IBlockState state = this.worldObj.getBlockState(pos);
Block block = state.getBlock();
if(block == Blocks.LAVA || block == Blocks.FLOWING_LAVA){
return HAS_LAVA;
}
2016-07-04 20:15:41 +02:00
if(block == null || this.worldObj.isAirBlock(pos)){
return HAS_AIR;
2015-06-06 01:25:53 +02:00
}
}
return NOT_MULTI;
}
@Override
public int receiveEnergy(EnumFacing from, int maxExtract, boolean simulate){
return from != EnumFacing.UP ? this.storage.receiveEnergy(maxExtract, simulate) : 0;
2015-06-06 01:25:53 +02:00
}
@Override
public int getEnergyStored(EnumFacing from){
return from != EnumFacing.UP ? this.storage.getEnergyStored() : 0;
2015-06-06 01:25:53 +02:00
}
@Override
public int getMaxEnergyStored(EnumFacing from){
return from != EnumFacing.UP ? this.storage.getMaxEnergyStored() : 0;
2015-06-06 01:25:53 +02:00
}
@Override
public boolean canConnectEnergy(EnumFacing from){
return from != EnumFacing.UP;
2015-06-06 01:25:53 +02:00
}
@Override
public CustomEnergyStorage getEnergyStorage(){
return this.storage;
}
@Override
public boolean needsHoldShift(){
return false;
}
2015-06-06 01:25:53 +02:00
}