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
|
package dev.isxander.yacl.gui;
import dev.isxander.yacl.api.ConfigCategory;
import dev.isxander.yacl.api.Option;
import dev.isxander.yacl.api.YetAnotherConfigLib;
import dev.isxander.yacl.api.utils.Dimension;
import dev.isxander.yacl.api.utils.OptionUtils;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.gui.widget.ButtonWidget;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.Text;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
public class YACLScreen extends Screen {
public final YetAnotherConfigLib config;
public int currentCategoryIdx;
private final Screen parent;
public OptionListWidget optionList;
public final List<CategoryWidget> categoryButtons;
public ButtonWidget finishedSaveButton, cancelResetButton, undoButton;
public YACLScreen(YetAnotherConfigLib config, Screen parent) {
super(config.title());
this.config = config;
this.parent = parent;
this.categoryButtons = new ArrayList<>();
this.currentCategoryIdx = 0;
}
@Override
protected void init() {
categoryButtons.clear();
int columnWidth = width / 3;
int padding = columnWidth / 20;
Dimension<Integer> categoryDim = Dimension.ofInt(padding, padding, columnWidth - padding * 2, 20);
int idx = 0;
for (ConfigCategory category : config.categories()) {
CategoryWidget categoryWidget = new CategoryWidget(
this,
category,
categoryDim.x(), categoryDim.y(),
categoryDim.width(), categoryDim.height()
);
if (idx == currentCategoryIdx)
categoryWidget.active = false;
categoryButtons.add(categoryWidget);
addDrawableChild(categoryWidget);
idx++;
categoryDim = categoryDim.moved(0, 21);
}
Dimension<Integer> actionDim = Dimension.ofInt(padding, height - padding - 20, columnWidth - padding * 2, 20);
finishedSaveButton = new ButtonWidget(actionDim.x(), actionDim.y(), actionDim.width(), actionDim.height(), Text.empty(), (btn) -> {
if (pendingChanges()) {
OptionUtils.forEachOptions(config, Option::applyValue);
config.saveFunction().run();
} else close();
});
actionDim = actionDim.moved(0, -22).expanded(-actionDim.width() / 2 - 2, 0);
cancelResetButton = new ButtonWidget(actionDim.x(), actionDim.y(), actionDim.width(), actionDim.height(), Text.translatable("yacl.gui.cancel"), (btn) -> {
if (pendingChanges()) {
OptionUtils.forEachOptions(config, Option::forgetPendingValue);
close();
} else {
OptionUtils.forEachOptions(config, Option::requestSetDefault);
}
});
actionDim = actionDim.moved(actionDim.width() + 4, 0);
undoButton = new ButtonWidget(actionDim.x(), actionDim.y(), actionDim.width(), actionDim.height(), Text.translatable("yacl.gui.undo"), (btn) -> {
OptionUtils.forEachOptions(config, Option::forgetPendingValue);
});
updateActionAvailability();
addDrawableChild(finishedSaveButton);
addDrawableChild(cancelResetButton);
addDrawableChild(undoButton);
ConfigCategory currentCategory = config.categories().get(currentCategoryIdx);
optionList = new OptionListWidget(currentCategory, this, client, width, height);
addSelectableChild(optionList);
config.initConsumer().accept(this);
}
@Override
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta) {
renderBackground(matrices);
super.render(matrices, mouseX, mouseY, delta);
optionList.render(matrices, mouseX, mouseY, delta);
for (CategoryWidget categoryWidget : categoryButtons) {
if (categoryWidget.hoveredTicks > 30) {
renderOrderedTooltip(matrices, categoryWidget.wrappedDescription, mouseX, mouseY);
}
}
}
@Override
public void tick() {
updateActionAvailability();
}
public void changeCategory(int idx) {
int currentIndex = 0;
for (ButtonWidget categoryWidget : categoryButtons) {
categoryWidget.active = currentIndex != idx;
currentIndex++;
}
currentCategoryIdx = idx;
refreshGUI();
}
private boolean pendingChanges() {
AtomicBoolean pendingChanges = new AtomicBoolean(false);
OptionUtils.consumeOptions(config, (option) -> {
if (option.changed()) {
pendingChanges.set(true);
return true;
}
return false;
});
return pendingChanges.get();
}
private void updateActionAvailability() {
boolean pendingChanges = pendingChanges();
undoButton.active = pendingChanges;
finishedSaveButton.setMessage(pendingChanges ? Text.translatable("yacl.gui.save") : Text.translatable("yacl.gui.finished"));
cancelResetButton.setMessage(pendingChanges ? Text.translatable("yacl.gui.cancel") : Text.translatable("yacl.gui.reset"));
}
private void refreshGUI() {
init(client, width, height);
}
@Override
public boolean shouldCloseOnEsc() {
return !undoButton.active;
}
@Override
public void close() {
client.setScreen(parent);
}
}
|