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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
package dev.isxander.yacl3.gui.controllers.string;
import com.mojang.blaze3d.platform.InputConstants;
import dev.isxander.yacl3.api.OptionEventListener;
import dev.isxander.yacl3.api.utils.Dimension;
import dev.isxander.yacl3.gui.YACLScreen;
import dev.isxander.yacl3.gui.controllers.ControllerWidget;
import dev.isxander.yacl3.gui.utils.GuiUtils;
import dev.isxander.yacl3.gui.utils.UndoRedoHelper;
import net.minecraft.ChatFormatting;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.gui.screens.Screen;
import net.minecraft.network.chat.Component;
import java.util.function.Consumer;
public class StringControllerElement extends ControllerWidget<IStringController<?>> {
protected final boolean instantApply;
protected String inputField;
protected Dimension<Integer> inputFieldBounds;
protected boolean inputFieldFocused;
protected int caretPos;
protected int previousCaretPos;
protected int selectionLength;
protected int renderOffset;
protected UndoRedoHelper undoRedoHelper;
protected float ticks;
protected float caretTicks;
private final Component emptyText;
public StringControllerElement(IStringController<?> control, YACLScreen screen, Dimension<Integer> dim, boolean instantApply) {
super(control, screen, dim);
this.instantApply = instantApply;
inputField = control.getString();
inputFieldFocused = false;
selectionLength = 0;
emptyText = Component.literal("Click to type...").withStyle(ChatFormatting.GRAY);
control.option().addEventListener((opt, event) -> {
if (event == OptionEventListener.Event.STATE_CHANGE) {
inputField = control.getString();
}
});
setDimension(dim);
}
@Override
protected void drawHoveredControl(GuiGraphics graphics, int mouseX, int mouseY, float delta) {
}
@Override
protected void drawValueText(GuiGraphics graphics, int mouseX, int mouseY, float delta) {
Component valueText = getValueText();
if (!isHovered()) valueText = Component.literal(GuiUtils.shortenString(valueText.getString(), textRenderer, getMaxUnwrapLength(), "...")).setStyle(valueText.getStyle());
int textX = getDimension().xLimit() - textRenderer.width(valueText) + renderOffset - getXPadding();
graphics.enableScissor(inputFieldBounds.x(), inputFieldBounds.y() - 2, inputFieldBounds.xLimit() + 1, inputFieldBounds.yLimit() + 4);
graphics.drawString(textRenderer, valueText, textX, getTextY(), getValueColor(), true);
if (isHovered()) {
ticks += delta;
String text = getValueText().getString();
graphics.fill(inputFieldBounds.x(), inputFieldBounds.yLimit(), inputFieldBounds.xLimit(), inputFieldBounds.yLimit() + 1, -1);
graphics.fill(inputFieldBounds.x() + 1, inputFieldBounds.yLimit() + 1, inputFieldBounds.xLimit() + 1, inputFieldBounds.yLimit() + 2, 0xFF404040);
if (inputFieldFocused || focused) {
if (caretPos > text.length())
caretPos = text.length();
int caretX = textX + textRenderer.width(text.substring(0, caretPos));
if (text.isEmpty())
caretX = inputFieldBounds.x() + inputFieldBounds.width() / 2;
if (selectionLength != 0) {
int selectionX = textX + textRenderer.width(text.substring(0, caretPos + selectionLength));
graphics.fill(caretX, inputFieldBounds.y() - 2, selectionX, inputFieldBounds.yLimit() - 1, 0x803030FF);
}
if(caretPos != previousCaretPos) {
previousCaretPos = caretPos;
caretTicks = 0;
}
if ((caretTicks += delta) % 20 <= 10)
graphics.fill(caretX, inputFieldBounds.y() - 2, caretX + 1, inputFieldBounds.yLimit() - 1, -1);
}
}
graphics.disableScissor();
}
@Override
public boolean mouseClicked(double mouseX, double mouseY, int button) {
if (isAvailable() && getDimension().isPointInside((int) mouseX, (int) mouseY)) {
inputFieldFocused = true;
if (!inputFieldBounds.isPointInside((int) mouseX, (int) mouseY)) {
caretPos = getDefaultCaretPos();
} else {
// gets the appropriate caret position for where you click
int textX = (int) mouseX - (inputFieldBounds.xLimit() - textRenderer.width(getValueText()));
int pos = -1;
int currentWidth = 0;
for (char ch : inputField.toCharArray()) {
pos++;
int charLength = textRenderer.width(String.valueOf(ch));
if (currentWidth + charLength / 2 > textX) { // if more than halfway past the characters select in front of that char
caretPos = pos;
break;
} else if (pos == inputField.length() - 1) {
// if we have reached the end and no matches, it must be the second half of the char so the last position
caretPos = pos + 1;
}
currentWidth += charLength;
}
selectionLength = 0;
}
// if (undoRedoHelper == null) {
// undoRedoHelper = new UndoRedoHelper(inputField, caretPos, selectionLength);
// }
return true;
} else {
unfocus();
}
return false;
}
protected int getDefaultCaretPos() {
return inputField.length();
}
@Override
public boolean keyPressed(int keyCode, int scanCode, int modifiers) {
if (!inputFieldFocused)
return false;
switch (keyCode) {
case InputConstants.KEY_ESCAPE, InputConstants.KEY_RETURN -> {
unfocus();
return true;
}
case InputConstants.KEY_LEFT -> {
if (Screen.hasShiftDown()) {
if (Screen.hasControlDown()) {
int spaceChar = findSpaceIndex(true);
selectionLength += caretPos - spaceChar;
caretPos = spaceChar;
} else if (caretPos > 0) {
caretPos--;
selectionLength += 1;
}
checkRenderOffset();
} else {
if (caretPos > 0) {
if (Screen.hasControlDown()) {
caretPos = findSpaceIndex(true);
} else {
if (selectionLength != 0) {
caretPos += Math.min(selectionLength, 0);
} else caretPos--;
}
}
checkRenderOffset();
selectionLength = 0;
}
return true;
}
case InputConstants.KEY_RIGHT -> {
if (Screen.hasShiftDown()) {
if (Screen.hasControlDown()) {
int spaceChar = findSpaceIndex(false);
selectionLength -= spaceChar - caretPos;
caretPos = spaceChar;
} else if (caretPos < inputField.length()) {
caretPos++;
selectionLength -= 1;
}
checkRenderOffset();
} else {
if (caretPos < inputField.length()) {
if (Screen.hasControlDown()) {
caretPos = findSpaceIndex(false);
} else {
if (selectionLength != 0) {
caretPos += Math.max(selectionLength, 0);
} else caretPos++;
}
checkRenderOffset();
}
selectionLength = 0;
}
return true;
}
case InputConstants.KEY_BACKSPACE -> {
doBackspace();
return true;
}
case InputConstants.KEY_DELETE -> {
doDelete();
return true;
}
case InputConstants.KEY_END -> {
if (Screen.hasShiftDown()) {
selectionLength -= inputField.length() - caretPos;
} else selectionLength = 0;
caretPos = inputField.length();
checkRenderOffset();
return true;
}
case InputConstants.KEY_HOME -> {
if (Screen.hasShiftDown()) {
selectionLength += caretPos;
caretPos = 0;
} else {
caretPos = 0;
selectionLength = 0;
}
checkRenderOffset();
return true;
}
// case InputConstants.KEY_Z -> {
// if (Screen.hasControlDown()) {
// UndoRedoHelper.FieldState updated = Screen.hasShiftDown() ? undoRedoHelper.redo() : undoRedoHelper.undo();
// if (updated != null) {
// System.out.println("Updated: " + updated);
// if (modifyInput(builder -> builder.replace(0, inputField.length(), updated.text()))) {
// caretPos = updated.cursorPos();
// selectionLength = updated.selectionLength();
// checkRenderOffset();
// }
// }
// return true;
// }
// }
}
if (Screen.isPaste(keyCode)) {
return doPaste();
} else if (Screen.isCopy(keyCode)) {
return doCopy();
} else if (Screen.isCut(keyCode)) {
return doCut();
} else if (Screen.isSelectAll(keyCode)) {
return doSelectAll();
}
return false;
}
protected boolean doPaste() {
this.write(client.keyboardHandler.getClipboard());
updateUndoHistory();
return true;
}
protected boolean doCopy() {
if (selectionLength != 0) {
client.keyboardHandler.setClipboard(getSelection());
return true;
}
return false;
}
protected boolean doCut() {
if (selectionLength != 0) {
client.keyboardHandler.setClipboard(getSelection());
this.write("");
updateUndoHistory();
return true;
}
return false;
}
protected boolean doSelectAll() {
caretPos = inputField.length();
checkRenderOffset();
selectionLength = -caretPos;
return true;
}
protected void checkRenderOffset() {
if (textRenderer.width(inputField) < getUnshiftedLength()) {
renderOffset = 0;
return;
}
int textX = getDimension().xLimit() - textRenderer.width(inputField) - getXPadding();
int caretX = textX + textRenderer.width(inputField.substring(0, caretPos));
int minX = getDimension().xLimit() - getXPadding() - getUnshiftedLength();
int maxX = minX + getUnshiftedLength();
if (caretX + renderOffset < minX) {
renderOffset = minX - caretX;
} else if (caretX + renderOffset > maxX) {
renderOffset = maxX - caretX;
}
}
@Override
public boolean charTyped(char chr, int modifiers) {
if (!inputFieldFocused)
return false;
if (!Screen.hasControlDown()) {
write(Character.toString(chr));
updateUndoHistory();
return true;
}
return false;
}
protected void doBackspace() {
if (selectionLength != 0) {
write("");
} else if (caretPos > 0) {
if (modifyInput(builder -> builder.deleteCharAt(caretPos - 1))) {
caretPos--;
checkRenderOffset();
}
}
updateUndoHistory();
}
protected void doDelete() {
if (selectionLength != 0) {
write("");
} else if (caretPos < inputField.length()) {
modifyInput(builder -> builder.deleteCharAt(caretPos));
}
updateUndoHistory();
}
public void write(String string) {
if (selectionLength == 0) {
if (modifyInput(builder -> builder.insert(caretPos, string))) {
caretPos += string.length();
checkRenderOffset();
}
} else {
int start = getSelectionStart();
int end = getSelectionEnd();
if (modifyInput(builder -> builder.replace(start, end, string))) {
caretPos = start + string.length();
selectionLength = 0;
checkRenderOffset();
}
}
}
public boolean modifyInput(Consumer<StringBuilder> consumer) {
StringBuilder temp = new StringBuilder(inputField);
consumer.accept(temp);
if (!control.isInputValid(temp.toString()))
return false;
inputField = temp.toString();
if (instantApply)
updateControl();
return true;
}
protected void updateUndoHistory() {
// undoRedoHelper.save(inputField, caretPos, selectionLength);
}
public int getUnshiftedLength() {
if (optionNameString.isEmpty())
return getDimension().width() - getXPadding() * 2;
return getDimension().width() / 8 * 5;
}
public int getMaxUnwrapLength() {
if (optionNameString.isEmpty())
return getDimension().width() - getXPadding() * 2;
return getDimension().width() / 2;
}
public int getSelectionStart() {
return Math.min(caretPos, caretPos + selectionLength);
}
public int getSelectionEnd() {
return Math.max(caretPos, caretPos + selectionLength);
}
protected String getSelection() {
return inputField.substring(getSelectionStart(), getSelectionEnd());
}
protected int findSpaceIndex(boolean reverse) {
int i;
int fromIndex = caretPos;
if (reverse) {
if (caretPos > 0)
fromIndex -= 2;
i = this.inputField.lastIndexOf(" ", fromIndex) + 1;
} else {
if (caretPos < inputField.length())
fromIndex += 1;
i = this.inputField.indexOf(" ", fromIndex) + 1;
if (i == 0) i = inputField.length();
}
return i;
}
@Override
public void setFocused(boolean focused) {
super.setFocused(focused);
inputFieldFocused = focused;
}
@Override
public void unfocus() {
super.unfocus();
inputFieldFocused = false;
renderOffset = 0;
if (!instantApply) updateControl();
}
@Override
public void setDimension(Dimension<Integer> dim) {
super.setDimension(dim);
int width = Math.max(6, Math.min(textRenderer.width(getValueText()), getUnshiftedLength()));
inputFieldBounds = Dimension.ofInt(dim.xLimit() - getXPadding() - width, dim.centerY() - textRenderer.lineHeight / 2, width, textRenderer.lineHeight);
}
@Override
public boolean isHovered() {
return super.isHovered() || inputFieldFocused;
}
protected void updateControl() {
control.setFromString(inputField);
}
@Override
protected int getUnhoveredControlWidth() {
return !isHovered() ? Math.min(getHoveredControlWidth(), getMaxUnwrapLength()) : getHoveredControlWidth();
}
@Override
protected int getHoveredControlWidth() {
return Math.min(textRenderer.width(getValueText()), getUnshiftedLength());
}
@Override
protected Component getValueText() {
if (!inputFieldFocused && inputField.isEmpty())
return emptyText;
return instantApply || !inputFieldFocused ? control.formatValue() : Component.literal(inputField);
}
}
|