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

137 lines
5 KiB
Java
Raw Normal View History

2015-09-30 21:03:43 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityLeafGenerator.java") is part of the Actually Additions mod for Minecraft.
2015-09-30 21:03:43 +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-09-30 21:03:43 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-09-30 21:03:43 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
2015-09-30 21:03:43 +02:00
import de.ellpeck.actuallyadditions.mod.config.values.ConfigIntValues;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
2015-09-30 21:03:43 +02:00
import net.minecraft.block.Block;
2021-02-27 16:33:00 +01:00
import net.minecraft.block.Blocks;
import net.minecraft.block.LeavesBlock;
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-09-30 21:03:43 +02:00
2021-02-26 22:15:48 +01:00
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
2019-05-02 09:10:29 +02:00
public class TileEntityLeafGenerator extends TileEntityBase implements ISharingEnergyProvider, IEnergyDisplay {
2015-09-30 21:03:43 +02:00
2016-11-26 20:43:50 +01:00
public final CustomEnergyStorage storage = new CustomEnergyStorage(35000, 0, 450);
2021-02-27 16:33:00 +01:00
public final LazyOptional<IEnergyStorage> lazyEnergy = LazyOptional.of(() -> this.storage);
2015-09-30 21:03:43 +02:00
private int nextUseCounter;
private int oldEnergy;
2015-09-30 21:03:43 +02:00
2019-05-02 09:10:29 +02:00
public TileEntityLeafGenerator() {
2021-02-27 16:33:00 +01:00
super(ActuallyTiles.LEAFGENERATOR_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);
}
@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);
}
2015-09-30 21:03: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) {
if (!this.isRedstonePowered) {
if (this.nextUseCounter >= ConfigIntValues.LEAF_GENERATOR_COOLDOWN.getValue()) {
this.nextUseCounter = 0;
int energyProduced = ConfigIntValues.LEAF_GENERATOR_CF_PER_LEAF.getValue();
if (energyProduced > 0 && energyProduced <= this.storage.getMaxEnergyStored() - this.storage.getEnergyStored()) {
2019-02-27 19:53:05 +01:00
List<BlockPos> breakPositions = new ArrayList<>();
int range = ConfigIntValues.LEAF_GENERATOR_AREA.getValue();
for (int reachX = -range; reachX < range + 1; reachX++) {
for (int reachZ = -range; reachZ < range + 1; reachZ++) {
for (int reachY = -range; reachY < range + 1; reachY++) {
2016-07-04 20:15:41 +02:00
BlockPos pos = this.pos.add(reachX, reachY, reachZ);
2016-11-26 21:32:27 +01:00
Block block = this.world.getBlockState(pos).getBlock();
2021-02-27 16:33:00 +01:00
if (block instanceof LeavesBlock) { // TODO: [port] validate this is a good way of checking if something is a leaf
breakPositions.add(pos);
}
2015-09-30 21:03:43 +02:00
}
}
}
2019-05-02 09:10:29 +02:00
if (!breakPositions.isEmpty()) {
Collections.shuffle(breakPositions);
2016-01-08 13:31:58 +01:00
BlockPos theCoord = breakPositions.get(0);
2015-09-30 21:03:43 +02:00
2016-11-26 21:32:27 +01:00
this.world.playEvent(2001, theCoord, Block.getStateId(this.world.getBlockState(theCoord)));
2015-09-30 21:03:43 +02:00
2021-02-27 16:33:00 +01:00
this.world.setBlockState(theCoord, Blocks.AIR.getDefaultState());
2015-09-30 21:03:43 +02:00
this.storage.receiveEnergyInternal(energyProduced, false);
2015-12-16 20:54:50 +01:00
2021-02-26 22:15:48 +01:00
AssetUtil.spawnLaserWithTimeServer(this.world, this.getPos().getX(), this.getPos().getY(), this.getPos().getZ(), theCoord.getX(), theCoord.getY(), theCoord.getZ(), new float[]{62F / 255F, 163F / 255F, 74F / 255F}, 25, 0, 0.075F, 0.8F);
}
2015-09-30 21:03:43 +02:00
}
2019-05-02 09:10:29 +02:00
} else {
this.nextUseCounter++;
}
2015-09-30 21:03:43 +02:00
}
2019-05-02 09:10:29 +02:00
if (this.oldEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()) {
this.oldEnergy = this.storage.getEnergyStored();
}
2015-09-30 21:03:43 +02:00
}
}
@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;
}
@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-09-30 21:03:43 +02:00
}