|
- #include "plugin.hpp"
-
-
- struct MIDI_Gate : Module {
- enum ParamIds {
- NUM_PARAMS
- };
- enum InputIds {
- NUM_INPUTS
- };
- enum OutputIds {
- ENUMS(TRIG_OUTPUT, 16),
- NUM_OUTPUTS
- };
- enum LightIds {
- NUM_LIGHTS
- };
-
- midi::InputQueue midiInput;
-
- bool gates[16];
- float gateTimes[16];
- uint8_t velocities[16];
- int learningId = -1;
- uint8_t learnedNotes[16] = {};
- bool velocityMode = false;
-
- MIDI_Gate() {
- config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
- onReset();
- }
-
- void onReset() override {
- for (int y = 0; y < 4; y++) {
- for (int x = 0; x < 4; x++) {
- learnedNotes[4 * y + x] = 36 + 4 * (3-y) + x;
- }
- }
- learningId = -1;
- panic();
- midiInput.reset();
- }
-
- void panic() {
- for (int i = 0; i < 16; i++) {
- gates[i] = false;
- gateTimes[i] = 0.f;
- }
- }
-
- void process(const ProcessArgs &args) override {
- midi::Message msg;
- while (midiInput.shift(&msg)) {
- processMessage(msg);
- }
-
- for (int i = 0; i < 16; i++) {
- if (gateTimes[i] > 0.f) {
- outputs[TRIG_OUTPUT + i].setVoltage(velocityMode ? rescale(velocities[i], 0, 127, 0.f, 10.f) : 10.f);
- // If the gate is off, wait 1 ms before turning the pulse off.
- // This avoids drum controllers sending a pulse with 0 ms duration.
- if (!gates[i]) {
- gateTimes[i] -= args.sampleTime;
- }
- }
- else {
- outputs[TRIG_OUTPUT + i].setVoltage(0.f);
- }
- }
- }
-
- void processMessage(midi::Message msg) {
- switch (msg.getStatus()) {
- // note off
- case 0x8: {
- releaseNote(msg.getNote());
- } break;
- // note on
- case 0x9: {
- if (msg.getValue() > 0) {
- pressNote(msg.getNote(), msg.getValue());
- }
- else {
- // Many stupid keyboards send a "note on" command with 0 velocity to mean "note release"
- releaseNote(msg.getNote());
- }
- } break;
- default: break;
- }
- }
-
- void pressNote(uint8_t note, uint8_t vel) {
- // Learn
- if (learningId >= 0) {
- learnedNotes[learningId] = note;
- learningId = -1;
- }
- // Find id
- for (int i = 0; i < 16; i++) {
- if (learnedNotes[i] == note) {
- gates[i] = true;
- gateTimes[i] = 1e-3f;
- velocities[i] = vel;
- }
- }
- }
-
- void releaseNote(uint8_t note) {
- // Find id
- for (int i = 0; i < 16; i++) {
- if (learnedNotes[i] == note) {
- gates[i] = false;
- }
- }
- }
-
- json_t *dataToJson() override {
- json_t *rootJ = json_object();
-
- json_t *notesJ = json_array();
- for (int i = 0; i < 16; i++) {
- json_t *noteJ = json_integer(learnedNotes[i]);
- json_array_append_new(notesJ, noteJ);
- }
- json_object_set_new(rootJ, "notes", notesJ);
-
- json_object_set_new(rootJ, "velocity", json_boolean(velocityMode));
-
- json_object_set_new(rootJ, "midi", midiInput.toJson());
- return rootJ;
- }
-
- void dataFromJson(json_t *rootJ) override {
- json_t *notesJ = json_object_get(rootJ, "notes");
- if (notesJ) {
- for (int i = 0; i < 16; i++) {
- json_t *noteJ = json_array_get(notesJ, i);
- if (noteJ)
- learnedNotes[i] = json_integer_value(noteJ);
- }
- }
-
- json_t *velocityJ = json_object_get(rootJ, "velocity");
- if (velocityJ)
- velocityMode = json_boolean_value(velocityJ);
-
- json_t *midiJ = json_object_get(rootJ, "midi");
- if (midiJ)
- midiInput.fromJson(midiJ);
- }
- };
-
-
- struct MIDI_GateVelocityItem : MenuItem {
- MIDI_Gate *module;
- void onAction(const event::Action &e) override {
- module->velocityMode ^= true;
- }
- };
-
-
- struct MIDI_GatePanicItem : MenuItem {
- MIDI_Gate *module;
- void onAction(const event::Action &e) override {
- module->panic();
- }
- };
-
-
- struct MIDI_GateWidget : ModuleWidget {
- MIDI_GateWidget(MIDI_Gate *module) {
- setModule(module);
- setPanel(APP->window->loadSvg(asset::system("res/Core/MIDI-Gate.svg")));
-
- addChild(createWidget<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0)));
- addChild(createWidget<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
- addChild(createWidget<ScrewSilver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
- addChild(createWidget<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
-
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(3.894335, 73.344704)), module, MIDI_Gate::TRIG_OUTPUT + 0));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(15.494659, 73.344704)), module, MIDI_Gate::TRIG_OUTPUT + 1));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(27.094982, 73.344704)), module, MIDI_Gate::TRIG_OUTPUT + 2));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(38.693932, 73.344704)), module, MIDI_Gate::TRIG_OUTPUT + 3));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(3.8943355, 84.945023)), module, MIDI_Gate::TRIG_OUTPUT + 4));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(15.49466, 84.945023)), module, MIDI_Gate::TRIG_OUTPUT + 5));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(27.094982, 84.945023)), module, MIDI_Gate::TRIG_OUTPUT + 6));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(38.693932, 84.945023)), module, MIDI_Gate::TRIG_OUTPUT + 7));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(3.8943343, 96.543976)), module, MIDI_Gate::TRIG_OUTPUT + 8));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(15.494659, 96.543976)), module, MIDI_Gate::TRIG_OUTPUT + 9));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(27.09498, 96.543976)), module, MIDI_Gate::TRIG_OUTPUT + 10));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(38.693932, 96.543976)), module, MIDI_Gate::TRIG_OUTPUT + 11));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(3.894335, 108.14429)), module, MIDI_Gate::TRIG_OUTPUT + 12));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(15.49466, 108.14429)), module, MIDI_Gate::TRIG_OUTPUT + 13));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(27.09498, 108.14429)), module, MIDI_Gate::TRIG_OUTPUT + 14));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(38.693932, 108.14429)), module, MIDI_Gate::TRIG_OUTPUT + 15));
-
- typedef Grid16MidiWidget<NoteChoice<MIDI_Gate>> TMidiWidget;
- TMidiWidget *midiWidget = createWidget<TMidiWidget>(mm2px(Vec(3.399621, 14.837339)));
- midiWidget->box.size = mm2px(Vec(44, 54.667));
- midiWidget->setMidiPort(module ? &module->midiInput : NULL);
- midiWidget->setModule(module);
- addChild(midiWidget);
- }
-
- void appendContextMenu(Menu *menu) override {
- MIDI_Gate *module = dynamic_cast<MIDI_Gate*>(this->module);
-
- menu->addChild(new MenuEntry);
- MIDI_GateVelocityItem *velocityItem = createMenuItem<MIDI_GateVelocityItem>("Velocity mode", CHECKMARK(module->velocityMode));
- velocityItem->module = module;
- menu->addChild(velocityItem);
-
- MIDI_GatePanicItem *panicItem = new MIDI_GatePanicItem;
- panicItem->text = "Panic";
- panicItem->module = module;
- menu->addChild(panicItem);
- }
- };
-
-
- // Use legacy slug for compatibility
- Model *modelMIDI_Gate = createModel<MIDI_Gate, MIDI_GateWidget>("MIDITriggerToCVInterface");
|