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

95 lines
3.2 KiB
Java
Raw Normal View History

package de.ellpeck.actuallyadditions.common.tile;
2015-06-06 01:25:53 +02:00
import de.ellpeck.actuallyadditions.common.blocks.InitBlocks;
import de.ellpeck.actuallyadditions.common.util.WorldUtil;
2016-07-04 20:15:41 +02:00
import net.minecraft.block.Block;
2020-10-31 22:01:43 +01:00
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.Direction;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
2020-10-31 22:01:43 +01:00
import net.minecraftforge.common.util.LazyOptional;
2015-06-06 01:25:53 +02:00
2019-05-02 09:10:29 +02:00
public class TileEntityLavaFactoryController extends TileEntityBase implements 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;
2016-11-26 20:43:50 +01:00
public final CustomEnergyStorage storage = new CustomEnergyStorage(300000, 2000, 0);
2015-10-03 10:16:18 +02:00
private int currentWorkTime;
2015-12-23 14:03:41 +01:00
private int oldEnergy;
2019-05-02 09:10:29 +02:00
public TileEntityLavaFactoryController() {
super("lavaFactory");
}
2016-02-01 17:49:55 +01:00
@Override
2020-10-31 22:01:43 +01:00
public void writeSyncableNBT(CompoundNBT compound, NBTType type) {
super.writeSyncableNBT(compound, type);
2016-02-01 17:49:55 +01:00
this.storage.writeToNBT(compound);
2019-05-02 09:10:29 +02:00
if (type != NBTType.SAVE_BLOCK) {
2020-10-31 22:01:43 +01:00
compound.putInt("WorkTime", this.currentWorkTime);
}
2016-02-01 17:49:55 +01:00
}
@Override
2020-10-31 22:01:43 +01:00
public void readSyncableNBT(CompoundNBT compound, NBTType type) {
super.readSyncableNBT(compound, type);
2016-02-01 17:49:55 +01:00
this.storage.readFromNBT(compound);
2019-05-02 09:10:29 +02:00
if (type != NBTType.SAVE_BLOCK) {
2020-10-31 22:01:43 +01:00
this.currentWorkTime = compound.getInt("WorkTime");
}
2016-02-01 17:49:55 +01:00
}
2015-06-06 01:25:53 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void updateEntity() {
super.updateEntity();
2019-05-02 09:10:29 +02:00
if (!this.world.isRemote) {
if (this.storage.getEnergyStored() >= ENERGY_USE && this.isMultiblock() == HAS_AIR) {
2015-06-06 01:25:53 +02:00
this.currentWorkTime++;
2019-05-02 09:10:29 +02:00
if (this.currentWorkTime >= 200) {
2015-06-06 01:25:53 +02:00
this.currentWorkTime = 0;
2016-11-26 21:32:27 +01:00
this.world.setBlockState(this.pos.up(), Blocks.LAVA.getDefaultState(), 2);
this.storage.extractEnergyInternal(ENERGY_USE, false);
2015-06-06 01:25:53 +02:00
}
2019-05-02 09:10:29 +02:00
} else {
2015-10-02 16:48:01 +02:00
this.currentWorkTime = 0;
}
2015-12-23 14:03:41 +01:00
2019-05-02 09:10:29 +02:00
if (this.oldEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()) {
2015-12-23 14:03:41 +01:00
this.oldEnergy = this.storage.getEnergyStored();
}
2015-06-06 01:25:53 +02:00
}
}
2019-05-02 09:10:29 +02:00
public int isMultiblock() {
2016-01-08 13:31:58 +01:00
BlockPos thisPos = this.pos;
2019-05-02 09:10:29 +02:00
BlockPos[] positions = new BlockPos[] { thisPos.add(1, 1, 0), thisPos.add(-1, 1, 0), thisPos.add(0, 1, 1), thisPos.add(0, 1, -1) };
2020-10-31 22:01:43 +01:00
if (WorldUtil.hasBlocksInPlacesGiven(positions, InitBlocks.blockMisc.get(), this.world)) {
2016-07-04 20:15:41 +02:00
BlockPos pos = thisPos.up();
2020-10-31 22:01:43 +01:00
BlockState state = this.world.getBlockState(pos);
2016-07-04 20:15:41 +02:00
Block block = state.getBlock();
2020-10-31 22:01:43 +01:00
if (block == Blocks.LAVA) { return HAS_LAVA; }
if (this.world.isAirBlock(pos)) { return HAS_AIR; }
2015-06-06 01:25:53 +02:00
}
return NOT_MULTI;
}
@Override
2019-05-02 09:10:29 +02:00
public CustomEnergyStorage getEnergyStorage() {
return this.storage;
}
@Override
2019-05-02 09:10:29 +02:00
public boolean needsHoldShift() {
return false;
}
2016-11-26 08:58:42 +01:00
@Override
2020-10-31 22:01:43 +01:00
public LazyOptional<CustomEnergyStorage> getEnergyStorage(Direction facing) {
return LazyOptional.of(() -> this.storage);
2016-11-26 08:58:42 +01:00
}
2015-06-06 01:25:53 +02:00
}