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

134 lines
4.4 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityHeatCollector.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-03-31 20:37:55 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
2015-05-20 22:39:43 +02:00
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
2021-02-27 16:33:00 +01:00
import net.minecraft.block.Blocks;
import net.minecraft.block.MagmaBlock;
2015-05-20 22:39:43 +02:00
import net.minecraft.block.material.Material;
2021-02-26 22:15:48 +01:00
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Direction;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
2021-02-27 16:33:00 +01:00
import net.minecraftforge.common.util.LazyOptional;
2016-11-26 08:58:42 +01:00
import net.minecraftforge.energy.IEnergyStorage;
2015-03-31 20:37:55 +02:00
2021-02-26 22:15:48 +01:00
import java.util.ArrayList;
2019-05-02 09:10:29 +02:00
public class TileEntityHeatCollector extends TileEntityBase implements ISharingEnergyProvider, IEnergyDisplay {
2015-03-31 20:37:55 +02:00
public static final int ENERGY_PRODUCE = 40;
public static final int BLOCKS_NEEDED = 4;
2016-11-26 20:43:50 +01:00
public final CustomEnergyStorage storage = new CustomEnergyStorage(30000, 0, 80);
2021-02-27 16:33:00 +01:00
public final LazyOptional<IEnergyStorage> lazyEnergy = LazyOptional.of(() -> this.storage);
private int oldEnergy;
private int disappearTime;
2019-05-02 09:10:29 +02:00
public TileEntityHeatCollector() {
2021-02-27 16:33:00 +01:00
super(ActuallyTiles.HEATCOLLECTOR_TILE.get());
}
2016-02-01 17:49:55 +01:00
@Override
2021-02-26 22:15:48 +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_TILE) {
2021-02-27 16:33:00 +01:00
compound.putInt("DisappearTime", this.disappearTime);
}
2016-02-01 17:49:55 +01:00
}
@Override
2021-02-26 22:15:48 +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_TILE) {
2021-02-27 16:33:00 +01:00
this.disappearTime = compound.getInt("DisappearTime");
}
2016-02-01 17:49:55 +01:00
}
2015-05-20 22:39:43 +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) {
2019-02-27 19:53:05 +01:00
ArrayList<Integer> blocksAround = new ArrayList<>();
2019-05-02 09:10:29 +02:00
if (ENERGY_PRODUCE <= this.storage.getMaxEnergyStored() - this.storage.getEnergyStored()) {
for (int i = 1; i <= 5; i++) {
2016-07-04 20:15:41 +02:00
BlockPos coords = this.pos.offset(WorldUtil.getDirectionBySidesInOrder(i));
2021-02-26 22:15:48 +01:00
BlockState state = this.world.getBlockState(coords);
2016-07-04 20:15:41 +02:00
Block block = state.getBlock();
2021-02-27 16:33:00 +01:00
if (block != null && this.world.getBlockState(coords).getMaterial() == Material.LAVA || this.world.getBlockState(coords).getBlock() instanceof MagmaBlock) {
2016-04-20 21:39:03 +02:00
blocksAround.add(i);
2015-03-31 20:37:55 +02:00
}
}
2019-05-02 09:10:29 +02:00
if (blocksAround.size() >= BLOCKS_NEEDED) {
this.storage.receiveEnergyInternal(ENERGY_PRODUCE, false);
2015-05-20 22:39:43 +02:00
this.markDirty();
2015-03-31 20:37:55 +02:00
this.disappearTime++;
2019-05-02 09:10:29 +02:00
if (this.disappearTime >= 1000) {
this.disappearTime = 0;
2019-05-02 09:10:29 +02:00
if (this.world.rand.nextInt(200) == 0) {
int randomSide = blocksAround.get(this.world.rand.nextInt(blocksAround.size()));
2021-02-27 16:33:00 +01:00
this.world.setBlockState(this.pos.offset(WorldUtil.getDirectionBySidesInOrder(randomSide)), Blocks.AIR.getDefaultState());
}
2015-05-20 22:39:43 +02:00
}
}
2015-10-31 17:14:56 +01:00
}
2019-05-02 09:10:29 +02:00
if (this.oldEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()) {
this.oldEnergy = this.storage.getEnergyStored();
}
2015-03-31 20:37:55 +02:00
}
2015-05-20 22:39:43 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public CustomEnergyStorage getEnergyStorage() {
return this.storage;
}
2016-08-02 13:08:22 +02:00
@Override
2019-05-02 09:10:29 +02:00
public boolean needsHoldShift() {
return false;
}
@Override
2019-05-02 09:10:29 +02:00
public int getEnergyToSplitShare() {
return this.storage.getEnergyStored();
}
@Override
2019-05-02 09:10:29 +02:00
public boolean doesShareEnergy() {
return true;
}
@Override
public Direction[] getEnergyShareSides() {
return Direction.values();
}
2016-11-26 08:58:42 +01:00
@Override
2019-05-02 09:10:29 +02:00
public boolean canShareTo(TileEntity tile) {
return true;
}
2016-11-26 08:58:42 +01:00
@Override
2021-02-27 16:33:00 +01:00
public LazyOptional<IEnergyStorage> getEnergyStorage(Direction facing) {
return this.lazyEnergy;
2016-11-26 08:58:42 +01:00
}
2015-03-31 20:37:55 +02:00
}