2018-10-26 15:01:48 +02:00
|
|
|
package de.ellpeck.naturesaura.blocks.tiles;
|
|
|
|
|
2018-11-08 18:03:58 +01:00
|
|
|
import de.ellpeck.naturesaura.Helper;
|
2018-11-11 13:26:19 +01:00
|
|
|
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
|
2018-11-13 00:36:47 +01:00
|
|
|
import de.ellpeck.naturesaura.api.aura.type.IAuraType;
|
2018-11-12 15:42:56 +01:00
|
|
|
import de.ellpeck.naturesaura.blocks.BlockFurnaceHeater;
|
2018-10-26 15:01:48 +02:00
|
|
|
import de.ellpeck.naturesaura.packet.PacketHandler;
|
|
|
|
import de.ellpeck.naturesaura.packet.PacketParticleStream;
|
|
|
|
import net.minecraft.block.BlockFurnace;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.item.crafting.FurnaceRecipes;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.tileentity.TileEntityFurnace;
|
2018-11-12 15:42:56 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2018-10-26 15:01:48 +02:00
|
|
|
import net.minecraft.util.ITickable;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.util.math.MathHelper;
|
|
|
|
|
|
|
|
public class TileEntityFurnaceHeater extends TileEntityImpl implements ITickable {
|
|
|
|
|
|
|
|
public boolean isActive;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void update() {
|
|
|
|
if (!this.world.isRemote && this.world.getTotalWorldTime() % 5 == 0) {
|
|
|
|
boolean did = false;
|
|
|
|
|
2018-11-12 15:42:56 +01:00
|
|
|
EnumFacing facing = this.world.getBlockState(this.pos).getValue(BlockFurnaceHeater.FACING);
|
|
|
|
BlockPos tilePos = this.pos.offset(facing.getOpposite());
|
|
|
|
TileEntity tile = this.world.getTileEntity(tilePos);
|
2018-10-26 15:01:48 +02:00
|
|
|
if (tile instanceof TileEntityFurnace) {
|
|
|
|
TileEntityFurnace furnace = (TileEntityFurnace) tile;
|
|
|
|
if (isReady(furnace)) {
|
|
|
|
int time = furnace.getField(0);
|
|
|
|
if (time <= 0)
|
|
|
|
BlockFurnace.setState(true, this.world, furnace.getPos());
|
|
|
|
furnace.setField(0, 200);
|
|
|
|
//if set higher than 199, it'll never finish because the furnace does ++ and then ==
|
|
|
|
furnace.setField(2, Math.min(199, furnace.getField(2) + 5));
|
|
|
|
|
2018-11-26 00:31:58 +01:00
|
|
|
BlockPos spot = IAuraChunk.getHighestSpot(this.world, this.pos, 20, this.pos);
|
2018-11-11 13:26:19 +01:00
|
|
|
IAuraChunk chunk = IAuraChunk.getAuraChunk(this.world, spot);
|
2019-01-28 23:45:47 +01:00
|
|
|
chunk.drainAura(spot, MathHelper.ceil((200 - time) / 6F));
|
2018-10-26 15:01:48 +02:00
|
|
|
did = true;
|
|
|
|
|
2018-11-12 15:42:56 +01:00
|
|
|
if (this.world.getTotalWorldTime() % 15 == 0) {
|
2018-10-26 15:01:48 +02:00
|
|
|
PacketHandler.sendToAllAround(this.world, this.pos, 32, new PacketParticleStream(
|
|
|
|
this.pos.getX() + (float) this.world.rand.nextGaussian() * 5F,
|
|
|
|
this.pos.getY() + 1 + this.world.rand.nextFloat() * 5F,
|
|
|
|
this.pos.getZ() + (float) this.world.rand.nextGaussian() * 5F,
|
2018-11-12 15:42:56 +01:00
|
|
|
tilePos.getX() + this.world.rand.nextFloat(),
|
|
|
|
tilePos.getY() + this.world.rand.nextFloat(),
|
|
|
|
tilePos.getZ() + this.world.rand.nextFloat(),
|
2018-11-13 00:36:47 +01:00
|
|
|
this.world.rand.nextFloat() * 0.07F + 0.07F, IAuraType.forWorld(this.world).getColor(), this.world.rand.nextFloat() + 0.5F
|
2018-10-26 15:01:48 +02:00
|
|
|
));
|
2018-11-12 15:42:56 +01:00
|
|
|
}
|
2018-10-26 15:01:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 16:38:09 +01:00
|
|
|
if (did != this.isActive) {
|
2018-10-26 15:01:48 +02:00
|
|
|
this.isActive = did;
|
|
|
|
this.sendToClients();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean isReady(TileEntityFurnace furnace) {
|
|
|
|
if (!furnace.getStackInSlot(1).isEmpty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ItemStack input = furnace.getStackInSlot(0);
|
|
|
|
if (!input.isEmpty()) {
|
|
|
|
ItemStack output = FurnaceRecipes.instance().getSmeltingResult(input);
|
|
|
|
if (output.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ItemStack currOutput = furnace.getStackInSlot(2);
|
2018-11-08 18:03:58 +01:00
|
|
|
return currOutput.isEmpty() ||
|
|
|
|
Helper.areItemsEqual(currOutput, output, true) && currOutput.getCount() + output.getCount() <= output.getMaxStackSize();
|
2018-10-26 15:01:48 +02:00
|
|
|
} else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-11-04 16:38:09 +01:00
|
|
|
public void writeNBT(NBTTagCompound compound, SaveType type) {
|
|
|
|
super.writeNBT(compound, type);
|
2018-10-26 15:01:48 +02:00
|
|
|
|
2018-11-04 16:38:09 +01:00
|
|
|
if (type == SaveType.SYNC)
|
2018-10-26 15:01:48 +02:00
|
|
|
compound.setBoolean("active", this.isActive);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-11-04 16:38:09 +01:00
|
|
|
public void readNBT(NBTTagCompound compound, SaveType type) {
|
|
|
|
super.readNBT(compound, type);
|
2018-10-26 15:01:48 +02:00
|
|
|
|
2018-11-04 16:38:09 +01:00
|
|
|
if (type == SaveType.SYNC)
|
2018-10-26 15:01:48 +02:00
|
|
|
this.isActive = compound.getBoolean("active");
|
|
|
|
}
|
|
|
|
}
|