X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=_Internals.pde;fp=_Internals.pde;h=da9a7c5fffb766771fd9e127103436eee2f23499;hb=f82959711a831753a6c42137de4e71fc5d4af5fb;hp=58187f119e9463ab1b982e2c6fece39ff62f8254;hpb=9bdc3e7323c2d8d106a60a8d53c966f7d2d75063;p=SugarCubes.git diff --git a/_Internals.pde b/_Internals.pde index 58187f1..da9a7c5 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;