2025-11-24 22:52:51 +03:00

143 lines
5.9 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* org.jspecify.annotations.Nullable
*/
package net.minecraft.client.gui.components;
import net.minecraft.client.gui.ActiveTextCollector;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.gui.components.Button;
import net.minecraft.client.gui.components.Tooltip;
import net.minecraft.client.gui.components.WidgetSprites;
import net.minecraft.client.renderer.RenderPipelines;
import net.minecraft.network.chat.Component;
import net.minecraft.resources.Identifier;
import org.jspecify.annotations.Nullable;
public abstract class SpriteIconButton
extends Button {
protected final WidgetSprites sprite;
protected final int spriteWidth;
protected final int spriteHeight;
private SpriteIconButton(int width, int height, Component message, int spriteWidth, int spriteHeight, WidgetSprites sprite, Button.OnPress onPress, @Nullable Component tooltip, @Nullable Button.CreateNarration narration) {
super(0, 0, width, height, message, onPress, narration == null ? DEFAULT_NARRATION : narration);
if (tooltip != null) {
this.setTooltip(Tooltip.create(tooltip));
}
this.spriteWidth = spriteWidth;
this.spriteHeight = spriteHeight;
this.sprite = sprite;
}
protected void renderSprite(GuiGraphics graphics, int x, int y) {
graphics.blitSprite(RenderPipelines.GUI_TEXTURED, this.sprite.get(this.isActive(), this.isHoveredOrFocused()), x, y, this.spriteWidth, this.spriteHeight, this.alpha);
}
public static Builder builder(Component message, Button.OnPress onPress, boolean iconOnly) {
return new Builder(message, onPress, iconOnly);
}
public static class Builder {
private final Component message;
private final Button.OnPress onPress;
private final boolean iconOnly;
private int width = 150;
private int height = 20;
private @Nullable WidgetSprites sprite;
private int spriteWidth;
private int spriteHeight;
private @Nullable Component tooltip;
private @Nullable Button.CreateNarration narration;
public Builder(Component message, Button.OnPress onPress, boolean iconOnly) {
this.message = message;
this.onPress = onPress;
this.iconOnly = iconOnly;
}
public Builder width(int width) {
this.width = width;
return this;
}
public Builder size(int width, int height) {
this.width = width;
this.height = height;
return this;
}
public Builder sprite(Identifier sprite, int spriteWidth, int spriteHeight) {
this.sprite = new WidgetSprites(sprite);
this.spriteWidth = spriteWidth;
this.spriteHeight = spriteHeight;
return this;
}
public Builder sprite(WidgetSprites sprite, int spriteWidth, int spriteHeight) {
this.sprite = sprite;
this.spriteWidth = spriteWidth;
this.spriteHeight = spriteHeight;
return this;
}
public Builder withTootip() {
this.tooltip = this.message;
return this;
}
public Builder narration(Button.CreateNarration narration) {
this.narration = narration;
return this;
}
public SpriteIconButton build() {
if (this.sprite == null) {
throw new IllegalStateException("Sprite not set");
}
if (this.iconOnly) {
return new CenteredIcon(this.width, this.height, this.message, this.spriteWidth, this.spriteHeight, this.sprite, this.onPress, this.tooltip, this.narration);
}
return new TextAndIcon(this.width, this.height, this.message, this.spriteWidth, this.spriteHeight, this.sprite, this.onPress, this.tooltip, this.narration);
}
}
public static class TextAndIcon
extends SpriteIconButton {
protected TextAndIcon(int width, int height, Component message, int spriteWidth, int spriteHeight, WidgetSprites sprite, Button.OnPress onPress, @Nullable Component tooltip, @Nullable Button.CreateNarration narration) {
super(width, height, message, spriteWidth, spriteHeight, sprite, onPress, tooltip, narration);
}
@Override
public void renderContents(GuiGraphics graphics, int mouseX, int mouseY, float a) {
this.renderDefaultSprite(graphics);
int left = this.getX() + 2;
int right = this.getX() + this.getWidth() - this.spriteWidth - 4;
int centerX = this.getX() + this.getWidth() / 2;
ActiveTextCollector output = graphics.textRendererForWidget(this, GuiGraphics.HoveredTextEffects.NONE);
output.acceptScrolling(this.getMessage(), centerX, left, right, this.getY(), this.getY() + this.getHeight());
int x = this.getX() + this.getWidth() - this.spriteWidth - 2;
int y = this.getY() + this.getHeight() / 2 - this.spriteHeight / 2;
this.renderSprite(graphics, x, y);
}
}
public static class CenteredIcon
extends SpriteIconButton {
protected CenteredIcon(int width, int height, Component message, int spriteWidth, int spriteHeight, WidgetSprites sprite, Button.OnPress onPress, @Nullable Component tooltip, @Nullable Button.CreateNarration narration) {
super(width, height, message, spriteWidth, spriteHeight, sprite, onPress, tooltip, narration);
}
@Override
public void renderContents(GuiGraphics graphics, int mouseX, int mouseY, float a) {
this.renderDefaultSprite(graphics);
int x = this.getX() + this.getWidth() / 2 - this.spriteWidth / 2;
int y = this.getY() + this.getHeight() / 2 - this.spriteHeight / 2;
this.renderSprite(graphics, x, y);
}
}
}