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

173 lines
5.9 KiB
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.inventory;
import java.util.Optional;
import javax.annotation.Nullable;
import net.minecraft.core.Holder;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.tags.ItemTags;
import net.minecraft.world.Container;
import net.minecraft.world.SimpleContainer;
import net.minecraft.world.effect.MobEffect;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Blocks;
public class BeaconMenu extends AbstractContainerMenu {
private static final int PAYMENT_SLOT = 0;
private static final int SLOT_COUNT = 1;
private static final int DATA_COUNT = 3;
private static final int INV_SLOT_START = 1;
private static final int INV_SLOT_END = 28;
private static final int USE_ROW_SLOT_START = 28;
private static final int USE_ROW_SLOT_END = 37;
private static final int NO_EFFECT = 0;
private final Container beacon = new SimpleContainer(1) {
@Override
public boolean canPlaceItem(int p_39066_, ItemStack p_39067_) {
return p_39067_.is(ItemTags.BEACON_PAYMENT_ITEMS);
}
@Override
public int getMaxStackSize() {
return 1;
}
};
private final BeaconMenu.PaymentSlot paymentSlot;
private final ContainerLevelAccess access;
private final ContainerData beaconData;
public BeaconMenu(int p_39036_, Container p_39037_) {
this(p_39036_, p_39037_, new SimpleContainerData(3), ContainerLevelAccess.NULL);
}
public BeaconMenu(int p_39039_, Container p_39040_, ContainerData p_39041_, ContainerLevelAccess p_39042_) {
super(MenuType.BEACON, p_39039_);
checkContainerDataCount(p_39041_, 3);
this.beaconData = p_39041_;
this.access = p_39042_;
this.paymentSlot = new BeaconMenu.PaymentSlot(this.beacon, 0, 136, 110);
this.addSlot(this.paymentSlot);
this.addDataSlots(p_39041_);
this.addStandardInventorySlots(p_39040_, 36, 137);
}
@Override
public void removed(Player p_39049_) {
super.removed(p_39049_);
if (!p_39049_.level().isClientSide) {
ItemStack itemstack = this.paymentSlot.remove(this.paymentSlot.getMaxStackSize());
if (!itemstack.isEmpty()) {
p_39049_.drop(itemstack, false);
}
}
}
@Override
public boolean stillValid(Player p_39047_) {
return stillValid(this.access, p_39047_, Blocks.BEACON);
}
@Override
public void setData(int p_39044_, int p_39045_) {
super.setData(p_39044_, p_39045_);
this.broadcastChanges();
}
@Override
public ItemStack quickMoveStack(Player p_39051_, int p_39052_) {
ItemStack itemstack = ItemStack.EMPTY;
Slot slot = this.slots.get(p_39052_);
if (slot != null && slot.hasItem()) {
ItemStack itemstack1 = slot.getItem();
itemstack = itemstack1.copy();
if (p_39052_ == 0) {
if (!this.moveItemStackTo(itemstack1, 1, 37, true)) {
return ItemStack.EMPTY;
}
slot.onQuickCraft(itemstack1, itemstack);
} else if (!this.paymentSlot.hasItem() && this.paymentSlot.mayPlace(itemstack1) && itemstack1.getCount() == 1) {
if (!this.moveItemStackTo(itemstack1, 0, 1, false)) {
return ItemStack.EMPTY;
}
} else if (p_39052_ >= 1 && p_39052_ < 28) {
if (!this.moveItemStackTo(itemstack1, 28, 37, false)) {
return ItemStack.EMPTY;
}
} else if (p_39052_ >= 28 && p_39052_ < 37) {
if (!this.moveItemStackTo(itemstack1, 1, 28, false)) {
return ItemStack.EMPTY;
}
} else if (!this.moveItemStackTo(itemstack1, 1, 37, false)) {
return ItemStack.EMPTY;
}
if (itemstack1.isEmpty()) {
slot.setByPlayer(ItemStack.EMPTY);
} else {
slot.setChanged();
}
if (itemstack1.getCount() == itemstack.getCount()) {
return ItemStack.EMPTY;
}
slot.onTake(p_39051_, itemstack1);
}
return itemstack;
}
public int getLevels() {
return this.beaconData.get(0);
}
public static int encodeEffect(@Nullable Holder<MobEffect> p_334357_) {
return p_334357_ == null ? 0 : BuiltInRegistries.MOB_EFFECT.asHolderIdMap().getId(p_334357_) + 1;
}
@Nullable
public static Holder<MobEffect> decodeEffect(int p_297542_) {
return p_297542_ == 0 ? null : BuiltInRegistries.MOB_EFFECT.asHolderIdMap().byId(p_297542_ - 1);
}
@Nullable
public Holder<MobEffect> getPrimaryEffect() {
return decodeEffect(this.beaconData.get(1));
}
@Nullable
public Holder<MobEffect> getSecondaryEffect() {
return decodeEffect(this.beaconData.get(2));
}
public void updateEffects(Optional<Holder<MobEffect>> p_219973_, Optional<Holder<MobEffect>> p_219974_) {
if (this.paymentSlot.hasItem()) {
this.beaconData.set(1, encodeEffect(p_219973_.orElse(null)));
this.beaconData.set(2, encodeEffect(p_219974_.orElse(null)));
this.paymentSlot.remove(1);
this.access.execute(Level::blockEntityChanged);
}
}
public boolean hasPayment() {
return !this.beacon.getItem(0).isEmpty();
}
static class PaymentSlot extends Slot {
public PaymentSlot(Container p_39071_, int p_39072_, int p_39073_, int p_39074_) {
super(p_39071_, p_39072_, p_39073_, p_39074_);
}
@Override
public boolean mayPlace(ItemStack p_39077_) {
return p_39077_.is(ItemTags.BEACON_PAYMENT_ITEMS);
}
@Override
public int getMaxStackSize() {
return 1;
}
}
}