96 lines
3.3 KiB
Java
96 lines
3.3 KiB
Java
package ru.betterend.mixin.client;
|
|
|
|
import java.util.List;
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.Shadow;
|
|
import org.spongepowered.asm.mixin.injection.At;
|
|
import org.spongepowered.asm.mixin.injection.Inject;
|
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
|
|
|
import com.google.common.collect.Lists;
|
|
import com.mojang.blaze3d.vertex.PoseStack;
|
|
|
|
import net.minecraft.client.gui.components.AbstractWidget;
|
|
import net.minecraft.client.gui.components.Button;
|
|
import net.minecraft.client.gui.components.EditBox;
|
|
import net.minecraft.client.gui.screens.inventory.AnvilScreen;
|
|
import net.minecraft.client.gui.screens.inventory.ItemCombinerScreen;
|
|
import net.minecraft.network.chat.Component;
|
|
import net.minecraft.network.chat.TextComponent;
|
|
import net.minecraft.resources.ResourceLocation;
|
|
import net.minecraft.world.entity.player.Inventory;
|
|
import net.minecraft.world.inventory.AbstractContainerMenu;
|
|
import net.minecraft.world.inventory.AnvilMenu;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import ru.betterend.interfaces.AnvilScreenHandlerExtended;
|
|
|
|
@Mixin(AnvilScreen.class)
|
|
public class AnvilScreenMixin extends ItemCombinerScreen<AnvilMenu> {
|
|
|
|
@Shadow
|
|
private EditBox name;
|
|
|
|
private final List<AbstractWidget> be_buttons = Lists.newArrayList();
|
|
|
|
public AnvilScreenMixin(AnvilMenu handler, Inventory playerInventory, Component title,
|
|
ResourceLocation texture) {
|
|
super(handler, playerInventory, title, texture);
|
|
}
|
|
|
|
@Inject(method = "subInit", at = @At("TAIL"))
|
|
protected void be_subInit(CallbackInfo info) {
|
|
int x = (width - imageWidth) / 2;
|
|
int y = (height - imageHeight) / 2;
|
|
be_buttons.clear();
|
|
be_buttons.add(new Button(x + 8, y + 45, 15, 20, new TextComponent("<"), b -> be_previousRecipe()));
|
|
be_buttons.add(new Button(x + 154, y + 45, 15, 20, new TextComponent(">"), b -> be_nextRecipe()));
|
|
}
|
|
|
|
@Inject(method = "renderFg", at = @At("TAIL"))
|
|
protected void be_renderForeground(PoseStack matrices, int mouseX, int mouseY, float delta, CallbackInfo info) {
|
|
be_buttons.forEach(button -> {
|
|
button.render(matrices, mouseX, mouseY, delta);
|
|
});
|
|
}
|
|
|
|
@Inject(method = "slotChanged", at = @At("HEAD"), cancellable = true)
|
|
public void be_onSlotUpdate(AbstractContainerMenu handler, int slotId, ItemStack stack, CallbackInfo info) {
|
|
AnvilScreenHandlerExtended anvilHandler = (AnvilScreenHandlerExtended) handler;
|
|
if (anvilHandler.be_getCurrentRecipe() != null) {
|
|
if (anvilHandler.be_getRecipes().size() > 1) {
|
|
be_buttons.forEach(button -> button.visible = true);
|
|
} else {
|
|
be_buttons.forEach(button -> button.visible = false);
|
|
}
|
|
name.setValue("");
|
|
info.cancel();
|
|
} else {
|
|
be_buttons.forEach(button -> button.visible = false);
|
|
}
|
|
}
|
|
|
|
private void be_nextRecipe() {
|
|
((AnvilScreenHandlerExtended) menu).be_nextRecipe();
|
|
}
|
|
|
|
private void be_previousRecipe() {
|
|
((AnvilScreenHandlerExtended) menu).be_previousRecipe();
|
|
}
|
|
|
|
@Override
|
|
public boolean mouseClicked(double mouseX, double mouseY, int button) {
|
|
if (minecraft != null) {
|
|
for (AbstractWidget elem : be_buttons) {
|
|
if (elem.visible && elem.mouseClicked(mouseX, mouseY, button)) {
|
|
if (minecraft.gameMode != null) {
|
|
int i = be_buttons.indexOf(elem);
|
|
minecraft.gameMode.handleInventoryButtonClick(menu.containerId, i);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return super.mouseClicked(mouseX, mouseY, button);
|
|
}
|
|
}
|