Use a scrolllist for output
[SugarCubes.git] / _UIImplementation.pde
CommitLineData
d626bc9b
MS
1/**
2 * DOUBLE BLACK DIAMOND DOUBLE BLACK DIAMOND
3 *
4 * //\\ //\\ //\\ //\\
5 * ///\\\ ///\\\ ///\\\ ///\\\
6 * \\\/// \\\/// \\\/// \\\///
7 * \\// \\// \\// \\//
8 *
9 * EXPERTS ONLY!! EXPERTS ONLY!!
10 *
11 * Custom UI components using the framework.
12 */
13
14class UIPatternDeck extends UIWindow {
15
16 Engine.Deck deck;
17
18 public UIPatternDeck(Engine.Deck deck, String label, float x, float y, float w, float h) {
19 super(label, x, y, w, h);
20 this.deck = deck;
21 int yp = titleHeight;
22
23 List<ScrollItem> items = new ArrayList<ScrollItem>();
24 for (LXPattern p : deck.getPatterns()) {
25 items.add(new PatternScrollItem(p));
26 }
27 final UIScrollList patternList = new UIScrollList(1, yp, w-2, 160).setItems(items);
28 patternList.addToContainer(this);
29 yp += patternList.h + 10;
30
31 final UIParameterKnob[] parameterKnobs = new UIParameterKnob[12];
32 for (int ki = 0; ki < parameterKnobs.length; ++ki) {
33 parameterKnobs[ki] = new UIParameterKnob(5 + 34*(ki % 4), yp + (ki/4) * 48);
34 parameterKnobs[ki].addToContainer(this);
35 }
36
37 Engine.Listener lxListener = new Engine.Listener() {
38 public void patternWillChange(Engine.Deck deck, LXPattern pattern, LXPattern nextPattern) {
39 patternList.redraw();
40 }
41 public void patternDidChange(Engine.Deck deck, LXPattern pattern) {
42 patternList.redraw();
43 int pi = 0;
44 for (LXParameter parameter : pattern.getParameters()) {
45 if (pi >= parameterKnobs.length) {
46 break;
47 }
48 parameterKnobs[pi++].setParameter(parameter);
49 }
50 while (pi < parameterKnobs.length) {
51 parameterKnobs[pi++].setParameter(null);
52 }
53 }
54 };
55
56 deck.addListener(lxListener);
57 lxListener.patternDidChange(deck, deck.getActivePattern());
58
59 }
60
61 class PatternScrollItem extends AbstractScrollItem {
62
63 private LXPattern pattern;
64 private String label;
65
66 PatternScrollItem(LXPattern pattern) {
67 this.pattern = pattern;
68 label = className(pattern, "Pattern");
69 }
70
71 public String getLabel() {
72 return label;
73 }
74
75 public boolean isSelected() {
76 return deck.getActivePattern() == pattern;
77 }
78
79 public boolean isPending() {
80 return deck.getNextPattern() == pattern;
81 }
82
83 public void select() {
84 deck.goPattern(pattern);
85 }
86 }
87}
88
89class UICrossfader extends UIWindow {
90
91 public UICrossfader(float x, float y, float w, float h) {
92 super("CROSSFADER", x, y, w, h);
93
94 List<ScrollItem> items = new ArrayList<ScrollItem>();
95 for (LXTransition t : transitions) {
96 items.add(new TransitionScrollItem(t));
97 }
fe30b226
MS
98 new UIScrollList(1, titleHeight, w-2, 120).setItems(items).addToContainer(this);
99 new UIParameterSlider(4, titleHeight + 126, w-10, 24).setParameter(lx.engine.getDeck(1).getCrossfader()).addToContainer(this);
100 new UIToggleSet(4, 182, w-10, 20) {
d626bc9b
MS
101 protected void onToggle(String value) {
102 displayMode = value;
103 }
104 }.setOptions(new String[] { "A", "COMP", "B" }).setValue(displayMode = "COMP").addToContainer(this);
105 }
106}
107
108class TransitionScrollItem extends AbstractScrollItem {
109 private final LXTransition transition;
110 private String label;
111
112 TransitionScrollItem(LXTransition transition) {
113 this.transition = transition;
114 label = className(transition, "Transition");
115 }
116
117 public String getLabel() {
118 return label;
119 }
120
121 public boolean isSelected() {
122 return transition == lx.engine.getDeck(1).getBlendTransition();
123 }
124
125 public boolean isPending() {
126 return false;
127 }
128
129 public void select() {
130 lx.engine.getDeck(1).setBlendTransition(transition);
131 }
132}
133
134class UIEffects extends UIWindow {
135 UIEffects(float x, float y, float w, float h) {
136 super("FX", x, y, w, h);
137
138 int yp = titleHeight;
139 List<ScrollItem> items = new ArrayList<ScrollItem>();
140 for (LXEffect fx : glucose.lx.getEffects()) {
141 items.add(new FXScrollItem(fx));
142 }
143 final UIScrollList effectsList = new UIScrollList(1, yp, w-2, 60).setItems(items);
144 effectsList.addToContainer(this);
145 yp += effectsList.h + 10;
146
147 final UIParameterKnob[] parameterKnobs = new UIParameterKnob[4];
148 for (int ki = 0; ki < parameterKnobs.length; ++ki) {
149 parameterKnobs[ki] = new UIParameterKnob(5 + 34*(ki % 4), yp + (ki/4) * 48);
150 parameterKnobs[ki].addToContainer(this);
151 }
152
153 GLucose.EffectListener fxListener = new GLucose.EffectListener() {
154 public void effectSelected(LXEffect effect) {
155 int i = 0;
156 for (LXParameter p : effect.getParameters()) {
157 if (i >= parameterKnobs.length) {
158 break;
159 }
160 parameterKnobs[i++].setParameter(p);
161 }
162 while (i < parameterKnobs.length) {
163 parameterKnobs[i++].setParameter(null);
164 }
165 }
166 };
167
168 glucose.addEffectListener(fxListener);
169 fxListener.effectSelected(glucose.getSelectedEffect());
170
171 }
172
173 class FXScrollItem extends AbstractScrollItem {
174
175 private LXEffect effect;
176 private String label;
177
178 FXScrollItem(LXEffect effect) {
179 this.effect = effect;
180 label = className(effect, "Effect");
181 }
182
183 public String getLabel() {
184 return label;
185 }
186
187 public boolean isSelected() {
188 return !effect.isEnabled() && (glucose.getSelectedEffect() == effect);
189 }
190
191 public boolean isPending() {
192 return effect.isEnabled();
193 }
194
195 public void select() {
196 glucose.setSelectedEffect(effect);
197 }
198
199 public void onMousePressed() {
200 if (glucose.getSelectedEffect() == effect) {
201 if (effect.isMomentary()) {
202 effect.enable();
203 } else {
204 effect.toggle();
205 }
206 }
207 }
208
209 public void onMouseReleased() {
210 if (effect.isMomentary()) {
211 effect.disable();
212 }
213 }
214
215 }
216
217}
218
219class UIOutput extends UIWindow {
220 public UIOutput(float x, float y, float w, float h) {
221 super("OUTPUT", x, y, w, h);
222 float yp = titleHeight;
1f42cce7
MS
223
224 final UIScrollList outputs = new UIScrollList(1, titleHeight, w-2, 80);
225
226 List<ScrollItem> items = new ArrayList<ScrollItem>();
d626bc9b 227 for (final PandaDriver panda : pandaBoards) {
1f42cce7 228 items.add(new PandaScrollItem(panda));
d626bc9b
MS
229 panda.setListener(new PandaDriver.Listener() {
230 public void onToggle(boolean active) {
1f42cce7 231 outputs.redraw();
d626bc9b
MS
232 }
233 });
d626bc9b 234 }
1f42cce7
MS
235 outputs.setItems(items).addToContainer(this);
236 }
237
238 class PandaScrollItem extends AbstractScrollItem {
239 final PandaDriver panda;
240 PandaScrollItem(PandaDriver panda) {
241 this.panda = panda;
242 }
243
244 public String getLabel() {
245 return panda.ip;
246 }
247
248 public boolean isSelected() {
249 return panda.isEnabled();
250 }
251
252 public void select() {
253 panda.toggle();
254 }
255 }
d626bc9b
MS
256}
257
258class UITempo extends UIWindow {
259
260 private final UIButton tempoButton;
261
262 UITempo(float x, float y, float w, float h) {
263 super("TEMPO", x, y, w, h);
78a44a1b 264 tempoButton = new UIButton(4, titleHeight, w-10, 20) {
d626bc9b
MS
265 protected void onToggle(boolean active) {
266 if (active) {
267 lx.tempo.tap();
268 }
269 }
270 }.setMomentary(true);
271 tempoButton.addToContainer(this);
272 }
273
274 public void draw() {
275 tempoButton.setLabel("" + ((int)(lx.tempo.bpm() * 10)) / 10.);
276 super.draw();
277
278 // Overlay tempo thing with openGL, redraw faster than button UI
279 fill(color(0, 0, 24 - 8*lx.tempo.rampf()));
280 noStroke();
281 rect(x + 8, y + titleHeight + 5, 12, 12);
282 }
283}
284
285class UIMapping extends UIWindow {
286
287 private static final String MAP_MODE_ALL = "ALL";
288 private static final String MAP_MODE_CHANNEL = "CHNL";
289 private static final String MAP_MODE_CUBE = "CUBE";
290
291 private static final String CUBE_MODE_ALL = "ALL";
292 private static final String CUBE_MODE_STRIP = "SNGL";
293 private static final String CUBE_MODE_PATTERN = "PTRN";
294
295 private final MappingTool mappingTool;
296
297 private final UIIntegerBox channelBox;
298 private final UIIntegerBox cubeBox;
299 private final UIIntegerBox stripBox;
300
301 UIMapping(MappingTool tool, float x, float y, float w, float h) {
302 super("MAPPING", x, y, w, h);
303 mappingTool = tool;
304
305 int yp = titleHeight;
78a44a1b 306 new UIToggleSet(4, yp, w-10, 20) {
d626bc9b
MS
307 protected void onToggle(String value) {
308 if (value == MAP_MODE_ALL) mappingTool.mappingMode = mappingTool.MAPPING_MODE_ALL;
309 else if (value == MAP_MODE_CHANNEL) mappingTool.mappingMode = mappingTool.MAPPING_MODE_CHANNEL;
310 else if (value == MAP_MODE_CUBE) mappingTool.mappingMode = mappingTool.MAPPING_MODE_SINGLE_CUBE;
311 }
312 }.setOptions(new String[] { MAP_MODE_ALL, MAP_MODE_CHANNEL, MAP_MODE_CUBE }).addToContainer(this);
313 yp += 24;
78a44a1b 314 new UILabel(4, yp+8, w-10, 20).setLabel("CHANNEL ID").addToContainer(this);
d626bc9b 315 yp += 24;
78a44a1b 316 (channelBox = new UIIntegerBox(4, yp, w-10, 20) {
d626bc9b
MS
317 protected void onValueChange(int value) {
318 mappingTool.setChannel(value-1);
319 }
320 }).setRange(1, mappingTool.numChannels()).addToContainer(this);
321 yp += 24;
322
78a44a1b 323 new UILabel(4, yp+8, w-10, 20).setLabel("CUBE ID").addToContainer(this);
d626bc9b 324 yp += 24;
78a44a1b 325 (cubeBox = new UIIntegerBox(4, yp, w-10, 20) {
d626bc9b
MS
326 protected void onValueChange(int value) {
327 mappingTool.setCube(value-1);
328 }
329 }).setRange(1, glucose.model.cubes.size()).addToContainer(this);
330 yp += 24;
331
78a44a1b 332 new UILabel(4, yp+8, w-10, 20).setLabel("COLORS").addToContainer(this);
d626bc9b
MS
333 yp += 24;
334
335 new UIScrollList(1, yp, w-2, 60).setItems(Arrays.asList(new ScrollItem[] {
336 new ColorScrollItem(ColorScrollItem.COLOR_RED),
337 new ColorScrollItem(ColorScrollItem.COLOR_GREEN),
338 new ColorScrollItem(ColorScrollItem.COLOR_BLUE),
339 })).addToContainer(this);
340 yp += 64;
341
78a44a1b 342 new UILabel(4, yp+8, w-10, 20).setLabel("STRIP MODE").addToContainer(this);
d626bc9b
MS
343 yp += 24;
344
78a44a1b 345 new UIToggleSet(4, yp, w-10, 20) {
d626bc9b
MS
346 protected void onToggle(String value) {
347 if (value == CUBE_MODE_ALL) mappingTool.cubeMode = mappingTool.CUBE_MODE_ALL;
348 else if (value == CUBE_MODE_STRIP) mappingTool.cubeMode = mappingTool.CUBE_MODE_SINGLE_STRIP;
349 else if (value == CUBE_MODE_PATTERN) mappingTool.cubeMode = mappingTool.CUBE_MODE_STRIP_PATTERN;
350 }
351 }.setOptions(new String[] { CUBE_MODE_ALL, CUBE_MODE_STRIP, CUBE_MODE_PATTERN }).addToContainer(this);
352
353 yp += 24;
78a44a1b 354 new UILabel(4, yp+8, w-10, 20).setLabel("STRIP ID").addToContainer(this);
d626bc9b
MS
355
356 yp += 24;
78a44a1b 357 (stripBox = new UIIntegerBox(4, yp, w-10, 20) {
d626bc9b
MS
358 protected void onValueChange(int value) {
359 mappingTool.setStrip(value-1);
360 }
361 }).setRange(1, Cube.STRIPS_PER_CUBE).addToContainer(this);
362
363 }
364
365 public void setChannelID(int value) {
366 channelBox.setValue(value);
367 }
368
369 public void setCubeID(int value) {
370 cubeBox.setValue(value);
371 }
372
373 public void setStripID(int value) {
374 stripBox.setValue(value);
375 }
376
377 class ColorScrollItem extends AbstractScrollItem {
378
379 public static final int COLOR_RED = 1;
380 public static final int COLOR_GREEN = 2;
381 public static final int COLOR_BLUE = 3;
382
383 private final int colorChannel;
384
385 ColorScrollItem(int colorChannel) {
386 this.colorChannel = colorChannel;
387 }
388
389 public String getLabel() {
390 switch (colorChannel) {
391 case COLOR_RED: return "Red";
392 case COLOR_GREEN: return "Green";
393 case COLOR_BLUE: return "Blue";
394 }
395 return "";
396 }
397
398 public boolean isSelected() {
399 switch (colorChannel) {
400 case COLOR_RED: return mappingTool.channelModeRed;
401 case COLOR_GREEN: return mappingTool.channelModeGreen;
402 case COLOR_BLUE: return mappingTool.channelModeBlue;
403 }
404 return false;
405 }
406
407 public void select() {
408 switch (colorChannel) {
409 case COLOR_RED: mappingTool.channelModeRed = !mappingTool.channelModeRed; break;
410 case COLOR_GREEN: mappingTool.channelModeGreen = !mappingTool.channelModeGreen; break;
411 case COLOR_BLUE: mappingTool.channelModeBlue = !mappingTool.channelModeBlue; break;
412 }
413 }
414 }
415}
416
417class UIDebugText extends UIContext {
418
419 private String line1 = "";
420 private String line2 = "";
421
422 UIDebugText(float x, float y, float w, float h) {
423 super(x, y, w, h);
424 }
425
426 public UIDebugText setText(String line1) {
427 return setText(line1, "");
428 }
429
430 public UIDebugText setText(String line1, String line2) {
431 if (!line1.equals(this.line1) || !line2.equals(this.line2)) {
432 this.line1 = line1;
433 this.line2 = line2;
434 setVisible(line1.length() + line2.length() > 0);
435 redraw();
436 }
437 return this;
438 }
439
440 protected void onDraw(PGraphics pg) {
441 super.onDraw(pg);
442 if (line1.length() + line2.length() > 0) {
443 pg.noStroke();
444 pg.fill(#444444);
445 pg.rect(0, 0, w, h);
446 pg.textFont(defaultItemFont);
447 pg.textAlign(LEFT, TOP);
448 pg.fill(#cccccc);
449 pg.text(line1, 4, 4);
450 pg.text(line2, 4, 24);
451 }
452 }
453}
454
455String className(Object p, String suffix) {
456 String s = p.getClass().getName();
457 int li;
458 if ((li = s.lastIndexOf(".")) > 0) {
459 s = s.substring(li + 1);
460 }
461 if (s.indexOf("SugarCubes$") == 0) {
462 s = s.substring("SugarCubes$".length());
463 }
464 if ((suffix != null) && ((li = s.indexOf(suffix)) != -1)) {
465 s = s.substring(0, li);
466 }
467 return s;
468}