165 lines
7.2 KiB
Java
165 lines
7.2 KiB
Java
package net.minecraft.client.gui.screens.inventory;
|
|
|
|
import java.util.List;
|
|
import java.util.Optional;
|
|
import net.fabricmc.api.EnvType;
|
|
import net.fabricmc.api.Environment;
|
|
import net.minecraft.client.gui.GuiGraphics;
|
|
import net.minecraft.client.renderer.RenderType;
|
|
import net.minecraft.core.component.DataComponents;
|
|
import net.minecraft.network.chat.Component;
|
|
import net.minecraft.resources.ResourceLocation;
|
|
import net.minecraft.world.entity.EquipmentSlot;
|
|
import net.minecraft.world.entity.decoration.ArmorStand;
|
|
import net.minecraft.world.entity.player.Inventory;
|
|
import net.minecraft.world.inventory.AbstractContainerMenu;
|
|
import net.minecraft.world.inventory.SmithingMenu;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import net.minecraft.world.item.SmithingTemplateItem;
|
|
import net.minecraft.world.item.equipment.Equippable;
|
|
import org.jetbrains.annotations.Nullable;
|
|
import org.joml.Quaternionf;
|
|
import org.joml.Vector3f;
|
|
|
|
@Environment(EnvType.CLIENT)
|
|
public class SmithingScreen extends ItemCombinerScreen<SmithingMenu> {
|
|
private static final ResourceLocation ERROR_SPRITE = ResourceLocation.withDefaultNamespace("container/smithing/error");
|
|
private static final ResourceLocation EMPTY_SLOT_SMITHING_TEMPLATE_ARMOR_TRIM = ResourceLocation.withDefaultNamespace(
|
|
"container/slot/smithing_template_armor_trim"
|
|
);
|
|
private static final ResourceLocation EMPTY_SLOT_SMITHING_TEMPLATE_NETHERITE_UPGRADE = ResourceLocation.withDefaultNamespace(
|
|
"container/slot/smithing_template_netherite_upgrade"
|
|
);
|
|
private static final Component MISSING_TEMPLATE_TOOLTIP = Component.translatable("container.upgrade.missing_template_tooltip");
|
|
private static final Component ERROR_TOOLTIP = Component.translatable("container.upgrade.error_tooltip");
|
|
private static final List<ResourceLocation> EMPTY_SLOT_SMITHING_TEMPLATES = List.of(
|
|
EMPTY_SLOT_SMITHING_TEMPLATE_ARMOR_TRIM, EMPTY_SLOT_SMITHING_TEMPLATE_NETHERITE_UPGRADE
|
|
);
|
|
private static final int TITLE_LABEL_X = 44;
|
|
private static final int TITLE_LABEL_Y = 15;
|
|
private static final int ERROR_ICON_WIDTH = 28;
|
|
private static final int ERROR_ICON_HEIGHT = 21;
|
|
private static final int ERROR_ICON_X = 65;
|
|
private static final int ERROR_ICON_Y = 46;
|
|
private static final int TOOLTIP_WIDTH = 115;
|
|
private static final int ARMOR_STAND_Y_ROT = 210;
|
|
private static final int ARMOR_STAND_X_ROT = 25;
|
|
private static final Vector3f ARMOR_STAND_TRANSLATION = new Vector3f();
|
|
private static final Quaternionf ARMOR_STAND_ANGLE = new Quaternionf().rotationXYZ(0.43633232F, 0.0F, (float) Math.PI);
|
|
private static final int ARMOR_STAND_SCALE = 25;
|
|
private static final int ARMOR_STAND_OFFSET_Y = 75;
|
|
private static final int ARMOR_STAND_OFFSET_X = 141;
|
|
private final CyclingSlotBackground templateIcon = new CyclingSlotBackground(0);
|
|
private final CyclingSlotBackground baseIcon = new CyclingSlotBackground(1);
|
|
private final CyclingSlotBackground additionalIcon = new CyclingSlotBackground(2);
|
|
@Nullable
|
|
private ArmorStand armorStandPreview;
|
|
|
|
public SmithingScreen(SmithingMenu menu, Inventory playerInventory, Component title) {
|
|
super(menu, playerInventory, title, ResourceLocation.withDefaultNamespace("textures/gui/container/smithing.png"));
|
|
this.titleLabelX = 44;
|
|
this.titleLabelY = 15;
|
|
}
|
|
|
|
@Override
|
|
protected void subInit() {
|
|
this.armorStandPreview = new ArmorStand(this.minecraft.level, 0.0, 0.0, 0.0);
|
|
this.armorStandPreview.setNoBasePlate(true);
|
|
this.armorStandPreview.setShowArms(true);
|
|
this.armorStandPreview.yBodyRot = 210.0F;
|
|
this.armorStandPreview.setXRot(25.0F);
|
|
this.armorStandPreview.yHeadRot = this.armorStandPreview.getYRot();
|
|
this.armorStandPreview.yHeadRotO = this.armorStandPreview.getYRot();
|
|
this.updateArmorStandPreview(this.menu.getSlot(3).getItem());
|
|
}
|
|
|
|
@Override
|
|
public void containerTick() {
|
|
super.containerTick();
|
|
Optional<SmithingTemplateItem> optional = this.getTemplateItem();
|
|
this.templateIcon.tick(EMPTY_SLOT_SMITHING_TEMPLATES);
|
|
this.baseIcon.tick((List<ResourceLocation>)optional.map(SmithingTemplateItem::getBaseSlotEmptyIcons).orElse(List.of()));
|
|
this.additionalIcon.tick((List<ResourceLocation>)optional.map(SmithingTemplateItem::getAdditionalSlotEmptyIcons).orElse(List.of()));
|
|
}
|
|
|
|
private Optional<SmithingTemplateItem> getTemplateItem() {
|
|
ItemStack itemStack = this.menu.getSlot(0).getItem();
|
|
return !itemStack.isEmpty() && itemStack.getItem() instanceof SmithingTemplateItem smithingTemplateItem
|
|
? Optional.of(smithingTemplateItem)
|
|
: Optional.empty();
|
|
}
|
|
|
|
@Override
|
|
public void render(GuiGraphics guiGraphics, int mouseX, int mouseY, float partialTick) {
|
|
super.render(guiGraphics, mouseX, mouseY, partialTick);
|
|
this.renderOnboardingTooltips(guiGraphics, mouseX, mouseY);
|
|
}
|
|
|
|
@Override
|
|
protected void renderBg(GuiGraphics guiGraphics, float partialTick, int mouseX, int mouseY) {
|
|
super.renderBg(guiGraphics, partialTick, mouseX, mouseY);
|
|
this.templateIcon.render(this.menu, guiGraphics, partialTick, this.leftPos, this.topPos);
|
|
this.baseIcon.render(this.menu, guiGraphics, partialTick, this.leftPos, this.topPos);
|
|
this.additionalIcon.render(this.menu, guiGraphics, partialTick, this.leftPos, this.topPos);
|
|
InventoryScreen.renderEntityInInventory(
|
|
guiGraphics, this.leftPos + 141, this.topPos + 75, 25.0F, ARMOR_STAND_TRANSLATION, ARMOR_STAND_ANGLE, null, this.armorStandPreview
|
|
);
|
|
}
|
|
|
|
@Override
|
|
public void slotChanged(AbstractContainerMenu containerToSend, int dataSlotIndex, ItemStack stack) {
|
|
if (dataSlotIndex == 3) {
|
|
this.updateArmorStandPreview(stack);
|
|
}
|
|
}
|
|
|
|
private void updateArmorStandPreview(ItemStack stack) {
|
|
if (this.armorStandPreview != null) {
|
|
for (EquipmentSlot equipmentSlot : EquipmentSlot.VALUES) {
|
|
this.armorStandPreview.setItemSlot(equipmentSlot, ItemStack.EMPTY);
|
|
}
|
|
|
|
if (!stack.isEmpty()) {
|
|
Equippable equippable = stack.get(DataComponents.EQUIPPABLE);
|
|
EquipmentSlot equipmentSlot = equippable != null ? equippable.slot() : EquipmentSlot.OFFHAND;
|
|
this.armorStandPreview.setItemSlot(equipmentSlot, stack.copy());
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void renderErrorIcon(GuiGraphics guiGraphics, int x, int y) {
|
|
if (this.hasRecipeError()) {
|
|
guiGraphics.blitSprite(RenderType::guiTextured, ERROR_SPRITE, x + 65, y + 46, 28, 21);
|
|
}
|
|
}
|
|
|
|
private void renderOnboardingTooltips(GuiGraphics guiGraphics, int mouseX, int mouseY) {
|
|
Optional<Component> optional = Optional.empty();
|
|
if (this.hasRecipeError() && this.isHovering(65, 46, 28, 21, mouseX, mouseY)) {
|
|
optional = Optional.of(ERROR_TOOLTIP);
|
|
}
|
|
|
|
if (this.hoveredSlot != null) {
|
|
ItemStack itemStack = this.menu.getSlot(0).getItem();
|
|
ItemStack itemStack2 = this.hoveredSlot.getItem();
|
|
if (itemStack.isEmpty()) {
|
|
if (this.hoveredSlot.index == 0) {
|
|
optional = Optional.of(MISSING_TEMPLATE_TOOLTIP);
|
|
}
|
|
} else if (itemStack.getItem() instanceof SmithingTemplateItem smithingTemplateItem && itemStack2.isEmpty()) {
|
|
if (this.hoveredSlot.index == 1) {
|
|
optional = Optional.of(smithingTemplateItem.getBaseSlotDescription());
|
|
} else if (this.hoveredSlot.index == 2) {
|
|
optional = Optional.of(smithingTemplateItem.getAdditionSlotDescription());
|
|
}
|
|
}
|
|
}
|
|
|
|
optional.ifPresent(component -> guiGraphics.renderTooltip(this.font, this.font.split(component, 115), mouseX, mouseY));
|
|
}
|
|
|
|
private boolean hasRecipeError() {
|
|
return this.menu.hasRecipeError();
|
|
}
|
|
}
|