minecraft-src/net/minecraft/world/inventory/HopperMenu.java
2025-07-04 02:00:41 +03:00

65 lines
1.8 KiB
Java

package net.minecraft.world.inventory;
import net.minecraft.world.Container;
import net.minecraft.world.SimpleContainer;
import net.minecraft.world.entity.player.Inventory;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
public class HopperMenu extends AbstractContainerMenu {
public static final int CONTAINER_SIZE = 5;
private final Container hopper;
public HopperMenu(int containerId, Inventory playerInventory) {
this(containerId, playerInventory, new SimpleContainer(5));
}
public HopperMenu(int containerId, Inventory playerInventory, Container container) {
super(MenuType.HOPPER, containerId);
this.hopper = container;
checkContainerSize(container, 5);
container.startOpen(playerInventory.player);
for (int i = 0; i < 5; i++) {
this.addSlot(new Slot(container, i, 44 + i * 18, 20));
}
this.addStandardInventorySlots(playerInventory, 8, 51);
}
@Override
public boolean stillValid(Player player) {
return this.hopper.stillValid(player);
}
@Override
public ItemStack quickMoveStack(Player player, int index) {
ItemStack itemStack = ItemStack.EMPTY;
Slot slot = this.slots.get(index);
if (slot != null && slot.hasItem()) {
ItemStack itemStack2 = slot.getItem();
itemStack = itemStack2.copy();
if (index < this.hopper.getContainerSize()) {
if (!this.moveItemStackTo(itemStack2, this.hopper.getContainerSize(), this.slots.size(), true)) {
return ItemStack.EMPTY;
}
} else if (!this.moveItemStackTo(itemStack2, 0, this.hopper.getContainerSize(), false)) {
return ItemStack.EMPTY;
}
if (itemStack2.isEmpty()) {
slot.setByPlayer(ItemStack.EMPTY);
} else {
slot.setChanged();
}
}
return itemStack;
}
@Override
public void removed(Player player) {
super.removed(player);
this.hopper.stopOpen(player);
}
}