/[svn]/linuxsampler/trunk/src/engines/sfz/sfz.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/sfz/sfz.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2082 by persson, Sun Apr 11 10:20:24 2010 UTC revision 2106 by persson, Sun Jul 4 12:50:51 2010 UTC
# Line 32  Line 32 
32  #include "../../common/File.h"  #include "../../common/File.h"
33  #include "../../common/Path.h"  #include "../../common/Path.h"
34  #include "../../common/global_private.h"  #include "../../common/global_private.h"
35    #include "LookupTable.h"
36    
37  namespace sfz  namespace sfz
38  {  {
# Line 64  namespace sfz Line 65  namespace sfz
65      /////////////////////////////////////////////////////////////      /////////////////////////////////////////////////////////////
66      // class Definition      // class Definition
67    
68      Definition::Definition() :      Definition::Definition()
         locc(128), hicc(128), start_locc(128), start_hicc(128), stop_locc(128),  
         stop_hicc(128), on_locc(128), on_hicc(128), delay_oncc(128), delay_samples_oncc(128),  
         offset_oncc(128), amp_velcurve(128), gain_oncc(128), xfin_locc(128), xfin_hicc(128),  
         xfout_locc(128), xfout_hicc(128), cutoff_oncc(128), cutoff2_oncc(128), cutoff_smoothcc(128),  
         cutoff2_smoothcc(128), cutoff_stepcc(128), cutoff2_stepcc(128), cutoff_curvecc(128),  
         cutoff2_curvecc(128), resonance_oncc(128), resonance2_oncc(128), resonance_smoothcc(128),  
         resonance2_smoothcc(128), resonance_stepcc(128), resonance2_stepcc(128),  
         resonance_curvecc(128), resonance2_curvecc(128), eq1_freq_oncc(128), eq2_freq_oncc(128),  
         eq3_freq_oncc(128), eq1_bw_oncc(128), eq2_bw_oncc(128), eq3_bw_oncc(128),  
         eq1_gain_oncc(128), eq2_gain_oncc(128), eq3_gain_oncc(128)  
   
69      {      {
70      }      }
71    
# Line 118  namespace sfz Line 108  namespace sfz
108          }          }
109      }      }
110    
111      bool      bool Region::OnKey(const Query& q) {
112      Region::OnKey(uint8_t chan, uint8_t key, uint8_t vel,          // As the region comes from a LookupTable search on the query,
113                int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          // the following parameters are not checked here: chan, key,
114                uint8_t prog, float rand, trigger_t trig, uint8_t* cc,          // vel, chanaft, polyaft, prog, sw_previous, cc. They are all
115                float timer, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)          // handled by the lookup table.
116      {          bool is_triggered(
117          // chan        (MIDI channel)              q.bend    >= lobend     &&  q.bend    <= hibend     &&
118          // key         (MIDI note)              q.bpm     >= lobpm      &&  q.bpm     <  hibpm      &&
119          // vel         (MIDI velocity)              q.rand    >= lorand     &&  q.rand    <  hirand     &&
120                q.timer   >= lotimer    &&  q.timer   <= hitimer    &&
121          // bend        (MIDI pitch bend)  
122          // bpm         (host BPM)              ( sw_last == -1 ||
123          // chanaft     (MIDI channel pressure)                ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (q.last_sw_key == sw_last) : false) ) &&
         // polyaft     (MIDI polyphonic aftertouch)  
         // prog        (MIDI program change)  
         // rand        (generated random number)  
         // trigger     (how it was triggered)  
         // cc          (all 128 CC values)  
   
         // timer       (time since previous region in the group was triggered)  
         // sw          (the state of region key switches, 128 possible values)  
         // last_sw_key (the last key pressed in the key switch range)  
         // prev_sw_key (the previous note value)  
   
         bool is_triggered (  
             chan    >= lochan     &&  chan    <= hichan     &&  
             key     >= lokey      &&  key     <= hikey      &&  
             vel     >= lovel      &&  vel     <= hivel      &&  
             bend    >= lobend     &&  bend    <= hibend     &&  
             bpm     >= lobpm      &&  bpm     <  hibpm      &&  
             chanaft >= lochanaft  &&  chanaft <= hichanaft  &&  
             polyaft >= lopolyaft  &&  polyaft <= hipolyaft  &&  
             prog    >= loprog     &&  prog    <= hiprog     &&  
             rand    >= lorand     &&  rand    <  hirand     &&  
             timer   >= lotimer    &&  timer   <= hitimer    &&  
   
             ( (sw_lokey == -1 || sw_hikey == -1 || sw_last  == -1) ||  
               ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (last_sw_key == sw_last) : true) ) &&  
124    
125              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_down == -1 ||
126                ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&                ((sw_down >= sw_lokey && (sw_hikey == -1 || sw_down <= sw_hikey)) ? (q.sw[sw_down]) : false) )  &&
127    
128              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
129                ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&                ((sw_up   >= sw_lokey && (sw_hikey == -1 || sw_up   <= sw_hikey)) ? (!q.sw[sw_up]) : true) )  &&
130    
131              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ((trigger & q.trig) != 0)
              ((trigger & trig) != 0)  
132          );          );
133    
134          if (!is_triggered)          if (!is_triggered)
135              return false;              return false;
136    
         for (int i = 0; i < 128; ++i)  
         {  
             if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))  
                 return false;  
         }  
   
137          // seq_position has to be checked last, so we know that we          // seq_position has to be checked last, so we know that we
138          // increment the right counter          // increment the right counter
139          is_triggered = (seq_counter == seq_position);          is_triggered = (seq_counter == seq_position);
# Line 220  namespace sfz Line 178  namespace sfz
178              rand    >= lorand           &&  rand    <  hirand             &&              rand    >= lorand           &&  rand    <  hirand             &&
179              timer   >= lotimer          &&  timer   <= hitimer            &&              timer   >= lotimer          &&  timer   <= hitimer            &&
180    
181              ( (sw_lokey == -1 || sw_hikey == -1 || sw_last  == -1) ||              ( sw_last == -1 ||
182                ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (last_sw_key == sw_last) : true) ) &&                ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (last_sw_key == sw_last) : false) ) &&
183    
184                ( sw_down == -1 ||
185                  ((sw_down >= sw_lokey && (sw_hikey == -1 || sw_down <= sw_hikey)) ? (sw[sw_down]) : false) )  &&
186    
187              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
188                ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&                ((sw_up   >= sw_lokey && (sw_hikey == -1 || sw_up   <= sw_hikey)) ? (!sw[sw_up]) : true) )  &&
189    
190              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_previous == -1 ||
191                ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&                prev_sw_key == sw_previous )  &&
192    
193              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ((trigger & trig) != 0)
              ((trigger & trig) != 0)  
194          );          );
195    
196          if (!is_triggered)          if (!is_triggered)
# Line 275  namespace sfz Line 235  namespace sfz
235      {      {
236          this->name = name;          this->name = name;
237          this->pSampleManager = pSampleManager ? pSampleManager : this;          this->pSampleManager = pSampleManager ? pSampleManager : this;
238            pLookupTable = 0;
239      }      }
240    
241      Instrument::~Instrument()      Instrument::~Instrument()
242      {      {
243          for(int i = 0; i < regions.size(); i++) {          for (int i = 0; i < regions.size(); i++) {
244              delete (regions[i]);              delete regions[i];
245          }          }
246          regions.clear();          delete pLookupTable;
247      }      }
248    
249      std::vector<Region*> Instrument::GetRegionsOnKey (      void Query::search(const Instrument* pInstrument) {
250          uint8_t chan, uint8_t key, uint8_t vel,          pRegionList = &pInstrument->pLookupTable->query(*this);
251          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          regionIndex = 0;
252          uint8_t prog, float rand, trigger_t trig, uint8_t* cc,      }
         float timer, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key  
     ) {  
         std::vector<Region*> v;  
         for (int i = 0; i < regions.size(); i++) {  
             if (regions[i]->OnKey (  
                 chan, key, vel, bend, bpm, chanaft, polyaft, prog,  
                 rand, trig, cc, timer, sw, last_sw_key, prev_sw_key)  
                     ) { v.push_back(regions[i]); }  
         }  
253    
254          return v;      Region* Query::next() {
255            for ( ; regionIndex < pRegionList->size() ; regionIndex++) {
256                if ((*pRegionList)[regionIndex]->OnKey(*this)) {
257                    return (*pRegionList)[regionIndex++];
258                }
259            }
260            return 0;
261      }      }
262    
263      bool Instrument::DestroyRegion(Region* pRegion) {      bool Instrument::DestroyRegion(Region* pRegion) {
# Line 456  namespace sfz Line 414  namespace sfz
414          for (int i = 0; i < 128; ++i)          for (int i = 0; i < 128; ++i)
415          {          {
416              // input control              // input control
417              locc[i] = 0;              locc.set(i, 0);
418              hicc[i] = 127;              hicc.set(i, 127);
419              start_locc[i] = -1;              start_locc.set(i, -1);
420              start_hicc[i] = -1;              start_hicc.set(i, -1);
421              stop_locc[i] = -1;              stop_locc.set(i, -1);
422              stop_hicc[i] = -1;              stop_hicc.set(i, -1);
423              on_locc[i] = -1;              on_locc.set(i, -1);
424              on_hicc[i] = -1;              on_hicc.set(i, -1);
425    
426              // sample player              // sample player
427              delay_oncc[i].unset();              delay_oncc.set(i, optional<float>::nothing);
428              delay_samples_oncc[i].unset();              delay_samples_oncc.set(i, optional<int>::nothing);
429              offset_oncc[i].unset();              offset_oncc.set(i, optional<int>::nothing);
430    
431              // amplifier              // amplifier
432              amp_velcurve[i] = -1;              amp_velcurve.set(i, -1);
433              gain_oncc[i] = 0;              gain_oncc.set(i, 0);
434              xfin_locc[i] = 0;              xfin_locc.set(i, 0);
435              xfin_hicc[i] = 0;              xfin_hicc.set(i, 0);
436              xfout_locc[i] = 127;              xfout_locc.set(i, 127);
437              xfout_hicc[i] = 127;              xfout_hicc.set(i, 127);
438    
439              // filter              // filter
440              cutoff_oncc[i] = 0;              cutoff_oncc.set(i, 0);
441              cutoff_smoothcc[i] = 0;              cutoff_smoothcc.set(i, 0);
442              cutoff_stepcc[i] = 0;              cutoff_stepcc.set(i, 0);
443              cutoff_curvecc[i] = 0;              cutoff_curvecc.set(i, 0);
444              resonance_oncc[i] = 0;              resonance_oncc.set(i, 0);
445              resonance_smoothcc[i] = 0;              resonance_smoothcc.set(i, 0);
446              resonance_stepcc[i] = 0;              resonance_stepcc.set(i, 0);
447              resonance_curvecc[i] = 0;              resonance_curvecc.set(i, 0);
448    
449              cutoff2_oncc[i] = 0;              cutoff2_oncc.set(i, 0);
450              cutoff2_smoothcc[i] = 0;              cutoff2_smoothcc.set(i, 0);
451              cutoff2_stepcc[i] = 0;              cutoff2_stepcc.set(i, 0);
452              cutoff2_curvecc[i] = 0;              cutoff2_curvecc.set(i, 0);
453              resonance2_oncc[i] = 0;              resonance2_oncc.set(i, 0);
454              resonance2_smoothcc[i] = 0;              resonance2_smoothcc.set(i, 0);
455              resonance2_stepcc[i] = 0;              resonance2_stepcc.set(i, 0);
456              resonance2_curvecc[i] = 0;              resonance2_curvecc.set(i, 0);
457    
458              // per voice equalizer              // per voice equalizer
459              eq1_freq_oncc[i] = 0;              eq1_freq_oncc.set(i, 0);
460              eq2_freq_oncc[i] = 0;              eq2_freq_oncc.set(i, 0);
461              eq3_freq_oncc[i] = 0;              eq3_freq_oncc.set(i, 0);
462              eq1_bw_oncc[i] = 0;              eq1_bw_oncc.set(i, 0);
463              eq2_bw_oncc[i] = 0;              eq2_bw_oncc.set(i, 0);
464              eq3_bw_oncc[i] = 0;              eq3_bw_oncc.set(i, 0);
465              eq1_gain_oncc[i] = 0;              eq1_gain_oncc.set(i, 0);
466              eq2_gain_oncc[i] = 0;              eq2_gain_oncc.set(i, 0);
467              eq3_gain_oncc[i] = 0;              eq3_gain_oncc.set(i, 0);
468          }          }
469    
470          eg.clear();          eg.clear();
# Line 869  namespace sfz Line 827  namespace sfz
827              }              }
828          }          }
829    
830            std::set<float*> velcurves;
831          for (int i = 0; i < _instrument->regions.size(); i++) {          for (int i = 0; i < _instrument->regions.size(); i++) {
832              ::sfz::Region* pRegion = _instrument->regions[i];              ::sfz::Region* pRegion = _instrument->regions[i];
833              int low = pRegion->lokey;              int low = pRegion->lokey;
# Line 881  namespace sfz Line 840  namespace sfz
840    
841              // get keyswitches              // get keyswitches
842              low = pRegion->sw_lokey;              low = pRegion->sw_lokey;
843                if (low < 0) low = 0;
844              high = pRegion->sw_hikey;              high = pRegion->sw_hikey;
845              if(low == -1 && high == -1) {              if (high == -1) {
846                  // Key switches not defined, so nothing to do                  // Key switches not defined, so nothing to do
847              } else if(low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {              } else if (low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {
848                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;
849              } else {              } else {
850                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;
851              }              }
852    
853              // create velocity response curve              // create velocity response curve
854              int prev = 0;  
855              float prevvalue = 0;              // don't use copy-on-write here, instead change the actual
856              for (int v = 0 ; v < 128 ; v++) {              // unique buffers in memory
857                  if (pRegion->amp_velcurve[v] >= 0) {              float* velcurve = const_cast<float*>(&pRegion->amp_velcurve[0]);
858                      float step = (pRegion->amp_velcurve[v] - prevvalue) / (v - prev);              if (velcurves.insert(velcurve).second) {
859                      for ( ; prev < v ; prev++) {                  int prev = 0;
860                          pRegion->amp_velcurve[prev] = prevvalue;                  float prevvalue = 0;
861                          prevvalue += step;                  for (int v = 0 ; v < 128 ; v++) {
862                        if (velcurve[v] >= 0) {
863                            float step = (velcurve[v] - prevvalue) / (v - prev);
864                            for ( ; prev < v ; prev++) {
865                                velcurve[prev] = prevvalue;
866                                prevvalue += step;
867                            }
868                      }                      }
869                  }                  }
870              }                  if (prev) {
871              if (prev) {                      float step = (1 - prevvalue) / (127 - prev);
872                  float step = (1 - prevvalue) / (127 - prev);                      for ( ; prev < 128 ; prev++) {
873                  for ( ; prev < 128 ; prev++) {                          velcurve[prev] = prevvalue;
874                      pRegion->amp_velcurve[prev] = prevvalue;                          prevvalue += step;
875                      prevvalue += step;                      }
876                    } else {
877                        // default curve
878                        for (int v = 0 ; v < 128 ; v++) {
879                            velcurve[v] = v * v / (127.0 * 127.0);
880                        }
881                  }                  }
882              } else {  
883                  // default curve                  // apply amp_veltrack
884                    float offset = -pRegion->amp_veltrack;
885                    if (offset <= 0) offset += 100;
886                  for (int v = 0 ; v < 128 ; v++) {                  for (int v = 0 ; v < 128 ; v++) {
887                      pRegion->amp_velcurve[v] = v * v / (127.0 * 127.0);                      velcurve[v] = (offset + pRegion->amp_veltrack * velcurve[v]) / 100;
888                  }                  }
889              }              }
             // apply amp_veltrack  
             float offset = -pRegion->amp_veltrack;  
             if (offset <= 0) offset += 100;  
             for (int v = 0 ; v < 128 ; v++) {  
                 pRegion->amp_velcurve[v] =  
                     (offset + pRegion->amp_veltrack * pRegion->amp_velcurve[v]) / 100;  
             }  
890          }          }
891    
892            _instrument->pLookupTable = new LookupTable(_instrument);
893      }      }
894    
895      File::~File()      File::~File()
# Line 1033  namespace sfz Line 1001  namespace sfz
1001          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);
1002          else if ("lobend" == key) pCurDef->lobend = ToInt(value);          else if ("lobend" == key) pCurDef->lobend = ToInt(value);
1003          else if ("hibend" == key) pCurDef->hibend = ToInt(value);          else if ("hibend" == key) pCurDef->hibend = ToInt(value);
1004          else if ("lobpm"  == key) pCurDef->lobpm = ToInt(value);          else if ("lobpm"  == key) pCurDef->lobpm = ToFloat(value);
1005          else if ("hibpm"  == key) pCurDef->hibpm = ToInt(value);          else if ("hibpm"  == key) pCurDef->hibpm = ToFloat(value);
1006          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);
1007          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);
1008          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);
# Line 1143  namespace sfz Line 1111  namespace sfz
1111          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);
1112    
1113          // filter          // filter
1114          else if ("fil_type" == key)          else if ("fil_type" == key || "filtype" == key)
1115          {          {
1116              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;
1117              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;
# Line 1212  namespace sfz Line 1180  namespace sfz
1180          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);
1181    
1182          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {
1183              pCurDef->amp_velcurve[x] = ToFloat(value);              pCurDef->amp_velcurve.set(x, ToFloat(value));
1184          }          }
1185    
1186          // CCs          // CCs
# Line 1223  namespace sfz Line 1191  namespace sfz
1191              int num_cc = ToInt(key.substr(delimiter_index + 2));              int num_cc = ToInt(key.substr(delimiter_index + 2));
1192    
1193              // input controls              // input controls
1194              if ("lo" == key_cc) pCurDef->locc[num_cc] = ToInt(value);              if ("lo" == key_cc) pCurDef->locc.set(num_cc, ToInt(value));
1195              else if ("hi" == key_cc) pCurDef->hicc[num_cc] = ToInt(value);              else if ("hi" == key_cc) pCurDef->hicc.set(num_cc, ToInt(value));
1196              else if ("start_lo" == key_cc) pCurDef->start_locc[num_cc] = ToInt(value);              else if ("start_lo" == key_cc) pCurDef->start_locc.set(num_cc, ToInt(value));
1197              else if ("start_hi" == key_cc) pCurDef->start_hicc[num_cc] = ToInt(value);              else if ("start_hi" == key_cc) pCurDef->start_hicc.set(num_cc, ToInt(value));
1198              else if ("stop_lo" == key_cc) pCurDef->stop_locc[num_cc] = ToInt(value);              else if ("stop_lo" == key_cc) pCurDef->stop_locc.set(num_cc, ToInt(value));
1199              else if ("stop_hi" == key_cc) pCurDef->stop_hicc[num_cc] = ToInt(value);              else if ("stop_hi" == key_cc) pCurDef->stop_hicc.set(num_cc, ToInt(value));
1200              else if ("on_lo" == key_cc) pCurDef->on_locc[num_cc] = ToInt(value);              else if ("on_lo" == key_cc) pCurDef->on_locc.set(num_cc, ToInt(value));
1201              else if ("on_hi" == key_cc) pCurDef->on_hicc[num_cc] = ToInt(value);              else if ("on_hi" == key_cc) pCurDef->on_hicc.set(num_cc, ToInt(value));
1202    
1203              // sample player              // sample player
1204              else if ("delay_on" == key_cc) pCurDef->delay_oncc[num_cc] = ToFloat(value);              else if ("delay_on" == key_cc) pCurDef->delay_oncc.set(num_cc, ToFloat(value));
1205              else if ("delay_samples_on" == key_cc) pCurDef->delay_samples_oncc[num_cc] = ToInt(value);              else if ("delay_samples_on" == key_cc) pCurDef->delay_samples_oncc.set(num_cc, ToInt(value));
1206              else if ("offset_on" == key_cc) pCurDef->offset_oncc[num_cc] = ToInt(value);              else if ("offset_on" == key_cc) pCurDef->offset_oncc.set(num_cc, ToInt(value));
1207    
1208              // amplifier              // amplifier
1209              else if ("gain_on"  == key_cc) pCurDef->gain_oncc[num_cc]  = ToFloat(value);              else if ("gain_on"  == key_cc || "gain_" == key_cc) pCurDef->gain_oncc.set(num_cc, ToFloat(value));
1210              else if ("xfin_lo"  == key_cc) pCurDef->xfin_locc[num_cc]  = ToInt(value);              else if ("xfin_lo"  == key_cc) pCurDef->xfin_locc.set(num_cc, ToInt(value));
1211              else if ("xfin_hi"  == key_cc) pCurDef->xfin_hicc[num_cc]  = ToInt(value);              else if ("xfin_hi"  == key_cc) pCurDef->xfin_hicc.set(num_cc, ToInt(value));
1212              else if ("xfout_lo" == key_cc) pCurDef->xfout_locc[num_cc] = ToInt(value);              else if ("xfout_lo" == key_cc) pCurDef->xfout_locc.set(num_cc, ToInt(value));
1213              else if ("xfout_hi" == key_cc) pCurDef->xfout_hicc[num_cc] = ToInt(value);              else if ("xfout_hi" == key_cc) pCurDef->xfout_hicc.set(num_cc, ToInt(value));
1214    
1215              // filter              // filter
1216              else if ("cutoff_on"  == key_cc) pCurDef->cutoff_oncc[num_cc]  = ToInt(value);              else if ("cutoff_on"  == key_cc || "cutoff_" == key_cc) pCurDef->cutoff_oncc.set(num_cc, ToInt(value));
1217              else if ("cutoff2_on" == key_cc) pCurDef->cutoff2_oncc[num_cc] = ToInt(value);              else if ("cutoff2_on" == key_cc) pCurDef->cutoff2_oncc.set(num_cc, ToInt(value));
1218              else if ("cutoff_smooth"  == key_cc) pCurDef->cutoff_smoothcc[num_cc]  = ToInt(value);              else if ("cutoff_smooth"  == key_cc) pCurDef->cutoff_smoothcc.set(num_cc, ToInt(value));
1219              else if ("cutoff2_smooth" == key_cc) pCurDef->cutoff2_smoothcc[num_cc] = ToInt(value);              else if ("cutoff2_smooth" == key_cc) pCurDef->cutoff2_smoothcc.set(num_cc, ToInt(value));
1220              else if ("cutoff_step"  == key_cc) pCurDef->cutoff_stepcc[num_cc]  = ToInt(value);              else if ("cutoff_step"  == key_cc) pCurDef->cutoff_stepcc.set(num_cc, ToInt(value));
1221              else if ("cutoff2_step" == key_cc) pCurDef->cutoff2_stepcc[num_cc] = ToInt(value);              else if ("cutoff2_step" == key_cc) pCurDef->cutoff2_stepcc.set(num_cc, ToInt(value));
1222              else if ("cutoff_curve" == key_cc) pCurDef->cutoff_curvecc[num_cc] = ToInt(value);              else if ("cutoff_curve" == key_cc) pCurDef->cutoff_curvecc.set(num_cc, ToInt(value));
1223              else if ("cutoff2_curve" == key_cc) pCurDef->cutoff2_curvecc[num_cc] = ToInt(value);              else if ("cutoff2_curve" == key_cc) pCurDef->cutoff2_curvecc.set(num_cc, ToInt(value));
1224              else if ("resonance_on" == key_cc) pCurDef->resonance_oncc[num_cc] = ToInt(value);              else if ("resonance_on" == key_cc) pCurDef->resonance_oncc.set(num_cc, ToInt(value));
1225              else if ("resonance2_on" == key_cc) pCurDef->resonance2_oncc[num_cc] = ToInt(value);              else if ("resonance2_on" == key_cc) pCurDef->resonance2_oncc.set(num_cc, ToInt(value));
1226              else if ("resonance_smooth" == key_cc) pCurDef->resonance_smoothcc[num_cc] = ToInt(value);              else if ("resonance_smooth" == key_cc) pCurDef->resonance_smoothcc.set(num_cc, ToInt(value));
1227              else if ("resonance2_smooth" == key_cc) pCurDef->resonance2_smoothcc[num_cc] = ToInt(value);              else if ("resonance2_smooth" == key_cc) pCurDef->resonance2_smoothcc.set(num_cc, ToInt(value));
1228              else if ("resonance_step" == key_cc) pCurDef->resonance_stepcc[num_cc] = ToInt(value);              else if ("resonance_step" == key_cc) pCurDef->resonance_stepcc.set(num_cc, ToInt(value));
1229              else if ("resonance2_step" == key_cc) pCurDef->resonance2_stepcc[num_cc] = ToInt(value);              else if ("resonance2_step" == key_cc) pCurDef->resonance2_stepcc.set(num_cc, ToInt(value));
1230              else if ("resonance_curve" == key_cc) pCurDef->resonance_curvecc[num_cc] = ToInt(value);              else if ("resonance_curve" == key_cc) pCurDef->resonance_curvecc.set(num_cc, ToInt(value));
1231              else if ("resonance2_curve" == key_cc) pCurDef->resonance2_curvecc[num_cc] = ToInt(value);              else if ("resonance2_curve" == key_cc) pCurDef->resonance2_curvecc.set(num_cc, ToInt(value));
1232    
1233              // per voice equalizer              // per voice equalizer
1234              else if ("eq1_freq_on" == key_cc) pCurDef->eq1_freq_oncc[num_cc] = ToInt(value);              else if ("eq1_freq_on" == key_cc || "eq1_freq" == key_cc) pCurDef->eq1_freq_oncc.set(num_cc, ToInt(value));
1235              else if ("eq2_freq_on" == key_cc) pCurDef->eq2_freq_oncc[num_cc] = ToInt(value);              else if ("eq2_freq_on" == key_cc || "eq2_freq" == key_cc) pCurDef->eq2_freq_oncc.set(num_cc, ToInt(value));
1236              else if ("eq3_freq_on" == key_cc) pCurDef->eq3_freq_oncc[num_cc] = ToInt(value);              else if ("eq3_freq_on" == key_cc || "eq3_freq" == key_cc) pCurDef->eq3_freq_oncc.set(num_cc, ToInt(value));
1237              else if ("eq1_bw_on" == key_cc) pCurDef->eq1_bw_oncc[num_cc] = ToInt(value);              else if ("eq1_bw_on" == key_cc || "eq1_bw" == key_cc) pCurDef->eq1_bw_oncc.set(num_cc, ToInt(value));
1238              else if ("eq2_bw_on" == key_cc) pCurDef->eq2_bw_oncc[num_cc] = ToInt(value);              else if ("eq2_bw_on" == key_cc || "eq2_bw" == key_cc) pCurDef->eq2_bw_oncc.set(num_cc, ToInt(value));
1239              else if ("eq3_bw_on" == key_cc) pCurDef->eq3_bw_oncc[num_cc] = ToInt(value);              else if ("eq3_bw_on" == key_cc || "eq3_bw" == key_cc) pCurDef->eq3_bw_oncc.set(num_cc, ToInt(value));
1240              else if ("eq1_gain_on" == key_cc) pCurDef->eq1_gain_oncc[num_cc] = ToInt(value);              else if ("eq1_gain_on" == key_cc || "eq1_gain" == key_cc) pCurDef->eq1_gain_oncc.set(num_cc, ToInt(value));
1241              else if ("eq2_gain_on" == key_cc) pCurDef->eq2_gain_oncc[num_cc] = ToInt(value);              else if ("eq2_gain_on" == key_cc || "eq2_gain" == key_cc) pCurDef->eq2_gain_oncc.set(num_cc, ToInt(value));
1242              else if ("eq3_gain_on" == key_cc) pCurDef->eq3_gain_oncc[num_cc] = ToInt(value);              else if ("eq3_gain_on" == key_cc || "eq3_gain" == key_cc) pCurDef->eq3_gain_oncc.set(num_cc, ToInt(value));
1243              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1244          }          }
1245          // v2 envelope generators          // v2 envelope generators

Legend:
Removed from v.2082  
changed lines
  Added in v.2106

  ViewVC Help
Powered by ViewVC