Stop wasting time in ColorFucker when sharpness is off
[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) {
ef7118ad 269 drawDiagnostics(drawNanos, simulationNanos, uiNanos, gammaNanos, sendNanos);
73678c57
MS
270 }
271}
272
ef7118ad 273void drawDiagnostics(long drawNanos, long simulationNanos, long uiNanos, long gammaNanos, long sendNanos) {
73678c57
MS
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;
ef7118ad 286 for (long val : new long[] {lx.timer.drawNanos, simulationNanos, uiNanos, gammaNanos, sendNanos }) {
73678c57
MS
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);
ef7118ad
MS
295
296 y = y - 14;
297 xp = x;
298 float tw = thirtyfps * ws;
299 noFill();
300 stroke(#999999);
301 rect(x, y, tw, h);
302 noStroke();
303 for (long val : new long[] {
304 lx.engine.timer.deckNanos,
305 lx.engine.timer.fxNanos}) {
306 float amt = val / (float) lx.timer.drawNanos;
307 fill(lx.hsb(hv % 360, 100, 80));
308 rect(xp, y, amt * tw, h-1);
309 hv += 140;
310 xp += amt * tw;
311 }
f8295971
MS
312}
313
314void drawSimulation(color[] simulationColors) {
315 camera(
0a9f99cc
MS
316 eyeX, eyeY, eyeZ,
317 midX, midY, midZ,
318 0, -1, 0
319 );
51d0d59a 320
a8d55ade 321 translate(0, 40, 0);
d626bc9b 322
51d0d59a
MS
323 noStroke();
324 fill(#141414);
87998ff3 325 drawBox(0, -TRAILER_HEIGHT, 0, 0, 0, 0, TRAILER_WIDTH, TRAILER_HEIGHT, TRAILER_DEPTH, TRAILER_HEIGHT/2.);
51d0d59a
MS
326 fill(#070707);
327 stroke(#222222);
0a9f99cc 328 beginShape();
51d0d59a 329 vertex(0, 0, 0);
87998ff3
MS
330 vertex(TRAILER_WIDTH, 0, 0);
331 vertex(TRAILER_WIDTH, 0, TRAILER_DEPTH);
332 vertex(0, 0, TRAILER_DEPTH);
51d0d59a 333 endShape();
4c640acc
MS
334
335 // Draw the logo on the front of platform
336 pushMatrix();
337 translate(0, 0, -1);
338 float s = .07;
339 scale(s, -s, s);
340 image(logo, TRAILER_WIDTH/2/s-logo.width/2, TRAILER_HEIGHT/2/s-logo.height/2-2/s);
341 popMatrix();
0a9f99cc 342
51d0d59a 343 noStroke();
e89eda9f
MS
344 if (glucose.model.bassBox.exists) {
345 drawBassBox(glucose.model.bassBox, false);
346 }
347 for (Speaker speaker : glucose.model.speakers) {
348 drawSpeaker(speaker);
349 }
51d0d59a
MS
350 for (Cube c : glucose.model.cubes) {
351 drawCube(c);
352 }
353
0a9f99cc
MS
354 noFill();
355 strokeWeight(2);
356 beginShape(POINTS);
e89eda9f 357 for (Point p : glucose.model.points) {
19d16a16 358 stroke(simulationColors[p.index]);
190d91c2 359 vertex(p.x, p.y, p.z);
0a9f99cc
MS
360 }
361 endShape();
49815cc0
MS
362}
363
e89eda9f
MS
364void drawBassBox(BassBox b, boolean hasSub) {
365
92c06c97 366 float in = .15;
e89eda9f
MS
367
368 if (hasSub) {
369 noStroke();
370 fill(#191919);
371 pushMatrix();
372 translate(b.x + BassBox.EDGE_WIDTH/2., b.y + BassBox.EDGE_HEIGHT/2, b.z + BassBox.EDGE_DEPTH/2.);
373 box(BassBox.EDGE_WIDTH-20*in, BassBox.EDGE_HEIGHT-20*in, BassBox.EDGE_DEPTH-20*in);
374 popMatrix();
375 }
e76480d4
MS
376
377 noStroke();
378 fill(#393939);
92c06c97
MS
379 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);
380
39011e7e
MS
381 pushMatrix();
382 translate(b.x+(Cube.CHANNEL_WIDTH-in)/2., b.y + BassBox.EDGE_HEIGHT-in, b.z + BassBox.EDGE_DEPTH/2.);
383 float lastOffset = 0;
384 for (float offset : BoothFloor.STRIP_OFFSETS) {
385 translate(offset - lastOffset, 0, 0);
386 box(Cube.CHANNEL_WIDTH-in, 0, BassBox.EDGE_DEPTH - 2*in);
387 lastOffset = offset;
388 }
389 popMatrix();
390
92c06c97
MS
391 pushMatrix();
392 translate(b.x + (Cube.CHANNEL_WIDTH-in)/2., b.y + BassBox.EDGE_HEIGHT/2., b.z + in);
393 for (int j = 0; j < 2; ++j) {
394 pushMatrix();
395 for (int i = 0; i < BassBox.NUM_FRONT_STRUTS; ++i) {
396 translate(BassBox.FRONT_STRUT_SPACING, 0, 0);
397 box(Cube.CHANNEL_WIDTH-in, BassBox.EDGE_HEIGHT - in*2, 0);
398 }
399 popMatrix();
400 translate(0, 0, BassBox.EDGE_DEPTH - 2*in);
401 }
402 popMatrix();
403
404 pushMatrix();
405 translate(b.x + in, b.y + BassBox.EDGE_HEIGHT/2., b.z + BassBox.SIDE_STRUT_SPACING + (Cube.CHANNEL_WIDTH-in)/2.);
406 box(0, BassBox.EDGE_HEIGHT - in*2, Cube.CHANNEL_WIDTH-in);
407 translate(BassBox.EDGE_WIDTH-2*in, 0, 0);
408 box(0, BassBox.EDGE_HEIGHT - in*2, Cube.CHANNEL_WIDTH-in);
ab77005f 409 popMatrix();
e76480d4 410
92c06c97
MS
411}
412
51d0d59a 413void drawCube(Cube c) {
254d34c0 414 float in = .15;
e76480d4
MS
415 noStroke();
416 fill(#393939);
254d34c0 417 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
418}
419
e76480d4
MS
420void drawSpeaker(Speaker s) {
421 float in = .15;
422
423 noStroke();
424 fill(#191919);
425 pushMatrix();
426 translate(s.x, s.y, s.z);
427 rotate(s.ry / 180. * PI, 0, -1, 0);
428 translate(Speaker.EDGE_WIDTH/2., Speaker.EDGE_HEIGHT/2., Speaker.EDGE_DEPTH/2.);
429 box(Speaker.EDGE_WIDTH-20*in, Speaker.EDGE_HEIGHT-20*in, Speaker.EDGE_DEPTH-20*in);
254fbb68
MS
430 translate(0, Speaker.EDGE_HEIGHT/2. + Speaker.EDGE_HEIGHT*.8/2, 0);
431
432 fill(#222222);
433 box(Speaker.EDGE_WIDTH*.6, Speaker.EDGE_HEIGHT*.8, Speaker.EDGE_DEPTH*.75);
e76480d4
MS
434 popMatrix();
435
e76480d4
MS
436 noStroke();
437 fill(#393939);
438 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 439}
e76480d4 440
51d0d59a
MS
441void drawBox(float x, float y, float z, float rx, float ry, float rz, float xd, float yd, float zd, float sw) {
442 pushMatrix();
443 translate(x, y, z);
e0cea600 444 rotate(rx / 180. * PI, -1, 0, 0);
51d0d59a 445 rotate(ry / 180. * PI, 0, -1, 0);
e0cea600 446 rotate(rz / 180. * PI, 0, 0, -1);
51d0d59a
MS
447 for (int i = 0; i < 4; ++i) {
448 float wid = (i % 2 == 0) ? xd : zd;
449
450 beginShape();
451 vertex(0, 0);
452 vertex(wid, 0);
453 vertex(wid, yd);
454 vertex(wid - sw, yd);
455 vertex(wid - sw, sw);
456 vertex(0, sw);
457 endShape();
458 beginShape();
459 vertex(0, sw);
460 vertex(0, yd);
461 vertex(wid - sw, yd);
462 vertex(wid - sw, yd - sw);
463 vertex(sw, yd - sw);
464 vertex(sw, sw);
465 endShape();
466
467 translate(wid, 0, 0);
468 rotate(HALF_PI, 0, -1, 0);
469 }
470 popMatrix();
471}
472
49815cc0 473void drawUI() {
d626bc9b
MS
474 camera();
475 javax.media.opengl.GL gl = ((PGraphicsOpenGL)g).beginGL();
476 gl.glClear(javax.media.opengl.GL.GL_DEPTH_BUFFER_BIT);
477 ((PGraphicsOpenGL)g).endGL();
478 strokeWeight(1);
479
49815cc0 480 if (uiOn) {
d626bc9b
MS
481 for (UIContext context : overlays) {
482 context.draw();
483 }
484 }
485
486 // Always draw FPS meter
487 fill(#555555);
488 textSize(9);
489 textAlign(LEFT, BASELINE);
490 text("FPS: " + ((int) (frameRate*10)) / 10. + " / " + targetFramerate + " (-/+)", 4, height-4);
491
492 if (debugMode) {
493 debugUI.draw();
49815cc0 494 }
49815cc0
MS
495}
496
4c640acc 497
34327c96
MS
498/**
499 * Top-level keyboard event handling
500 */
49815cc0 501void keyPressed() {
bf551144 502 if (mappingMode) {
d626bc9b 503 mappingTool.keyPressed(uiMapping);
bf551144 504 }
3f8be614 505 switch (key) {
2b068dd5
MS
506 case '1':
507 case '2':
508 case '3':
509 case '4':
510 case '5':
511 case '6':
512 case '7':
513 case '8':
514 if (!midiEngine.isQwertyEnabled()) {
515 presetManager.select(midiEngine.getFocusedDeck(), key - '1');
516 }
517 break;
518
519 case '!':
520 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 0);
521 break;
522 case '@':
523 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 1);
524 break;
525 case '#':
526 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 2);
527 break;
528 case '$':
529 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 3);
530 break;
531 case '%':
532 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 4);
533 break;
534 case '^':
535 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 5);
536 break;
537 case '&':
538 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 6);
539 break;
540 case '*':
541 if (!midiEngine.isQwertyEnabled()) presetManager.store(midiEngine.getFocusedDeck(), 7);
542 break;
543
0e3c5542
MS
544 case '-':
545 case '_':
546 frameRate(--targetFramerate);
547 break;
548 case '=':
549 case '+':
550 frameRate(++targetFramerate);
75e1ddde
MS
551 break;
552 case 'b':
24fc0330 553 effects.boom.trigger();
75e1ddde 554 break;
cc9fcf4b 555 case 'd':
d6ac1ee8 556 if (!midiEngine.isQwertyEnabled()) {
a8d55ade
MS
557 debugMode = !debugMode;
558 println("Debug output: " + (debugMode ? "ON" : "OFF"));
559 }
554e38ff 560 break;
bf551144 561 case 'm':
d6ac1ee8 562 if (!midiEngine.isQwertyEnabled()) {
a8d55ade
MS
563 mappingMode = !mappingMode;
564 uiPatternA.setVisible(!mappingMode);
565 uiMapping.setVisible(mappingMode);
566 if (mappingMode) {
567 restoreToPattern = lx.getPattern();
568 lx.setPatterns(new LXPattern[] { mappingTool });
569 } else {
570 lx.setPatterns(patterns);
571 LXTransition pop = restoreToPattern.getTransition();
572 restoreToPattern.setTransition(null);
573 lx.goPattern(restoreToPattern);
574 restoreToPattern.setTransition(pop);
575 }
bf551144
MS
576 }
577 break;
19d16a16
MS
578 case 't':
579 if (!midiEngine.isQwertyEnabled()) {
580 lx.engine.setThreaded(!lx.engine.isThreaded());
581 }
582 break;
e73ef85d 583 case 'p':
79ae8245
MS
584 for (PandaDriver p : pandaBoards) {
585 p.toggle();
586 }
cc9fcf4b 587 break;
73678c57
MS
588 case 'q':
589 if (!midiEngine.isQwertyEnabled()) {
590 diagnosticsOn = !diagnosticsOn;
591 }
592 break;
f8295971
MS
593 case 's':
594 if (!midiEngine.isQwertyEnabled()) {
595 simulationOn = !simulationOn;
596 }
597 break;
3f8be614 598 case 'u':
d6ac1ee8 599 if (!midiEngine.isQwertyEnabled()) {
4df91daf
MS
600 uiOn = !uiOn;
601 }
3f8be614 602 break;
49815cc0
MS
603 }
604}
605
34327c96
MS
606/**
607 * Top-level mouse event handling
608 */
0a9f99cc 609int mx, my;
0a9f99cc 610void mousePressed() {
d626bc9b
MS
611 boolean debugged = false;
612 if (debugMode) {
613 debugged = debugUI.mousePressed();
614 }
615 if (!debugged) {
616 for (UIContext context : overlays) {
617 context.mousePressed(mouseX, mouseY);
618 }
0a9f99cc 619 }
d626bc9b
MS
620 mx = mouseX;
621 my = mouseY;
0a9f99cc
MS
622}
623
624void mouseDragged() {
d626bc9b
MS
625 boolean dragged = false;
626 for (UIContext context : overlays) {
627 dragged |= context.mouseDragged(mouseX, mouseY);
628 }
629 if (!dragged) {
0a9f99cc
MS
630 int dx = mouseX - mx;
631 int dy = mouseY - my;
632 mx = mouseX;
633 my = mouseY;
634 eyeA += dx*.003;
635 eyeX = midX + eyeR*sin(eyeA);
636 eyeZ = midZ + eyeR*cos(eyeA);
637 eyeY += dy;
638 }
639}
640
641void mouseReleased() {
d626bc9b
MS
642 for (UIContext context : overlays) {
643 context.mouseReleased(mouseX, mouseY);
644 }
0a9f99cc 645}
73687629 646
a0140e21 647void mouseWheel(int delta) {
d626bc9b
MS
648 boolean wheeled = false;
649 for (UIContext context : overlays) {
650 wheeled |= context.mouseWheel(mouseX, mouseY, delta);
651 }
652
653 if (!wheeled) {
0ba6ac44
MS
654 eyeR = constrain(eyeR - delta, -500, -80);
655 eyeX = midX + eyeR*sin(eyeA);
656 eyeZ = midZ + eyeR*cos(eyeA);
657 }
bda5421d 658}