ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityLaserRelayItemAdvanced.java

162 lines
6.1 KiB
Java
Raw Normal View History

2016-05-16 22:52:27 +02:00
/*
* This file ("TileEntityLaserRelayItemWhitelist.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2016-05-16 22:52:27 +02:00
*/
package de.ellpeck.actuallyadditions.mod.tile;
2021-11-13 18:16:25 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.ActuallyBlocks;
2016-06-07 23:17:06 +02:00
import de.ellpeck.actuallyadditions.mod.inventory.ContainerFilter;
import de.ellpeck.actuallyadditions.mod.inventory.ContainerLaserRelayItemWhitelist;
import de.ellpeck.actuallyadditions.mod.inventory.slot.SlotFilter;
2021-11-25 21:27:45 +01:00
import de.ellpeck.actuallyadditions.mod.items.DrillItem;
import de.ellpeck.actuallyadditions.mod.network.gui.IButtonReactor;
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA;
import de.ellpeck.actuallyadditions.mod.util.compat.SlotlessableItemHandlerWrapper;
2024-03-02 21:23:08 +01:00
import net.minecraft.core.BlockPos;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.network.chat.Component;
import net.minecraft.world.MenuProvider;
import net.minecraft.world.entity.player.Inventory;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.inventory.AbstractContainerMenu;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.level.block.state.BlockState;
import javax.annotation.Nullable;
2024-03-04 21:38:02 +01:00
import java.util.Optional;
2024-03-02 21:23:08 +01:00
public class TileEntityLaserRelayItemAdvanced extends TileEntityLaserRelayItem implements IButtonReactor, MenuProvider {
2024-03-05 23:23:49 +01:00
public FilterSettings leftFilter = new FilterSettings(12, true, false);
public FilterSettings rightFilter = new FilterSettings(12, true, false);
2024-03-02 21:23:08 +01:00
public TileEntityLaserRelayItemAdvanced(BlockPos pos, BlockState state) {
super(ActuallyBlocks.LASER_RELAY_ITEM_ADVANCED.getTileEntityType(), pos, state);
}
public static <T extends BlockEntity> void clientTick(Level level, BlockPos pos, BlockState state, T t) {
if (t instanceof TileEntityLaserRelayItemAdvanced tile) {
tile.clientTick();
}
}
public static <T extends BlockEntity> void serverTick(Level level, BlockPos pos, BlockState state, T t) {
if (t instanceof TileEntityLaserRelayItemAdvanced tile) {
tile.serverTick();
if ((tile.leftFilter.needsUpdateSend() || tile.rightFilter.needsUpdateSend()) && tile.sendUpdateWithInterval()) {
tile.leftFilter.updateLasts();
tile.rightFilter.updateLasts();
}
}
}
2016-11-16 18:51:23 +01:00
@Override
2019-05-02 09:10:29 +02:00
public int getPriority() {
return super.getPriority() + 10;
2016-11-16 18:51:23 +01:00
}
2016-06-17 23:50:38 +02:00
@Override
2019-05-02 09:10:29 +02:00
public boolean isWhitelisted(ItemStack stack, boolean output) {
2021-02-26 22:15:48 +01:00
return output
? this.rightFilter.check(stack)
: this.leftFilter.check(stack);
2016-06-17 23:50:38 +02:00
}
@Override
2024-03-02 21:23:08 +01:00
public void writeSyncableNBT(CompoundTag compound, NBTType type) {
super.writeSyncableNBT(compound, type);
this.leftFilter.writeToNBT(compound, "LeftFilter");
this.rightFilter.writeToNBT(compound, "RightFilter");
2016-06-17 23:50:38 +02:00
}
@Override
2024-03-02 21:23:08 +01:00
public void readSyncableNBT(CompoundTag compound, NBTType type) {
super.readSyncableNBT(compound, type);
this.leftFilter.readFromNBT(compound, "LeftFilter");
this.rightFilter.readFromNBT(compound, "RightFilter");
}
@Override
2024-03-02 21:23:08 +01:00
public void onButtonPressed(int buttonID, Player player) {
this.leftFilter.onButtonPressed(buttonID);
this.rightFilter.onButtonPressed(buttonID);
2019-05-02 09:10:29 +02:00
if (buttonID == 2) {
this.addWhitelistSmart(false);
2019-05-02 09:10:29 +02:00
} else if (buttonID == 3) {
this.addWhitelistSmart(true);
}
}
2019-05-02 09:10:29 +02:00
private void addWhitelistSmart(boolean output) {
for (SlotlessableItemHandlerWrapper handler : this.handlersAround.values()) {
2024-03-04 21:38:02 +01:00
Optional.ofNullable(handler.getNormalHandler()).ifPresent(itemHandler -> {
2019-05-02 09:10:29 +02:00
for (int i = 0; i < itemHandler.getSlots(); i++) {
ItemStack stack = itemHandler.getStackInSlot(i);
2023-03-16 00:17:57 +01:00
if (!stack.isEmpty()) {
this.addWhitelistSmart(output, stack);
}
}
});
}
}
2019-05-02 09:10:29 +02:00
private void addWhitelistSmart(boolean output, ItemStack stack) {
2021-02-26 22:15:48 +01:00
FilterSettings usedSettings = output
? this.rightFilter
: this.leftFilter;
ItemStack copy = stack.copy();
copy.setCount(1);
2024-03-05 23:23:49 +01:00
if (!FilterSettings.check(copy, usedSettings.filterInventory, true, usedSettings.respectMod)) {
2019-05-02 09:10:29 +02:00
for (int k = 0; k < usedSettings.filterInventory.getSlots(); k++) {
ItemStack slot = usedSettings.filterInventory.getStackInSlot(k);
2023-03-16 00:17:57 +01:00
if (!slot.isEmpty()) {
2019-05-02 09:10:29 +02:00
if (SlotFilter.isFilter(slot)) {
ItemStackHandlerAA inv = new ItemStackHandlerAA(ContainerFilter.SLOT_AMOUNT);
2021-11-25 21:27:45 +01:00
DrillItem.loadSlotsFromNBT(inv, slot);
boolean did = false;
2019-05-02 09:10:29 +02:00
for (int j = 0; j < inv.getSlots(); j++) {
2023-03-16 00:17:57 +01:00
if (inv.getStackInSlot(j).isEmpty()) {
inv.setStackInSlot(j, copy);
did = true;
break;
}
2016-06-07 23:17:06 +02:00
}
2019-05-02 09:10:29 +02:00
if (did) {
2021-11-25 21:27:45 +01:00
DrillItem.writeSlotsToNBT(inv, slot);
break;
}
}
2019-05-02 09:10:29 +02:00
} else {
usedSettings.filterInventory.setStackInSlot(k, copy);
break;
}
}
}
}
@Override
2024-03-02 21:23:08 +01:00
public Component getDisplayName() {
return Component.translatable("container.actuallyadditions.laserRelayAdvanced");
}
@Nullable
@Override
2024-03-02 21:23:08 +01:00
public AbstractContainerMenu createMenu(int windowId, Inventory playerInventory, Player player) {
return new ContainerLaserRelayItemWhitelist(windowId, playerInventory, this);
}
}