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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
package dev.isxander.yacl3.gui;
import com.mojang.blaze3d.platform.InputConstants;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.gui.components.AbstractWidget;
import net.minecraft.client.gui.components.ContainerObjectSelectionList;
import net.minecraft.client.gui.components.events.GuiEventListener;
import net.minecraft.client.gui.layouts.LayoutElement;
import net.minecraft.client.gui.navigation.ScreenRectangle;
import net.minecraft.util.Mth;
import org.jetbrains.annotations.Nullable;
import org.lwjgl.glfw.GLFW;
import java.util.function.Consumer;
public class ElementListWidgetExt<E extends ElementListWidgetExt.Entry<E>> extends ContainerObjectSelectionList<E> implements LayoutElement {
protected static final int SCROLLBAR_WIDTH = 6;
private double smoothScrollAmount = getScrollAmount();
private boolean returnSmoothAmount = false;
private final boolean doSmoothScrolling;
private boolean usingScrollbar;
public ElementListWidgetExt(Minecraft client, int x, int y, int width, int height, boolean smoothScrolling) {
/*? if >1.20.2 {*/
super(client, width, x, y, height);
/*?} else {*/
/*super(client, width, height, y, y + height, 22);
this.x0 = x;
this.x1 = x + width;
*//*?}*/
this.doSmoothScrolling = smoothScrolling;
setRenderHeader(false, 0);
}
@Override
public boolean mouseScrolled(double mouseX, double mouseY, /*? if >1.20.2 {*/ double horizontal, /*?}*/ double vertical) {
double scroll = vertical;
/*? if >1.20.2 {*/
scroll += horizontal;
/*?}*/
// default implementation bases scroll step from total height of entries, this is constant
this.setScrollAmount(this.getScrollAmount() - scroll * 20);
return true;
}
@Override
protected int getScrollbarPosition() {
// default implementation does not respect left/right
return this.getX() + this.getWidth() - SCROLLBAR_WIDTH;
}
@Override
/*? if >1.20.2 {*/
public void renderWidget(GuiGraphics graphics, int mouseX, int mouseY, float delta)
/*?} else {*/
/*public void render(GuiGraphics graphics, int mouseX, int mouseY, float delta)
*//*?}*/
{
if (usingScrollbar) {
resetSmoothScrolling();
}
smoothScrollAmount = Mth.lerp(
delta * 0.5,
smoothScrollAmount,
getScrollAmount()
);
returnSmoothAmount = true;
graphics.enableScissor(this.getX(), this.getY(), this.getX() + this.getWidth(), this.getY() + this.getHeight());
/*? if >1.20.2 {*/
super.renderWidget(graphics, mouseX, mouseY, delta);
/*?} else {*/
/*super.render(graphics, mouseX, mouseY, delta);
*//*?}*/
graphics.disableScissor();
returnSmoothAmount = false;
}
/*? if >1.20.1 {*/
@Override
/*?}*/
protected boolean isValidMouseClick(int button) {
return button == InputConstants.MOUSE_BUTTON_LEFT || button == InputConstants.MOUSE_BUTTON_RIGHT;
}
@Override
public boolean mouseClicked(double mouseX, double mouseY, int button) {
if (button == 0 && mouseX >= getScrollbarPosition() && mouseX < getScrollbarPosition() + SCROLLBAR_WIDTH) {
usingScrollbar = true;
}
return super.mouseClicked(mouseX, mouseY, button);
}
@Override
public boolean mouseReleased(double mouseX, double mouseY, int button) {
if (button == 0) {
usingScrollbar = false;
}
return super.mouseReleased(mouseX, mouseY, button);
}
public void updateDimensions(ScreenRectangle rectangle) {
this.setX(rectangle.left());
this.setY(rectangle.top());
this.setWidth(rectangle.width());
this.setHeight(rectangle.height());
}
/**
* awful code to only use smooth scroll state when rendering,
* not other code that needs target scroll amount
*/
@Override
public double getScrollAmount() {
if (returnSmoothAmount && doSmoothScrolling)
return smoothScrollAmount;
return super.getScrollAmount();
}
protected void resetSmoothScrolling() {
this.smoothScrollAmount = super.getScrollAmount();
}
@Nullable
@Override
protected E getEntryAtPosition(double x, double y) {
y += getScrollAmount();
if (x < this.getX() || x > this.getX() + this.getWidth())
return null;
int currentY = this.getY() - headerHeight + 4;
for (E entry : children()) {
if (y >= currentY && y <= currentY + entry.getItemHeight()) {
return entry;
}
currentY += entry.getItemHeight();
}
return null;
}
/*
below code is licensed from cloth-config under LGPL3
modified to inherit vanilla's EntryListWidget and use yarn mappings
code is responsible for having dynamic item heights
*/
@Override
protected int getMaxPosition() {
return children().stream().map(E::getItemHeight).reduce(0, Integer::sum) + headerHeight;
}
@Override
protected void centerScrollOn(E entry) {
double d = (this.height) / -2d;
for (int i = 0; i < this.children().indexOf(entry) && i < this.getItemCount(); i++)
d += children().get(i).getItemHeight();
this.setScrollAmount(d);
}
@Override
/*? if >=1.21.2 {*/ public /*?} else {*/ /*protected *//*?}*/
int getRowTop(int index) {
int integer = getY() + 4 - (int) this.getScrollAmount() + headerHeight;
for (int i = 0; i < children().size() && i < index; i++)
integer += children().get(i).getItemHeight();
return integer;
}
@Override
protected void ensureVisible(E entry) {
int i = this.getRowTop(this.children().indexOf(entry));
int j = i - this.getY() - 4 - entry.getItemHeight();
if (j < 0) {
this.setScrollAmount(this.getScrollAmount() + j);
}
int k = this.getY() + this.getHeight() - i - entry.getItemHeight() * 2;
if (k < 0) {
this.setScrollAmount(this.getScrollAmount() - k);
}
}
@Override
/*? if >1.20.4 {*/
protected void renderListItems(GuiGraphics graphics, int mouseX, int mouseY, float delta)
/*?} else {*/
/*protected void renderList(GuiGraphics graphics, int mouseX, int mouseY, float delta)
*//*?}*/
{
int left = this.getRowLeft();
int right = this.getRowWidth();
int count = this.getItemCount();
for(int i = 0; i < count; ++i) {
E entry = children().get(i);
int top = this.getRowTop(i);
int bottom = top + entry.getItemHeight();
int entryHeight = entry.getItemHeight() - 4;
if (bottom >= this.getY() && top <= this.getY() + this.getHeight()) {
this.renderItem(graphics, mouseX, mouseY, delta, i, left, top, right, entryHeight);
}
}
}
/* END cloth config code */
@Override
public void visitWidgets(Consumer<AbstractWidget> consumer) {
}
public abstract static class Entry<E extends Entry<E>> extends ContainerObjectSelectionList.Entry<E> {
@Override
public boolean mouseClicked(double mouseX, double mouseY, int button) {
for (GuiEventListener child : this.children()) {
if (child.mouseClicked(mouseX, mouseY, button)) {
if (button == InputConstants.MOUSE_BUTTON_LEFT || button == InputConstants.MOUSE_BUTTON_RIGHT)
this.setDragging(true);
return true;
}
}
return false;
}
@Override
public boolean mouseDragged(double mouseX, double mouseY, int button, double deltaX, double deltaY) {
if (isDragging() && (button == InputConstants.MOUSE_BUTTON_LEFT || button == InputConstants.MOUSE_BUTTON_RIGHT)) {
for (GuiEventListener child : this.children()) {
if (child.mouseDragged(mouseX, mouseY, button, deltaX, deltaY))
return true;
}
}
return false;
}
public int getItemHeight() {
return 22;
}
}
/*? if <1.20.3 {*/
/*@Override
public int getX() {
return x0;
}
@Override
public int getY() {
return y0;
}
@Override
public void setX(int x) {
int width = this.getWidth();
x0 = x;
x1 = x + width;
}
@Override
public void setY(int y) {
int height = this.getHeight();
y0 = y;
y1 = y + height;
}
public void setWidth(int width) {
x1 = x0 + width;
this.width = width;
}
public void setHeight(int height) {
y1 = y0 + height;
this.height = height;
}
@Override
public int getWidth() {
return width;
}
@Override
public int getHeight() {
return height;
}
*//*?}*/
}
|