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

152 lines
6.3 KiB
Java
Raw Normal View History

2018-12-27 13:57:23 +01:00
package de.ellpeck.naturesaura.blocks.tiles;
import de.ellpeck.naturesaura.Helper;
import de.ellpeck.naturesaura.blocks.BlockGratedChute;
2019-10-20 22:30:49 +02:00
import net.minecraft.block.BlockState;
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.entity.item.ItemFrameEntity;
2018-12-27 13:57:23 +01:00
import net.minecraft.item.ItemStack;
2021-12-04 15:40:09 +01:00
import net.minecraft.nbt.CompoundTag;
import net.minecraft.tileentity.ITickableBlockEntity;
import net.minecraft.tileentity.BlockEntity;
2019-10-20 22:30:49 +02:00
import net.minecraft.util.Direction;
2018-12-27 13:57:23 +01:00
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraftforge.items.CapabilityItemHandler;
import net.minecraftforge.items.IItemHandler;
import net.minecraftforge.items.IItemHandlerModifiable;
import java.util.List;
2021-12-04 15:40:09 +01:00
public class BlockEntityGratedChute extends BlockEntityImpl implements ITickableBlockEntity {
2018-12-27 13:57:23 +01:00
2020-02-07 15:22:30 +01:00
public boolean isBlacklist;
private final ItemStackHandlerNA items = new ItemStackHandlerNA(1, this, true) {
2018-12-27 13:57:23 +01:00
@Override
protected boolean canExtract(ItemStack stack, int slot, int amount) {
2021-12-04 15:40:09 +01:00
return BlockEntityGratedChute.this.redstonePower <= 0;
2018-12-27 13:57:23 +01:00
}
@Override
protected boolean canInsert(ItemStack stack, int slot) {
2021-12-04 15:40:09 +01:00
return BlockEntityGratedChute.this.isBlacklist != BlockEntityGratedChute.this.isItemInFrame(stack);
2018-12-27 13:57:23 +01:00
}
};
private int cooldown;
2021-12-04 15:40:09 +01:00
public BlockEntityGratedChute() {
2020-01-22 01:32:26 +01:00
super(ModTileEntities.GRATED_CHUTE);
2020-01-21 21:04:44 +01:00
}
2018-12-27 13:57:23 +01:00
@Override
2020-01-21 21:04:44 +01:00
public void tick() {
2021-12-04 15:40:09 +01:00
if (!this.level.isClientSide) {
2018-12-27 13:57:23 +01:00
if (this.cooldown <= 0) {
this.cooldown = 6;
if (this.redstonePower > 0)
return;
ItemStack curr = this.items.getStackInSlot(0);
push:
if (!curr.isEmpty()) {
2021-12-04 15:40:09 +01:00
BlockState state = this.level.getBlockState(this.worldPosition);
2020-01-21 21:04:44 +01:00
Direction facing = state.get(BlockGratedChute.FACING);
2021-12-04 15:40:09 +01:00
BlockEntity tile = this.level.getBlockEntity(this.worldPosition.offset(facing));
2020-01-21 21:04:44 +01:00
if (tile == null)
2018-12-27 13:57:23 +01:00
break push;
IItemHandler handler = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY,
2020-01-21 21:04:44 +01:00
facing.getOpposite()).orElse(null);
2018-12-27 13:57:23 +01:00
if (handler == null)
break push;
for (int i = 0; i < handler.getSlots(); i++) {
ItemStack theoreticalDrain = this.items.extractItem(0, 1, true);
if (!theoreticalDrain.isEmpty()) {
ItemStack left = handler.insertItem(i, theoreticalDrain, false);
if (left.isEmpty()) {
this.items.extractItem(0, 1, false);
break push;
}
}
}
}
pull:
if (curr.isEmpty() || curr.getCount() < curr.getMaxStackSize()) {
2021-12-04 15:40:09 +01:00
List<ItemEntity> items = this.level.getEntitiesWithinAABB(ItemEntity.class, new AxisAlignedBB(
this.worldPosition.getX(), this.worldPosition.getY() + 0.5, this.worldPosition.getZ(),
this.worldPosition.getX() + 1, this.worldPosition.getY() + 2, this.worldPosition.getZ() + 1));
2019-10-20 22:30:49 +02:00
for (ItemEntity item : items) {
2020-01-21 21:04:44 +01:00
if (!item.isAlive())
2018-12-27 13:57:23 +01:00
continue;
ItemStack stack = item.getItem();
if (stack.isEmpty())
continue;
ItemStack left = this.items.insertItem(0, stack, false);
if (!ItemStack.areItemStacksEqual(stack, left)) {
if (left.isEmpty())
2020-01-21 21:04:44 +01:00
item.remove();
2018-12-27 13:57:23 +01:00
else
item.setItem(left);
break pull;
}
}
2021-12-04 15:40:09 +01:00
BlockEntity tileUp = this.level.getBlockEntity(this.worldPosition.up());
2020-01-21 21:04:44 +01:00
if (tileUp == null)
2018-12-27 13:57:23 +01:00
break pull;
2020-01-21 21:04:44 +01:00
IItemHandler handlerUp = tileUp.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, Direction.DOWN).orElse(null);
2018-12-27 13:57:23 +01:00
if (handlerUp == null)
break pull;
for (int i = 0; i < handlerUp.getSlots(); i++) {
ItemStack theoreticalDrain = handlerUp.extractItem(i, 1, true);
if (!theoreticalDrain.isEmpty()) {
ItemStack left = this.items.insertItem(0, theoreticalDrain, false);
if (left.isEmpty()) {
handlerUp.extractItem(i, 1, false);
break pull;
}
}
}
}
} else
this.cooldown--;
}
}
private boolean isItemInFrame(ItemStack stack) {
2021-12-04 15:40:09 +01:00
List<ItemFrameEntity> frames = Helper.getAttachedItemFrames(this.level, this.worldPosition);
2018-12-27 13:57:23 +01:00
if (frames.isEmpty())
return false;
2019-10-20 22:30:49 +02:00
for (ItemFrameEntity frame : frames) {
2018-12-27 13:57:23 +01:00
ItemStack frameStack = frame.getDisplayedItem();
if (Helper.areItemsEqual(stack, frameStack, true)) {
return true;
}
}
return false;
}
@Override
2021-12-04 15:40:09 +01:00
public void writeNBT(CompoundTag compound, SaveType type) {
2018-12-27 13:57:23 +01:00
super.writeNBT(compound, type);
if (type != SaveType.BLOCK) {
2020-01-21 21:04:44 +01:00
compound.putInt("cooldown", this.cooldown);
compound.put("items", this.items.serializeNBT());
compound.putBoolean("blacklist", this.isBlacklist);
}
2018-12-27 13:57:23 +01:00
}
@Override
2021-12-04 15:40:09 +01:00
public void readNBT(CompoundTag compound, SaveType type) {
2018-12-27 13:57:23 +01:00
super.readNBT(compound, type);
if (type != SaveType.BLOCK) {
2020-01-21 21:04:44 +01:00
this.cooldown = compound.getInt("cooldown");
this.items.deserializeNBT(compound.getCompound("items"));
this.isBlacklist = compound.getBoolean("blacklist");
}
2018-12-27 13:57:23 +01:00
}
@Override
2020-10-19 21:26:32 +02:00
public IItemHandlerModifiable getItemHandler() {
2018-12-27 13:57:23 +01:00
return this.items;
}
}