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
|
package dev.isxander.yacl.gui.controllers;
import dev.isxander.yacl.api.Control;
import dev.isxander.yacl.api.utils.Dimension;
import dev.isxander.yacl.gui.AbstractWidget;
import net.minecraft.client.gui.DrawableHelper;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.gui.screen.narration.NarrationMessageBuilder;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.OrderedText;
import net.minecraft.text.Text;
import java.util.List;
public abstract class ControlWidget<T extends Control<?>> extends AbstractWidget {
protected final T control;
protected final List<OrderedText> wrappedDescription;
public Dimension<Integer> dim;
protected final Screen screen;
protected boolean hovered = false;
protected float hoveredTicks = 0;
public ControlWidget(T control, Screen screen, Dimension<Integer> dim) {
this.control = control;
this.dim = dim;
this.screen = screen;
this.wrappedDescription = textRenderer.wrapLines(control.option().tooltip(), screen.width / 2);
}
@Override
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
hovered = isMouseOver(mouseX, mouseY);
if (hovered) {
hoveredTicks += delta;
} else {
hoveredTicks = 0;
}
Text name = control.option().name();
String nameString = name.getString();
boolean firstIter = true;
while (textRenderer.getWidth(nameString) > dim.width() - getControlWidth() - getXPadding() - 7) {
nameString = nameString.substring(0, nameString.length() - (firstIter ? 2 : 5)).trim();
nameString += "...";
firstIter = false;
}
Text shortenedName = Text.literal(nameString).fillStyle(name.getStyle());
drawButtonRect(matrices, dim.x(), dim.y(), dim.xLimit(), dim.yLimit(), hovered);
matrices.push();
matrices.translate(dim.x() + getXPadding(), getTextY(), 0);
textRenderer.drawWithShadow(matrices, shortenedName, 0, 0, -1);
matrices.pop();
drawValueText(matrices);
if (hovered) {
drawHoveredControl(matrices, mouseX, mouseY, delta);
}
if (hoveredTicks > 40) {
screen.renderOrderedTooltip(matrices, wrappedDescription, mouseX, mouseY);
}
}
protected void drawHoveredControl(MatrixStack matrices, int mouseX, int mouseY, float delta) {
}
protected void drawValueText(MatrixStack matrices) {
Text valueText = control.formatValue();
matrices.push();
matrices.translate(dim.xLimit() - textRenderer.getWidth(valueText) - getXPadding(), getTextY(), 0);
textRenderer.drawWithShadow(matrices, valueText, 0, 0, -1);
matrices.pop();
}
@Override
public boolean isMouseOver(double mouseX, double mouseY) {
return this.dim.isPointInside((int) mouseX, (int) mouseY);
}
protected int getControlWidth() {
return hovered ? getHoveredControlWidth() : getUnhoveredControlWidth();
}
protected abstract int getHoveredControlWidth();
protected int getUnhoveredControlWidth() {
return textRenderer.getWidth(control.formatValue());
}
protected int getXPadding() {
return 5;
}
protected int getYPadding() {
return 2;
}
protected void drawOutline(MatrixStack matrices, int x1, int y1, int x2, int y2, int width, int color) {
DrawableHelper.fill(matrices, x1, y1, x2, y1 + width, color);
DrawableHelper.fill(matrices, x2, y1, x2 - width, y2, color);
DrawableHelper.fill(matrices, x1, y2, x2, y2 - width, color);
DrawableHelper.fill(matrices, x1, y1, x1 + width, y2, color);
}
protected float getTextY() {
return dim.y() + dim.height() / 2f - textRenderer.fontHeight / 2f;
}
@Override
public SelectionType getType() {
return hovered ? SelectionType.HOVERED : SelectionType.NONE;
}
@Override
public void appendNarrations(NarrationMessageBuilder builder) {
}
}
|