X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=_Internals.pde;h=46c39390dcf93ac1dfe29deaee243eba0c36efa5;hb=cc9fcf4be00a99376a2083ddfbcf589f94ee6785;hp=7fe320911ea6709f5287e3a89f33ca7106edbfd0;hpb=f3f5a87685d1a5be6a9f838efdeb946fdc7688d2;p=SugarCubes.git diff --git a/_Internals.pde b/_Internals.pde index 7fe3209..46c3939 100644 --- a/_Internals.pde +++ b/_Internals.pde @@ -1,4 +1,13 @@ /** + * DOUBLE BLACK DIAMOND DOUBLE BLACK DIAMOND + * + * //\\ //\\ //\\ //\\ + * ///\\\ ///\\\ ///\\\ ///\\\ + * \\\/// \\\/// \\\/// \\\/// + * \\// \\// \\// \\// + * + * EXPERTS ONLY!! EXPERTS ONLY!! + * * If you are an artist, you may ignore this file! It just sets * up the framework to run the patterns. Should not need modification * for general animation work. @@ -35,6 +44,8 @@ LXTransition[] transitions; LXEffect[] effects; OverlayUI ui; +boolean debugMode = false; + void setup() { startMillis = lastMillis = millis(); @@ -46,8 +57,9 @@ void setup() { logTime("Created viewport"); // Create the GLucose engine to run the cubes - glucose = new GLucose(this); + glucose = new GLucose(this, new SCMapping()); lx = glucose.lx; + lx.enableKeyboardTempo(); logTime("Built GLucose engine"); // Set the patterns @@ -55,20 +67,41 @@ void setup() { logTime("Built patterns"); glucose.lx.addEffects(effects = effects(glucose)); logTime("Built effects"); - transitions = transitions(glucose); + glucose.setTransitions(transitions = transitions(glucose)); logTime("Built transitions"); // Build overlay UI ui = new OverlayUI(); logTime("Built overlay UI"); - + // MIDI devices - SCMidiDevices.initializeStandardDevices(glucose, ui.patternKnobs, ui.transitionKnobs, ui.effectKnobs); + for (MidiInputDevice d : RWMidi.getInputDevices()) { + d.createInput(this); + } + SCMidiDevices.initializeStandardDevices(glucose); logTime("Setup MIDI devices"); println("Total setup: " + (millis() - startMillis) + "ms"); } +void controllerChangeReceived(rwmidi.Controller cc) { + if (debugMode) { + println("CC: " + cc.toString()); + } +} + +void noteOnReceived(Note note) { + if (debugMode) { + println("Note On: " + note.toString()); + } +} + +void noteOffReceived(Note note) { + if (debugMode) { + println("Note Off: " + note.toString()); + } +} + void logTime(String evt) { int now = millis(); println(evt + ": " + (now - lastMillis) + "ms"); @@ -93,12 +126,13 @@ boolean uiOn = true; boolean knobsOn = true; void keyPressed() { switch (key) { + case 'd': + debugMode = !debugMode; + println("Debug output: " + (debugMode ? "ON" : "OFF")); + break; case 'u': uiOn = !uiOn; break; - case 'k': - knobsOn = !knobsOn; - break; } }