/[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 2115 by persson, Thu Aug 12 15:36:15 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 184  namespace sfz Line 142  namespace sfz
142          return is_triggered;          return is_triggered;
143      }      }
144    
     bool  
     Region::OnControl(uint8_t chan, uint8_t cont, uint8_t val,  
         int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,  
         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)  
     {  
         // chan      (MIDI channel)  
         // cont      (MIDI controller)  
         // val       (MIDI controller value)  
   
         // bend      (MIDI pitch bend)  
         // bpm       (host BPM)  
         // chanaft   (MIDI channel pressure)  
         // polyaft   (MIDI polyphonic aftertouch)  
         // prog      (MIDI program change)  
         // rand      (generated random number)  
         // trigger   (how it was triggered)  
         // cc        (all 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             &&  
             ((val   >= on_locc[cont]    &&  val     <= on_hicc[cont])     ||  
              (val   >= start_locc[cont] &&  val     <= start_hicc[cont])) &&  
             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) ) &&  
   
             ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||  
               ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&  
   
             ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||  
               ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&  
   
             ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&  
              ((trigger & trig) != 0)  
         );  
   
         if (!is_triggered)  
             return false;  
   
         for (int i = 0; i < 128; ++i)  
         {  
             if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))  
                 return false;  
         }  
   
         return true;  
     }  
   
145      Articulation*      Articulation*
146      Region::GetArticulation(int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft, uint8_t* cc)      Region::GetArticulation(int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft, uint8_t* cc)
147      {      {
# Line 275  namespace sfz Line 172  namespace sfz
172      {      {
173          this->name = name;          this->name = name;
174          this->pSampleManager = pSampleManager ? pSampleManager : this;          this->pSampleManager = pSampleManager ? pSampleManager : this;
175            pLookupTable = 0;
176      }      }
177    
178      Instrument::~Instrument()      Instrument::~Instrument()
179      {      {
180          for(int i = 0; i < regions.size(); i++) {          for (int i = 0; i < regions.size(); i++) {
181              delete (regions[i]);              delete regions[i];
182            }
183            delete pLookupTable;
184            for (int i = 0 ; i < 128 ; i++) {
185                delete pLookupTableCC[i];
186          }          }
         regions.clear();  
187      }      }
188    
189      std::vector<Region*> Instrument::GetRegionsOnKey (      void Query::search(const Instrument* pInstrument) {
190          uint8_t chan, uint8_t key, uint8_t vel,          pRegionList = &pInstrument->pLookupTable->query(*this);
191          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          regionIndex = 0;
192          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]); }  
         }  
193    
194          return v;      void Query::search(const Instrument* pInstrument, int triggercc) {
195            pRegionList = &pInstrument->pLookupTableCC[triggercc]->query(*this);
196            regionIndex = 0;
197        }
198    
199        Region* Query::next() {
200            for ( ; regionIndex < pRegionList->size() ; regionIndex++) {
201                if ((*pRegionList)[regionIndex]->OnKey(*this)) {
202                    return (*pRegionList)[regionIndex++];
203                }
204            }
205            return 0;
206      }      }
207    
208      bool Instrument::DestroyRegion(Region* pRegion) {      bool Instrument::DestroyRegion(Region* pRegion) {
# Line 370  namespace sfz Line 273  namespace sfz
273          trigger = TRIGGER_ATTACK;          trigger = TRIGGER_ATTACK;
274    
275          group = 0;          group = 0;
276          off_by.unset();          off_by = 0;
277          off_mode = OFF_FAST;          off_mode = OFF_FAST;
278    
279          // sample player          // sample player
# Line 456  namespace sfz Line 359  namespace sfz
359          for (int i = 0; i < 128; ++i)          for (int i = 0; i < 128; ++i)
360          {          {
361              // input control              // input control
362              locc[i] = 0;              locc.set(i, 0);
363              hicc[i] = 127;              hicc.set(i, 127);
364              start_locc[i] = -1;              start_locc.set(i, -1);
365              start_hicc[i] = -1;              start_hicc.set(i, -1);
366              stop_locc[i] = -1;              stop_locc.set(i, -1);
367              stop_hicc[i] = -1;              stop_hicc.set(i, -1);
368              on_locc[i] = -1;              on_locc.set(i, -1);
369              on_hicc[i] = -1;              on_hicc.set(i, -1);
370    
371              // sample player              // sample player
372              delay_oncc[i].unset();              delay_oncc.set(i, optional<float>::nothing);
373              delay_samples_oncc[i].unset();              delay_samples_oncc.set(i, optional<int>::nothing);
374              offset_oncc[i].unset();              offset_oncc.set(i, optional<int>::nothing);
375    
376              // amplifier              // amplifier
377              amp_velcurve[i] = -1;              amp_velcurve.set(i, -1);
378              gain_oncc[i] = 0;              gain_oncc.set(i, 0);
379              xfin_locc[i] = 0;              xfin_locc.set(i, 0);
380              xfin_hicc[i] = 0;              xfin_hicc.set(i, 0);
381              xfout_locc[i] = 127;              xfout_locc.set(i, 127);
382              xfout_hicc[i] = 127;              xfout_hicc.set(i, 127);
383    
384              // filter              // filter
385              cutoff_oncc[i] = 0;              cutoff_oncc.set(i, 0);
386              cutoff_smoothcc[i] = 0;              cutoff_smoothcc.set(i, 0);
387              cutoff_stepcc[i] = 0;              cutoff_stepcc.set(i, 0);
388              cutoff_curvecc[i] = 0;              cutoff_curvecc.set(i, 0);
389              resonance_oncc[i] = 0;              resonance_oncc.set(i, 0);
390              resonance_smoothcc[i] = 0;              resonance_smoothcc.set(i, 0);
391              resonance_stepcc[i] = 0;              resonance_stepcc.set(i, 0);
392              resonance_curvecc[i] = 0;              resonance_curvecc.set(i, 0);
393    
394              cutoff2_oncc[i] = 0;              cutoff2_oncc.set(i, 0);
395              cutoff2_smoothcc[i] = 0;              cutoff2_smoothcc.set(i, 0);
396              cutoff2_stepcc[i] = 0;              cutoff2_stepcc.set(i, 0);
397              cutoff2_curvecc[i] = 0;              cutoff2_curvecc.set(i, 0);
398              resonance2_oncc[i] = 0;              resonance2_oncc.set(i, 0);
399              resonance2_smoothcc[i] = 0;              resonance2_smoothcc.set(i, 0);
400              resonance2_stepcc[i] = 0;              resonance2_stepcc.set(i, 0);
401              resonance2_curvecc[i] = 0;              resonance2_curvecc.set(i, 0);
402    
403              // per voice equalizer              // per voice equalizer
404              eq1_freq_oncc[i] = 0;              eq1_freq_oncc.set(i, 0);
405              eq2_freq_oncc[i] = 0;              eq2_freq_oncc.set(i, 0);
406              eq3_freq_oncc[i] = 0;              eq3_freq_oncc.set(i, 0);
407              eq1_bw_oncc[i] = 0;              eq1_bw_oncc.set(i, 0);
408              eq2_bw_oncc[i] = 0;              eq2_bw_oncc.set(i, 0);
409              eq3_bw_oncc[i] = 0;              eq3_bw_oncc.set(i, 0);
410              eq1_gain_oncc[i] = 0;              eq1_gain_oncc.set(i, 0);
411              eq2_gain_oncc[i] = 0;              eq2_gain_oncc.set(i, 0);
412              eq3_gain_oncc[i] = 0;              eq3_gain_oncc.set(i, 0);
413          }          }
414    
415          eg.clear();          eg.clear();
# Line 869  namespace sfz Line 772  namespace sfz
772              }              }
773          }          }
774    
775            std::set<float*> velcurves;
776          for (int i = 0; i < _instrument->regions.size(); i++) {          for (int i = 0; i < _instrument->regions.size(); i++) {
777              ::sfz::Region* pRegion = _instrument->regions[i];              ::sfz::Region* pRegion = _instrument->regions[i];
778              int low = pRegion->lokey;              int low = pRegion->lokey;
779              int high = pRegion->hikey;              int high = pRegion->hikey;
780              if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {              if (low != -1) { // lokey -1 means region doesn't play on note-on
781                  std::cerr << "Invalid key range: " << low << " - " << high << std::endl;                  // hikey -1 is the same as no limit, except that it
782              } else {                  // also enables on_locc/on_hicc
783                  for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;                  if (high == -1) high = 127;
784                    if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {
785                        std::cerr << "Invalid key range: " << low << " - " << high << std::endl;
786                    } else {
787                        for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;
788                    }
789              }              }
790    
791              // get keyswitches              // get keyswitches
792              low = pRegion->sw_lokey;              low = pRegion->sw_lokey;
793                if (low < 0) low = 0;
794              high = pRegion->sw_hikey;              high = pRegion->sw_hikey;
795              if(low == -1 && high == -1) {              if (high == -1) {
796                  // Key switches not defined, so nothing to do                  // Key switches not defined, so nothing to do
797              } else if(low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {              } else if (low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {
798                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;
799              } else {              } else {
800                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;
801              }              }
802    
803              // create velocity response curve              // create velocity response curve
804              int prev = 0;  
805              float prevvalue = 0;              // don't use copy-on-write here, instead change the actual
806              for (int v = 0 ; v < 128 ; v++) {              // unique buffers in memory
807                  if (pRegion->amp_velcurve[v] >= 0) {              float* velcurve = const_cast<float*>(&pRegion->amp_velcurve[0]);
808                      float step = (pRegion->amp_velcurve[v] - prevvalue) / (v - prev);              if (velcurves.insert(velcurve).second) {
809                      for ( ; prev < v ; prev++) {                  int prev = 0;
810                          pRegion->amp_velcurve[prev] = prevvalue;                  float prevvalue = 0;
811                          prevvalue += step;                  for (int v = 0 ; v < 128 ; v++) {
812                        if (velcurve[v] >= 0) {
813                            float step = (velcurve[v] - prevvalue) / (v - prev);
814                            for ( ; prev < v ; prev++) {
815                                velcurve[prev] = prevvalue;
816                                prevvalue += step;
817                            }
818                      }                      }
819                  }                  }
820              }                  if (prev) {
821              if (prev) {                      float step = (1 - prevvalue) / (127 - prev);
822                  float step = (1 - prevvalue) / (127 - prev);                      for ( ; prev < 128 ; prev++) {
823                  for ( ; prev < 128 ; prev++) {                          velcurve[prev] = prevvalue;
824                      pRegion->amp_velcurve[prev] = prevvalue;                          prevvalue += step;
825                      prevvalue += step;                      }
826                    } else {
827                        // default curve
828                        for (int v = 0 ; v < 128 ; v++) {
829                            velcurve[v] = v * v / (127.0 * 127.0);
830                        }
831                  }                  }
832              } else {  
833                  // default curve                  // apply amp_veltrack
834                    float offset = -pRegion->amp_veltrack;
835                    if (offset <= 0) offset += 100;
836                  for (int v = 0 ; v < 128 ; v++) {                  for (int v = 0 ; v < 128 ; v++) {
837                      pRegion->amp_velcurve[v] = v * v / (127.0 * 127.0);                      velcurve[v] = (offset + pRegion->amp_veltrack * velcurve[v]) / 100;
838                  }                  }
839              }              }
840              // apply amp_veltrack          }
841              float offset = -pRegion->amp_veltrack;  
842              if (offset <= 0) offset += 100;          _instrument->pLookupTable = new LookupTable(_instrument);
843              for (int v = 0 ; v < 128 ; v++) {  
844                  pRegion->amp_velcurve[v] =          // create separate lookup tables for controller triggered
845                      (offset + pRegion->amp_veltrack * pRegion->amp_velcurve[v]) / 100;          // regions, one for each CC
846              }          for (int i = 0 ; i < 128 ; i++) {
847                _instrument->pLookupTableCC[i] = new LookupTable(_instrument, i);
848          }          }
849      }      }
850    
# Line 1033  namespace sfz Line 957  namespace sfz
957          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);
958          else if ("lobend" == key) pCurDef->lobend = ToInt(value);          else if ("lobend" == key) pCurDef->lobend = ToInt(value);
959          else if ("hibend" == key) pCurDef->hibend = ToInt(value);          else if ("hibend" == key) pCurDef->hibend = ToInt(value);
960          else if ("lobpm"  == key) pCurDef->lobpm = ToInt(value);          else if ("lobpm"  == key) pCurDef->lobpm = ToFloat(value);
961          else if ("hibpm"  == key) pCurDef->hibpm = ToInt(value);          else if ("hibpm"  == key) pCurDef->hibpm = ToFloat(value);
962          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);
963          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);
964          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);
# Line 1069  namespace sfz Line 993  namespace sfz
993          else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);          else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);
994          else if ("off_mode" == key || "offmode" == key)          else if ("off_mode" == key || "offmode" == key)
995          {          {
996              if (value == "fast")  _current_group->off_mode = OFF_FAST;              if (value == "fast")  pCurDef->off_mode = OFF_FAST;
997              else if (value == "normal") _current_group->off_mode = OFF_NORMAL;              else if (value == "normal") pCurDef->off_mode = OFF_NORMAL;
998          }          }
999    
1000          // sample player          // sample player
# Line 1143  namespace sfz Line 1067  namespace sfz
1067          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);
1068    
1069          // filter          // filter
1070          else if ("fil_type" == key)          else if ("fil_type" == key || "filtype" == key)
1071          {          {
1072              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;
1073              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 1136  namespace sfz
1136          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);
1137    
1138          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {
1139              pCurDef->amp_velcurve[x] = ToFloat(value);              pCurDef->amp_velcurve.set(x, ToFloat(value));
1140          }          }
1141    
1142          // CCs          // CCs
# Line 1223  namespace sfz Line 1147  namespace sfz
1147              int num_cc = ToInt(key.substr(delimiter_index + 2));              int num_cc = ToInt(key.substr(delimiter_index + 2));
1148    
1149              // input controls              // input controls
1150              if ("lo" == key_cc) pCurDef->locc[num_cc] = ToInt(value);              if ("lo" == key_cc) pCurDef->locc.set(num_cc, ToInt(value));
1151              else if ("hi" == key_cc) pCurDef->hicc[num_cc] = ToInt(value);              else if ("hi" == key_cc) pCurDef->hicc.set(num_cc, ToInt(value));
1152              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));
1153              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));
1154              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));
1155              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));
1156              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));
1157              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));
1158    
1159              // sample player              // sample player
1160              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));
1161              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));
1162              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));
1163    
1164              // amplifier              // amplifier
1165              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));
1166              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));
1167              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));
1168              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));
1169              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));
1170    
1171              // filter              // filter
1172              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));
1173              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));
1174              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));
1175              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));
1176              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));
1177              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));
1178              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));
1179              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));
1180              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));
1181              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));
1182              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));
1183              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));
1184              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));
1185              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));
1186              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));
1187              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));
1188    
1189              // per voice equalizer              // per voice equalizer
1190              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));
1191              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));
1192              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));
1193              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));
1194              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));
1195              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));
1196              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));
1197              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));
1198              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));
1199              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1200          }          }
1201          // v2 envelope generators          // v2 envelope generators
# Line 1345  namespace sfz Line 1269  namespace sfz
1269              case 'g': i = 7; break;              case 'g': i = 7; break;
1270              case 'a': i = 9; break;              case 'a': i = 9; break;
1271              case 'b': i = 11; break;              case 'b': i = 11; break;
1272                case '-': if (s == "-1") return -1;
1273              default:              default:
1274                  std::cerr << "Not a note: " << s << std::endl;                  std::cerr << "Not a note: " << s << std::endl;
1275                  return 0;                  return 0;

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

  ViewVC Help
Powered by ViewVC