Fix up to lx.hsb
[SugarCubes.git] / _Internals.pde
CommitLineData
49815cc0 1/**
1ecdb44a
MS
2 * DOUBLE BLACK DIAMOND DOUBLE BLACK DIAMOND
3 *
4 * //\\ //\\ //\\ //\\
5 * ///\\\ ///\\\ ///\\\ ///\\\
6 * \\\/// \\\/// \\\/// \\\///
d12e46b6 7 * \\// \\// \\// \\//H
1ecdb44a
MS
8 *
9 * EXPERTS ONLY!! EXPERTS ONLY!!
10 *
49815cc0
MS
11 * If you are an artist, you may ignore this file! It just sets
12 * up the framework to run the patterns. Should not need modification
13 * for general animation work.
14 */
15
16import glucose.*;
17import glucose.control.*;
3f8be614 18import glucose.effect.*;
f3f5a876 19import glucose.model.*;
49815cc0 20import glucose.pattern.*;
f3f5a876 21import glucose.transform.*;
49815cc0 22import glucose.transition.*;
49815cc0 23import heronarts.lx.*;
3f8be614 24import heronarts.lx.control.*;
49815cc0 25import heronarts.lx.effect.*;
49815cc0 26import heronarts.lx.modulator.*;
f3f5a876 27import heronarts.lx.pattern.*;
49815cc0
MS
28import heronarts.lx.transition.*;
29import ddf.minim.*;
30import ddf.minim.analysis.*;
31import processing.opengl.*;
5d70e4d7 32import rwmidi.*;
24fc0330 33import java.lang.reflect.*;
49815cc0
MS
34
35final int VIEWPORT_WIDTH = 900;
36final int VIEWPORT_HEIGHT = 700;
0e3c5542 37
92c06c97 38// The trailer is measured from the outside of the black metal (but not including the higher welded part on the front)
87998ff3
MS
39final float TRAILER_WIDTH = 240;
40final float TRAILER_DEPTH = 97;
41final float TRAILER_HEIGHT = 33;
42
41f26e8f 43final int MaxCubeHeight = 5;
41c436e4 44final int NumBackTowers = 11;
7e3329d2 45
51d0d59a 46int targetFramerate = 60;
49815cc0 47int startMillis, lastMillis;
a898d79b
MS
48
49// Core engine variables
49815cc0 50GLucose glucose;
d12e46b6 51LX lx;
49815cc0 52LXPattern[] patterns;
24fc0330 53Effects effects;
a898d79b 54MappingTool mappingTool;
79ae8245 55PandaDriver[] pandaBoards;
e0794d3a 56PresetManager presetManager;
1f974cbc 57MidiEngine midiEngine;
a898d79b
MS
58
59// Display configuration mode
bf551144 60boolean mappingMode = false;
cc9fcf4b 61boolean debugMode = false;
554e38ff 62DebugUI debugUI;
34327c96 63boolean uiOn = true;
f8295971 64boolean simulationOn = true;
73678c57 65boolean diagnosticsOn = false;
34327c96 66LXPattern restoreToPattern = null;
4c640acc 67PImage logo;
a41f334c 68float[] hsb = new float[3];
d626bc9b 69
a898d79b 70// Handles to UI objects
d626bc9b
MS
71UIContext[] overlays;
72UIPatternDeck uiPatternA;
a898d79b 73UICrossfader uiCrossfader;
a8d55ade 74UIMidi uiMidi;
d626bc9b
MS
75UIMapping uiMapping;
76UIDebugText uiDebugText;
fa4f822d 77UISpeed uiSpeed;
cc9fcf4b 78
0a9f99cc 79// Camera variables
bda5421d 80float eyeR, eyeA, eyeX, eyeY, eyeZ, midX, midY, midZ;
0a9f99cc 81
34327c96
MS
82/**
83 * Engine construction and initialization.
84 */
d1dcc4b5
MS
85
86LXTransition _transition(GLucose glucose) {
87 return new DissolveTransition(glucose.lx).setDuration(1000);
88}
89
90LXPattern[] _leftPatterns(GLucose glucose) {
d626bc9b
MS
91 LXPattern[] patterns = patterns(glucose);
92 for (LXPattern p : patterns) {
d1dcc4b5 93 p.setTransition(_transition(glucose));
d626bc9b
MS
94 }
95 return patterns;
96}
97
d1dcc4b5
MS
98LXPattern[] _rightPatterns(GLucose glucose) {
99 LXPattern[] patterns = _leftPatterns(glucose);
100 LXPattern[] rightPatterns = new LXPattern[patterns.length+1];
101 int i = 0;
102 rightPatterns[i++] = new BlankPattern(glucose).setTransition(_transition(glucose));
103 for (LXPattern p : patterns) {
104 rightPatterns[i++] = p;
105 }
106 return rightPatterns;
107}
24fc0330
MS
108
109LXEffect[] _effectsArray(Effects effects) {
110 List<LXEffect> effectList = new ArrayList<LXEffect>();
111 for (Field f : effects.getClass().getDeclaredFields()) {
112 try {
113 Object val = f.get(effects);
114 if (val instanceof LXEffect) {
115 effectList.add((LXEffect)val);
116 }
117 } catch (IllegalAccessException iax) {}
118 }
119 return effectList.toArray(new LXEffect[]{});
120}
d1dcc4b5 121
34327c96
MS
122void logTime(String evt) {
123 int now = millis();
124 println(evt + ": " + (now - lastMillis) + "ms");
125 lastMillis = now;
126}
127
49815cc0
MS
128void setup() {
129 startMillis = lastMillis = millis();
130
131 // Initialize the Processing graphics environment
132 size(VIEWPORT_WIDTH, VIEWPORT_HEIGHT, OPENGL);
0e3c5542 133 frameRate(targetFramerate);
3f8be614 134 noSmooth();
49815cc0
MS
135 // hint(ENABLE_OPENGL_4X_SMOOTH); // no discernable improvement?
136 logTime("Created viewport");
137
138 // Create the GLucose engine to run the cubes
186bc4d3 139 glucose = new GLucose(this, buildModel());
49815cc0 140 lx = glucose.lx;
cc9fcf4b 141 lx.enableKeyboardTempo();
49815cc0
MS
142 logTime("Built GLucose engine");
143
144 // Set the patterns
42a424d7 145 LXEngine engine = lx.engine;
d1dcc4b5
MS
146 engine.setPatterns(patterns = _leftPatterns(glucose));
147 engine.addDeck(_rightPatterns(glucose));
49815cc0 148 logTime("Built patterns");
a898d79b
MS
149 glucose.setTransitions(transitions(glucose));
150 logTime("Built transitions");
24fc0330 151 glucose.lx.addEffects(_effectsArray(effects = new Effects()));
49815cc0 152 logTime("Built effects");
4214e9a2 153
e0794d3a
MS
154 // Preset manager
155 presetManager = new PresetManager();
156 logTime("Loaded presets");
4214e9a2 157
1f974cbc
MS
158 // MIDI devices
159 midiEngine = new MidiEngine();
1f974cbc
MS
160 logTime("Setup MIDI devices");
161
e73ef85d 162 // Build output driver
186bc4d3 163 PandaMapping[] pandaMappings = buildPandaList();
45f43cc2
MS
164 pandaBoards = new PandaDriver[pandaMappings.length];
165 int pbi = 0;
166 for (PandaMapping pm : pandaMappings) {
44b8de9c 167 pandaBoards[pbi++] = new PandaDriver(pm.ip, glucose.model, pm);
45f43cc2
MS
168 }
169 mappingTool = new MappingTool(glucose, pandaMappings);
170 logTime("Built PandaDriver");
a8d55ade 171
49815cc0 172 // Build overlay UI
45f43cc2 173 debugUI = new DebugUI(pandaMappings);
d626bc9b 174 overlays = new UIContext[] {
42a424d7 175 uiPatternA = new UIPatternDeck(lx.engine.getDeck(GLucose.LEFT_DECK), "PATTERN A", 4, 4, 140, 324),
a8d55ade
MS
176 new UIBlendMode(4, 332, 140, 86),
177 new UIEffects(4, 422, 140, 144),
178 new UITempo(4, 570, 140, 50),
fa4f822d 179 uiSpeed = new UISpeed(4, 624, 140, 50),
a8d55ade 180
42a424d7 181 new UIPatternDeck(lx.engine.getDeck(GLucose.RIGHT_DECK), "PATTERN B", width-144, 4, 140, 324),
d6ac1ee8 182 uiMidi = new UIMidi(midiEngine, width-144, 332, 140, 158),
4df91daf 183 new UIOutput(width-144, 494, 140, 106),
d626bc9b 184
a8d55ade 185 uiCrossfader = new UICrossfader(width/2-90, height-90, 180, 86),
d626bc9b 186
a8d55ade
MS
187 uiDebugText = new UIDebugText(148, height-138, width-304, 44),
188 uiMapping = new UIMapping(mappingTool, 4, 4, 140, 324),
d626bc9b
MS
189 };
190 uiMapping.setVisible(false);
49815cc0 191 logTime("Built overlay UI");
4c640acc
MS
192
193 // Load logo image
194 logo = loadImage("data/logo.png");
195
0a9f99cc 196 // Setup camera
d626bc9b 197 midX = TRAILER_WIDTH/2.;
0a9f99cc 198 midY = glucose.model.yMax/2;
e0cea600
MS
199 midZ = TRAILER_DEPTH/2.;
200 eyeR = -290;
0a9f99cc 201 eyeA = .15;
d626bc9b 202 eyeY = midY + 70;
0a9f99cc
MS
203 eyeX = midX + eyeR*sin(eyeA);
204 eyeZ = midZ + eyeR*cos(eyeA);
d6ac1ee8
MS
205
206 // Add mouse scrolling event support
bda5421d
MS
207 addMouseWheelListener(new java.awt.event.MouseWheelListener() {
208 public void mouseWheelMoved(java.awt.event.MouseWheelEvent mwe) {
209 mouseWheel(mwe.getWheelRotation());
210 }});
211
49815cc0 212 println("Total setup: " + (millis() - startMillis) + "ms");
e73ef85d 213 println("Hit the 'p' key to toggle Panda Board output");
49815cc0
MS
214}
215
34327c96
MS
216/**
217 * Core render loop and drawing functionality.
218 */
49815cc0 219void draw() {
73678c57
MS
220 long drawStart = System.nanoTime();
221
0a9f99cc
MS
222 // Draws the simulation and the 2D UI overlay
223 background(40);
a898d79b 224
19d16a16
MS
225 color[] simulationColors;
226 color[] sendColors;
227 simulationColors = sendColors = glucose.getColors();
a898d79b 228 String displayMode = uiCrossfader.getDisplayMode();
d626bc9b 229 if (displayMode == "A") {
6b3d53ca 230 simulationColors = lx.engine.getDeck(GLucose.LEFT_DECK).getColors();
d626bc9b 231 } else if (displayMode == "B") {
6b3d53ca 232 simulationColors = lx.engine.getDeck(GLucose.RIGHT_DECK).getColors();
d626bc9b 233 }
554e38ff 234 if (debugMode) {
19d16a16
MS
235 debugUI.maskColors(simulationColors);
236 debugUI.maskColors(sendColors);
554e38ff 237 }
51d0d59a 238
73678c57 239 long simulationStart = System.nanoTime();
f8295971
MS
240 if (simulationOn) {
241 drawSimulation(simulationColors);
242 }
73678c57 243 long simulationNanos = System.nanoTime() - simulationStart;
f8295971
MS
244
245 // 2D Overlay UI
73678c57 246 long uiStart = System.nanoTime();
f8295971 247 drawUI();
73678c57
MS
248 long uiNanos = System.nanoTime() - uiStart;
249
250 long gammaStart = System.nanoTime();
f8295971
MS
251 // Gamma correction here. Apply a cubic to the brightness
252 // for better representation of dynamic range
253 for (int i = 0; i < sendColors.length; ++i) {
254 lx.RGBtoHSB(sendColors[i], hsb);
255 float b = hsb[2];
256 sendColors[i] = lx.hsb(360.*hsb[0], 100.*hsb[1], 100.*(b*b*b));
257 }
73678c57 258 long gammaNanos = System.nanoTime() - gammaStart;
f8295971 259
73678c57 260 long sendStart = System.nanoTime();
f8295971
MS
261 for (PandaDriver p : pandaBoards) {
262 p.send(sendColors);
263 }
73678c57
MS
264 long sendNanos = System.nanoTime() - sendStart;
265
266 long drawNanos = System.nanoTime() - drawStart;
267
268 if (diagnosticsOn) {
269 drawDiagnostics(lx.drawNanos(), drawNanos, simulationNanos, uiNanos, gammaNanos, sendNanos);
270 }
271}
272
273void drawDiagnostics(long lxNanos, long drawNanos, long simulationNanos, long uiNanos, long gammaNanos, long sendNanos) {
274 float ws = 4 / 1000000.;
275 int thirtyfps = 1000000000 / 30;
276 int sixtyfps = 1000000000 / 60;
277 int x = width - 138;
278 int y = height - 14;
279 int h = 10;
280 noFill();
281 stroke(#999999);
282 rect(x, y, thirtyfps * ws, h);
283 noStroke();
284 int xp = x;
285 float hv = 0;
286 for (long val : new long[] {lxNanos, simulationNanos, uiNanos, gammaNanos, sendNanos }) {
287 fill(lx.hsb(hv % 360, 100, 80));
288 rect(xp, y, val * ws, h-1);
289 hv += 140;
290 xp += val * ws;
291 }
292 noFill();
293 stroke(#333333);
294 line(x+sixtyfps*ws, y+1, x+sixtyfps*ws, y+h-1);
f8295971
MS
295}
296
297void drawSimulation(color[] simulationColors) {
298 camera(
0a9f99cc
MS
299 eyeX, eyeY, eyeZ,
300 midX, midY, midZ,
301 0, -1, 0
302 );
51d0d59a 303
a8d55ade 304 translate(0, 40, 0);
d626bc9b 305
51d0d59a
MS
306 noStroke();
307 fill(#141414);
87998ff3 308 drawBox(0, -TRAILER_HEIGHT, 0, 0, 0, 0, TRAILER_WIDTH, TRAILER_HEIGHT, TRAILER_DEPTH, TRAILER_HEIGHT/2.);
51d0d59a
MS
309 fill(#070707);
310 stroke(#222222);
0a9f99cc 311 beginShape();
51d0d59a 312 vertex(0, 0, 0);
87998ff3
MS
313 vertex(TRAILER_WIDTH, 0, 0);
314 vertex(TRAILER_WIDTH, 0, TRAILER_DEPTH);
315 vertex(0, 0, TRAILER_DEPTH);
51d0d59a 316 endShape();
4c640acc
MS
317
318 // Draw the logo on the front of platform
319 pushMatrix();
320 translate(0, 0, -1);
321 float s = .07;
322 scale(s, -s, s);
323 image(logo, TRAILER_WIDTH/2/s-logo.width/2, TRAILER_HEIGHT/2/s-logo.height/2-2/s);
324 popMatrix();
0a9f99cc 325
51d0d59a 326 noStroke();
e89eda9f
MS
327 if (glucose.model.bassBox.exists) {
328 drawBassBox(glucose.model.bassBox, false);
329 }
330 for (Speaker speaker : glucose.model.speakers) {
331 drawSpeaker(speaker);
332 }
51d0d59a
MS
333 for (Cube c : glucose.model.cubes) {
334 drawCube(c);
335 }
336
0a9f99cc
MS
337 noFill();
338 strokeWeight(2);
339 beginShape(POINTS);
e89eda9f 340 for (Point p : glucose.model.points) {
19d16a16 341 stroke(simulationColors[p.index]);
190d91c2 342 vertex(p.x, p.y, p.z);
0a9f99cc
MS
343 }
344 endShape();
49815cc0
MS
345}
346
e89eda9f
MS
347void drawBassBox(BassBox b, boolean hasSub) {
348
92c06c97 349 float in = .15;
e89eda9f
MS
350
351 if (hasSub) {
352 noStroke();
353 fill(#191919);
354 pushMatrix();
355 translate(b.x + BassBox.EDGE_WIDTH/2., b.y + BassBox.EDGE_HEIGHT/2, b.z + BassBox.EDGE_DEPTH/2.);
356 box(BassBox.EDGE_WIDTH-20*in, BassBox.EDGE_HEIGHT-20*in, BassBox.EDGE_DEPTH-20*in);
357 popMatrix();
358 }
e76480d4
MS
359
360 noStroke();
361 fill(#393939);
92c06c97
MS
362 drawBox(b.x+in, b.y+in, b.z+in, 0, 0, 0, BassBox.EDGE_WIDTH-in*2, BassBox.EDGE_HEIGHT-in*2, BassBox.EDGE_DEPTH-in*2, Cube.CHANNEL_WIDTH-in);
363
39011e7e
MS
364 pushMatrix();
365 translate(b.x+(Cube.CHANNEL_WIDTH-in)/2., b.y + BassBox.EDGE_HEIGHT-in, b.z + BassBox.EDGE_DEPTH/2.);
366 float lastOffset = 0;
367 for (float offset : BoothFloor.STRIP_OFFSETS) {
368 translate(offset - lastOffset, 0, 0);
369 box(Cube.CHANNEL_WIDTH-in, 0, BassBox.EDGE_DEPTH - 2*in);
370 lastOffset = offset;
371 }
372 popMatrix();
373
92c06c97
MS
374 pushMatrix();
375 translate(b.x + (Cube.CHANNEL_WIDTH-in)/2., b.y + BassBox.EDGE_HEIGHT/2., b.z + in);
376 for (int j = 0; j < 2; ++j) {
377 pushMatrix();
378 for (int i = 0; i < BassBox.NUM_FRONT_STRUTS; ++i) {
379 translate(BassBox.FRONT_STRUT_SPACING, 0, 0);
380 box(Cube.CHANNEL_WIDTH-in, BassBox.EDGE_HEIGHT - in*2, 0);
381 }
382 popMatrix();
383 translate(0, 0, BassBox.EDGE_DEPTH - 2*in);
384 }
385 popMatrix();
386
387 pushMatrix();
388 translate(b.x + in, b.y + BassBox.EDGE_HEIGHT/2., b.z + BassBox.SIDE_STRUT_SPACING + (Cube.CHANNEL_WIDTH-in)/2.);
389 box(0, BassBox.EDGE_HEIGHT - in*2, Cube.CHANNEL_WIDTH-in);
390 translate(BassBox.EDGE_WIDTH-2*in, 0, 0);
391 box(0, BassBox.EDGE_HEIGHT - in*2, Cube.CHANNEL_WIDTH-in);
ab77005f 392 popMatrix();
e76480d4 393
92c06c97
MS
394}
395
51d0d59a 396void drawCube(Cube c) {
254d34c0 397 float in = .15;
e76480d4
MS
398 noStroke();
399 fill(#393939);
254d34c0 400 drawBox(c.x+in, c.y+in, c.z+in, c.rx, c.ry, c.rz, Cube.EDGE_WIDTH-in*2, Cube.EDGE_HEIGHT-in*2, Cube.EDGE_WIDTH-in*2, Cube.CHANNEL_WIDTH-in);
51d0d59a
MS
401}
402
e76480d4
MS
403void drawSpeaker(Speaker s) {
404 float in = .15;
405
406 noStroke();
407 fill(#191919);
408 pushMatrix();
409 translate(s.x, s.y, s.z);
410 rotate(s.ry / 180. * PI, 0, -1, 0);
411 translate(Speaker.EDGE_WIDTH/2., Speaker.EDGE_HEIGHT/2., Speaker.EDGE_DEPTH/2.);
412 box(Speaker.EDGE_WIDTH-20*in, Speaker.EDGE_HEIGHT-20*in, Speaker.EDGE_DEPTH-20*in);
254fbb68
MS
413 translate(0, Speaker.EDGE_HEIGHT/2. + Speaker.EDGE_HEIGHT*.8/2, 0);
414
415 fill(#222222);
416 box(Speaker.EDGE_WIDTH*.6, Speaker.EDGE_HEIGHT*.8, Speaker.EDGE_DEPTH*.75);
e76480d4
MS
417 popMatrix();
418
e76480d4
MS
419 noStroke();
420 fill(#393939);
421 drawBox(s.x+in, s.y+in, s.z+in, 0, s.ry, 0, Speaker.EDGE_WIDTH-in*2, Speaker.EDGE_HEIGHT-in*2, Speaker.EDGE_DEPTH-in*2, Cube.CHANNEL_WIDTH-in);
ab77005f 422}
e76480d4 423
51d0d59a
MS
424void drawBox(float x, float y, float z, float rx, float ry, float rz, float xd, float yd, float zd, float sw) {
425 pushMatrix();
426 translate(x, y, z);
e0cea600 427 rotate(rx / 180. * PI, -1, 0, 0);
51d0d59a 428 rotate(ry / 180. * PI, 0, -1, 0);
e0cea600 429 rotate(rz / 180. * PI, 0, 0, -1);
51d0d59a
MS
430 for (int i = 0; i < 4; ++i) {
431 float wid = (i % 2 == 0) ? xd : zd;
432
433 beginShape();
434 vertex(0, 0);
435 vertex(wid, 0);
436 vertex(wid, yd);
437 vertex(wid - sw, yd);
438 vertex(wid - sw, sw);
439 vertex(0, sw);
440 endShape();
441 beginShape();
442 vertex(0, sw);
443 vertex(0, yd);
444 vertex(wid - sw, yd);
445 vertex(wid - sw, yd - sw);
446 vertex(sw, yd - sw);
447 vertex(sw, sw);
448 endShape();
449
450 translate(wid, 0, 0);
451 rotate(HALF_PI, 0, -1, 0);
452 }
453 popMatrix();
454}
455
49815cc0 456void drawUI() {
d626bc9b
MS
457 camera();
458 javax.media.opengl.GL gl = ((PGraphicsOpenGL)g).beginGL();
459 gl.glClear(javax.media.opengl.GL.GL_DEPTH_BUFFER_BIT);
460 ((PGraphicsOpenGL)g).endGL();
461 strokeWeight(1);
462
49815cc0 463 if (uiOn) {
d626bc9b
MS
464 for (UIContext context : overlays) {
465 context.draw();
466 }
467 }
468
469 // Always draw FPS meter
470 fill(#555555);
471 textSize(9);
472 textAlign(LEFT, BASELINE);
473 text("FPS: " + ((int) (frameRate*10)) / 10. + " / " + targetFramerate + " (-/+)", 4, height-4);
474
475 if (debugMode) {
476 debugUI.draw();
49815cc0 477 }
49815cc0
MS
478}
479
4c640acc 480
34327c96
MS
481/**
482 * Top-level keyboard event handling
483 */
49815cc0 484void keyPressed() {
bf551144 485 if (mappingMode) {
d626bc9b 486 mappingTool.keyPressed(uiMapping);
bf551144 487 }
3f8be614 488 switch (key) {
2b068dd5
MS
489 case '1':
490 case '2':
491 case '3':
492 case '4':
493 case '5':
494 case '6':
495 case '7':
496 case '8':
497 if (!midiEngine.isQwertyEnabled()) {
498 presetManager.select(midiEngine.getFocusedDeck(), key - '1');
499 }
500 break;
501
502 case '!':
503 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 0);
504 break;
505 case '@':
506 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 1);
507 break;
508 case '#':
509 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 2);
510 break;
511 case '$':
512 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 3);
513 break;
514 case '%':
515 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 4);
516 break;
517 case '^':
518 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 5);
519 break;
520 case '&':
521 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 6);
522 break;
523 case '*':
524 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 7);
525 break;
526
0e3c5542
MS
527 case '-':
528 case '_':
529 frameRate(--targetFramerate);
530 break;
531 case '=':
532 case '+':
533 frameRate(++targetFramerate);
75e1ddde
MS
534 break;
535 case 'b':
24fc0330 536 effects.boom.trigger();
75e1ddde 537 break;
cc9fcf4b 538 case 'd':
d6ac1ee8 539 if (!midiEngine.isQwertyEnabled()) {
a8d55ade
MS
540 debugMode = !debugMode;
541 println("Debug output: " + (debugMode ? "ON" : "OFF"));
542 }
554e38ff 543 break;
bf551144 544 case 'm':
d6ac1ee8 545 if (!midiEngine.isQwertyEnabled()) {
a8d55ade
MS
546 mappingMode = !mappingMode;
547 uiPatternA.setVisible(!mappingMode);
548 uiMapping.setVisible(mappingMode);
549 if (mappingMode) {
550 restoreToPattern = lx.getPattern();
551 lx.setPatterns(new LXPattern[] { mappingTool });
552 } else {
553 lx.setPatterns(patterns);
554 LXTransition pop = restoreToPattern.getTransition();
555 restoreToPattern.setTransition(null);
556 lx.goPattern(restoreToPattern);
557 restoreToPattern.setTransition(pop);
558 }
bf551144
MS
559 }
560 break;
19d16a16
MS
561 case 't':
562 if (!midiEngine.isQwertyEnabled()) {
563 lx.engine.setThreaded(!lx.engine.isThreaded());
564 }
565 break;
e73ef85d 566 case 'p':
79ae8245
MS
567 for (PandaDriver p : pandaBoards) {
568 p.toggle();
569 }
cc9fcf4b 570 break;
73678c57
MS
571 case 'q':
572 if (!midiEngine.isQwertyEnabled()) {
573 diagnosticsOn = !diagnosticsOn;
574 }
575 break;
f8295971
MS
576 case 's':
577 if (!midiEngine.isQwertyEnabled()) {
578 simulationOn = !simulationOn;
579 }
580 break;
3f8be614 581 case 'u':
d6ac1ee8 582 if (!midiEngine.isQwertyEnabled()) {
4df91daf
MS
583 uiOn = !uiOn;
584 }
3f8be614 585 break;
49815cc0
MS
586 }
587}
588
34327c96
MS
589/**
590 * Top-level mouse event handling
591 */
0a9f99cc 592int mx, my;
0a9f99cc 593void mousePressed() {
d626bc9b
MS
594 boolean debugged = false;
595 if (debugMode) {
596 debugged = debugUI.mousePressed();
597 }
598 if (!debugged) {
599 for (UIContext context : overlays) {
600 context.mousePressed(mouseX, mouseY);
601 }
0a9f99cc 602 }
d626bc9b
MS
603 mx = mouseX;
604 my = mouseY;
0a9f99cc
MS
605}
606
607void mouseDragged() {
d626bc9b
MS
608 boolean dragged = false;
609 for (UIContext context : overlays) {
610 dragged |= context.mouseDragged(mouseX, mouseY);
611 }
612 if (!dragged) {
0a9f99cc
MS
613 int dx = mouseX - mx;
614 int dy = mouseY - my;
615 mx = mouseX;
616 my = mouseY;
617 eyeA += dx*.003;
618 eyeX = midX + eyeR*sin(eyeA);
619 eyeZ = midZ + eyeR*cos(eyeA);
620 eyeY += dy;
621 }
622}
623
624void mouseReleased() {
d626bc9b
MS
625 for (UIContext context : overlays) {
626 context.mouseReleased(mouseX, mouseY);
627 }
0a9f99cc 628}
73687629 629
a0140e21 630void mouseWheel(int delta) {
d626bc9b
MS
631 boolean wheeled = false;
632 for (UIContext context : overlays) {
633 wheeled |= context.mouseWheel(mouseX, mouseY, delta);
634 }
635
636 if (!wheeled) {
0ba6ac44
MS
637 eyeR = constrain(eyeR - delta, -500, -80);
638 eyeX = midX + eyeR*sin(eyeA);
639 eyeZ = midZ + eyeR*cos(eyeA);
640 }
bda5421d 641}