1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
package dev.isxander.yacl.gui.controllers;
import com.mojang.blaze3d.vertex.PoseStack;
import dev.isxander.yacl.api.Controller;
import dev.isxander.yacl.api.utils.Dimension;
import dev.isxander.yacl.gui.AbstractWidget;
import dev.isxander.yacl.gui.YACLScreen;
import dev.isxander.yacl.gui.utils.GuiUtils;
import net.minecraft.ChatFormatting;
import net.minecraft.client.gui.ComponentPath;
import net.minecraft.client.gui.GuiComponent;
import net.minecraft.client.gui.components.MultiLineLabel;
import net.minecraft.client.gui.narration.NarratedElementType;
import net.minecraft.client.gui.narration.NarrationElementOutput;
import net.minecraft.client.gui.navigation.FocusNavigationEvent;
import net.minecraft.network.chat.Component;
import org.jetbrains.annotations.Nullable;
public abstract class ControllerWidget<T extends Controller<?>> extends AbstractWidget {
protected final T control;
protected MultiLineLabel wrappedTooltip;
protected final YACLScreen screen;
protected boolean focused = false;
protected boolean hovered = false;
protected final Component modifiedOptionName;
protected final String optionNameString;
public ControllerWidget(T control, YACLScreen screen, Dimension<Integer> dim) {
super(dim);
this.control = control;
this.screen = screen;
control.option().addListener((opt, pending) -> updateTooltip());
updateTooltip();
this.modifiedOptionName = control.option().name().copy().withStyle(ChatFormatting.ITALIC);
this.optionNameString = control.option().name().getString().toLowerCase();
}
@Override
public void render(PoseStack matrices, int mouseX, int mouseY, float delta) {
hovered = isMouseOver(mouseX, mouseY);
Component name = control.option().changed() ? modifiedOptionName : control.option().name();
Component shortenedName = Component.literal(GuiUtils.shortenString(name.getString(), textRenderer, getDimension().width() - getControlWidth() - getXPadding() - 7, "...")).setStyle(name.getStyle());
drawButtonRect(matrices, getDimension().x(), getDimension().y(), getDimension().xLimit(), getDimension().yLimit(), isHovered(), isAvailable());
matrices.pushPose();
matrices.translate(getDimension().x() + getXPadding(), getTextY(), 0);
textRenderer.drawShadow(matrices, shortenedName, 0, 0, getValueColor());
matrices.popPose();
drawValueText(matrices, mouseX, mouseY, delta);
if (isHovered()) {
drawHoveredControl(matrices, mouseX, mouseY, delta);
}
}
@Override
public void postRender(PoseStack matrices, int mouseX, int mouseY, float delta) {
if (hovered || focused) {
YACLScreen.renderMultilineTooltip(matrices, textRenderer, wrappedTooltip, getDimension().centerX(), getDimension().y() - 5, getDimension().yLimit() + 5, screen.width, screen.height);
}
}
protected void drawHoveredControl(PoseStack matrices, int mouseX, int mouseY, float delta) {
}
protected void drawValueText(PoseStack matrices, int mouseX, int mouseY, float delta) {
Component valueText = getValueText();
matrices.pushPose();
matrices.translate(getDimension().xLimit() - textRenderer.width(valueText) - getXPadding(), getTextY(), 0);
textRenderer.drawShadow(matrices, valueText, 0, 0, getValueColor());
matrices.popPose();
}
private void updateTooltip() {
this.wrappedTooltip = MultiLineLabel.create(textRenderer, control.option().tooltip(), screen.width / 3 * 2 - 10);
}
protected int getControlWidth() {
return isHovered() ? getHoveredControlWidth() : getUnhoveredControlWidth();
}
public boolean isHovered() {
return isAvailable() && (hovered || focused);
}
protected abstract int getHoveredControlWidth();
protected int getUnhoveredControlWidth() {
return textRenderer.width(getValueText());
}
protected int getXPadding() {
return 5;
}
protected int getYPadding() {
return 2;
}
protected Component getValueText() {
return control.formatValue();
}
protected boolean isAvailable() {
return control.option().available();
}
protected int getValueColor() {
return isAvailable() ? -1 : inactiveColor;
}
@Override
public boolean canReset() {
return true;
}
protected void drawOutline(PoseStack matrices, int x1, int y1, int x2, int y2, int width, int color) {
GuiComponent.fill(matrices, x1, y1, x2, y1 + width, color);
GuiComponent.fill(matrices, x2, y1, x2 - width, y2, color);
GuiComponent.fill(matrices, x1, y2, x2, y2 - width, color);
GuiComponent.fill(matrices, x1, y1, x1 + width, y2, color);
}
protected float getTextY() {
return getDimension().y() + getDimension().height() / 2f - textRenderer.lineHeight / 2f;
}
@Nullable
@Override
public ComponentPath nextFocusPath(FocusNavigationEvent focusNavigationEvent) {
if (!this.isAvailable())
return null;
return !this.isFocused() ? ComponentPath.leaf(this) : null;
}
@Override
public boolean isFocused() {
return focused;
}
@Override
public void setFocused(boolean focused) {
this.focused = focused;
}
@Override
public void unfocus() {
this.focused = false;
}
@Override
public boolean matchesSearch(String query) {
return optionNameString.contains(query.toLowerCase());
}
@Override
public NarrationPriority narrationPriority() {
return focused ? NarrationPriority.FOCUSED : isHovered() ? NarrationPriority.HOVERED : NarrationPriority.NONE;
}
@Override
public void updateNarration(NarrationElementOutput builder) {
builder.add(NarratedElementType.TITLE, control.option().name());
builder.add(NarratedElementType.HINT, control.option().tooltip());
}
}
|