X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=_Internals.pde;h=0090d18e2c924aa1311503804c32bc5345273ee1;hb=7974acd602f1c1ecc969403c50b41edbd10d77dd;hp=2cc799f8eda4f94fcd7a6e3470ae33e4096f710c;hpb=ffc523c070e369b68fce2474b7b506f7d8968e9d;p=SugarCubes.git diff --git a/_Internals.pde b/_Internals.pde index 2cc799f..0090d18 100644 --- a/_Internals.pde +++ b/_Internals.pde @@ -61,6 +61,7 @@ boolean mappingMode = false; boolean debugMode = false; DebugUI debugUI; boolean uiOn = true; +boolean simulationOn = true; LXPattern restoreToPattern = null; PImage logo; float[] hsb = new float[3]; @@ -232,7 +233,29 @@ void draw() { debugUI.maskColors(sendColors); } - camera( + if (simulationOn) { + drawSimulation(simulationColors); + } + + // 2D Overlay UI + drawUI(); + + // Gamma correction here. Apply a cubic to the brightness + // for better representation of dynamic range + for (int i = 0; i < sendColors.length; ++i) { + lx.RGBtoHSB(sendColors[i], hsb); + float b = hsb[2]; + sendColors[i] = lx.hsb(360.*hsb[0], 100.*hsb[1], 100.*(b*b*b)); + } + + // TODO(mcslee): move into GLucose engine + for (PandaDriver p : pandaBoards) { + p.send(sendColors); + } +} + +void drawSimulation(color[] simulationColors) { + camera( eyeX, eyeY, eyeZ, midX, midY, midZ, 0, -1, 0 @@ -279,22 +302,6 @@ void draw() { vertex(p.x, p.y, p.z); } endShape(); - - // 2D Overlay UI - drawUI(); - - // Gamma correction here. Apply a cubic to the brightness - // for better representation of dynamic range - for (int i = 0; i < sendColors.length; ++i) { - lx.RGBtoHSB(sendColors[i], hsb); - float b = hsb[2]; - sendColors[i] = lx.hsb(360.*hsb[0], 100.*hsb[1], 100.*(b*b*b)); - } - - // TODO(mcslee): move into GLucose engine - for (PandaDriver p : pandaBoards) { - p.send(sendColors); - } } void drawBassBox(BassBox b, boolean hasSub) { @@ -521,6 +528,11 @@ void keyPressed() { p.toggle(); } break; + case 's': + if (!midiEngine.isQwertyEnabled()) { + simulationOn = !simulationOn; + } + break; case 'u': if (!midiEngine.isQwertyEnabled()) { uiOn = !uiOn;