2019-02-17 22:51:05 +01:00
|
|
|
package de.ellpeck.naturesaura.blocks.tiles;
|
|
|
|
|
2019-02-18 13:00:54 +01:00
|
|
|
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
|
2019-02-17 22:51:05 +01:00
|
|
|
import de.ellpeck.naturesaura.api.misc.IWorldData;
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.util.EnumFacing;
|
2019-02-18 13:00:54 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2019-02-17 22:51:05 +01:00
|
|
|
import net.minecraftforge.items.IItemHandlerModifiable;
|
|
|
|
|
2019-02-18 13:00:54 +01:00
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
|
2019-02-17 22:51:05 +01:00
|
|
|
public class TileEntityEnderCrate extends TileEntityImpl {
|
|
|
|
|
2019-02-18 13:00:54 +01:00
|
|
|
private final IItemHandlerModifiable wrappedEnderStorage = new IItemHandlerModifiable() {
|
|
|
|
@Override
|
|
|
|
public void setStackInSlot(int slot, @Nonnull ItemStack stack) {
|
|
|
|
this.getStorage().setStackInSlot(slot, stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getSlots() {
|
|
|
|
return this.getStorage().getSlots();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nonnull
|
|
|
|
@Override
|
|
|
|
public ItemStack getStackInSlot(int slot) {
|
|
|
|
return this.getStorage().getStackInSlot(slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nonnull
|
|
|
|
@Override
|
|
|
|
public ItemStack insertItem(int slot, @Nonnull ItemStack stack, boolean simulate) {
|
|
|
|
ItemStack remain = this.getStorage().insertItem(slot, stack, simulate);
|
|
|
|
if (!simulate)
|
|
|
|
TileEntityEnderCrate.this.drainAura((stack.getCount() - remain.getCount()) * 200);
|
|
|
|
return remain;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nonnull
|
|
|
|
@Override
|
|
|
|
public ItemStack extractItem(int slot, int amount, boolean simulate) {
|
|
|
|
ItemStack extracted = this.getStorage().extractItem(slot, amount, simulate);
|
|
|
|
if (!simulate)
|
|
|
|
TileEntityEnderCrate.this.drainAura(extracted.getCount() * 200);
|
|
|
|
return extracted;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getSlotLimit(int slot) {
|
|
|
|
return this.getStorage().getSlotLimit(slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
private IItemHandlerModifiable getStorage() {
|
|
|
|
return IWorldData.getOverworldData(TileEntityEnderCrate.this.world).getEnderStorage(TileEntityEnderCrate.this.name);
|
|
|
|
}
|
|
|
|
};
|
2019-02-17 22:51:05 +01:00
|
|
|
public String name;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IItemHandlerModifiable getItemHandler(EnumFacing facing) {
|
|
|
|
if (this.canOpen())
|
2019-02-18 13:00:54 +01:00
|
|
|
return this.wrappedEnderStorage;
|
2019-02-17 22:51:05 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean canOpen() {
|
|
|
|
return this.name != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void dropInventory() {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack getDrop(IBlockState state, int fortune) {
|
|
|
|
ItemStack drop = super.getDrop(state, fortune);
|
|
|
|
if (this.name != null)
|
|
|
|
drop.setStackDisplayName(this.name);
|
|
|
|
return drop;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void loadDataOnPlace(ItemStack stack) {
|
|
|
|
super.loadDataOnPlace(stack);
|
|
|
|
if (!this.world.isRemote && stack.hasDisplayName())
|
|
|
|
this.name = stack.getDisplayName();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeNBT(NBTTagCompound compound, SaveType type) {
|
|
|
|
super.writeNBT(compound, type);
|
|
|
|
if (type != SaveType.BLOCK) {
|
|
|
|
if (this.name != null)
|
|
|
|
compound.setString("name", this.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readNBT(NBTTagCompound compound, SaveType type) {
|
|
|
|
super.readNBT(compound, type);
|
|
|
|
if (type != SaveType.BLOCK) {
|
|
|
|
if (compound.hasKey("name"))
|
|
|
|
this.name = compound.getString("name");
|
|
|
|
}
|
|
|
|
}
|
2019-02-18 13:00:54 +01:00
|
|
|
|
|
|
|
public void drainAura(int amount) {
|
|
|
|
if (amount > 0) {
|
|
|
|
BlockPos spot = IAuraChunk.getHighestSpot(this.world, this.pos, 35, this.pos);
|
|
|
|
IAuraChunk.getAuraChunk(this.world, spot).drainAura(spot, amount);
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 22:51:05 +01:00
|
|
|
}
|