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

23 lines
837 B
Java
Raw Normal View History

2018-10-28 17:39:53 +01:00
package de.ellpeck.naturesaura.blocks.tiles;
2018-11-11 13:26:19 +01:00
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
2018-10-28 17:39:53 +01:00
import net.minecraft.util.ITickable;
import net.minecraft.util.math.MathHelper;
public class TileEntityAuraDetector extends TileEntityImpl implements ITickable {
public int redstonePower;
@Override
public void update() {
if (!this.world.isRemote && this.world.getTotalWorldTime() % 20 == 0) {
int totalAmount = IAuraChunk.triangulateAuraInArea(this.world, this.pos, 25);
int power = MathHelper.clamp(MathHelper.ceil(totalAmount / (IAuraChunk.DEFAULT_AURA * 2F) * 15F), 0, 15);
2018-10-28 17:39:53 +01:00
if (this.redstonePower != power) {
this.redstonePower = power;
this.world.updateComparatorOutputLevel(this.pos, this.getBlockType());
}
}
}
}