NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityOakGenerator.java

47 lines
1.7 KiB
Java
Raw Normal View History

2018-11-14 19:14:03 +01:00
package de.ellpeck.naturesaura.blocks.tiles;
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
2019-10-20 22:30:49 +02:00
import net.minecraft.block.LogBlock;
2020-01-21 21:04:44 +01:00
import net.minecraft.tileentity.ITickableTileEntity;
import net.minecraft.tileentity.TileEntityType;
2018-11-14 19:14:03 +01:00
import net.minecraft.util.math.BlockPos;
import java.util.ArrayDeque;
import java.util.Queue;
2020-01-21 21:04:44 +01:00
public class TileEntityOakGenerator extends TileEntityImpl implements ITickableTileEntity {
2018-11-14 19:14:03 +01:00
public Queue<BlockPos> scheduledBigTrees = new ArrayDeque<>();
2020-01-22 01:32:26 +01:00
public TileEntityOakGenerator() {
super(ModTileEntities.OAK_GENERATOR);
2020-01-21 21:04:44 +01:00
}
2018-11-14 19:14:03 +01:00
@Override
2020-01-21 21:04:44 +01:00
public void tick() {
2018-11-14 19:14:03 +01:00
if (!this.world.isRemote)
while (!this.scheduledBigTrees.isEmpty()) {
BlockPos pos = this.scheduledBigTrees.remove();
2019-10-20 22:30:49 +02:00
if (this.world.getBlockState(pos).getBlock() instanceof LogBlock) {
int toAdd = 100000;
2019-02-16 01:43:40 +01:00
boolean canGen = this.canGenerateRightNow(25, toAdd);
if (canGen)
while (toAdd > 0) {
BlockPos spot = IAuraChunk.getLowestSpot(this.world, this.pos, 25, this.pos);
toAdd -= IAuraChunk.getAuraChunk(this.world, spot).storeAura(spot, toAdd);
}
2018-11-14 19:14:03 +01:00
2020-01-21 21:04:44 +01:00
// TODO particles
/* PacketHandler.sendToAllAround(this.world, this.pos, 32, new PacketParticles(
2018-11-14 19:14:03 +01:00
this.pos.getX(), this.pos.getY(), this.pos.getZ(), 12,
2020-01-21 21:04:44 +01:00
pos.getX(), pos.getY(), pos.getZ(), canGen ? 1 : 0));*/
2018-11-14 19:14:03 +01:00
}
}
}
@Override
public boolean wantsLimitRemover() {
return true;
}
2018-11-14 19:14:03 +01:00
}