ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/inventory/SackContainer.java

178 lines
6.7 KiB
Java
Raw Normal View History

/*
* This file ("ContainerBag.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
*/
package de.ellpeck.actuallyadditions.mod.inventory;
2023-12-20 22:02:25 +01:00
import de.ellpeck.actuallyadditions.api.ActuallyTags;
import de.ellpeck.actuallyadditions.mod.inventory.slot.SlotFilter;
import de.ellpeck.actuallyadditions.mod.inventory.slot.SlotImmovable;
import de.ellpeck.actuallyadditions.mod.inventory.slot.SlotItemHandlerUnconditioned;
2023-12-20 22:02:25 +01:00
import de.ellpeck.actuallyadditions.mod.items.Sack;
import de.ellpeck.actuallyadditions.mod.network.gui.IButtonReactor;
import de.ellpeck.actuallyadditions.mod.tile.FilterSettings;
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA;
2024-03-02 21:23:08 +01:00
import net.minecraft.nbt.CompoundTag;
import net.minecraft.network.FriendlyByteBuf;
import net.minecraft.world.entity.player.Inventory;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.inventory.AbstractContainerMenu;
import net.minecraft.world.inventory.ClickType;
import net.minecraft.world.inventory.Slot;
import net.minecraft.world.item.ItemStack;
2021-02-26 22:15:48 +01:00
2023-12-20 22:02:25 +01:00
import javax.annotation.Nonnull;
2023-03-16 00:17:57 +01:00
import java.util.UUID;
2024-03-02 21:23:08 +01:00
public class SackContainer extends AbstractContainerMenu implements IButtonReactor {
2024-03-05 23:23:49 +01:00
public final FilterSettings filter = new FilterSettings(4, false,false);
private final ItemStackHandlerAA bagInventory;
2024-03-02 21:23:08 +01:00
private final Inventory inventory;
public boolean autoInsert;
private boolean oldAutoInsert;
2023-03-16 00:17:57 +01:00
public static final int SIZE = 28;
2021-02-27 21:24:26 +01:00
2024-03-02 21:23:08 +01:00
public static SackContainer fromNetwork(int windowId, Inventory inv, FriendlyByteBuf data) {
2023-12-20 22:02:25 +01:00
return new SackContainer(windowId, inv, data.readUUID(), new ItemStackHandlerAA(28));
2021-02-27 21:24:26 +01:00
}
2024-03-02 21:23:08 +01:00
public SackContainer(int windowId, Inventory playerInventory, UUID uuid, ItemStackHandlerAA handler) {
super(ActuallyContainers.SACK_CONTAINER.get(), windowId);
2021-02-27 21:24:26 +01:00
2023-03-16 00:17:57 +01:00
this.inventory = playerInventory;
2023-12-20 22:02:25 +01:00
this.bagInventory = handler;
2023-12-20 22:02:25 +01:00
for (int row = 0; row < 4; row++) {
this.addSlot(new SlotFilter(this.filter, row, 155, 10 + row * 18));
}
2023-12-20 22:02:25 +01:00
// Sack inventory
for (int row = 0; row < 4; row++) {
for (int col = 0; col < 7; col++) {
this.addSlot(new SlotItemHandlerUnconditioned(this.bagInventory, col + row * 7, 10 + col * 18, 10 + row * 18) {
2023-03-16 00:17:57 +01:00
@Override
public boolean mayPlace(ItemStack stack) {
2024-03-02 21:23:08 +01:00
return !stack.is(ActuallyTags.Items.HOLDS_ITEMS) && SackContainer.this.filter.check(stack);
2023-03-16 00:17:57 +01:00
}
});
}
}
2023-12-20 22:02:25 +01:00
// Player Inventory
for (int row = 0; row < 3; row++) {
for (int col = 0; col < 9; col++) {
this.addSlot(new Slot(playerInventory, col + row * 9 + 9, 8 + col * 18, 94 + row * 18));
}
}
2023-12-20 22:02:25 +01:00
// Player Hotbar
2018-08-10 05:04:07 +02:00
for (int i = 0; i < 9; i++) {
2023-03-16 00:17:57 +01:00
if (i == playerInventory.selected) {
this.addSlot(new SlotImmovable(playerInventory, i, 8 + i * 18, 152));
2018-08-10 05:04:07 +02:00
} else {
2023-03-16 00:17:57 +01:00
this.addSlot(new Slot(playerInventory, i, 8 + i * 18, 152));
}
}
2023-03-16 00:17:57 +01:00
ItemStack stack = playerInventory.getSelected();
2023-12-20 22:02:25 +01:00
if (!stack.isEmpty() && stack.getItem() instanceof Sack) {
2021-02-27 21:24:26 +01:00
if (stack.hasTag()) {
2024-03-02 21:23:08 +01:00
CompoundTag compound = stack.getOrCreateTag();
this.filter.readFromNBT(compound, "Filter");
this.autoInsert = compound.getBoolean("AutoInsert");
}
}
}
@Override
2024-03-02 21:23:08 +01:00
public ItemStack quickMoveStack(@Nonnull Player player, int slot) {
2018-08-10 05:04:07 +02:00
int inventoryStart = this.bagInventory.getSlots() + 4;
int inventoryEnd = inventoryStart + 26;
int hotbarStart = inventoryEnd + 1;
int hotbarEnd = hotbarStart + 8;
Slot theSlot = this.slots.get(slot);
if (theSlot != null && theSlot.hasItem()) {
ItemStack newStack = theSlot.getItem();
ItemStack currentStack = newStack.copy();
//Other Slots in Inventory excluded
2018-08-10 05:04:07 +02:00
if (slot >= inventoryStart) {
//Shift from Inventory
2023-03-16 00:17:57 +01:00
if (!this.filter.check(newStack) || !this.moveItemStackTo(newStack, 4, 32, false)) {
2023-12-20 22:02:25 +01:00
if (slot <= inventoryEnd) {
if (!this.moveItemStackTo(newStack, hotbarStart, hotbarEnd + 1, false)) {
2022-06-24 21:38:07 +02:00
return ItemStack.EMPTY;
2021-02-26 22:15:48 +01:00
}
} else if (slot >= inventoryEnd + 1 && slot < hotbarEnd + 1 && !this.moveItemStackTo(newStack, inventoryStart, inventoryEnd + 1, false)) {
2022-06-24 21:38:07 +02:00
return ItemStack.EMPTY;
2021-02-26 22:15:48 +01:00
}
}
//
} else if (!this.moveItemStackTo(newStack, inventoryStart, hotbarEnd + 1, false)) {
2022-06-24 21:38:07 +02:00
return ItemStack.EMPTY;
2021-02-26 22:15:48 +01:00
}
2023-03-16 00:17:57 +01:00
if (newStack.isEmpty()) {
2022-06-24 21:38:07 +02:00
theSlot.set(ItemStack.EMPTY);
2018-08-10 05:04:07 +02:00
} else {
theSlot.setChanged();
}
2021-02-26 22:15:48 +01:00
if (newStack.getCount() == currentStack.getCount()) {
2022-06-24 21:38:07 +02:00
return ItemStack.EMPTY;
2021-02-26 22:15:48 +01:00
}
2016-11-26 21:32:27 +01:00
theSlot.onTake(player, newStack);
return currentStack;
}
2022-06-24 21:38:07 +02:00
return ItemStack.EMPTY;
}
@Override
2024-03-05 23:23:49 +01:00
public void clicked(int slotId, int dragType, @Nonnull ClickType clickTypeIn, @Nonnull Player player) {
2018-08-10 05:04:07 +02:00
if (SlotFilter.checkFilter(this, slotId, player)) {
2024-03-02 21:23:08 +01:00
return; //TODO: Check if this is correct, used to return ItemStack.EMPTY
} else if (clickTypeIn == ClickType.SWAP && dragType == this.inventory.selected) {
2024-03-02 21:23:08 +01:00
return; //TODO: Check if this is correct, used to return ItemStack.EMPTY
2018-08-10 05:04:07 +02:00
} else {
2024-03-02 21:23:08 +01:00
super.clicked(slotId, dragType, clickTypeIn, player);
}
}
@Override
2024-03-05 23:23:49 +01:00
public void removed(@Nonnull Player player) {
ItemStack stack = this.inventory.getSelected();
2023-12-20 22:02:25 +01:00
if (!stack.isEmpty() && stack.getItem() instanceof Sack) {
2024-03-02 21:23:08 +01:00
CompoundTag compound = stack.getOrCreateTag();
this.filter.writeToNBT(compound, "Filter");
2021-02-27 16:33:00 +01:00
compound.putBoolean("AutoInsert", this.autoInsert);
}
super.removed(player);
}
@Override
2024-03-05 23:23:49 +01:00
public boolean stillValid(@Nonnull Player player) {
2023-12-20 22:02:25 +01:00
return true;
}
@Override
2024-03-02 21:23:08 +01:00
public void onButtonPressed(int buttonID, Player player) {
2018-08-10 05:04:07 +02:00
if (buttonID == 0) {
this.autoInsert = !this.autoInsert;
2018-08-10 05:04:07 +02:00
} else {
2024-03-06 00:02:32 +01:00
this.filter.onButtonPressed(buttonID - 1);
}
}
2021-02-26 22:15:48 +01:00
}