/[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 2058 by persson, Sun Feb 14 11:40:49 2010 UTC revision 2101 by persson, Sun May 30 11:40:31 2010 UTC
# Line 64  namespace sfz Line 64  namespace sfz
64      /////////////////////////////////////////////////////////////      /////////////////////////////////////////////////////////////
65      // class Definition      // class Definition
66    
67      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)  
   
68      {      {
69      }      }
70    
# Line 89  namespace sfz Line 78  namespace sfz
78      Region::Region()      Region::Region()
79      {      {
80          pSample = NULL;          pSample = NULL;
81            seq_counter = 1;
82      }      }
83    
84      Region::~Region()      Region::~Region()
# Line 117  namespace sfz Line 107  namespace sfz
107          }          }
108      }      }
109    
110      bool      bool Region::OnKey(const Query& q) {
111      Region::OnKey(uint8_t chan, uint8_t key, uint8_t vel,          bool is_triggered(
112                int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,              q.chan    >= lochan     &&  q.chan    <= hichan     &&
113                uint8_t prog, float rand, trigger_t trig, uint8_t* cc,              q.key     >= lokey      &&  q.key     <= hikey      &&
114                float timer, uint8_t seq, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)              q.vel     >= lovel      &&  q.vel     <= hivel      &&
115      {              q.bend    >= lobend     &&  q.bend    <= hibend     &&
116          // chan        (MIDI channel)              q.bpm     >= lobpm      &&  q.bpm     <  hibpm      &&
117          // key         (MIDI note)              q.chanaft >= lochanaft  &&  q.chanaft <= hichanaft  &&
118          // vel         (MIDI velocity)              q.polyaft >= lopolyaft  &&  q.polyaft <= hipolyaft  &&
119                q.prog    >= loprog     &&  q.prog    <= hiprog     &&
120          // bend        (MIDI pitch bend)              q.rand    >= lorand     &&  q.rand    <  hirand     &&
121          // bpm         (host BPM)              q.timer   >= lotimer    &&  q.timer   <= hitimer    &&
122          // chanaft     (MIDI channel pressure)  
123          // polyaft     (MIDI polyphonic aftertouch)              ( sw_last == -1 ||
124          // prog        (MIDI program change)                ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (q.last_sw_key == sw_last) : false) ) &&
125          // rand        (generated random number)  
126          // trigger     (how it was triggered)              ( sw_down == -1 ||
127          // cc          (all 128 CC values)                ((sw_down >= sw_lokey && (sw_hikey == -1 || sw_down <= sw_hikey)) ? (q.sw[sw_down]) : false) )  &&
   
         // timer       (time since previous region in the group was triggered)  
         // seq         (the state of the region sequence counter)  
         // 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    &&  
             seq == seq_position   &&  
   
             ( (sw_lokey == -1 || sw_hikey == -1 || sw_last  == -1) ||  
               ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (last_sw_key == sw_last) : true) ) &&  
128    
129              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
130                ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&                ((sw_up   >= sw_lokey && (sw_hikey == -1 || sw_up   <= sw_hikey)) ? (!q.sw[sw_up]) : true) )  &&
131    
132              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_previous == -1 ||
133                ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&                q.prev_sw_key == sw_previous )  &&
134    
135              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ((trigger & q.trig) != 0)
              ((trigger & trig) != 0)  
136          );          );
137    
138          if (!is_triggered)          if (!is_triggered)
139              return false;              return false;
140    
141          for (int i = 0; i < 128; ++i)          for (int i = 0; i < 128; ++i) {
142          {              if (locc[i] != -1 && hicc[i] != -1 && !(q.cc[i] >= locc[i] && q.cc[i] <= hicc[i]))
             if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))  
143                  return false;                  return false;
144          }          }
145    
146          return true;          // seq_position has to be checked last, so we know that we
147            // increment the right counter
148            is_triggered = (seq_counter == seq_position);
149            seq_counter = (seq_counter % seq_length) + 1;
150    
151            return is_triggered;
152      }      }
153    
154      bool      bool
155      Region::OnControl(uint8_t chan, uint8_t cont, uint8_t val,      Region::OnControl(uint8_t chan, uint8_t cont, uint8_t val,
156          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,
157          uint8_t prog, float rand, trigger_t trig, uint8_t* cc,          uint8_t prog, float rand, trigger_t trig, uint8_t* cc,
158          float timer, uint8_t seq, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)          float timer, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)
159      {      {
160          // chan      (MIDI channel)          // chan      (MIDI channel)
161          // cont      (MIDI controller)          // cont      (MIDI controller)
# Line 200  namespace sfz Line 171  namespace sfz
171          // cc        (all CC values)          // cc        (all CC values)
172    
173          // timer       (time since previous region in the group was triggered)          // timer       (time since previous region in the group was triggered)
         // seq         (the state of the region sequence counter)  
174          // sw          (the state of region key switches, 128 possible values)          // sw          (the state of region key switches, 128 possible values)
175          // last_sw_key (the last key pressed in the key switch range)          // last_sw_key (the last key pressed in the key switch range)
176          // prev_sw_key (the previous note value)          // prev_sw_key (the previous note value)
# Line 210  namespace sfz Line 180  namespace sfz
180              ((val   >= on_locc[cont]    &&  val     <= on_hicc[cont])     ||              ((val   >= on_locc[cont]    &&  val     <= on_hicc[cont])     ||
181               (val   >= start_locc[cont] &&  val     <= start_hicc[cont])) &&               (val   >= start_locc[cont] &&  val     <= start_hicc[cont])) &&
182              bend    >= lobend           &&  bend    <= hibend             &&              bend    >= lobend           &&  bend    <= hibend             &&
183              bpm     >= lobpm            &&  bpm     <= hibpm              &&              bpm     >= lobpm            &&  bpm     <  hibpm              &&
184              chanaft >= lochanaft        &&  chanaft <= hichanaft          &&              chanaft >= lochanaft        &&  chanaft <= hichanaft          &&
185              polyaft >= lopolyaft        &&  polyaft <= hipolyaft          &&              polyaft >= lopolyaft        &&  polyaft <= hipolyaft          &&
186              prog    >= loprog           &&  prog    <= hiprog             &&              prog    >= loprog           &&  prog    <= hiprog             &&
187              rand    >= lorand           &&  rand    <= hirand             &&              rand    >= lorand           &&  rand    <  hirand             &&
188              timer   >= lotimer          &&  timer   <= hitimer            &&              timer   >= lotimer          &&  timer   <= hitimer            &&
             seq == seq_position   &&  
189    
190              ( (sw_lokey == -1 || sw_hikey == -1 || sw_last  == -1) ||              ( sw_last == -1 ||
191                ((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) ) &&
192    
193              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_down == -1 ||
194                ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&                ((sw_down >= sw_lokey && (sw_hikey == -1 || sw_down <= sw_hikey)) ? (sw[sw_down]) : false) )  &&
195    
196              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
197                ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&                ((sw_up   >= sw_lokey && (sw_hikey == -1 || sw_up   <= sw_hikey)) ? (!sw[sw_up]) : true) )  &&
198    
199              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ( sw_previous == -1 ||
200               ((trigger & trig) != 0)                prev_sw_key == sw_previous )  &&
201    
202                ((trigger & trig) != 0)
203          );          );
204    
205          if (!is_triggered)          if (!is_triggered)
# Line 283  namespace sfz Line 254  namespace sfz
254          regions.clear();          regions.clear();
255      }      }
256    
257      std::vector<Region*> Instrument::GetRegionsOnKey (      Query::Query(const Instrument& instrument) {
258          uint8_t chan, uint8_t key, uint8_t vel,          i = instrument.regions.begin();
259          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          regions_end = instrument.regions.end();
260          uint8_t prog, float rand, trigger_t trig, uint8_t* cc,      }
         float timer, uint8_t seq, 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, seq, sw, last_sw_key, prev_sw_key)  
                     ) { v.push_back(regions[i]); }  
         }  
261    
262          return v;      Region* Query::next() {
263            while (i != regions_end) {
264                if ((*i++)->OnKey(*this)) return *i;
265            }
266            return 0;
267      }      }
268    
269      bool Instrument::DestroyRegion(Region* pRegion) {      bool Instrument::DestroyRegion(Region* pRegion) {
# Line 454  namespace sfz Line 420  namespace sfz
420          for (int i = 0; i < 128; ++i)          for (int i = 0; i < 128; ++i)
421          {          {
422              // input control              // input control
423              locc[i] = 0;              locc.set(i, 0);
424              hicc[i] = 127;              hicc.set(i, 127);
425              start_locc[i] = -1;              start_locc.set(i, -1);
426              start_hicc[i] = -1;              start_hicc.set(i, -1);
427              stop_locc[i] = -1;              stop_locc.set(i, -1);
428              stop_hicc[i] = -1;              stop_hicc.set(i, -1);
429              on_locc[i] = -1;              on_locc.set(i, -1);
430              on_hicc[i] = -1;              on_hicc.set(i, -1);
431    
432              // sample player              // sample player
433              delay_oncc[i].unset();              delay_oncc.set(i, optional<float>::nothing);
434              delay_samples_oncc[i].unset();              delay_samples_oncc.set(i, optional<int>::nothing);
435              offset_oncc[i].unset();              offset_oncc.set(i, optional<int>::nothing);
436    
437              // amplifier              // amplifier
438              amp_velcurve_[i] = 0; //fixme: 20 log (127^2 / i^2)              amp_velcurve.set(i, -1);
439              gain_oncc[i] = 0;              gain_oncc.set(i, 0);
440              xfin_locc[i] = 0;              xfin_locc.set(i, 0);
441              xfin_hicc[i] = 0;              xfin_hicc.set(i, 0);
442              xfout_locc[i] = 127;              xfout_locc.set(i, 127);
443              xfout_hicc[i] = 127;              xfout_hicc.set(i, 127);
444    
445              // filter              // filter
446              cutoff_oncc[i] = 0;              cutoff_oncc.set(i, 0);
447              cutoff_smoothcc[i] = 0;              cutoff_smoothcc.set(i, 0);
448              cutoff_stepcc[i] = 0;              cutoff_stepcc.set(i, 0);
449              cutoff_curvecc[i] = 0;              cutoff_curvecc.set(i, 0);
450              resonance_oncc[i] = 0;              resonance_oncc.set(i, 0);
451              resonance_smoothcc[i] = 0;              resonance_smoothcc.set(i, 0);
452              resonance_stepcc[i] = 0;              resonance_stepcc.set(i, 0);
453              resonance_curvecc[i] = 0;              resonance_curvecc.set(i, 0);
454    
455              cutoff2_oncc[i] = 0;              cutoff2_oncc.set(i, 0);
456              cutoff2_smoothcc[i] = 0;              cutoff2_smoothcc.set(i, 0);
457              cutoff2_stepcc[i] = 0;              cutoff2_stepcc.set(i, 0);
458              cutoff2_curvecc[i] = 0;              cutoff2_curvecc.set(i, 0);
459              resonance2_oncc[i] = 0;              resonance2_oncc.set(i, 0);
460              resonance2_smoothcc[i] = 0;              resonance2_smoothcc.set(i, 0);
461              resonance2_stepcc[i] = 0;              resonance2_stepcc.set(i, 0);
462              resonance2_curvecc[i] = 0;              resonance2_curvecc.set(i, 0);
463    
464              // per voice equalizer              // per voice equalizer
465              eq1_freq_oncc[i] = 0;              eq1_freq_oncc.set(i, 0);
466              eq2_freq_oncc[i] = 0;              eq2_freq_oncc.set(i, 0);
467              eq3_freq_oncc[i] = 0;              eq3_freq_oncc.set(i, 0);
468              eq1_bw_oncc[i] = 0;              eq1_bw_oncc.set(i, 0);
469              eq2_bw_oncc[i] = 0;              eq2_bw_oncc.set(i, 0);
470              eq3_bw_oncc[i] = 0;              eq3_bw_oncc.set(i, 0);
471              eq1_gain_oncc[i] = 0;              eq1_gain_oncc.set(i, 0);
472              eq2_gain_oncc[i] = 0;              eq2_gain_oncc.set(i, 0);
473              eq3_gain_oncc[i] = 0;              eq3_gain_oncc.set(i, 0);
474          }          }
475    
476          eg.clear();          eg.clear();
# Line 533  namespace sfz Line 499  namespace sfz
499          pitcheg_decay    = 0;          pitcheg_decay    = 0;
500          pitcheg_sustain  = 100; // in percentage          pitcheg_sustain  = 100; // in percentage
501          pitcheg_release  = 0;          pitcheg_release  = 0;
502    
503            amplfo_delay     = 0;
504            amplfo_fade      = 0;
505            amplfo_freq      = 0;
506            amplfo_depth     = 0;
507    
508            fillfo_delay     = 0;
509            fillfo_fade      = 0;
510            fillfo_freq      = 0;
511            fillfo_depth     = 0;
512    
513            pitchlfo_delay   = 0;
514            pitchlfo_fade    = 0;
515            pitchlfo_freq    = 0;
516            pitchlfo_depth   = 0;
517      }      }
518    
519      Region*      Region*
# Line 618  namespace sfz Line 599  namespace sfz
599          region->amp_keytrack = amp_keytrack;          region->amp_keytrack = amp_keytrack;
600          region->amp_keycenter = amp_keycenter;          region->amp_keycenter = amp_keycenter;
601          region->amp_veltrack = amp_veltrack;          region->amp_veltrack = amp_veltrack;
602          region->amp_velcurve_ = amp_velcurve_;          region->amp_velcurve = amp_velcurve;
603          region->amp_random = amp_random;          region->amp_random = amp_random;
604          region->rt_decay = rt_decay;          region->rt_decay = rt_decay;
605          region->gain_oncc = gain_oncc;          region->gain_oncc = gain_oncc;
# Line 740  namespace sfz Line 721  namespace sfz
721          region->pitcheg_sustain  = pitcheg_sustain;          region->pitcheg_sustain  = pitcheg_sustain;
722          region->pitcheg_release  = pitcheg_release;          region->pitcheg_release  = pitcheg_release;
723    
724            region->amplfo_delay     = amplfo_delay;
725            region->amplfo_fade      = amplfo_fade;
726            region->amplfo_freq      = amplfo_freq;
727            region->amplfo_depth     = amplfo_depth;
728    
729            region->fillfo_delay     = fillfo_delay;
730            region->fillfo_fade      = fillfo_fade;
731            region->fillfo_freq      = fillfo_freq;
732            region->fillfo_depth     = fillfo_depth;
733    
734            region->pitchlfo_delay   = pitchlfo_delay;
735            region->pitchlfo_fade    = pitchlfo_fade;
736            region->pitchlfo_freq    = pitchlfo_freq;
737            region->pitchlfo_depth   = pitchlfo_depth;
738    
739          return region;          return region;
740      }      }
741    
# Line 837  namespace sfz Line 833  namespace sfz
833              }              }
834          }          }
835    
836            std::set<float*> velcurves;
837          for (int i = 0; i < _instrument->regions.size(); i++) {          for (int i = 0; i < _instrument->regions.size(); i++) {
838              ::sfz::Region* pRegion = _instrument->regions[i];              ::sfz::Region* pRegion = _instrument->regions[i];
839              int low = pRegion->lokey;              int low = pRegion->lokey;
# Line 849  namespace sfz Line 846  namespace sfz
846    
847              // get keyswitches              // get keyswitches
848              low = pRegion->sw_lokey;              low = pRegion->sw_lokey;
849                if (low < 0) low = 0;
850              high = pRegion->sw_hikey;              high = pRegion->sw_hikey;
851              if(low == -1 && high == -1) {              if (high == -1) {
852                  // Key switches not defined, so nothing to do                  // Key switches not defined, so nothing to do
853              } else if(low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {              } else if (low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {
854                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;
855              } else {              } else {
856                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;
857              }              }
858    
859                // create velocity response curve
860    
861                // don't use copy-on-write here, instead change the actual
862                // unique buffers in memory
863                float* velcurve = const_cast<float*>(&pRegion->amp_velcurve[0]);
864                if (velcurves.insert(velcurve).second) {
865                    int prev = 0;
866                    float prevvalue = 0;
867                    for (int v = 0 ; v < 128 ; v++) {
868                        if (velcurve[v] >= 0) {
869                            float step = (velcurve[v] - prevvalue) / (v - prev);
870                            for ( ; prev < v ; prev++) {
871                                velcurve[prev] = prevvalue;
872                                prevvalue += step;
873                            }
874                        }
875                    }
876                    if (prev) {
877                        float step = (1 - prevvalue) / (127 - prev);
878                        for ( ; prev < 128 ; prev++) {
879                            velcurve[prev] = prevvalue;
880                            prevvalue += step;
881                        }
882                    } else {
883                        // default curve
884                        for (int v = 0 ; v < 128 ; v++) {
885                            velcurve[v] = v * v / (127.0 * 127.0);
886                        }
887                    }
888    
889                    // apply amp_veltrack
890                    float offset = -pRegion->amp_veltrack;
891                    if (offset <= 0) offset += 100;
892                    for (int v = 0 ; v < 128 ; v++) {
893                        velcurve[v] = (offset + pRegion->amp_veltrack * velcurve[v]) / 100;
894                    }
895                }
896          }          }
897      }      }
898    
# Line 1079  namespace sfz Line 1115  namespace sfz
1115          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);
1116    
1117          // filter          // filter
1118          else if ("fil_type" == key)          else if ("fil_type" == key || "filtype" == key)
1119          {          {
1120              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;
1121              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;
# Line 1147  namespace sfz Line 1183  namespace sfz
1183          else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);          else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);
1184          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);
1185    
1186          //fixme: parse amp_velcurve_N          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {
1187                pCurDef->amp_velcurve.set(x, ToFloat(value));
1188            }
1189    
1190          // CCs          // CCs
1191          else if (key.find("cc") != std::string::npos)          else if (key.find("cc") != std::string::npos)
# Line 1157  namespace sfz Line 1195  namespace sfz
1195              int num_cc = ToInt(key.substr(delimiter_index + 2));              int num_cc = ToInt(key.substr(delimiter_index + 2));
1196    
1197              // input controls              // input controls
1198              if ("lo" == key_cc) pCurDef->locc[num_cc] = ToInt(value);              if ("lo" == key_cc) pCurDef->locc.set(num_cc, ToInt(value));
1199              else if ("hi" == key_cc) pCurDef->hicc[num_cc] = ToInt(value);              else if ("hi" == key_cc) pCurDef->hicc.set(num_cc, ToInt(value));
1200              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));
1201              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));
1202              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));
1203              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));
1204              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));
1205              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));
1206    
1207              // sample player              // sample player
1208              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));
1209              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));
1210              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));
1211    
1212              // amplifier              // amplifier
1213              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));
1214              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));
1215              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));
1216              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));
1217              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));
1218    
1219              // filter              // filter
1220              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));
1221              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));
1222              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));
1223              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));
1224              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));
1225              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));
1226              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));
1227              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));
1228              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));
1229              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));
1230              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));
1231              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));
1232              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));
1233              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));
1234              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));
1235              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));
1236    
1237              // per voice equalizer              // per voice equalizer
1238              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));
1239              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));
1240              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));
1241              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));
1242              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));
1243              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));
1244              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));
1245              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));
1246              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));
1247              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1248          }          }
1249          // v2 envelope generators          // v2 envelope generators
# Line 1245  namespace sfz Line 1283  namespace sfz
1283          else if ("pitcheg_decay"   == key) pCurDef->pitcheg_decay = ToFloat(value);          else if ("pitcheg_decay"   == key) pCurDef->pitcheg_decay = ToFloat(value);
1284          else if ("pitcheg_sustain"   == key) pCurDef->pitcheg_sustain = ToFloat(value);          else if ("pitcheg_sustain"   == key) pCurDef->pitcheg_sustain = ToFloat(value);
1285          else if ("pitcheg_release"   == key) pCurDef->pitcheg_release = ToFloat(value);          else if ("pitcheg_release"   == key) pCurDef->pitcheg_release = ToFloat(value);
1286    
1287            // v1 LFO
1288            else if ("amplfo_delay" == key) pCurDef->amplfo_delay = ToFloat(value);
1289            else if ("amplfo_fade" == key) pCurDef->amplfo_fade = ToFloat(value);
1290            else if ("amplfo_freq" == key) pCurDef->amplfo_freq = ToFloat(value);
1291            else if ("amplfo_depth" == key) pCurDef->amplfo_depth = ToFloat(value);
1292            else if ("fillfo_delay" == key) pCurDef->fillfo_delay = ToFloat(value);
1293            else if ("fillfo_fade" == key) pCurDef->fillfo_fade = ToFloat(value);
1294            else if ("fillfo_freq" == key) pCurDef->fillfo_freq = ToFloat(value);
1295            else if ("fillfo_depth" == key) pCurDef->fillfo_depth = ToFloat(value);
1296            else if ("pitchlfo_delay" == key) pCurDef->pitchlfo_delay = ToFloat(value);
1297            else if ("pitchlfo_fade" == key) pCurDef->pitchlfo_fade = ToFloat(value);
1298            else if ("pitchlfo_freq" == key) pCurDef->pitchlfo_freq = ToFloat(value);
1299            else if ("pitchlfo_depth" == key) pCurDef->pitchlfo_depth = ToInt(value);
1300    
1301          else {          else {
1302              std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1303          }          }

Legend:
Removed from v.2058  
changed lines
  Added in v.2101

  ViewVC Help
Powered by ViewVC