zynaddsubfx

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

commit d77a5be8c50de6d527043bbc252163f857a588d6
parent dc455f06df29606bd585ca1ff8dcbac0d3be1386
Author: Damien Goutte-Gattat <[email protected]>
Date:   Sat, 29 Oct 2011 20:49:30 +0200

Support Bank Select messages

Identify MIDI controllers CC0 (Bank Select MSB) and CC32 (Bank
Select LSB). The value of CC0 is used to change the current bank.

Diffstat:
Msrc/Misc/Master.cpp | 5+++++
Msrc/globals.h | 3++-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/Misc/Master.cpp b/src/Misc/Master.cpp @@ -173,6 +173,11 @@ void Master::setController(char chan, int type, int par) } ; } + else if(type == C_bankselectmsb) { // Change current bank + if(((unsigned int)par < bank.banks.size()) + && (bank.banks[par].dir != bank.bankfiletitle)) + bank.loadbank(bank.banks[par].dir); + } else { //other controllers for(int npart = 0; npart < NUM_MIDI_PARTS; ++npart) //Send the controller to all part assigned to the channel if((chan == part[npart]->Prcvchn) && (part[npart]->Penabled != 0)) diff --git a/src/globals.h b/src/globals.h @@ -168,7 +168,8 @@ enum ONOFFTYPE { }; enum MidiControllers { - C_NULL = 0, C_pitchwheel = 1000, C_expression = 11, C_panning = 10, + C_bankselectmsb = 0, C_pitchwheel = 1000, C_NULL = 1001, + C_expression = 11, C_panning = 10, C_bankselectlsb = 32, C_filtercutoff = 74, C_filterq = 71, C_bandwidth = 75, C_modwheel = 1, C_fmamp = 76, C_volume = 7, C_sustain = 64, C_allnotesoff = 123, C_allsoundsoff = 120,