forked from CleanroomMC/ModularUI
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathGrid.java
More file actions
641 lines (564 loc) · 21.9 KB
/
Grid.java
File metadata and controls
641 lines (564 loc) · 21.9 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
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
package com.cleanroommc.modularui.widgets.layout;
import com.cleanroommc.modularui.ModularUI;
import com.cleanroommc.modularui.api.GuiAxis;
import com.cleanroommc.modularui.api.layout.ILayoutWidget;
import com.cleanroommc.modularui.api.widget.IParentWidget;
import com.cleanroommc.modularui.api.widget.IWidget;
import com.cleanroommc.modularui.utils.Alignment;
import com.cleanroommc.modularui.widget.AbstractScrollWidget;
import com.cleanroommc.modularui.widget.scroll.HorizontalScrollData;
import com.cleanroommc.modularui.widget.scroll.ScrollData;
import com.cleanroommc.modularui.widget.scroll.VerticalScrollData;
import com.cleanroommc.modularui.widget.sizer.Area;
import com.cleanroommc.modularui.widget.sizer.Box;
import it.unimi.dsi.fastutil.ints.IntArrayList;
import it.unimi.dsi.fastutil.ints.IntList;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
import java.util.function.IntFunction;
import java.util.stream.Collectors;
public class Grid extends AbstractScrollWidget<IWidget, Grid> implements ILayoutWidget, IParentWidget<IWidget, Grid> {
private final List<List<IWidget>> matrix = new ArrayList<>();
private final Box minElementMargin = new Box();
private int minRowHeight = 5, minColWidth = 5;
private Alignment alignment = Alignment.Center;
private Alignment[] rowAlignments, colAlignments;
private boolean rowAlignmentOverride = false, colAlignmentOverride = false;
private boolean collapseDisabledChild = false;
private boolean dirty = false, unsanitized = false;
public Grid() {
super(null, null);
}
@Override
public void onInit() {
super.onInit();
sanitizeMatrix();
}
private int getMarginStart(Area area, GuiAxis axis, int border) {
int m = 0;
if (border > -1) {
m += Math.max(area.getMargin().getStart(axis), this.minElementMargin.getStart(axis));
} else {
m += area.getMargin().getStart(axis);
}
return m;
}
private int getMarginEnd(Area area, GuiAxis axis, int border) {
int m = 0;
if (border < 1) {
m += Math.max(area.getMargin().getEnd(axis), this.minElementMargin.getEnd(axis));
} else {
m += area.getMargin().getEnd(axis);
}
return m;
}
private int getElementWidth(Area area, int border) {
// border: -1 = start, 0 = none, 1 = end
return area.width + getMarginStart(area, GuiAxis.X, border) + getMarginEnd(area, GuiAxis.X, border);
}
private int getElementHeight(Area area, int border) {
// border: -1 = start, 0 = none, 1 = end
return area.height + getMarginStart(area, GuiAxis.Y, border) + getMarginEnd(area, GuiAxis.Y, border);
}
private int border(int index, int size) {
if (index == 0) return -1;
if (index == size - 1) return 1;
return 0;
}
@Override
public boolean layoutWidgets() {
sanitizeMatrix();
checkAlignmentOverride();
IntList rowSizes = new IntArrayList();
IntList colSizes = new IntArrayList();
int i = 0, j;
for (List<IWidget> row : this.matrix) {
j = 0;
rowSizes.add(this.minRowHeight);
int yBorder = border(i, this.matrix.size());
for (IWidget child : row) {
if (i == 0) {
colSizes.add(this.minColWidth);
}
if (!shouldIgnoreChildSize(child)) {
if (!child.resizer().isWidthCalculated() || !child.resizer().isHeightCalculated()) return false;
int xBorder = border(j, row.size());
rowSizes.set(i, Math.max(rowSizes.getInt(i), getElementHeight(child.getArea(), yBorder)));
colSizes.set(j, Math.max(colSizes.getInt(j), getElementWidth(child.getArea(), xBorder)));
}
j++;
}
i++;
}
int x = 0, y = 0;
for (int r = 0; r < rowSizes.size(); r++) {
x = 0;
int height = rowSizes.get(r);
for (int c = 0; c < colSizes.size(); c++) {
int width = colSizes.get(c);
IWidget child = this.matrix.get(r).get(c);
if (child != null) {
Area area = child.getArea();
int xBorder = border(c, colSizes.size());
int yBorder = border(r, rowSizes.size());
int xs = getMarginStart(area, GuiAxis.X, xBorder);
int xe = getMarginEnd(area, GuiAxis.X, xBorder);
int ys = getMarginStart(area, GuiAxis.Y, yBorder);
int ye = getMarginEnd(area, GuiAxis.Y, yBorder);
Alignment alignment = this.alignment;
if (rowAlignmentOverride) alignment = rowAlignments[r];
if (colAlignmentOverride) alignment = colAlignments[c];
child.getArea().rx = (int) (x + xs + (width - xs - xe - area.width) * alignment.x);
child.getArea().ry = (int) (y + ys + (height - ys - ye - area.height) * alignment.y);
child.resizer().setPosResized(true, true);
}
x += width;
}
y += height;
}
if (getScrollArea().getScrollX() != null) {
getScrollArea().getScrollX().setScrollSize(x);
}
if (getScrollArea().getScrollY() != null) {
getScrollArea().getScrollY().setScrollSize(y);
}
return true;
}
@Override
public boolean shouldIgnoreChildSize(IWidget child) {
return child == null || (this.collapseDisabledChild && !child.isEnabled());
}
@Override
public @NotNull List<IWidget> getChildren() {
if (this.dirty) {
makeFlatList();
this.dirty = false;
}
return super.getChildren();
}
private void makeFlatList() {
super.getChildren().clear();
super.getChildren().addAll(this.matrix.stream().flatMap(List::stream).filter(Objects::nonNull).collect(Collectors.toList()));
}
@Override
public int getDefaultHeight() {
sanitizeMatrix();
int h = 0;
for (int i = 0; i < this.matrix.size(); i++) {
List<IWidget> row = this.matrix.get(i);
int yBorder = border(i, this.matrix.size());
int rowHeight = 0;
for (IWidget child : row) {
if (!shouldIgnoreChildSize(child)) {
rowHeight = Math.max(rowHeight, getElementHeight(child.getArea(), yBorder));
}
}
h += Math.max(rowHeight, this.minRowHeight);
}
return h;
}
@Override
public int getDefaultWidth() {
sanitizeMatrix();
IntList colSizes = new IntArrayList();
int i = 0, j;
for (List<? extends IWidget> row : this.matrix) {
j = 0;
for (IWidget child : row) {
if (i == 0) {
colSizes.add(this.minColWidth);
}
if (!shouldIgnoreChildSize(child)) {
int xBorder = border(j, row.size());
colSizes.set(j, Math.max(colSizes.getInt(j), getElementWidth(child.getArea(), xBorder)));
}
j++;
}
i++;
}
int w = 0;
for (int colWidth : colSizes) {
w += colWidth;
}
return w;
}
/**
* @deprecated use {@link #grid(List)} now
*/
@ApiStatus.ScheduledForRemoval(inVersion = "3.4")
@Deprecated
public <I extends IWidget> Grid matrix(List<List<I>> matrix) {
return grid(matrix);
}
@SuppressWarnings("unchecked")
public <I extends IWidget> Grid grid(List<List<I>> matrix) {
this.matrix.clear();
for (List<I> row : matrix) this.matrix.add((List<IWidget>) row);
this.dirty = true;
this.unsanitized = true;
if (isValid()) {
foreachGrid(matrix, w -> {
w.initialise(this, true);
onChildAdd(w);
});
} else {
foreachGrid(matrix, this::onChildAdd);
}
return this;
}
public Grid row(List<IWidget> row) {
this.matrix.add(row);
this.dirty = true;
this.unsanitized = true;
if (isValid()) {
foreachRow(row, w -> {
w.initialise(this, true);
onChildAdd(w);
});
} else {
foreachRow(row, this::onChildAdd);
}
return this;
}
public Grid row(@NotNull IWidget... row) {
Objects.requireNonNull(row);
return row(new ArrayList<>(Arrays.asList(row)));
}
@Override
public boolean addChild(IWidget child, int index) {
if (child == this || getChildren().contains(child)) {
return false;
}
if (index < 0) {
index = getChildren().size() + index + 1;
}
super.getChildren().add(index, child);
if (isValid()) {
child.initialise(this, true);
}
onChildAdd(child);
this.dirty = true;
this.unsanitized = true;
return true;
}
public Grid child(@Nullable IWidget widget) {
if (this.matrix.isEmpty()) this.matrix.add(new ArrayList<>());
this.matrix.get(this.matrix.size() - 1).add(widget);
this.dirty = true;
this.unsanitized = true;
if (widget != null) {
if (isValid()) {
widget.initialise(this, true);
}
onChildAdd(widget);
}
return this;
}
public Grid nextRow() {
this.matrix.add(new ArrayList<>());
return this;
}
@ApiStatus.ScheduledForRemoval(inVersion = "3.4")
@Deprecated
public <T, I extends IWidget> Grid mapTo(int rowLength, @NotNull List<T> list, @NotNull IndexedElementMapper<T, I> widgetCreator) {
Objects.requireNonNull(widgetCreator);
Objects.requireNonNull(list);
return grid(mapToMatrix(rowLength, list, widgetCreator));
}
/**
* @deprecated use {@link #gridOfWidthElements(int, Iterable, GridPosElementMapper)} now
*/
@ApiStatus.ScheduledForRemoval(inVersion = "3.4")
@Deprecated
public <I extends IWidget> Grid mapTo(int rowLength, @NotNull List<I> list) {
Objects.requireNonNull(list);
return mapTo(rowLength, list.size(), list::get);
}
/**
* @deprecated use a variant of {@link #gridOfWidthHeight(int, int, GridPosMapper)} now
*/
@ApiStatus.ScheduledForRemoval(inVersion = "3.4")
@Deprecated
public <I extends IWidget> Grid mapTo(int rowLength, int size, @NotNull IntFunction<I> widgetCreator) {
Objects.requireNonNull(widgetCreator);
return grid(mapToMatrix(rowLength, size, widgetCreator));
}
/**
* Creates a grid with a given width and height.
*
* @param width number of elements in each row
* @param height number of elements in each column
* @param widgetCreator A function that maps each pos to a widget. The arguments are (xIndex, yIndex, totalIndex). Can return null.
* @return this
*/
public <I extends IWidget> Grid gridOfWidthHeight(int width, int height, GridPosMapper<I> widgetCreator) {
return grid(createGridOfWidthHeight(width, height, widgetCreator));
}
/**
* Creates a grid with a given total size and height.
*
* @param size total number of elements (width * height)
* @param height number of elements in each column
* @param widgetCreator A function that maps each pos to a widget. The arguments are (xIndex, yIndex, totalIndex). Can return null.
* @return this
*/
public <I extends IWidget> Grid gridOfSizeHeight(int size, int height, GridPosMapper<I> widgetCreator) {
return grid(createGridOfSizeHeight(size, height, widgetCreator));
}
/**
* Creates a grid with a given total size and width.
*
* @param size total number of elements (width * height)
* @param width number of elements in each row
* @param widgetCreator A function that maps each pos to a widget. The arguments are (xIndex, yIndex, totalIndex). Can return null.
* @return this
*/
public <I extends IWidget> Grid gridOfSizeWidth(int size, int width, GridPosMapper<I> widgetCreator) {
return grid(createGridOfSizeWidth(size, width, widgetCreator));
}
/**
* Creates a grid of widgets with a given grid of any type.
*
* @param matrix elements of any type
* @param widgetCreator A mapper to map each element to a widget. The arguments are (xIndex, yIndex, totalIndex, element). Can return null.
* @param <T> type of elements
* @param <I> widget type
* @return this
*/
public <T, I extends IWidget> Grid gridOfElements(Iterable<? extends Iterable<T>> matrix, GridPosElementMapper<T, I> widgetCreator) {
return grid(createGridOfElements(matrix, widgetCreator));
}
/**
* Creates a grid of widgets with a given list and row length.
*
* @param width number of elements in each row
* @param list widgets
* @param <I> widget type
* @return this
*/
public <I extends IWidget> Grid gridOf(int width, Iterable<I> list) {
return grid(createGridOfWidthElements(width, list, (x, y, i, e) -> e));
}
/**
* Creates a grid of widgets with a given list and row length.
*
* @param width number of elements in each row
* @param list elements of any type
* @param widgetCreator A mapper to map each element to a widget. The arguments are (xIndex, yIndex, listIndex, element). Can return null.
* @param <T> type of elements
* @param <I> widget type
* @return this
*/
public <T, I extends IWidget> Grid gridOfWidthElements(int width, Iterable<T> list, GridPosElementMapper<T, I> widgetCreator) {
return grid(createGridOfWidthElements(width, list, widgetCreator));
}
public Grid minColWidth(int minColWidth) {
this.minColWidth = minColWidth;
return this;
}
public Grid minRowHeight(int minRowHeight) {
this.minRowHeight = minRowHeight;
return this;
}
public Grid alignment(Alignment alignment) {
this.alignment = alignment;
return this;
}
public Grid rowAlignments(Alignment[] rowAlignments) {
this.rowAlignments = rowAlignments;
this.rowAlignmentOverride = true;
this.colAlignmentOverride = false;
return this;
}
public Grid columnAlignments(Alignment[] colAlignments) {
this.colAlignments = colAlignments;
this.colAlignmentOverride = true;
this.rowAlignmentOverride = false;
return this;
}
public Grid scrollable() {
return scrollable(new VerticalScrollData(), new HorizontalScrollData());
}
public Grid scrollable(ScrollData data) {
getScrollArea().setScrollData(data);
return this;
}
public Grid scrollable(VerticalScrollData data1, HorizontalScrollData data2) {
getScrollArea().setScrollData(data1);
getScrollArea().setScrollData(data2);
return this;
}
public Grid minElementMargin(int left, int right, int top, int bottom) {
this.minElementMargin.all(left, right, top, bottom);
return getThis();
}
public Grid minElementMargin(int horizontal, int vertical) {
this.minElementMargin.all(horizontal, vertical);
return getThis();
}
public Grid minElementMargin(int all) {
this.minElementMargin.all(all);
return getThis();
}
public Grid minElementMarginLeft(int val) {
this.minElementMargin.left(val);
return getThis();
}
public Grid minElementMarginRight(int val) {
this.minElementMargin.right(val);
return getThis();
}
public Grid minElementMarginTop(int val) {
this.minElementMargin.top(val);
return getThis();
}
public Grid minElementMarginBottom(int val) {
this.minElementMargin.bottom(val);
return getThis();
}
/**
* Configures this widget to collapse row/column if all the child widgets in that axis are disabled.
*/
public Grid collapseDisabledChild() {
this.collapseDisabledChild = true;
return getThis();
}
public Box getMinElementMargin() {
return minElementMargin;
}
public int getMinRowHeight() {
return minRowHeight;
}
public int getMinColWidth() {
return minColWidth;
}
public Alignment getAlignment() {
return alignment;
}
public boolean isCollapseDisabledChild() {
return collapseDisabledChild;
}
@ApiStatus.ScheduledForRemoval(inVersion = "3.4")
@Deprecated
public static <T, I extends IWidget> List<List<I>> mapToMatrix(int rowLength, List<T> list, IndexedElementMapper<T, I> widgetCreator) {
return mapToMatrix(rowLength, list.size(), i -> widgetCreator.apply(i, list.get(i)));
}
public static <T, I extends IWidget> List<List<I>> createGridOfElements(Iterable<? extends Iterable<T>> matrix, GridPosElementMapper<T, I> widgetCreator) {
List<List<I>> widgetMatrix = new ArrayList<>();
Iterator<? extends Iterable<T>> colIt = matrix.iterator();
int r = 0, i = 0;
while (colIt.hasNext()) {
List<I> row = new ArrayList<>();
widgetMatrix.add(row);
Iterator<T> rowIt = colIt.next().iterator();
int c = 0;
while (rowIt.hasNext()) {
row.add(widgetCreator.apply(c, r, i, rowIt.next()));
c++;
i++;
}
r++;
}
return widgetMatrix;
}
public static <T, I extends IWidget> List<List<I>> createGridOfWidthElements(int width, Iterable<T> list, GridPosElementMapper<T, I> widgetCreator) {
width = Math.max(width, 1);
List<List<I>> widgetMatrix = new ArrayList<>();
Iterator<T> it = list.iterator();
int r = 0, c = 0, i = 0;
List<I> row = new ArrayList<>();
widgetMatrix.add(row);
while (it.hasNext()) {
row.add(widgetCreator.apply(c, r, i, it.next()));
i++;
if (++c == width) {
r++;
c = 0;
row = new ArrayList<>();
widgetMatrix.add(row);
}
}
return widgetMatrix;
}
@ApiStatus.ScheduledForRemoval(inVersion = "3.4")
@Deprecated
public static <I extends IWidget> List<List<I>> mapToMatrix(int rowLength, int size, IntFunction<I> widgetCreator) {
return createGridOfSizeWidth(size, rowLength, (row, col, index) -> widgetCreator.apply(index));
}
public static <I extends IWidget> List<List<I>> createGridOfWidthHeight(int width, int height, GridPosMapper<I> widgetCreator) {
height = Math.max(height, 1);
width = Math.max(width, 1);
List<List<I>> matrix = new ArrayList<>();
for (int i = 0; i < height; i++) {
List<I> row = new ArrayList<>();
matrix.add(row);
for (int j = 0; j < width; j++) {
row.add(widgetCreator.apply(j, i, i * width + j));
}
}
return matrix;
}
public static <I extends IWidget> List<List<I>> createGridOfSizeHeight(int size, int height, GridPosMapper<I> widgetCreator) {
return createGridOfWidthHeight(calcSize(size, height), height, widgetCreator);
}
public static <I extends IWidget> List<List<I>> createGridOfSizeWidth(int size, int width, GridPosMapper<I> widgetCreator) {
return createGridOfWidthHeight(width, calcSize(size, width), widgetCreator);
}
private static int calcSize(int totalSize, int otherSize) {
return (int) Math.ceil((double) totalSize / otherSize);
}
/**
* Ensures that every row in the matrix has the same size by appending null values to rows with fewer elements than the longest row.
*/
private void sanitizeMatrix() {
if (!this.unsanitized) return;
int maxRowSize = 0;
for (List<?> row : this.matrix) {
maxRowSize = Math.max(maxRowSize, row.size());
}
for (List<?> row : this.matrix) {
while (row.size() < maxRowSize) {
row.add(null);
}
}
this.unsanitized = false;
}
private void checkAlignmentOverride() {
if (rowAlignmentOverride && rowAlignments.length != matrix.size()) {
ModularUI.LOGGER.warn("Grid row alignment override cannot be applied, # of rows does not match overriding array size!");
rowAlignmentOverride = false;
}
if (colAlignmentOverride && colAlignments.length != matrix.get(0).size()) {
ModularUI.LOGGER.warn("Grid column alignment override cannot be applied, # of column does not match overriding array size!");
colAlignmentOverride = false;
}
}
private static void foreachRow(Iterable<IWidget> row, Consumer<IWidget> consumer) {
row.forEach(consumer);
}
private static <I extends IWidget> void foreachGrid(Iterable<? extends Iterable<I>> grid, Consumer<IWidget> consumer) {
for (Iterable<I> row : grid) {
row.forEach(consumer);
}
}
@ApiStatus.ScheduledForRemoval(inVersion = "3.4")
@Deprecated
public interface IndexedElementMapper<T, I> {
I apply(int index, T value);
}
public interface GridPosMapper<I> {
@Nullable
I apply(int xIndex, int yIndex, int index);
}
public interface GridPosElementMapper<T, I> {
@Nullable
I apply(int xIndex, int yIndex, int index, T element);
}
}