AbstractConfigPanel.java
6.85 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
/*
* This file is part of LiteLoader.
* Copyright (C) 2012-16 Adam Mummery-Smith
* All Rights Reserved.
*/
package com.mumfrey.liteloader.modconfig;
import java.util.ArrayList;
import java.util.List;
import org.lwjgl.input.Keyboard;
import com.mumfrey.liteloader.client.mixin.IGuiButton;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiLabel;
import net.minecraft.client.gui.GuiScreen;
/**
* A general-purpose base class for mod config panels which implements a lot of
* the boilerplate needed to create a simple config panel. This should make it
* easier for mods which only need to provide a couple of options to do so
* without having to write a mountain of code.
*/
public abstract class AbstractConfigPanel implements ConfigPanel
{
/**
* A callback for a control click event. Used so that consumers can pass in
* a lamba in Java 8 or consolidate listeners by control type.
*
* @param <T> type of control
*/
public interface ConfigOptionListener<T extends GuiButton>
{
/**
* Called when a control is clicked
*
* @param control control being clicked
*/
public abstract void actionPerformed(T control);
}
/**
* Struct which keeps a control together with its callback object
*
* @param <T> control type
*/
class ConfigOption<T extends GuiButton>
{
final GuiLabel label;
final T control;
final ConfigOptionListener<T> listener;
ConfigOption(GuiLabel label)
{
this.label = label;
this.control = null;
this.listener = null;
}
ConfigOption(T control, ConfigOptionListener<T> listener)
{
this.label = null;
this.control = control;
this.listener = listener;
}
void draw(Minecraft minecraft, int mouseX, int mouseY, float partialTicks)
{
if (this.label != null)
{
this.label.drawLabel(minecraft, mouseX, mouseY);
}
if (this.control != null)
{
this.control.func_191745_a(minecraft, mouseX, mouseY, partialTicks); // drawButton
}
}
boolean mousePressed(Minecraft minecraft, int mouseX, int mouseY)
{
if (this.control != null && this.control.mousePressed(minecraft, mouseX, mouseY))
{
this.control.playPressSound(minecraft.getSoundHandler());
if (this.listener != null)
{
this.listener.actionPerformed(this.control);
}
return true;
}
return false;
}
void mouseReleased(Minecraft mc, int mouseX, int mouseY)
{
if (this.control != null)
{
this.control.mouseReleased(mouseX, mouseY);
}
}
}
protected final Minecraft mc;
private final List<ConfigOption<?>> options = new ArrayList<ConfigOption<?>>();
private int contentHeight = 0;
private ConfigOption<?> selected;
public AbstractConfigPanel()
{
this.mc = Minecraft.getMinecraft();
}
@Override
public int getContentHeight()
{
return this.contentHeight;
}
@Override
public final void onPanelShown(ConfigPanelHost host)
{
this.clearOptions();
this.addOptions(host);
}
/**
* Stub for implementors, this is similar to {@link GuiScreen#initGui} and
* consumers should add all of their controls here
*
* @param host
*/
protected abstract void addOptions(ConfigPanelHost host);
/**
* Clear the options, called immediately before {@link #addOptions}
*/
protected void clearOptions()
{
this.options.clear();
this.contentHeight = 0;
}
/**
* Add a label to the panel
*
* @param id label id
* @param x label x position
* @param y label y position
* @param width width for the label, currently unused
* @param height height for the label, used to calculate display height
* @param colour label colour
* @param lines text for the label
*/
protected void addLabel(int id, int x, int y, int width, int height, int colour, String... lines)
{
if (lines == null || lines.length < 1)
{
return;
}
GuiLabel label = new GuiLabel(this.mc.fontRenderer, id, x, y, width, height, colour);
for (String line : lines)
{
label.addLine(line);
}
this.contentHeight = Math.max(y + height, this.contentHeight);
this.options.add(new ConfigOption<GuiButton>(label));
}
/**
* Add a control to the panel
*
* @param control control to add
* @param listener callback for when the control is clicked, can be null
* @return the control
*/
protected <T extends GuiButton> T addControl(T control, ConfigOptionListener<T> listener)
{
if (control != null)
{
this.contentHeight = Math.max(control.y + ((IGuiButton)control).getButtonHeight(), this.contentHeight);
this.options.add(new ConfigOption<T>(control, listener));
}
return control;
}
@Override
public void onPanelResize(ConfigPanelHost host)
{
}
@Override
public void onTick(ConfigPanelHost host)
{
}
@Override
public void drawPanel(ConfigPanelHost host, int mouseX, int mouseY, float partialTicks)
{
for (ConfigOption<?> configOption : this.options)
{
configOption.draw(this.mc, mouseX, mouseY, partialTicks);
}
}
@Override
public void mousePressed(ConfigPanelHost host, int mouseX, int mouseY, int mouseButton)
{
this.selected = null;
if (mouseButton != 0)
{
return;
}
for (ConfigOption<?> configOption : this.options)
{
if (configOption.mousePressed(this.mc, mouseX, mouseY))
{
this.selected = configOption;
}
}
}
@Override
public void mouseReleased(ConfigPanelHost host, int mouseX, int mouseY, int mouseButton)
{
if (this.selected != null && mouseButton == 0)
{
this.selected.mouseReleased(this.mc, mouseX, mouseY);
}
this.selected = null;
}
@Override
public void mouseMoved(ConfigPanelHost host, int mouseX, int mouseY)
{
}
@Override
public void keyPressed(ConfigPanelHost host, char keyChar, int keyCode)
{
if (keyCode == Keyboard.KEY_ESCAPE)
{
host.close();
return;
}
}
}