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
|
package io.polyfrost.oneconfig.gui.pages;
import io.polyfrost.oneconfig.config.OneConfigConfig;
import io.polyfrost.oneconfig.config.data.OptionPage;
import io.polyfrost.oneconfig.config.interfaces.BasicOption;
import io.polyfrost.oneconfig.gui.elements.BasicButton;
import io.polyfrost.oneconfig.gui.elements.config.ConfigPageButton;
import io.polyfrost.oneconfig.lwjgl.RenderManager;
import io.polyfrost.oneconfig.lwjgl.font.Fonts;
import java.util.ArrayList;
public class ModConfigPage extends Page {
private final OptionPage page;
private final ArrayList<BasicButton> categories = new ArrayList<>();
private String selectedCategory;
public ModConfigPage(OptionPage page) {
super("Mod: " + page.mod.name);
this.page = page;
if (page.categories.size() == 0) return;
for (String category : page.categories.keySet()) {
selectedCategory = category;
break;
}
if (page.categories.size() < 2) return;
for (String category : page.categories.keySet()) {
BasicButton button = new BasicButton(0, 32, category, null, null, 0, BasicButton.ALIGNMENT_CENTER, true, () -> switchCategory(category));
if (category.equals(selectedCategory)) button.setToggled(true);
categories.add(button);
}
}
@Override
public void draw(long vg, int x, int y) {
if (page.categories.size() == 0) return;
int optionX = x + 30;
int optionY = y + (page.categories.size() == 1 ? 16 : 64);
// Category buttons
int buttonX = x + 16;
for (BasicButton button : categories) {
if (button.getWidth() == 0)
button.setWidth((int) (Math.ceil(RenderManager.getTextWidth(vg, button.getText(), 14f, Fonts.INTER_MEDIUM) / 8f) * 8 + 16));
button.draw(vg, buttonX, y + 16);
buttonX += button.getWidth() + 16;
}
// Top page buttons
for (ConfigPageButton page : page.categories.get(selectedCategory).topPages) {
page.draw(vg, optionX, optionY);
optionY += page.getHeight() + 16;
}
// Background
if (page.categories.get(selectedCategory).subcategories.keySet().size() > 0) {
int backgroundSize = 16;
for (String subCategory : page.categories.get(selectedCategory).subcategories.keySet()) {
backgroundSize += 48;
for (int i = 0; i < page.categories.get(selectedCategory).subcategories.get(subCategory).size(); i++) {
BasicOption option = page.categories.get(selectedCategory).subcategories.get(subCategory).get(i);
if (i + 1 < page.categories.get(selectedCategory).subcategories.get(subCategory).size()) {
BasicOption nextOption = page.categories.get(selectedCategory).subcategories.get(subCategory).get(i + 1);
if (option.size == 1 && option.hasHalfSize() && nextOption.size == 1 && nextOption.hasHalfSize()) {
backgroundSize += Math.max(option.getHeight(), nextOption.getHeight()) + 16;
i++;
continue;
}
}
backgroundSize += option.getHeight() + 16;
}
}
RenderManager.drawRoundedRect(vg, x + 14, optionY, 1024, backgroundSize, OneConfigConfig.GRAY_900, 20);
}
// draw options
int optionLastY = optionY + 16;
if (page.categories.get(selectedCategory).subcategories.keySet().size() > 0) {
optionY += 16;
for (String subCategory : page.categories.get(selectedCategory).subcategories.keySet()) {
RenderManager.drawString(vg, subCategory, optionX, optionY + 16, OneConfigConfig.WHITE_90, 24f, Fonts.INTER_MEDIUM);
optionY += 48;
for (int i = 0; i < page.categories.get(selectedCategory).subcategories.get(subCategory).size(); i++) {
BasicOption option = page.categories.get(selectedCategory).subcategories.get(subCategory).get(i);
option.draw(vg, optionX, optionY);
if (i + 1 < page.categories.get(selectedCategory).subcategories.get(subCategory).size()) {
BasicOption nextOption = page.categories.get(selectedCategory).subcategories.get(subCategory).get(i + 1);
if (option.size == 1 && option.hasHalfSize() && nextOption.size == 1 && nextOption.hasHalfSize()) {
nextOption.draw(vg, optionX + 512, optionY);
optionY += Math.max(option.getHeight(), nextOption.getHeight()) + 16;
i++;
continue;
}
}
optionY += option.getHeight() + 16;
}
}
optionY += 16;
}
// Bottom page buttons
for (ConfigPageButton page : page.categories.get(selectedCategory).bottomPages) {
page.draw(vg, optionX, optionY);
optionY += page.getHeight() + 16;
}
// Draw last options
if (page.categories.get(selectedCategory).subcategories.keySet().size() > 0) {
for (String subCategory : page.categories.get(selectedCategory).subcategories.keySet()) {
optionLastY += 48;
for (int i = 0; i < page.categories.get(selectedCategory).subcategories.get(subCategory).size(); i++) {
BasicOption option = page.categories.get(selectedCategory).subcategories.get(subCategory).get(i);
option.drawLast(vg, optionX, optionLastY);
if (i + 1 < page.categories.get(selectedCategory).subcategories.get(subCategory).size()) {
BasicOption nextOption = page.categories.get(selectedCategory).subcategories.get(subCategory).get(i + 1);
if (option.size == 1 && option.hasHalfSize() && nextOption.size == 1 && nextOption.hasHalfSize()) {
nextOption.drawLast(vg, optionX + 512, optionLastY);
optionLastY += Math.max(option.getHeight(), nextOption.getHeight()) + 16;
i++;
continue;
}
}
optionLastY += option.getHeight() + 16;
}
}
}
}
@Override
public void finishUpAndClose() {
page.mod.config.save();
}
@Override
public void keyTyped(char key, int keyCode) {
if (page.categories.size() == 0) return;
for (String subCategory : page.categories.get(selectedCategory).subcategories.keySet()) {
for (int i = 0; i < page.categories.get(selectedCategory).subcategories.get(subCategory).size(); i++) {
page.categories.get(selectedCategory).subcategories.get(subCategory).get(i).keyTyped(key, keyCode);
}
}
}
public void switchCategory(String newCategory) {
if (!page.categories.containsKey(newCategory)) return;
selectedCategory = newCategory;
for (BasicButton button : categories) {
if (button.getText().equals(newCategory)) continue;
button.setToggled(false);
}
}
}
|