forked from MeteorDevelopment/meteor-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWidgetScreen.java
More file actions
423 lines (319 loc) · 11.6 KB
/
Copy pathWidgetScreen.java
File metadata and controls
423 lines (319 loc) · 11.6 KB
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/*
* This file is part of the Meteor Client distribution (https://github.com/MeteorDevelopment/meteor-client).
* Copyright (c) Meteor Development.
*/
package meteordevelopment.meteorclient.gui;
import meteordevelopment.meteorclient.MeteorClient;
import meteordevelopment.meteorclient.gui.renderer.GuiDebugRenderer;
import meteordevelopment.meteorclient.gui.renderer.GuiRenderer;
import meteordevelopment.meteorclient.gui.tabs.TabScreen;
import meteordevelopment.meteorclient.gui.utils.Cell;
import meteordevelopment.meteorclient.gui.widgets.WRoot;
import meteordevelopment.meteorclient.gui.widgets.WWidget;
import meteordevelopment.meteorclient.gui.widgets.containers.WContainer;
import meteordevelopment.meteorclient.gui.widgets.input.WTextBox;
import meteordevelopment.meteorclient.utils.Utils;
import meteordevelopment.meteorclient.utils.misc.CursorStyle;
import meteordevelopment.meteorclient.utils.misc.input.Input;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.Click;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.input.CharInput;
import net.minecraft.client.input.KeyInput;
import net.minecraft.client.util.MacWindowUtil;
import net.minecraft.text.Text;
import net.minecraft.util.math.MathHelper;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.Consumer;
import static meteordevelopment.meteorclient.MeteorClient.mc;
import static meteordevelopment.meteorclient.utils.Utils.getWindowHeight;
import static meteordevelopment.meteorclient.utils.Utils.getWindowWidth;
import static org.lwjgl.glfw.GLFW.*;
public abstract class WidgetScreen extends Screen {
private static final GuiRenderer RENDERER = new GuiRenderer();
private static final GuiDebugRenderer DEBUG_RENDERER = new GuiDebugRenderer();
public Runnable taskAfterRender;
protected Runnable enterAction;
public Screen parent;
private final WContainer root;
protected final GuiTheme theme;
public boolean locked, lockedAllowClose;
private boolean closed;
private boolean onClose;
private boolean debug;
private boolean closing;
private double lastMouseX, lastMouseY;
public double animProgress;
private List<Runnable> onClosed;
protected boolean firstInit = true;
public WidgetScreen(GuiTheme theme, String title) {
super(Text.literal(title));
this.parent = mc.currentScreen;
this.root = new WFullScreenRoot();
this.theme = theme;
root.theme = theme;
if (parent != null) {
animProgress = 1;
if (this instanceof TabScreen && parent instanceof TabScreen) {
parent = ((TabScreen) parent).parent;
}
}
}
public <W extends WWidget> Cell<W> add(W widget) {
return root.add(widget);
}
public void clear() {
root.clear();
}
public void invalidate() {
root.invalidate();
}
@Override
protected void init() {
MeteorClient.EVENT_BUS.subscribe(this);
closed = false;
if (firstInit) {
firstInit = false;
initWidgets();
}
}
public abstract void initWidgets();
public void reload() {
clear();
initWidgets();
}
public void onClosed(Runnable action) {
if (onClosed == null) onClosed = new ArrayList<>(2);
onClosed.add(action);
}
@Override
public boolean mouseClicked(Click click, boolean doubled) {
if (locked) return false;
double mouseX = click.x();
double mouseY = click.y();
double s = mc.getWindow().getScaleFactor();
mouseX *= s;
mouseY *= s;
return root.mouseClicked(new Click(mouseX, mouseY, click.buttonInfo()), doubled);
}
@Override
public boolean mouseReleased(Click click) {
if (locked) return false;
double mouseX = click.x();
double mouseY = click.y();
double s = mc.getWindow().getScaleFactor();
mouseX *= s;
mouseY *= s;
return root.mouseReleased(new Click(mouseX, mouseY, click.buttonInfo()));
}
@Override
public void mouseMoved(double mouseX, double mouseY) {
if (locked) return;
double s = mc.getWindow().getScaleFactor();
mouseX *= s;
mouseY *= s;
root.mouseMoved(mouseX, mouseY, lastMouseX, lastMouseY);
lastMouseX = mouseX;
lastMouseY = mouseY;
}
@Override
public boolean mouseScrolled(double mouseX, double mouseY, double horizontalAmount, double verticalAmount) {
if (locked) return false;
root.mouseScrolled(verticalAmount);
return super.mouseScrolled(mouseX, mouseY, horizontalAmount, verticalAmount);
}
@Override
public boolean keyReleased(KeyInput input) {
if (locked) return false;
if ((input.modifiers() == GLFW_MOD_CONTROL || input.modifiers() == GLFW_MOD_SUPER) && input.key() == GLFW_KEY_9) {
debug = !debug;
return true;
}
if ((input.key() == GLFW_KEY_ENTER || input.key() == GLFW_KEY_KP_ENTER) && enterAction != null) {
enterAction.run();
return true;
}
return super.keyReleased(input);
}
@Override
public boolean keyPressed(KeyInput input) {
if (locked) return false;
boolean shouldReturn = root.keyPressed(input) || super.keyPressed(input);
if (shouldReturn) return true;
// Select next text box if TAB was pressed
if (input.key() == GLFW_KEY_TAB) {
AtomicReference<WTextBox> firstTextBox = new AtomicReference<>(null);
AtomicBoolean done = new AtomicBoolean(false);
AtomicBoolean foundFocused = new AtomicBoolean(false);
loopWidgets(root, wWidget -> {
if (done.get() || !(wWidget instanceof WTextBox textBox)) return;
if (foundFocused.get()) {
textBox.setFocused(true);
textBox.setCursorMax();
done.set(true);
} else {
if (textBox.isFocused()) {
textBox.setFocused(false);
foundFocused.set(true);
}
}
if (firstTextBox.get() == null) firstTextBox.set(textBox);
});
if (!done.get() && firstTextBox.get() != null) {
firstTextBox.get().setFocused(true);
firstTextBox.get().setCursorMax();
}
return true;
}
boolean control = MacWindowUtil.IS_MAC ? input.modifiers() == GLFW_MOD_SUPER : input.modifiers() == GLFW_MOD_CONTROL;
return (control && input.key() == GLFW_KEY_C && toClipboard())
|| (control && input.key() == GLFW_KEY_V && fromClipboard());
}
public void keyRepeated(KeyInput input) {
if (locked) return;
root.keyRepeated(input);
}
@Override
public boolean charTyped(CharInput input) {
if (locked) return false;
return root.charTyped(input);
}
@Override
public void renderBackground(DrawContext context, int mouseX, int mouseY, float deltaTicks) {
if (this.client.world == null) {
this.renderPanoramaBackground(context, deltaTicks);
}
}
public void renderCustom(DrawContext context, int mouseX, int mouseY, float delta) {
int s = mc.getWindow().getScaleFactor();
mouseX *= s;
mouseY *= s;
animProgress += (delta / 20 * 14) * (closing ? -1 : 1);
animProgress = MathHelper.clamp(animProgress, 0, 1);
if (closing && (animProgress == 0 || parent != null)) {
closeInternal();
}
GuiKeyEvents.canUseKeys = true;
// Apply projection without scaling
Utils.unscaledProjection();
onRenderBefore(context, delta);
RENDERER.theme = theme;
theme.beforeRender();
RENDERER.begin(context);
RENDERER.setAlpha(animProgress);
root.render(RENDERER, mouseX, mouseY, delta / 20);
RENDERER.setAlpha(1);
RENDERER.end();
boolean tooltip = RENDERER.renderTooltip(context, mouseX, mouseY, delta / 20);
if (debug) {
DEBUG_RENDERER.render(root);
if (tooltip) DEBUG_RENDERER.render(RENDERER.tooltipWidget);
}
Utils.scaledProjection();
runAfterRenderTasks();
}
protected void runAfterRenderTasks() {
if (taskAfterRender != null) {
taskAfterRender.run();
taskAfterRender = null;
}
}
protected void onRenderBefore(DrawContext drawContext, float delta) {}
@Override
public void resize(MinecraftClient client, int width, int height) {
super.resize(client, width, height);
root.invalidate();
}
@Override
public void close() {
if (!locked || lockedAllowClose) {
closing = true;
}
}
@Override
public void removed() {
if (!closed || lockedAllowClose) {
closed = true;
onClosed();
Input.setCursorStyle(CursorStyle.Default);
loopWidgets(root, widget -> {
if (widget instanceof WTextBox textBox && textBox.isFocused()) textBox.setFocused(false);
});
MeteorClient.EVENT_BUS.unsubscribe(this);
GuiKeyEvents.canUseKeys = true;
if (onClosed != null) {
for (Runnable action : onClosed) action.run();
}
if (onClose) {
taskAfterRender = () -> {
locked = true;
mc.setScreen(parent);
};
}
}
}
private void closeInternal() {
boolean preOnClose = onClose;
onClose = true;
super.close();
removed();
onClose = preOnClose;
}
private void loopWidgets(WWidget widget, Consumer<WWidget> action) {
action.accept(widget);
if (widget instanceof WContainer) {
for (Cell<?> cell : ((WContainer) widget).cells) loopWidgets(cell.widget(), action);
}
}
protected void onClosed() {}
public boolean toClipboard() {
return false;
}
public boolean fromClipboard() {
return false;
}
@Override
public boolean shouldCloseOnEsc() {
return !locked || lockedAllowClose;
}
@Override
public boolean shouldPause() {
return false;
}
private static class WFullScreenRoot extends WContainer implements WRoot {
private boolean valid;
@Override
public void invalidate() {
valid = false;
}
@Override
protected void onCalculateSize() {
width = getWindowWidth();
height = getWindowHeight();
}
@Override
protected void onCalculateWidgetPositions() {
for (Cell<?> cell : cells) {
cell.x = 0;
cell.y = 0;
cell.width = width;
cell.height = height;
cell.alignWidget();
}
}
@Override
public boolean render(GuiRenderer renderer, double mouseX, double mouseY, double delta) {
if (!valid) {
calculateSize();
calculateWidgetPositions();
valid = true;
mouseMoved(mc.mouse.getX(), mc.mouse.getY(), mc.mouse.getX(), mc.mouse.getY());
}
return super.render(renderer, mouseX, mouseY, delta);
}
}
}