zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 5ee92a08229702409ae4e946f1b4354bb6789410
parent 3b7e7fdccecde504113d2c5bad2614b5950d1581
Author: Michele Sorcinelli <[email protected]>
Date:   Sat,  9 Apr 2022 21:41:30 +0100

Plugin/ZynAddSubFX: Handle Bank Select MSB and LSB

Behavior is now consistent with the standalone version

Diffstat:
Msrc/Plugin/ZynAddSubFX/ZynAddSubFX.cpp | 15++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/src/Plugin/ZynAddSubFX/ZynAddSubFX.cpp b/src/Plugin/ZynAddSubFX/ZynAddSubFX.cpp @@ -27,6 +27,7 @@ #include "extra/ScopedPointer.hpp" #include <lo/lo.h> +#include <rtosc/thread-link.h> /* ------------------------------------------------------------------------------------------------------------ * MiddleWare thread class */ @@ -400,11 +401,23 @@ protected: const int control = midiEvent.data[1]; const int value = midiEvent.data[2]; + const int C_bankselectmsb = 0; + const int C_bankselectlsb = 32; + // skip controls which we map to parameters //if (getIndexFromZynControl(midiEvent.data[1]) != kParamCount) // continue; - master->setController(channel, control, value); + if(control == C_bankselectmsb) { // Change current bank + master->bToU->write("/forward", ""); + master->bToU->write("/bank/msb", "i", value); + master->bToU->write("/bank/bank_select", "i", value); + + } else if(control == C_bankselectlsb) {// Change current bank (LSB) + master->bToU->write("/forward", ""); + master->bToU->write("/bank/lsb", "i", value); + } else + master->setController(channel, control, value); } break; case 0xC0: {