/[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 2012 by iliev, Fri Oct 23 17:53:17 2009 UTC revision 2091 by persson, Sat May 15 09:02:31 2010 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2008-2009 Anders Dahnielson <anders@dahnielson.com>     *   *   Copyright (C) 2008 Anders Dahnielson <anders@dahnielson.com>          *
6   *   Copyright (C) 2009 Grigor Iliev                                       *   *   Copyright (C) 2009 - 2010 Anders Dahnielson and Grigor Iliev          *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 25  Line 25 
25    
26  #include <iostream>  #include <iostream>
27  #include <sstream>  #include <sstream>
28    #include <cctype>
29    #include <cstdio>
30    #include <cstring>
31    
32  #include "../../common/File.h"  #include "../../common/File.h"
33  #include "../../common/Path.h"  #include "../../common/Path.h"
# Line 33  Line 36 
36  namespace sfz  namespace sfz
37  {  {
38    
39      LinuxSampler::SampleFile* SampleManager::FindSample(std::string samplePath) {      Sample* SampleManager::FindSample(std::string samplePath) {
40          std::map<LinuxSampler::SampleFile*, std::set<Region*> >::iterator it = sampleMap.begin();          std::map<Sample*, std::set<Region*> >::iterator it = sampleMap.begin();
41          for (; it != sampleMap.end(); it++) {          for (; it != sampleMap.end(); it++) {
42              if (it->first->GetFile() == samplePath) return it->first;              if (it->first->GetFile() == samplePath) return it->first;
43          }          }
# Line 61  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 86  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 93  namespace sfz Line 86  namespace sfz
86          DestroySampleIfNotUsed();          DestroySampleIfNotUsed();
87      }      }
88    
89      LinuxSampler::SampleFile* Region::GetSample(bool create)      Sample* Region::GetSample(bool create)
90      {      {
91          if(pSample == NULL && create) {          if(pSample == NULL && create) {
92              LinuxSampler::SampleFile* sf = GetInstrument()->GetSampleManager()->FindSample(sample);              Sample* sf = GetInstrument()->GetSampleManager()->FindSample(sample);
93              if (sf != NULL) pSample = sf; // Reuse already created sample              if (sf != NULL) pSample = sf; // Reuse already created sample
94              else pSample = new LinuxSampler::SampleFile(sample);              else pSample = new Sample(sample);
95              GetInstrument()->GetSampleManager()->AddSampleConsumer(pSample, this);              GetInstrument()->GetSampleManager()->AddSampleConsumer(pSample, this);
96          }          }
97          return pSample;          return pSample;
# Line 118  namespace sfz Line 111  namespace sfz
111      Region::OnKey(uint8_t chan, uint8_t key, uint8_t vel,      Region::OnKey(uint8_t chan, uint8_t key, uint8_t vel,
112                int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,                int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,
113                uint8_t prog, float rand, trigger_t trig, uint8_t* cc,                uint8_t prog, float rand, trigger_t trig, uint8_t* cc,
114                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)
115      {      {
116          // chan        (MIDI channel)          // chan        (MIDI channel)
117          // key         (MIDI note)          // key         (MIDI note)
# Line 134  namespace sfz Line 127  namespace sfz
127          // cc          (all 128 CC values)          // cc          (all 128 CC values)
128    
129          // 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)  
130          // sw          (the state of region key switches, 128 possible values)          // sw          (the state of region key switches, 128 possible values)
131          // last_sw_key (the last key pressed in the key switch range)          // last_sw_key (the last key pressed in the key switch range)
132          // prev_sw_key (the previous note value)          // prev_sw_key (the previous note value)
# Line 144  namespace sfz Line 136  namespace sfz
136              key     >= lokey      &&  key     <= hikey      &&              key     >= lokey      &&  key     <= hikey      &&
137              vel     >= lovel      &&  vel     <= hivel      &&              vel     >= lovel      &&  vel     <= hivel      &&
138              bend    >= lobend     &&  bend    <= hibend     &&              bend    >= lobend     &&  bend    <= hibend     &&
139              bpm     >= lobpm      &&  bpm     <= hibpm      &&              bpm     >= lobpm      &&  bpm     <  hibpm      &&
140              chanaft >= lochanaft  &&  chanaft <= hichanaft  &&              chanaft >= lochanaft  &&  chanaft <= hichanaft  &&
141              polyaft >= lopolyaft  &&  polyaft <= hipolyaft  &&              polyaft >= lopolyaft  &&  polyaft <= hipolyaft  &&
142              prog    >= loprog     &&  prog    <= hiprog     &&              prog    >= loprog     &&  prog    <= hiprog     &&
143              rand    >= lorand     &&  rand    <= hirand     &&              rand    >= lorand     &&  rand    <  hirand     &&
144              timer   >= lotimer    &&  timer   <= hitimer    &&              timer   >= lotimer    &&  timer   <= hitimer    &&
             seq == seq_position   &&  
145    
146              ( (sw_lokey == -1 || sw_hikey == -1 || sw_last  == -1) ||              ( sw_last == -1 ||
147                ((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) ) &&
148    
149                ( sw_down == -1 ||
150                  ((sw_down >= sw_lokey && (sw_hikey == -1 || sw_down <= sw_hikey)) ? (sw[sw_down]) : false) )  &&
151    
152              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
153                ((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) )  &&
154    
155              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_previous == -1 ||
156                ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&                prev_sw_key == sw_previous )  &&
157    
158              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ((trigger & trig) != 0)
              ((trigger && trig) != 0)  
159          );          );
160    
161          if (!is_triggered)          if (!is_triggered)
# Line 174  namespace sfz Line 167  namespace sfz
167                  return false;                  return false;
168          }          }
169    
170          return true;          // seq_position has to be checked last, so we know that we
171            // increment the right counter
172            is_triggered = (seq_counter == seq_position);
173            seq_counter = (seq_counter % seq_length) + 1;
174    
175            return is_triggered;
176      }      }
177    
178      bool      bool
179      Region::OnControl(uint8_t chan, uint8_t cont, uint8_t val,      Region::OnControl(uint8_t chan, uint8_t cont, uint8_t val,
180          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,
181          uint8_t prog, float rand, trigger_t trig, uint8_t* cc,          uint8_t prog, float rand, trigger_t trig, uint8_t* cc,
182          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)
183      {      {
184          // chan      (MIDI channel)          // chan      (MIDI channel)
185          // cont      (MIDI controller)          // cont      (MIDI controller)
# Line 197  namespace sfz Line 195  namespace sfz
195          // cc        (all CC values)          // cc        (all CC values)
196    
197          // 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)  
198          // sw          (the state of region key switches, 128 possible values)          // sw          (the state of region key switches, 128 possible values)
199          // last_sw_key (the last key pressed in the key switch range)          // last_sw_key (the last key pressed in the key switch range)
200          // prev_sw_key (the previous note value)          // prev_sw_key (the previous note value)
# Line 207  namespace sfz Line 204  namespace sfz
204              ((val   >= on_locc[cont]    &&  val     <= on_hicc[cont])     ||              ((val   >= on_locc[cont]    &&  val     <= on_hicc[cont])     ||
205               (val   >= start_locc[cont] &&  val     <= start_hicc[cont])) &&               (val   >= start_locc[cont] &&  val     <= start_hicc[cont])) &&
206              bend    >= lobend           &&  bend    <= hibend             &&              bend    >= lobend           &&  bend    <= hibend             &&
207              bpm     >= lobpm            &&  bpm     <= hibpm              &&              bpm     >= lobpm            &&  bpm     <  hibpm              &&
208              chanaft >= lochanaft        &&  chanaft <= hichanaft          &&              chanaft >= lochanaft        &&  chanaft <= hichanaft          &&
209              polyaft >= lopolyaft        &&  polyaft <= hipolyaft          &&              polyaft >= lopolyaft        &&  polyaft <= hipolyaft          &&
210              prog    >= loprog           &&  prog    <= hiprog             &&              prog    >= loprog           &&  prog    <= hiprog             &&
211              rand    >= lorand           &&  rand    <= hirand             &&              rand    >= lorand           &&  rand    <  hirand             &&
212              timer   >= lotimer          &&  timer   <= hitimer            &&              timer   >= lotimer          &&  timer   <= hitimer            &&
             seq == seq_position   &&  
213    
214              ( (sw_lokey == -1 || sw_hikey == -1 || sw_last  == -1) ||              ( sw_last == -1 ||
215                ((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) ) &&
216    
217              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_down == -1 ||
218                ((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) )  &&
219    
220              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
221                ((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) )  &&
222    
223              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ( sw_previous == -1 ||
224               ((trigger && trig) != 0)                prev_sw_key == sw_previous )  &&
225    
226                ((trigger & trig) != 0)
227          );          );
228    
229          if (!is_triggered)          if (!is_triggered)
# Line 246  namespace sfz Line 244  namespace sfz
244          return new Articulation(); //todo: implement GetArticulation()          return new Articulation(); //todo: implement GetArticulation()
245      }      }
246    
247        bool Region::HasLoop() {
248            bool b = loop_mode == ::sfz::LOOP_CONTINUOUS || loop_mode == ::sfz::LOOP_SUSTAIN; // TODO: ONE_SHOT mode
249            return b && GetLoopStart() && GetLoopEnd() && GetLoopEnd() > GetLoopStart();
250        }
251    
252        uint Region::GetLoopStart() {
253            return (!loop_start) ? 0 : *loop_start; // TODO: use sample loop when loop_start not defined
254        }
255    
256        uint Region::GetLoopEnd() {
257            return (!loop_end) ? 0 : *loop_end; // TODO: use sample loop when loop_end not defined
258        }
259    
260        uint Region::GetLoopCount() {
261            return (!count) ? 0 : *count;
262        }
263    
264      /////////////////////////////////////////////////////////////      /////////////////////////////////////////////////////////////
265      // class Instrument      // class Instrument
266    
# Line 267  namespace sfz Line 282  namespace sfz
282          uint8_t chan, uint8_t key, uint8_t vel,          uint8_t chan, uint8_t key, uint8_t vel,
283          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,
284          uint8_t prog, float rand, trigger_t trig, uint8_t* cc,          uint8_t prog, float rand, trigger_t trig, uint8_t* cc,
285          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
286      ) {      ) {
287          std::vector<Region*> v;          std::vector<Region*> v;
288          for (int i = 0; i < regions.size(); i++) {          for (int i = 0; i < regions.size(); i++) {
289              if (regions[i]->OnKey (              if (regions[i]->OnKey (
290                  chan, key, vel, bend, bpm, chanaft, polyaft, prog,                  chan, key, vel, bend, bpm, chanaft, polyaft, prog,
291                  rand, trig, cc, timer, seq, sw, last_sw_key, prev_sw_key)                  rand, trig, cc, timer, sw, last_sw_key, prev_sw_key)
292                      ) { v.push_back(regions[i]); }                      ) { v.push_back(regions[i]); }
293          }          }
294    
# Line 347  namespace sfz Line 362  namespace sfz
362    
363          trigger = TRIGGER_ATTACK;          trigger = TRIGGER_ATTACK;
364    
365          group.unset();          group = 0;
366          off_by.unset();          off_by.unset();
367          off_mode = OFF_FAST;          off_mode = OFF_FAST;
368    
# Line 434  namespace sfz Line 449  namespace sfz
449          for (int i = 0; i < 128; ++i)          for (int i = 0; i < 128; ++i)
450          {          {
451              // input control              // input control
452              locc[i] = 0;              locc.set(i, 0);
453              hicc[i] = 127;              hicc.set(i, 127);
454              start_locc[i] = -1;              start_locc.set(i, -1);
455              start_hicc[i] = -1;              start_hicc.set(i, -1);
456              stop_locc[i] = -1;              stop_locc.set(i, -1);
457              stop_hicc[i] = -1;              stop_hicc.set(i, -1);
458              on_locc[i] = -1;              on_locc.set(i, -1);
459              on_hicc[i] = -1;              on_hicc.set(i, -1);
460    
461              // sample player              // sample player
462              delay_oncc[i].unset();              delay_oncc.set(i, optional<float>::nothing);
463              delay_samples_oncc[i].unset();              delay_samples_oncc.set(i, optional<int>::nothing);
464              offset_oncc[i].unset();              offset_oncc.set(i, optional<int>::nothing);
465    
466              // amplifier              // amplifier
467              amp_velcurve_[i] = 0; //fixme: 20 log (127^2 / i^2)              amp_velcurve.set(i, -1);
468              gain_oncc[i] = 0;              gain_oncc.set(i, 0);
469              xfin_locc[i] = 0;              xfin_locc.set(i, 0);
470              xfin_hicc[i] = 0;              xfin_hicc.set(i, 0);
471              xfout_locc[i] = 127;              xfout_locc.set(i, 127);
472              xfout_hicc[i] = 127;              xfout_hicc.set(i, 127);
473    
474              // filter              // filter
475              cutoff_oncc[i] = 0;              cutoff_oncc.set(i, 0);
476              cutoff_smoothcc[i] = 0;              cutoff_smoothcc.set(i, 0);
477              cutoff_stepcc[i] = 0;              cutoff_stepcc.set(i, 0);
478              cutoff_curvecc[i] = 0;              cutoff_curvecc.set(i, 0);
479              resonance_oncc[i] = 0;              resonance_oncc.set(i, 0);
480              resonance_smoothcc[i] = 0;              resonance_smoothcc.set(i, 0);
481              resonance_stepcc[i] = 0;              resonance_stepcc.set(i, 0);
482              resonance_curvecc[i] = 0;              resonance_curvecc.set(i, 0);
483    
484              cutoff2_oncc[i] = 0;              cutoff2_oncc.set(i, 0);
485              cutoff2_smoothcc[i] = 0;              cutoff2_smoothcc.set(i, 0);
486              cutoff2_stepcc[i] = 0;              cutoff2_stepcc.set(i, 0);
487              cutoff2_curvecc[i] = 0;              cutoff2_curvecc.set(i, 0);
488              resonance2_oncc[i] = 0;              resonance2_oncc.set(i, 0);
489              resonance2_smoothcc[i] = 0;              resonance2_smoothcc.set(i, 0);
490              resonance2_stepcc[i] = 0;              resonance2_stepcc.set(i, 0);
491              resonance2_curvecc[i] = 0;              resonance2_curvecc.set(i, 0);
492    
493              // per voice equalizer              // per voice equalizer
494              eq1_freq_oncc[i] = 0;              eq1_freq_oncc.set(i, 0);
495              eq2_freq_oncc[i] = 0;              eq2_freq_oncc.set(i, 0);
496              eq3_freq_oncc[i] = 0;              eq3_freq_oncc.set(i, 0);
497              eq1_bw_oncc[i] = 0;              eq1_bw_oncc.set(i, 0);
498              eq2_bw_oncc[i] = 0;              eq2_bw_oncc.set(i, 0);
499              eq3_bw_oncc[i] = 0;              eq3_bw_oncc.set(i, 0);
500              eq1_gain_oncc[i] = 0;              eq1_gain_oncc.set(i, 0);
501              eq2_gain_oncc[i] = 0;              eq2_gain_oncc.set(i, 0);
502              eq3_gain_oncc[i] = 0;              eq3_gain_oncc.set(i, 0);
503          }          }
504    
505            eg.clear();
506    
507            // deprecated
508            ampeg_delay    = 0;
509            ampeg_start    = 0; //in percentage
510            ampeg_attack   = 0;
511            ampeg_hold     = 0;
512            ampeg_decay    = 0;
513            ampeg_sustain  = 100; // in percentage
514            ampeg_release  = 0;
515    
516            fileg_delay    = 0;
517            fileg_start    = 0; //in percentage
518            fileg_attack   = 0;
519            fileg_hold     = 0;
520            fileg_decay    = 0;
521            fileg_sustain  = 100; // in percentage
522            fileg_release  = 0;
523    
524            pitcheg_delay    = 0;
525            pitcheg_start    = 0; //in percentage
526            pitcheg_attack   = 0;
527            pitcheg_hold     = 0;
528            pitcheg_decay    = 0;
529            pitcheg_sustain  = 100; // in percentage
530            pitcheg_release  = 0;
531    
532            amplfo_delay     = 0;
533            amplfo_fade      = 0;
534            amplfo_freq      = 0;
535            amplfo_depth     = 0;
536    
537            fillfo_delay     = 0;
538            fillfo_fade      = 0;
539            fillfo_freq      = 0;
540            fillfo_depth     = 0;
541    
542            pitchlfo_delay   = 0;
543            pitchlfo_fade    = 0;
544            pitchlfo_freq    = 0;
545            pitchlfo_depth   = 0;
546      }      }
547    
548      Region*      Region*
# Line 571  namespace sfz Line 628  namespace sfz
628          region->amp_keytrack = amp_keytrack;          region->amp_keytrack = amp_keytrack;
629          region->amp_keycenter = amp_keycenter;          region->amp_keycenter = amp_keycenter;
630          region->amp_veltrack = amp_veltrack;          region->amp_veltrack = amp_veltrack;
631          region->amp_velcurve_ = amp_velcurve_;          region->amp_velcurve = amp_velcurve;
632          region->amp_random = amp_random;          region->amp_random = amp_random;
633          region->rt_decay = rt_decay;          region->rt_decay = rt_decay;
634          region->gain_oncc = gain_oncc;          region->gain_oncc = gain_oncc;
# Line 665  namespace sfz Line 722  namespace sfz
722          region->eq2_vel2gain = eq2_vel2gain;          region->eq2_vel2gain = eq2_vel2gain;
723          region->eq3_vel2gain = eq3_vel2gain;          region->eq3_vel2gain = eq3_vel2gain;
724    
725            // envelope generator
726            region->eg = eg;
727    
728            // deprecated
729            region->ampeg_delay    = ampeg_delay;
730            region->ampeg_start    = ampeg_start;
731            region->ampeg_attack   = ampeg_attack;
732            region->ampeg_hold     = ampeg_hold;
733            region->ampeg_decay    = ampeg_decay;
734            region->ampeg_sustain  = ampeg_sustain;
735            region->ampeg_release  = ampeg_release;
736    
737            region->fileg_delay    = fileg_delay;
738            region->fileg_start    = fileg_start;
739            region->fileg_attack   = fileg_attack;
740            region->fileg_hold     = fileg_hold;
741            region->fileg_decay    = fileg_decay;
742            region->fileg_sustain  = fileg_sustain;
743            region->fileg_release  = fileg_release;
744    
745            region->pitcheg_delay    = pitcheg_delay;
746            region->pitcheg_start    = pitcheg_start;
747            region->pitcheg_attack   = pitcheg_attack;
748            region->pitcheg_hold     = pitcheg_hold;
749            region->pitcheg_decay    = pitcheg_decay;
750            region->pitcheg_sustain  = pitcheg_sustain;
751            region->pitcheg_release  = pitcheg_release;
752    
753            region->amplfo_delay     = amplfo_delay;
754            region->amplfo_fade      = amplfo_fade;
755            region->amplfo_freq      = amplfo_freq;
756            region->amplfo_depth     = amplfo_depth;
757    
758            region->fillfo_delay     = fillfo_delay;
759            region->fillfo_fade      = fillfo_fade;
760            region->fillfo_freq      = fillfo_freq;
761            region->fillfo_depth     = fillfo_depth;
762    
763            region->pitchlfo_delay   = pitchlfo_delay;
764            region->pitchlfo_fade    = pitchlfo_fade;
765            region->pitchlfo_freq    = pitchlfo_freq;
766            region->pitchlfo_depth   = pitchlfo_depth;
767    
768          return region;          return region;
769      }      }
770    
# Line 679  namespace sfz Line 779  namespace sfz
779      {      {
780          _instrument = new Instrument(LinuxSampler::Path::getBaseName(file), pSampleManager);          _instrument = new Instrument(LinuxSampler::Path::getBaseName(file), pSampleManager);
781          _current_group = new Group();          _current_group = new Group();
782                  pCurDef = _current_group;          pCurDef = _current_group;
783          enum token_type_t { HEADER, OPCODE };          enum token_type_t { HEADER, OPCODE };
784          token_type_t token_type;          token_type_t token_type;
785          std::string token_string;          std::string token_string;
# Line 762  namespace sfz Line 862  namespace sfz
862              }              }
863          }          }
864    
865            std::set<float*> velcurves;
866          for (int i = 0; i < _instrument->regions.size(); i++) {          for (int i = 0; i < _instrument->regions.size(); i++) {
867              ::sfz::Region* pRegion = _instrument->regions[i];              ::sfz::Region* pRegion = _instrument->regions[i];
868              int low = pRegion->lokey;              int low = pRegion->lokey;
# Line 774  namespace sfz Line 875  namespace sfz
875    
876              // get keyswitches              // get keyswitches
877              low = pRegion->sw_lokey;              low = pRegion->sw_lokey;
878                if (low < 0) low = 0;
879              high = pRegion->sw_hikey;              high = pRegion->sw_hikey;
880              if(low == -1 && high == -1) {              if (high == -1) {
881                  // Key switches not defined, so nothing to do                  // Key switches not defined, so nothing to do
882              } else if(low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {              } else if (low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {
883                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;
884              } else {              } else {
885                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;
886              }              }
887    
888                // create velocity response curve
889    
890                // don't use copy-on-write here, instead change the actual
891                // unique buffers in memory
892                float* velcurve = const_cast<float*>(&pRegion->amp_velcurve[0]);
893                if (velcurves.insert(velcurve).second) {
894                    int prev = 0;
895                    float prevvalue = 0;
896                    for (int v = 0 ; v < 128 ; v++) {
897                        if (velcurve[v] >= 0) {
898                            float step = (velcurve[v] - prevvalue) / (v - prev);
899                            for ( ; prev < v ; prev++) {
900                                velcurve[prev] = prevvalue;
901                                prevvalue += step;
902                            }
903                        }
904                    }
905                    if (prev) {
906                        float step = (1 - prevvalue) / (127 - prev);
907                        for ( ; prev < 128 ; prev++) {
908                            velcurve[prev] = prevvalue;
909                            prevvalue += step;
910                        }
911                    } else {
912                        // default curve
913                        for (int v = 0 ; v < 128 ; v++) {
914                            velcurve[v] = v * v / (127.0 * 127.0);
915                        }
916                    }
917    
918                    // apply amp_veltrack
919                    float offset = -pRegion->amp_veltrack;
920                    if (offset <= 0) offset += 100;
921                    for (int v = 0 ; v < 128 ; v++) {
922                        velcurve[v] = (offset + pRegion->amp_veltrack * velcurve[v]) / 100;
923                    }
924                }
925          }          }
926      }      }
927    
# Line 804  namespace sfz Line 944  namespace sfz
944          {          {
945              _current_section = GROUP;              _current_section = GROUP;
946              _current_group->Reset();              _current_group->Reset();
947                          pCurDef = _current_group;              pCurDef = _current_group;
948          }          }
949          else if (token == "<region>")          else if (token == "<region>")
950          {          {
951              _current_section = REGION;              _current_section = REGION;
952              _current_region = _current_group->RegionFactory();              _current_region = _current_group->RegionFactory();
953                          pCurDef = _current_region;              pCurDef = _current_region;
954              _instrument->regions.push_back(_current_region);              _instrument->regions.push_back(_current_region);
955                          _current_region->SetInstrument(_instrument);              _current_region->SetInstrument(_instrument);
956          }          }
957          else if (token == "<control>")          else if (token == "<control>")
958          {          {
# Line 837  namespace sfz Line 977  namespace sfz
977          std::string::size_type delimiter_index = token.find('=');          std::string::size_type delimiter_index = token.find('=');
978          std::string key = token.substr(0, delimiter_index);          std::string key = token.substr(0, delimiter_index);
979          std::string value = token.substr(delimiter_index + 1);          std::string value = token.substr(delimiter_index + 1);
980            int x, y;
981    
982          // sample definition          // sample definition
983          if ("sample" == key)          if ("sample" == key)
# Line 883  namespace sfz Line 1024  namespace sfz
1024          // input controls          // input controls
1025          else if ("lochan" == key) pCurDef->lochan = ToInt(value);          else if ("lochan" == key) pCurDef->lochan = ToInt(value);
1026          else if ("hichan" == key) pCurDef->hichan = ToInt(value);          else if ("hichan" == key) pCurDef->hichan = ToInt(value);
1027          else if ("lokey"  == key) pCurDef->lokey  = ToInt(value) + note_offset + 12 * octave_offset;          else if ("lokey"  == key) pCurDef->lokey  = parseKey(value);
1028          else if ("hikey"  == key) pCurDef->hikey  = ToInt(value) + note_offset + 12 * octave_offset;          else if ("hikey"  == key) pCurDef->hikey  = parseKey(value);
1029          else if ("key" == key)          else if ("key" == key)
1030          {          {
1031              pCurDef->lokey = ToInt(value) + note_offset + 12 * octave_offset;              pCurDef->lokey = pCurDef->hikey = pCurDef->pitch_keycenter = parseKey(value);
             pCurDef->hikey = ToInt(value) + note_offset + 12 * octave_offset;  
1032          }          }
1033          else if ("lovel"  == key) pCurDef->lovel = ToInt(value);          else if ("lovel"  == key) pCurDef->lovel = ToInt(value);
1034          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);
# Line 908  namespace sfz Line 1048  namespace sfz
1048          else if ("hitimer" == key) pCurDef->hitimer = ToFloat(value);          else if ("hitimer" == key) pCurDef->hitimer = ToFloat(value);
1049          else if ("seq_length"   == key) pCurDef->seq_length = ToInt(value);          else if ("seq_length"   == key) pCurDef->seq_length = ToInt(value);
1050          else if ("seq_position" == key) pCurDef->seq_position = ToInt(value);          else if ("seq_position" == key) pCurDef->seq_position = ToInt(value);
1051          else if ("sw_lokey" == key) pCurDef->sw_lokey = ToInt(value) + note_offset + 12 * octave_offset;          else if ("sw_lokey" == key) pCurDef->sw_lokey = parseKey(value);
1052          else if ("sw_hikey" == key) pCurDef->sw_hikey = ToInt(value) + note_offset + 12 * octave_offset;          else if ("sw_hikey" == key) pCurDef->sw_hikey = parseKey(value);
1053          else if ("sw_last"  == key) pCurDef->sw_last = ToInt(value) + note_offset + 12 * octave_offset;          else if ("sw_last"  == key) pCurDef->sw_last = parseKey(value);
1054          else if ("sw_down"  == key) pCurDef->sw_down = ToInt(value) + note_offset + 12 * octave_offset;          else if ("sw_down"  == key) pCurDef->sw_down = parseKey(value);
1055          else if ("sw_up"    == key) pCurDef->sw_up = ToInt(value) + note_offset + 12 * octave_offset;          else if ("sw_up"    == key) pCurDef->sw_up = parseKey(value);
1056          else if ("sw_previous" == key) pCurDef->sw_previous = ToInt(value) + note_offset + 12 * octave_offset;          else if ("sw_previous" == key) pCurDef->sw_previous = parseKey(value);
1057          else if ("sw_vel" == key)          else if ("sw_vel" == key)
1058          {          {
1059              if (value == "current") pCurDef->sw_vel = VEL_CURRENT;              if (value == "current") pCurDef->sw_vel = VEL_CURRENT;
# Line 927  namespace sfz Line 1067  namespace sfz
1067              else if (value == "legato")  pCurDef->trigger = TRIGGER_LEGATO;              else if (value == "legato")  pCurDef->trigger = TRIGGER_LEGATO;
1068          }          }
1069          else if ("group"  == key) pCurDef->group = ToInt(value);          else if ("group"  == key) pCurDef->group = ToInt(value);
1070          else if ("off_by" == key) pCurDef->off_by = ToInt(value);          else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);
1071          else if ("off_mode" == key)          else if ("off_mode" == key || "offmode" == key)
1072          {          {
1073              if (value == "fast")  _current_group->off_mode = OFF_FAST;              if (value == "fast")  _current_group->off_mode = OFF_FAST;
1074              else if (value == "normal") _current_group->off_mode = OFF_NORMAL;              else if (value == "normal") _current_group->off_mode = OFF_NORMAL;
1075          }          }
1076    
1077          // sample player          // sample player
1078          else if ("count" == key) pCurDef->count = ToInt(value);          else if ("count" == key) { pCurDef->count = ToInt(value); pCurDef->loop_mode = ONE_SHOT; }
1079          else if ("delay" == key) pCurDef->delay = ToFloat(value);          else if ("delay" == key) pCurDef->delay = ToFloat(value);
1080          else if ("delay_random"   == key) pCurDef->delay_random = ToFloat(value);          else if ("delay_random"   == key) pCurDef->delay_random = ToFloat(value);
1081          else if ("delay_beats"    == key) pCurDef->delay_beats = ToInt(value);          else if ("delay_beats"    == key) pCurDef->delay_beats = ToInt(value);
# Line 944  namespace sfz Line 1084  namespace sfz
1084          else if ("end"            == key) pCurDef->end = ToInt(value);          else if ("end"            == key) pCurDef->end = ToInt(value);
1085          else if ("loop_crossfade" == key) pCurDef->loop_crossfade = ToFloat(value);          else if ("loop_crossfade" == key) pCurDef->loop_crossfade = ToFloat(value);
1086          else if ("offset_random"  == key) pCurDef->offset_random = ToInt(value);          else if ("offset_random"  == key) pCurDef->offset_random = ToInt(value);
1087          else if ("loop_mode" == key)          else if ("loop_mode" == key || "loopmode" == key)
1088          {          {
1089              if (value == "no_loop") pCurDef->loop_mode = NO_LOOP;              if (value == "no_loop") pCurDef->loop_mode = NO_LOOP;
1090              else if (value == "one_shot") pCurDef->loop_mode = ONE_SHOT;              else if (value == "one_shot") pCurDef->loop_mode = ONE_SHOT;
1091              else if (value == "loop_continous") pCurDef->loop_mode = LOOP_CONTINOUS;              else if (value == "loop_continuous") pCurDef->loop_mode = LOOP_CONTINUOUS;
1092              else if (value == "loop_sustain") pCurDef->loop_mode = LOOP_SUSTAIN;              else if (value == "loop_sustain") pCurDef->loop_mode = LOOP_SUSTAIN;
1093          }          }
1094          else if ("loop_start" == key) pCurDef->loop_start = ToInt(value);          else if ("loop_start" == key) pCurDef->loop_start = ToInt(value);
1095            else if ("loopstart" == key) pCurDef->loop_start = ToInt(value); // nonstandard
1096          else if ("loop_end" == key) pCurDef->loop_end = ToInt(value);          else if ("loop_end" == key) pCurDef->loop_end = ToInt(value);
1097            else if ("loopend" == key) pCurDef->loop_end = ToInt(value); // nonstandard
1098          else if ("sync_beats" == key) pCurDef->sync_beats = ToInt(value);          else if ("sync_beats" == key) pCurDef->sync_beats = ToInt(value);
1099          else if ("sync_offset" == key) pCurDef->sync_offset = ToInt(value);          else if ("sync_offset" == key) pCurDef->sync_offset = ToInt(value);
1100    
# Line 962  namespace sfz Line 1104  namespace sfz
1104          else if ("width"    == key) pCurDef->width = ToFloat(value);          else if ("width"    == key) pCurDef->width = ToFloat(value);
1105          else if ("position" == key) pCurDef->position = ToFloat(value);          else if ("position" == key) pCurDef->position = ToFloat(value);
1106          else if ("amp_keytrack"  == key) pCurDef->amp_keytrack = ToFloat(value);          else if ("amp_keytrack"  == key) pCurDef->amp_keytrack = ToFloat(value);
1107          else if ("amp_keycenter" == key) pCurDef->amp_keycenter = ToInt(value) + note_offset + 12 * octave_offset;          else if ("amp_keycenter" == key) pCurDef->amp_keycenter = parseKey(value);
1108          else if ("amp_veltrack"  == key) pCurDef->amp_veltrack = ToFloat(value);          else if ("amp_veltrack"  == key) pCurDef->amp_veltrack = ToFloat(value);
1109          else if ("amp_random"  == key) pCurDef->amp_random = ToFloat(value);          else if ("amp_random"  == key) pCurDef->amp_random = ToFloat(value);
1110          else if ("rt_decay"    == key) pCurDef->rt_decay = ToFloat(value);          else if ("rt_decay"    == key) pCurDef->rt_decay = ToFloat(value);
1111          else if ("xfin_lokey"  == key) pCurDef->xfin_lokey = ToInt(value) + note_offset + 12 * octave_offset;          else if ("xfin_lokey"  == key) pCurDef->xfin_lokey = parseKey(value);
1112          else if ("xfin_hikey"  == key) pCurDef->xfin_hikey = ToInt(value) + note_offset + 12 * octave_offset;          else if ("xfin_hikey"  == key) pCurDef->xfin_hikey = parseKey(value);
1113          else if ("xfout_lokey" == key) pCurDef->xfout_lokey = ToInt(value) + note_offset + 12 * octave_offset;          else if ("xfout_lokey" == key) pCurDef->xfout_lokey = parseKey(value);
1114          else if ("xfout_hikey" == key) pCurDef->xfout_hikey = ToInt(value) + note_offset + 12 * octave_offset;          else if ("xfout_hikey" == key) pCurDef->xfout_hikey = parseKey(value);
1115          else if ("xf_keycurve" == key)          else if ("xf_keycurve" == key)
1116          {          {
1117              if (value == "gain") pCurDef->xf_keycurve = GAIN;              if (value == "gain") pCurDef->xf_keycurve = GAIN;
# Line 993  namespace sfz Line 1135  namespace sfz
1135          // pitch          // pitch
1136          else if ("transpose" == key) pCurDef->transpose = ToInt(value);          else if ("transpose" == key) pCurDef->transpose = ToInt(value);
1137          else if ("tune" == key) pCurDef->tune = ToInt(value);          else if ("tune" == key) pCurDef->tune = ToInt(value);
1138          else if ("pitch_keycenter" == key) pCurDef->pitch_keycenter = ToInt(value) + note_offset + 12 * octave_offset;          else if ("pitch_keycenter" == key) pCurDef->pitch_keycenter = parseKey(value);
1139          else if ("pitch_keytrack" == key) pCurDef->pitch_keytrack = ToInt(value);          else if ("pitch_keytrack" == key) pCurDef->pitch_keytrack = ToInt(value);
1140          else if ("pitch_veltrack" == key) pCurDef->pitch_veltrack = ToInt(value);          else if ("pitch_veltrack" == key) pCurDef->pitch_veltrack = ToInt(value);
1141          else if ("pitch_random" == key) pCurDef->pitch_random = ToInt(value);          else if ("pitch_random" == key) pCurDef->pitch_random = ToInt(value);
1142          else if ("bend_up" == key) pCurDef->bend_up = ToInt(value);          else if ("bend_up" == key || "bendup" == key) pCurDef->bend_up = ToInt(value);
1143          else if ("bend_down" == key) pCurDef->bend_down = ToInt(value);          else if ("bend_down" == key || "benddown" == key) pCurDef->bend_down = ToInt(value);
1144          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);
1145    
1146          // filter          // filter
1147          else if ("fil_type" == key)          else if ("fil_type" == key || "filtype" == key)
1148          {          {
1149              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;
1150              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;
# Line 1046  namespace sfz Line 1188  namespace sfz
1188          else if ("resonance2" == key) pCurDef->resonance2 = ToFloat(value);          else if ("resonance2" == key) pCurDef->resonance2 = ToFloat(value);
1189          else if ("fil_keytrack"   == key) pCurDef->fil_keytrack = ToInt(value);          else if ("fil_keytrack"   == key) pCurDef->fil_keytrack = ToInt(value);
1190          else if ("fil2_keytrack"  == key) pCurDef->fil2_keytrack = ToInt(value);          else if ("fil2_keytrack"  == key) pCurDef->fil2_keytrack = ToInt(value);
1191          else if ("fil_keycenter"  == key) pCurDef->fil_keycenter = ToInt(value) + note_offset + 12 * octave_offset;          else if ("fil_keycenter"  == key) pCurDef->fil_keycenter = parseKey(value);
1192          else if ("fil2_keycenter" == key) pCurDef->fil2_keycenter = ToInt(value) + note_offset + 12 * octave_offset;          else if ("fil2_keycenter" == key) pCurDef->fil2_keycenter = parseKey(value);
1193          else if ("fil_veltrack"   == key) pCurDef->fil_veltrack = ToInt(value);          else if ("fil_veltrack"   == key) pCurDef->fil_veltrack = ToInt(value);
1194          else if ("fil2_veltrack"  == key) pCurDef->fil2_veltrack = ToInt(value);          else if ("fil2_veltrack"  == key) pCurDef->fil2_veltrack = ToInt(value);
1195          else if ("fil_random"     == key) pCurDef->fil_random = ToInt(value);          else if ("fil_random"     == key) pCurDef->fil_random = ToInt(value);
# Line 1070  namespace sfz Line 1212  namespace sfz
1212          else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);          else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);
1213          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);
1214    
1215          //fixme: parse amp_velcurve_N          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {
1216                pCurDef->amp_velcurve.set(x, ToFloat(value));
1217            }
1218    
1219          // CCs          // CCs
1220          else if (key.find("cc") != std::string::npos)          else if (key.find("cc") != std::string::npos)
# Line 1080  namespace sfz Line 1224  namespace sfz
1224              int num_cc = ToInt(key.substr(delimiter_index + 2));              int num_cc = ToInt(key.substr(delimiter_index + 2));
1225    
1226              // input controls              // input controls
1227              if ("lo" == key_cc) pCurDef->locc[num_cc] = ToInt(value);              if ("lo" == key_cc) pCurDef->locc.set(num_cc, ToInt(value));
1228              else if ("hi" == key_cc) pCurDef->hicc[num_cc] = ToInt(value);              else if ("hi" == key_cc) pCurDef->hicc.set(num_cc, ToInt(value));
1229              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));
1230              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));
1231              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));
1232              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));
1233              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));
1234              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));
1235    
1236              // sample player              // sample player
1237              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));
1238              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));
1239              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));
1240    
1241              // amplifier              // amplifier
1242              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));
1243              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));
1244              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));
1245              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));
1246              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));
1247    
1248              // filter              // filter
1249              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));
1250              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));
1251              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));
1252              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));
1253              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));
1254              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));
1255              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));
1256              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));
1257              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));
1258              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));
1259              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));
1260              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));
1261              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));
1262              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));
1263              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));
1264              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));
1265    
1266              // per voice equalizer              // per voice equalizer
1267              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));
1268              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));
1269              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));
1270              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));
1271              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));
1272              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));
1273              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));
1274              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));
1275              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));
1276              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1277          } else {          }
1278            // v2 envelope generators
1279            else if (sscanf(key.c_str(), "eg%d%n", &x, &y)) {
1280                const char* s = key.c_str() + y;
1281                if (sscanf(s, "_time%d", &y)) egnode(x, y).time = ToFloat(value);
1282                else if (sscanf(s, "_level%d", &y)) egnode(x, y).level = ToFloat(value);
1283                else if (sscanf(s, "_shape%d", &y)) egnode(x, y).shape = ToFloat(value);
1284                else if (sscanf(s, "_curve%d", &y)) egnode(x, y).curve = ToFloat(value);
1285                else if (strcmp(s, "_sustain") == 0) eg(x).sustain = ToInt(value);
1286                else if (strcmp(s, "_loop") == 0) eg(x).loop = ToInt(value);
1287                else if (strcmp(s, "_loop_count") == 0) eg(x).loop_count = ToInt(value);
1288                else if (strcmp(s, "_amplitude") == 0) eg(x).amplitude = ToFloat(value);
1289                else if (strcmp(s, "_cutoff") == 0) eg(x).cutoff = ToFloat(value);
1290                else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1291            }
1292    
1293            // v1 envelope generators
1294            else if ("ampeg_delay"   == key) pCurDef->ampeg_delay = ToFloat(value);
1295            else if ("ampeg_start"   == key) pCurDef->ampeg_start = ToFloat(value);
1296            else if ("ampeg_attack"   == key) pCurDef->ampeg_attack = ToFloat(value);
1297            else if ("ampeg_hold"   == key) pCurDef->ampeg_hold = ToFloat(value);
1298            else if ("ampeg_decay"   == key) pCurDef->ampeg_decay = ToFloat(value);
1299            else if ("ampeg_sustain"   == key) pCurDef->ampeg_sustain = ToFloat(value);
1300            else if ("ampeg_release"   == key) pCurDef->ampeg_release = ToFloat(value);
1301            else if ("fileg_delay"   == key) pCurDef->fileg_delay = ToFloat(value);
1302            else if ("fileg_start"   == key) pCurDef->fileg_start = ToFloat(value);
1303            else if ("fileg_attack"   == key) pCurDef->fileg_attack = ToFloat(value);
1304            else if ("fileg_hold"   == key) pCurDef->fileg_hold = ToFloat(value);
1305            else if ("fileg_decay"   == key) pCurDef->fileg_decay = ToFloat(value);
1306            else if ("fileg_sustain"   == key) pCurDef->fileg_sustain = ToFloat(value);
1307            else if ("fileg_release"   == key) pCurDef->fileg_release = ToFloat(value);
1308            else if ("pitcheg_delay"   == key) pCurDef->pitcheg_delay = ToFloat(value);
1309            else if ("pitcheg_start"   == key) pCurDef->pitcheg_start = ToFloat(value);
1310            else if ("pitcheg_attack"   == key) pCurDef->pitcheg_attack = ToFloat(value);
1311            else if ("pitcheg_hold"   == key) pCurDef->pitcheg_hold = ToFloat(value);
1312            else if ("pitcheg_decay"   == key) pCurDef->pitcheg_decay = ToFloat(value);
1313            else if ("pitcheg_sustain"   == key) pCurDef->pitcheg_sustain = ToFloat(value);
1314            else if ("pitcheg_release"   == key) pCurDef->pitcheg_release = ToFloat(value);
1315    
1316            // v1 LFO
1317            else if ("amplfo_delay" == key) pCurDef->amplfo_delay = ToFloat(value);
1318            else if ("amplfo_fade" == key) pCurDef->amplfo_fade = ToFloat(value);
1319            else if ("amplfo_freq" == key) pCurDef->amplfo_freq = ToFloat(value);
1320            else if ("amplfo_depth" == key) pCurDef->amplfo_depth = ToFloat(value);
1321            else if ("fillfo_delay" == key) pCurDef->fillfo_delay = ToFloat(value);
1322            else if ("fillfo_fade" == key) pCurDef->fillfo_fade = ToFloat(value);
1323            else if ("fillfo_freq" == key) pCurDef->fillfo_freq = ToFloat(value);
1324            else if ("fillfo_depth" == key) pCurDef->fillfo_depth = ToFloat(value);
1325            else if ("pitchlfo_delay" == key) pCurDef->pitchlfo_delay = ToFloat(value);
1326            else if ("pitchlfo_fade" == key) pCurDef->pitchlfo_fade = ToFloat(value);
1327            else if ("pitchlfo_freq" == key) pCurDef->pitchlfo_freq = ToFloat(value);
1328            else if ("pitchlfo_depth" == key) pCurDef->pitchlfo_depth = ToInt(value);
1329    
1330            else {
1331              std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1332          }          }
1333      }      }
1334    
1335        int File::parseKey(const std::string& s) {
1336            int i;
1337            std::istringstream iss(s);
1338            if (isdigit(iss.peek())) {
1339                iss >> i;
1340            } else {
1341                switch (tolower(iss.get())) {
1342                case 'c': i = 0; break;
1343                case 'd': i = 2; break;
1344                case 'e': i = 4; break;
1345                case 'f': i = 5; break;
1346                case 'g': i = 7; break;
1347                case 'a': i = 9; break;
1348                case 'b': i = 11; break;
1349                default:
1350                    std::cerr << "Not a note: " << s << std::endl;
1351                    return 0;
1352                }
1353                if (iss.peek() == '#') {
1354                    i++;
1355                    iss.get();
1356                } else if (tolower(iss.peek()) == 'b') {
1357                    i--;
1358                    iss.get();
1359                }
1360                int octave;
1361                if (!(iss >> octave)) {
1362                    std::cerr << "Not a note: " << s << std::endl;
1363                    return 0;
1364                }
1365                i += (octave + 1) * 12;
1366            }
1367            return i + note_offset + 12 * octave_offset;
1368        }
1369    
1370        EGNode::EGNode() : time(0), level(0), shape(0), curve(0) {
1371        }
1372    
1373        EG::EG() :
1374            sustain(0), loop(0), loop_count(0),
1375            amplitude(0), cutoff(0) {
1376        }
1377    
1378        EG& File::eg(int x) {
1379            while (pCurDef->eg.size() <= x) {
1380                pCurDef->eg.add(EG());
1381            }
1382            return pCurDef->eg[x];
1383        }
1384    
1385        EGNode& File::egnode(int x, int y) {
1386            EG& e = eg(x);
1387            while (e.node.size() <= y) {
1388                e.node.add(EGNode());
1389            }
1390            return e.node[y];
1391        }
1392    
1393  } // !namespace sfz  } // !namespace sfz

Legend:
Removed from v.2012  
changed lines
  Added in v.2091

  ViewVC Help
Powered by ViewVC