Code/net/minecraft/world/inventory/HopperMenu.java

65 lines
2.1 KiB
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
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 p_39640_, Inventory p_39641_) {
this(p_39640_, p_39641_, new SimpleContainer(5));
}
public HopperMenu(int p_39643_, Inventory p_39644_, Container p_39645_) {
super(MenuType.HOPPER, p_39643_);
this.hopper = p_39645_;
checkContainerSize(p_39645_, 5);
p_39645_.startOpen(p_39644_.player);
for (int i = 0; i < 5; i++) {
this.addSlot(new Slot(p_39645_, i, 44 + i * 18, 20));
}
this.addStandardInventorySlots(p_39644_, 8, 51);
}
@Override
public boolean stillValid(Player p_39647_) {
return this.hopper.stillValid(p_39647_);
}
@Override
public ItemStack quickMoveStack(Player p_39651_, int p_39652_) {
ItemStack itemstack = ItemStack.EMPTY;
Slot slot = this.slots.get(p_39652_);
if (slot != null && slot.hasItem()) {
ItemStack itemstack1 = slot.getItem();
itemstack = itemstack1.copy();
if (p_39652_ < this.hopper.getContainerSize()) {
if (!this.moveItemStackTo(itemstack1, this.hopper.getContainerSize(), this.slots.size(), true)) {
return ItemStack.EMPTY;
}
} else if (!this.moveItemStackTo(itemstack1, 0, this.hopper.getContainerSize(), false)) {
return ItemStack.EMPTY;
}
if (itemstack1.isEmpty()) {
slot.setByPlayer(ItemStack.EMPTY);
} else {
slot.setChanged();
}
}
return itemstack;
}
@Override
public void removed(Player p_39649_) {
super.removed(p_39649_);
this.hopper.stopOpen(p_39649_);
}
}