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

228 lines
10 KiB
Java
Raw Normal View History

2018-10-14 14:27:18 +02:00
package de.ellpeck.naturesaura.blocks.tiles;
import de.ellpeck.naturesaura.NaturesAura;
2018-10-20 21:19:08 +02:00
import de.ellpeck.naturesaura.aura.Capabilities;
import de.ellpeck.naturesaura.aura.chunk.AuraChunk;
import de.ellpeck.naturesaura.aura.container.BasicAuraContainer;
import de.ellpeck.naturesaura.aura.container.IAuraContainer;
import de.ellpeck.naturesaura.blocks.Multiblocks;
2018-10-14 14:27:18 +02:00
import de.ellpeck.naturesaura.packet.PacketHandler;
2018-10-16 01:36:30 +02:00
import de.ellpeck.naturesaura.packet.PacketParticleStream;
2018-10-18 17:12:20 +02:00
import de.ellpeck.naturesaura.packet.PacketParticles;
2018-10-18 13:34:37 +02:00
import de.ellpeck.naturesaura.recipes.AltarRecipe;
2018-10-31 01:17:58 +01:00
import net.minecraft.block.Block;
2018-10-14 14:27:18 +02:00
import net.minecraft.block.state.IBlockState;
import net.minecraft.init.SoundEvents;
2018-10-18 13:34:37 +02:00
import net.minecraft.item.ItemStack;
2018-10-14 14:27:18 +02:00
import net.minecraft.nbt.NBTTagCompound;
2018-10-18 13:34:37 +02:00
import net.minecraft.util.EnumFacing;
2018-10-14 14:27:18 +02:00
import net.minecraft.util.ITickable;
2018-10-22 00:14:52 +02:00
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundCategory;
2018-10-14 14:27:18 +02:00
import net.minecraft.util.math.BlockPos;
2018-10-18 13:34:37 +02:00
import net.minecraftforge.items.IItemHandlerModifiable;
import net.minecraftforge.items.ItemStackHandler;
2018-10-14 14:27:18 +02:00
import java.util.Random;
2018-10-20 21:19:08 +02:00
public class TileEntityNatureAltar extends TileEntityImpl implements ITickable {
2018-10-14 14:27:18 +02:00
2018-10-18 13:34:37 +02:00
public final ItemStackHandler items = new ItemStackHandlerNA(1, this, true) {
@Override
public int getSlotLimit(int slot) {
return 1;
}
@Override
protected boolean canInsert(ItemStack stack, int slot) {
2018-10-20 21:19:08 +02:00
return AltarRecipe.forInput(stack) != null || stack.hasCapability(Capabilities.auraContainer, null);
2018-10-18 13:34:37 +02:00
}
@Override
protected boolean canExtract(ItemStack stack, int slot, int amount) {
if(stack.hasCapability(Capabilities.auraContainer, null))
return stack.getCapability(Capabilities.auraContainer, null).storeAura(1, true) <= 0;
else
return AltarRecipe.forInput(stack) == null;
2018-10-18 13:34:37 +02:00
}
};
2018-10-24 13:06:24 +02:00
private final BasicAuraContainer container = new BasicAuraContainer(5000);
2018-10-14 14:27:18 +02:00
public boolean structureFine;
2018-10-18 17:12:20 +02:00
private AltarRecipe currentRecipe;
private int timer;
2018-10-14 14:27:18 +02:00
private int lastAura;
@Override
public void update() {
Random rand = this.world.rand;
if (!this.world.isRemote) {
if (this.world.getTotalWorldTime() % 40 == 0) {
boolean fine = Multiblocks.ALTAR.validate(this.world, this.pos);
2018-10-14 14:27:18 +02:00
if (fine != this.structureFine) {
this.structureFine = fine;
this.sendToClients();
}
}
if (this.structureFine) {
int space = this.container.storeAura(3, true);
if (space > 0) {
int toStore = Math.min(AuraChunk.getAuraInArea(this.world, this.pos, 20), space);
if (toStore > 0) {
BlockPos spot = AuraChunk.getHighestSpot(this.world, this.pos, 20, this.pos);
AuraChunk chunk = AuraChunk.getAuraChunk(this.world, spot);
2018-10-14 14:27:18 +02:00
chunk.drainAura(spot, toStore);
this.container.storeAura(toStore, false);
2018-10-14 14:27:18 +02:00
if (this.world.getTotalWorldTime() % 3 == 0)
2018-10-16 01:36:30 +02:00
PacketHandler.sendToAllAround(this.world, this.pos, 32, new PacketParticleStream(
this.pos.getX() + (float) rand.nextGaussian() * 10F,
this.pos.getY() + rand.nextFloat() * 10F,
this.pos.getZ() + (float) rand.nextGaussian() * 10F,
2018-10-14 14:27:18 +02:00
this.pos.getX() + 0.5F, this.pos.getY() + 0.5F, this.pos.getZ() + 0.5F,
rand.nextFloat() * 0.05F + 0.05F, 0x89cc37, rand.nextFloat() * 1F + 1F
2018-10-14 14:27:18 +02:00
));
}
}
2018-10-18 17:12:20 +02:00
ItemStack stack = this.items.getStackInSlot(0);
2018-10-20 21:19:08 +02:00
if (!stack.isEmpty() && stack.hasCapability(Capabilities.auraContainer, null)) {
IAuraContainer container = stack.getCapability(Capabilities.auraContainer, null);
int theoreticalDrain = this.container.drainAura(10, true);
if (theoreticalDrain > 0) {
int stored = container.storeAura(theoreticalDrain, false);
if (stored > 0) {
this.container.drainAura(stored, false);
2018-10-18 17:12:20 +02:00
2018-10-20 21:19:08 +02:00
if (this.world.getTotalWorldTime() % 4 == 0) {
2018-10-18 17:12:20 +02:00
PacketHandler.sendToAllAround(this.world, this.pos, 32, new PacketParticles(this.pos.getX(), this.pos.getY(), this.pos.getZ(), 4));
}
2018-10-20 21:19:08 +02:00
}
}
} else {
if (this.currentRecipe == null) {
if (!stack.isEmpty()) {
this.currentRecipe = AltarRecipe.forInput(stack);
}
} else {
if (stack.isEmpty() || !stack.isItemEqual(this.currentRecipe.input)) {
this.currentRecipe = null;
2018-10-22 11:23:48 +02:00
this.timer = 0;
2018-10-31 01:17:58 +01:00
} else if (this.hasCatalyst(this.currentRecipe.catalyst)) {
2018-10-20 21:19:08 +02:00
int req = this.currentRecipe.aura / this.currentRecipe.time;
if (this.container.getStoredAura() >= req) {
this.container.drainAura(req, false);
if (this.timer % 4 == 0) {
PacketHandler.sendToAllAround(this.world, this.pos, 32, new PacketParticles(this.pos.getX(), this.pos.getY(), this.pos.getZ(), 4));
}
this.timer++;
if (this.timer >= this.currentRecipe.time) {
this.items.setStackInSlot(0, this.currentRecipe.output.copy());
this.currentRecipe = null;
this.timer = 0;
this.world.playSound(null, this.pos.getX() + 0.5, this.pos.getY() + 0.5, this.pos.getZ() + 0.5,
SoundEvents.ENTITY_ARROW_HIT_PLAYER, SoundCategory.BLOCKS, 0.65F, 1F);
2018-10-20 21:19:08 +02:00
}
2018-10-18 17:12:20 +02:00
}
}
}
}
2018-10-14 14:27:18 +02:00
}
if (this.world.getTotalWorldTime() % 10 == 0 && this.lastAura != this.container.getStoredAura()) {
this.lastAura = this.container.getStoredAura();
this.sendToClients();
}
} else {
if (this.structureFine) {
if (rand.nextFloat() >= 0.7F) {
int fourths = this.container.getMaxAura() / 4;
if (this.container.getStoredAura() > 0) {
NaturesAura.proxy.spawnMagicParticle(this.world,
this.pos.getX() - 4F + rand.nextFloat(), this.pos.getY() + 3F, this.pos.getZ() + rand.nextFloat(),
0F, 0F, 0F, this.container.getAuraColor(), rand.nextFloat() * 3F + 1F, rand.nextInt(200) + 100, -0.025F, true, true);
}
if (this.container.getStoredAura() >= fourths) {
NaturesAura.proxy.spawnMagicParticle(this.world,
this.pos.getX() + 4F + rand.nextFloat(), this.pos.getY() + 3F, this.pos.getZ() + rand.nextFloat(),
0F, 0F, 0F, this.container.getAuraColor(), rand.nextFloat() * 3F + 1F, rand.nextInt(200) + 100, -0.025F, true, true);
}
if (this.container.getStoredAura() >= fourths * 2) {
NaturesAura.proxy.spawnMagicParticle(this.world,
this.pos.getX() + rand.nextFloat(), this.pos.getY() + 3F, this.pos.getZ() - 4F + rand.nextFloat(),
0F, 0F, 0F, this.container.getAuraColor(), rand.nextFloat() * 3F + 1F, rand.nextInt(200) + 100, -0.025F, true, true);
}
if (this.container.getStoredAura() >= fourths * 3) {
NaturesAura.proxy.spawnMagicParticle(this.world,
this.pos.getX() + rand.nextFloat(), this.pos.getY() + 3F, this.pos.getZ() + 4F + rand.nextFloat(),
0F, 0F, 0F, this.container.getAuraColor(), rand.nextFloat() * 3F + 1F, rand.nextInt(200) + 100, -0.025F, true, true);
}
2018-10-14 16:12:33 +02:00
2018-10-14 14:27:18 +02:00
}
}
}
}
2018-10-31 01:17:58 +01:00
private boolean hasCatalyst(Block block) {
if (block == null)
return true;
for (int x = -2; x <= 2; x += 4) {
for (int z = -2; z <= 2; z += 4) {
IBlockState state = this.world.getBlockState(this.pos.add(x, 1, z));
if (state.getBlock() == block)
return true;
}
}
return false;
}
2018-10-14 14:27:18 +02:00
@Override
public void writeNBT(NBTTagCompound compound, boolean syncing) {
super.writeNBT(compound, syncing);
2018-10-18 13:34:37 +02:00
compound.setTag("items", this.items.serializeNBT());
2018-10-14 14:27:18 +02:00
compound.setBoolean("fine", this.structureFine);
this.container.writeNBT(compound);
2018-10-18 17:12:20 +02:00
if (!syncing) {
if (this.currentRecipe != null) {
2018-10-22 00:14:52 +02:00
compound.setString("recipe", this.currentRecipe.name.toString());
2018-10-18 17:12:20 +02:00
compound.setInteger("timer", this.timer);
}
}
2018-10-14 14:27:18 +02:00
}
@Override
public void readNBT(NBTTagCompound compound, boolean syncing) {
super.readNBT(compound, syncing);
2018-10-18 13:34:37 +02:00
this.items.deserializeNBT(compound.getCompoundTag("items"));
2018-10-14 14:27:18 +02:00
this.structureFine = compound.getBoolean("fine");
this.container.readNBT(compound);
2018-10-18 17:12:20 +02:00
if (!syncing) {
2018-10-22 00:21:37 +02:00
if (compound.hasKey("recipe")) {
2018-10-22 00:14:52 +02:00
this.currentRecipe = AltarRecipe.RECIPES.get(new ResourceLocation(compound.getString("recipe")));
2018-10-18 17:12:20 +02:00
this.timer = compound.getInteger("timer");
}
}
2018-10-14 14:27:18 +02:00
}
@Override
2018-10-20 21:19:08 +02:00
public IAuraContainer getAuraContainer(EnumFacing facing) {
2018-10-14 14:27:18 +02:00
return this.container;
}
2018-10-14 17:46:00 +02:00
2018-10-18 13:34:37 +02:00
@Override
public IItemHandlerModifiable getItemHandler(EnumFacing facing) {
return this.items;
}
2018-10-14 14:27:18 +02:00
}