/[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 2176 by persson, Sun May 1 15:19:38 2011 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 - 2011 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"
34  #include "../../common/global_private.h"  #include "../../common/global_private.h"
35    #include "LookupTable.h"
36    
37  namespace sfz  namespace sfz
38  {  {
39    
40      LinuxSampler::SampleFile* SampleManager::FindSample(std::string samplePath) {      Sample* SampleManager::FindSample(std::string samplePath) {
41          std::map<LinuxSampler::SampleFile*, std::set<Region*> >::iterator it = sampleMap.begin();          std::map<Sample*, std::set<Region*> >::iterator it = sampleMap.begin();
42          for (; it != sampleMap.end(); it++) {          for (; it != sampleMap.end(); it++) {
43              if (it->first->GetFile() == samplePath) return it->first;              if (it->first->GetFile() == samplePath) return it->first;
44          }          }
# Line 61  namespace sfz Line 65  namespace sfz
65      /////////////////////////////////////////////////////////////      /////////////////////////////////////////////////////////////
66      // class Definition      // class Definition
67    
68      Definition::Definition() :      Definition::Definition()
         locc(128), hicc(128), start_locc(128), start_hicc(128), stop_locc(128),  
         stop_hicc(128), on_locc(128), on_hicc(128), delay_oncc(128), delay_samples_oncc(128),  
         offset_oncc(128), amp_velcurve_(128), gain_oncc(128), xfin_locc(128), xfin_hicc(128),  
         xfout_locc(128), xfout_hicc(128), cutoff_oncc(128), cutoff2_oncc(128), cutoff_smoothcc(128),  
         cutoff2_smoothcc(128), cutoff_stepcc(128), cutoff2_stepcc(128), cutoff_curvecc(128),  
         cutoff2_curvecc(128), resonance_oncc(128), resonance2_oncc(128), resonance_smoothcc(128),  
         resonance2_smoothcc(128), resonance_stepcc(128), resonance2_stepcc(128),  
         resonance_curvecc(128), resonance2_curvecc(128), eq1_freq_oncc(128), eq2_freq_oncc(128),  
         eq3_freq_oncc(128), eq1_bw_oncc(128), eq2_bw_oncc(128), eq3_bw_oncc(128),  
         eq1_gain_oncc(128), eq2_gain_oncc(128), eq3_gain_oncc(128)  
   
69      {      {
70      }      }
71    
# Line 86  namespace sfz Line 79  namespace sfz
79      Region::Region()      Region::Region()
80      {      {
81          pSample = NULL;          pSample = NULL;
82            seq_counter = 1;
83      }      }
84    
85      Region::~Region()      Region::~Region()
# Line 93  namespace sfz Line 87  namespace sfz
87          DestroySampleIfNotUsed();          DestroySampleIfNotUsed();
88      }      }
89    
90      LinuxSampler::SampleFile* Region::GetSample(bool create)      Sample* Region::GetSample(bool create)
91      {      {
92          if(pSample == NULL && create) {          if(pSample == NULL && create) {
93              LinuxSampler::SampleFile* sf = GetInstrument()->GetSampleManager()->FindSample(sample);              Sample* sf = GetInstrument()->GetSampleManager()->FindSample(sample);
94              if (sf != NULL) pSample = sf; // Reuse already created sample              if (sf != NULL) pSample = sf; // Reuse already created sample
95              else pSample = new LinuxSampler::SampleFile(sample);              else pSample = new Sample(sample);
96              GetInstrument()->GetSampleManager()->AddSampleConsumer(pSample, this);              GetInstrument()->GetSampleManager()->AddSampleConsumer(pSample, this);
97          }          }
98          return pSample;          return pSample;
# Line 114  namespace sfz Line 108  namespace sfz
108          }          }
109      }      }
110    
111      bool      bool Region::OnKey(const Query& q) {
112      Region::OnKey(uint8_t chan, uint8_t key, uint8_t vel,          // As the region comes from a LookupTable search on the query,
113                int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          // the following parameters are not checked here: chan, key,
114                uint8_t prog, float rand, trigger_t trig, uint8_t* cc,          // vel, chanaft, polyaft, prog, sw_previous, cc. They are all
115                float timer, uint8_t seq, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)          // handled by the lookup table.
116      {          bool is_triggered(
117          // chan        (MIDI channel)              q.bend    >= lobend     &&  q.bend    <= hibend     &&
118          // key         (MIDI note)              q.bpm     >= lobpm      &&  q.bpm     <  hibpm      &&
119          // vel         (MIDI velocity)              q.rand    >= lorand     &&  q.rand    <  hirand     &&
120                q.timer   >= lotimer    &&  q.timer   <= hitimer    &&
121          // bend        (MIDI pitch bend)  
122          // bpm         (host BPM)              ( sw_last == -1 ||
123          // chanaft     (MIDI channel pressure)                ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (q.last_sw_key == sw_last) : false) ) &&
         // polyaft     (MIDI polyphonic aftertouch)  
         // prog        (MIDI program change)  
         // rand        (generated random number)  
         // trigger     (how it was triggered)  
         // cc          (all 128 CC values)  
   
         // timer       (time since previous region in the group was triggered)  
         // 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) ) &&  
124    
125              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_down == -1 ||
126                ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&                ((sw_down >= sw_lokey && (sw_hikey == -1 || sw_down <= sw_hikey)) ? (q.sw[sw_down]) : false) )  &&
127    
128              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
129                ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&                ((sw_up   >= sw_lokey && (sw_hikey == -1 || sw_up   <= sw_hikey)) ? (!q.sw[sw_up]) : true) )  &&
130    
131              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ((trigger & q.trig) != 0)
              ((trigger && trig) != 0)  
132          );          );
133    
134          if (!is_triggered)          if (!is_triggered)
135              return false;              return false;
136    
137          for (int i = 0; i < 128; ++i)          // seq_position has to be checked last, so we know that we
138          {          // increment the right counter
139              if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))          is_triggered = (seq_counter == seq_position);
140                  return false;          seq_counter = (seq_counter % seq_length) + 1;
         }  
141    
142          return true;          return is_triggered;
143      }      }
144    
145      bool      Articulation*
146      Region::OnControl(uint8_t chan, uint8_t cont, uint8_t val,      Region::GetArticulation(int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft, uint8_t* cc)
         int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,  
         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)  
147      {      {
148          // chan      (MIDI channel)          return new Articulation(); //todo: implement GetArticulation()
149          // cont      (MIDI controller)      }
         // val       (MIDI controller value)  
   
         // bend      (MIDI pitch bend)  
         // bpm       (host BPM)  
         // chanaft   (MIDI channel pressure)  
         // polyaft   (MIDI polyphonic aftertouch)  
         // prog      (MIDI program change)  
         // rand      (generated random number)  
         // trigger   (how it was triggered)  
         // cc        (all CC values)  
   
         // timer       (time since previous region in the group was triggered)  
         // 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             &&  
             ((val   >= on_locc[cont]    &&  val     <= on_hicc[cont])     ||  
              (val   >= start_locc[cont] &&  val     <= start_hicc[cont])) &&  
             bend    >= lobend           &&  bend    <= hibend             &&  
             bpm     >= lobpm            &&  bpm     <= hibpm              &&  
             chanaft >= lochanaft        &&  chanaft <= hichanaft          &&  
             polyaft >= lopolyaft        &&  polyaft <= hipolyaft          &&  
             prog    >= loprog           &&  prog    <= hiprog             &&  
             rand    >= lorand           &&  rand    <= hirand             &&  
             timer   >= lotimer          &&  timer   <= hitimer            &&  
             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) ) &&  
   
             ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||  
               ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&  
   
             ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||  
               ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&  
   
             ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&  
              ((trigger && trig) != 0)  
         );  
150    
151          if (!is_triggered)      bool Region::HasLoop() {
152              return false;          bool b = loop_mode == ::sfz::LOOP_UNSET ? pSample->GetLoops() :
153                (loop_mode == ::sfz::LOOP_CONTINUOUS || loop_mode == ::sfz::LOOP_SUSTAIN);
154            return b && GetLoopStart() && GetLoopEnd() && GetLoopEnd() > GetLoopStart();
155        }
156    
157          for (int i = 0; i < 128; ++i)      uint Region::GetLoopStart() {
158          {          return (!loop_start) ? pSample->GetLoopStart() : *loop_start;
159              if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))      }
                 return false;  
         }  
160    
161          return true;      uint Region::GetLoopEnd() {
162            return (!loop_end) ? pSample->GetLoopEnd() : *loop_end;
163      }      }
164    
165      Articulation*      uint Region::GetLoopCount() {
166      Region::GetArticulation(int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft, uint8_t* cc)          return (!count) ? 0 : *count;
     {  
         return new Articulation(); //todo: implement GetArticulation()  
167      }      }
168    
169      /////////////////////////////////////////////////////////////      /////////////////////////////////////////////////////////////
# Line 253  namespace sfz Line 173  namespace sfz
173      {      {
174          this->name = name;          this->name = name;
175          this->pSampleManager = pSampleManager ? pSampleManager : this;          this->pSampleManager = pSampleManager ? pSampleManager : this;
176            pLookupTable = 0;
177      }      }
178    
179      Instrument::~Instrument()      Instrument::~Instrument()
180      {      {
181          for(int i = 0; i < regions.size(); i++) {          for (int i = 0; i < regions.size(); i++) {
182              delete (regions[i]);              delete regions[i];
183            }
184            delete pLookupTable;
185            for (int i = 0 ; i < 128 ; i++) {
186                delete pLookupTableCC[i];
187          }          }
         regions.clear();  
188      }      }
189    
190      std::vector<Region*> Instrument::GetRegionsOnKey (      void Query::search(const Instrument* pInstrument) {
191          uint8_t chan, uint8_t key, uint8_t vel,          pRegionList = &pInstrument->pLookupTable->query(*this);
192          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          regionIndex = 0;
193          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]); }  
         }  
194    
195          return v;      void Query::search(const Instrument* pInstrument, int triggercc) {
196            pRegionList = &pInstrument->pLookupTableCC[triggercc]->query(*this);
197            regionIndex = 0;
198        }
199    
200        Region* Query::next() {
201            for ( ; regionIndex < pRegionList->size() ; regionIndex++) {
202                if ((*pRegionList)[regionIndex]->OnKey(*this)) {
203                    return (*pRegionList)[regionIndex++];
204                }
205            }
206            return 0;
207      }      }
208    
209      bool Instrument::DestroyRegion(Region* pRegion) {      bool Instrument::DestroyRegion(Region* pRegion) {
# Line 347  namespace sfz Line 273  namespace sfz
273    
274          trigger = TRIGGER_ATTACK;          trigger = TRIGGER_ATTACK;
275    
276          group.unset();          group = 0;
277          off_by.unset();          off_by = 0;
278          off_mode = OFF_FAST;          off_mode = OFF_FAST;
279    
280          // sample player          // sample player
# Line 359  namespace sfz Line 285  namespace sfz
285          end.unset();          end.unset();
286          loop_crossfade.unset();          loop_crossfade.unset();
287          offset.unset(); offset_random.unset();          offset.unset(); offset_random.unset();
288          loop_mode = NO_LOOP;          loop_mode = LOOP_UNSET;
289          loop_start.unset(); loop_end.unset();          loop_start.unset(); loop_end.unset();
290          sync_beats.unset(); sync_offset.unset();          sync_beats.unset(); sync_offset.unset();
291    
# Line 434  namespace sfz Line 360  namespace sfz
360          for (int i = 0; i < 128; ++i)          for (int i = 0; i < 128; ++i)
361          {          {
362              // input control              // input control
363              locc[i] = 0;              locc.set(i, 0);
364              hicc[i] = 127;              hicc.set(i, 127);
365              start_locc[i] = -1;              start_locc.set(i, -1);
366              start_hicc[i] = -1;              start_hicc.set(i, -1);
367              stop_locc[i] = -1;              stop_locc.set(i, -1);
368              stop_hicc[i] = -1;              stop_hicc.set(i, -1);
369              on_locc[i] = -1;              on_locc.set(i, -1);
370              on_hicc[i] = -1;              on_hicc.set(i, -1);
371    
372              // sample player              // sample player
373              delay_oncc[i].unset();              delay_oncc.set(i, optional<float>::nothing);
374              delay_samples_oncc[i].unset();              delay_samples_oncc.set(i, optional<int>::nothing);
375              offset_oncc[i].unset();              offset_oncc.set(i, optional<int>::nothing);
376    
377              // amplifier              // amplifier
378              amp_velcurve_[i] = 0; //fixme: 20 log (127^2 / i^2)              amp_velcurve.set(i, -1);
379              gain_oncc[i] = 0;              gain_oncc.set(i, 0);
380              xfin_locc[i] = 0;              xfin_locc.set(i, 0);
381              xfin_hicc[i] = 0;              xfin_hicc.set(i, 0);
382              xfout_locc[i] = 127;              xfout_locc.set(i, 127);
383              xfout_hicc[i] = 127;              xfout_hicc.set(i, 127);
384    
385              // filter              // filter
386              cutoff_oncc[i] = 0;              cutoff_oncc.set(i, 0);
387              cutoff_smoothcc[i] = 0;              cutoff_smoothcc.set(i, 0);
388              cutoff_stepcc[i] = 0;              cutoff_stepcc.set(i, 0);
389              cutoff_curvecc[i] = 0;              cutoff_curvecc.set(i, 0);
390              resonance_oncc[i] = 0;              resonance_oncc.set(i, 0);
391              resonance_smoothcc[i] = 0;              resonance_smoothcc.set(i, 0);
392              resonance_stepcc[i] = 0;              resonance_stepcc.set(i, 0);
393              resonance_curvecc[i] = 0;              resonance_curvecc.set(i, 0);
394    
395              cutoff2_oncc[i] = 0;              cutoff2_oncc.set(i, 0);
396              cutoff2_smoothcc[i] = 0;              cutoff2_smoothcc.set(i, 0);
397              cutoff2_stepcc[i] = 0;              cutoff2_stepcc.set(i, 0);
398              cutoff2_curvecc[i] = 0;              cutoff2_curvecc.set(i, 0);
399              resonance2_oncc[i] = 0;              resonance2_oncc.set(i, 0);
400              resonance2_smoothcc[i] = 0;              resonance2_smoothcc.set(i, 0);
401              resonance2_stepcc[i] = 0;              resonance2_stepcc.set(i, 0);
402              resonance2_curvecc[i] = 0;              resonance2_curvecc.set(i, 0);
403    
404              // per voice equalizer              // per voice equalizer
405              eq1_freq_oncc[i] = 0;              eq1_freq_oncc.set(i, 0);
406              eq2_freq_oncc[i] = 0;              eq2_freq_oncc.set(i, 0);
407              eq3_freq_oncc[i] = 0;              eq3_freq_oncc.set(i, 0);
408              eq1_bw_oncc[i] = 0;              eq1_bw_oncc.set(i, 0);
409              eq2_bw_oncc[i] = 0;              eq2_bw_oncc.set(i, 0);
410              eq3_bw_oncc[i] = 0;              eq3_bw_oncc.set(i, 0);
411              eq1_gain_oncc[i] = 0;              eq1_gain_oncc.set(i, 0);
412              eq2_gain_oncc[i] = 0;              eq2_gain_oncc.set(i, 0);
413              eq3_gain_oncc[i] = 0;              eq3_gain_oncc.set(i, 0);
414          }          }
415            cutoff_cc = 0;
416    
417            eg.clear();
418    
419            // deprecated
420            ampeg_delay    = 0;
421            ampeg_start    = 0; //in percentage
422            ampeg_attack   = 0;
423            ampeg_hold     = 0;
424            ampeg_decay    = 0;
425            ampeg_sustain  = 100; // in percentage
426            ampeg_release  = 0;
427    
428            ampeg_vel2delay   = 0;
429            ampeg_vel2attack  = 0;
430            ampeg_vel2hold    = 0;
431            ampeg_vel2decay   = 0;
432            ampeg_vel2sustain = 0;
433            ampeg_vel2release = 0;
434    
435            fileg_delay    = 0;
436            fileg_start    = 0; //in percentage
437            fileg_attack   = 0;
438            fileg_hold     = 0;
439            fileg_decay    = 0;
440            fileg_sustain  = 100; // in percentage
441            fileg_release  = 0;
442    
443            pitcheg_delay    = 0;
444            pitcheg_start    = 0; //in percentage
445            pitcheg_attack   = 0;
446            pitcheg_hold     = 0;
447            pitcheg_decay    = 0;
448            pitcheg_sustain  = 100; // in percentage
449            pitcheg_release  = 0;
450    
451            amplfo_delay     = 0;
452            amplfo_fade      = 0;
453            amplfo_freq      = 0;
454            amplfo_depth     = 0;
455    
456            fillfo_delay     = 0;
457            fillfo_fade      = 0;
458            fillfo_freq      = 0;
459            fillfo_depth     = 0;
460    
461            pitchlfo_delay   = 0;
462            pitchlfo_fade    = 0;
463            pitchlfo_freq    = 0;
464            pitchlfo_depth   = 0;
465      }      }
466    
467      Region*      Region*
# Line 571  namespace sfz Line 547  namespace sfz
547          region->amp_keytrack = amp_keytrack;          region->amp_keytrack = amp_keytrack;
548          region->amp_keycenter = amp_keycenter;          region->amp_keycenter = amp_keycenter;
549          region->amp_veltrack = amp_veltrack;          region->amp_veltrack = amp_veltrack;
550          region->amp_velcurve_ = amp_velcurve_;          region->amp_velcurve = amp_velcurve;
551          region->amp_random = amp_random;          region->amp_random = amp_random;
552          region->rt_decay = rt_decay;          region->rt_decay = rt_decay;
553          region->gain_oncc = gain_oncc;          region->gain_oncc = gain_oncc;
# Line 606  namespace sfz Line 582  namespace sfz
582          region->fil_type = fil_type;          region->fil_type = fil_type;
583          region->cutoff = cutoff;          region->cutoff = cutoff;
584          region->cutoff_oncc = cutoff_oncc;          region->cutoff_oncc = cutoff_oncc;
585            region->cutoff_cc = cutoff_cc;
586          region->cutoff_smoothcc = cutoff_smoothcc;          region->cutoff_smoothcc = cutoff_smoothcc;
587          region->cutoff_stepcc = cutoff_stepcc;          region->cutoff_stepcc = cutoff_stepcc;
588          region->cutoff_curvecc = cutoff_curvecc;          region->cutoff_curvecc = cutoff_curvecc;
# Line 665  namespace sfz Line 642  namespace sfz
642          region->eq2_vel2gain = eq2_vel2gain;          region->eq2_vel2gain = eq2_vel2gain;
643          region->eq3_vel2gain = eq3_vel2gain;          region->eq3_vel2gain = eq3_vel2gain;
644    
645            // envelope generator
646            region->eg = eg;
647    
648            // deprecated
649            region->ampeg_delay    = ampeg_delay;
650            region->ampeg_start    = ampeg_start;
651            region->ampeg_attack   = ampeg_attack;
652            region->ampeg_hold     = ampeg_hold;
653            region->ampeg_decay    = ampeg_decay;
654            region->ampeg_sustain  = ampeg_sustain;
655            region->ampeg_release  = ampeg_release;
656    
657            region->ampeg_vel2delay   = ampeg_vel2delay;
658            region->ampeg_vel2attack  = ampeg_vel2attack;
659            region->ampeg_vel2hold    = ampeg_vel2hold;
660            region->ampeg_vel2decay   = ampeg_vel2decay;
661            region->ampeg_vel2sustain = ampeg_vel2sustain;
662            region->ampeg_vel2release = ampeg_vel2release;
663    
664            region->fileg_delay    = fileg_delay;
665            region->fileg_start    = fileg_start;
666            region->fileg_attack   = fileg_attack;
667            region->fileg_hold     = fileg_hold;
668            region->fileg_decay    = fileg_decay;
669            region->fileg_sustain  = fileg_sustain;
670            region->fileg_release  = fileg_release;
671    
672            region->pitcheg_delay    = pitcheg_delay;
673            region->pitcheg_start    = pitcheg_start;
674            region->pitcheg_attack   = pitcheg_attack;
675            region->pitcheg_hold     = pitcheg_hold;
676            region->pitcheg_decay    = pitcheg_decay;
677            region->pitcheg_sustain  = pitcheg_sustain;
678            region->pitcheg_release  = pitcheg_release;
679    
680            region->amplfo_delay     = amplfo_delay;
681            region->amplfo_fade      = amplfo_fade;
682            region->amplfo_freq      = amplfo_freq;
683            region->amplfo_depth     = amplfo_depth;
684    
685            region->fillfo_delay     = fillfo_delay;
686            region->fillfo_fade      = fillfo_fade;
687            region->fillfo_freq      = fillfo_freq;
688            region->fillfo_depth     = fillfo_depth;
689    
690            region->pitchlfo_delay   = pitchlfo_delay;
691            region->pitchlfo_fade    = pitchlfo_fade;
692            region->pitchlfo_freq    = pitchlfo_freq;
693            region->pitchlfo_depth   = pitchlfo_depth;
694    
695          return region;          return region;
696      }      }
697    
# Line 679  namespace sfz Line 706  namespace sfz
706      {      {
707          _instrument = new Instrument(LinuxSampler::Path::getBaseName(file), pSampleManager);          _instrument = new Instrument(LinuxSampler::Path::getBaseName(file), pSampleManager);
708          _current_group = new Group();          _current_group = new Group();
709                  pCurDef = _current_group;          pCurDef = _current_group;
710          enum token_type_t { HEADER, OPCODE };          enum token_type_t { HEADER, OPCODE };
711          token_type_t token_type;          token_type_t token_type;
712          std::string token_string;          std::string token_string;
# Line 762  namespace sfz Line 789  namespace sfz
789              }              }
790          }          }
791    
792            std::set<float*> velcurves;
793          for (int i = 0; i < _instrument->regions.size(); i++) {          for (int i = 0; i < _instrument->regions.size(); i++) {
794              ::sfz::Region* pRegion = _instrument->regions[i];              ::sfz::Region* pRegion = _instrument->regions[i];
795              int low = pRegion->lokey;              int low = pRegion->lokey;
796              int high = pRegion->hikey;              int high = pRegion->hikey;
797              if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {              if (low != -1) { // lokey -1 means region doesn't play on note-on
798                  std::cerr << "Invalid key range: " << low << " - " << high << std::endl;                  // hikey -1 is the same as no limit, except that it
799              } else {                  // also enables on_locc/on_hicc
800                  for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;                  if (high == -1) high = 127;
801                    if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {
802                        std::cerr << "Invalid key range: " << low << " - " << high << std::endl;
803                    } else {
804                        for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;
805                    }
806              }              }
807    
808              // get keyswitches              // get keyswitches
809              low = pRegion->sw_lokey;              low = pRegion->sw_lokey;
810                if (low < 0) low = 0;
811              high = pRegion->sw_hikey;              high = pRegion->sw_hikey;
812              if(low == -1 && high == -1) {              if (high == -1) {
813                  // Key switches not defined, so nothing to do                  // Key switches not defined, so nothing to do
814              } else if(low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {              } else if (low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {
815                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;
816              } else {              } else {
817                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;
818              }              }
819    
820                // create velocity response curve
821    
822                // don't use copy-on-write here, instead change the actual
823                // unique buffers in memory
824                float* velcurve = const_cast<float*>(&pRegion->amp_velcurve[0]);
825                if (velcurves.insert(velcurve).second) {
826                    int prev = 0;
827                    float prevvalue = 0;
828                    for (int v = 0 ; v < 128 ; v++) {
829                        if (velcurve[v] >= 0) {
830                            float step = (velcurve[v] - prevvalue) / (v - prev);
831                            for ( ; prev < v ; prev++) {
832                                velcurve[prev] = prevvalue;
833                                prevvalue += step;
834                            }
835                        }
836                    }
837                    if (prev) {
838                        float step = (1 - prevvalue) / (127 - prev);
839                        for ( ; prev < 128 ; prev++) {
840                            velcurve[prev] = prevvalue;
841                            prevvalue += step;
842                        }
843                    } else {
844                        // default curve
845                        for (int v = 0 ; v < 128 ; v++) {
846                            velcurve[v] = v * v / (127.0 * 127.0);
847                        }
848                    }
849    
850                    // apply amp_veltrack
851                    float offset = -pRegion->amp_veltrack;
852                    if (offset <= 0) offset += 100;
853                    for (int v = 0 ; v < 128 ; v++) {
854                        velcurve[v] = (offset + pRegion->amp_veltrack * velcurve[v]) / 100;
855                    }
856                }
857            }
858    
859            _instrument->pLookupTable = new LookupTable(_instrument);
860    
861            // create separate lookup tables for controller triggered
862            // regions, one for each CC
863            for (int i = 0 ; i < 128 ; i++) {
864                _instrument->pLookupTableCC[i] = new LookupTable(_instrument, i);
865          }          }
866      }      }
867    
# Line 804  namespace sfz Line 884  namespace sfz
884          {          {
885              _current_section = GROUP;              _current_section = GROUP;
886              _current_group->Reset();              _current_group->Reset();
887                          pCurDef = _current_group;              pCurDef = _current_group;
888          }          }
889          else if (token == "<region>")          else if (token == "<region>")
890          {          {
891              _current_section = REGION;              _current_section = REGION;
892              _current_region = _current_group->RegionFactory();              _current_region = _current_group->RegionFactory();
893                          pCurDef = _current_region;              pCurDef = _current_region;
894              _instrument->regions.push_back(_current_region);              _instrument->regions.push_back(_current_region);
895                          _current_region->SetInstrument(_instrument);              _current_region->SetInstrument(_instrument);
896          }          }
897          else if (token == "<control>")          else if (token == "<control>")
898          {          {
# Line 837  namespace sfz Line 917  namespace sfz
917          std::string::size_type delimiter_index = token.find('=');          std::string::size_type delimiter_index = token.find('=');
918          std::string key = token.substr(0, delimiter_index);          std::string key = token.substr(0, delimiter_index);
919          std::string value = token.substr(delimiter_index + 1);          std::string value = token.substr(delimiter_index + 1);
920            int x, y;
921    
922          // sample definition          // sample definition
923          if ("sample" == key)          if ("sample" == key)
# Line 883  namespace sfz Line 964  namespace sfz
964          // input controls          // input controls
965          else if ("lochan" == key) pCurDef->lochan = ToInt(value);          else if ("lochan" == key) pCurDef->lochan = ToInt(value);
966          else if ("hichan" == key) pCurDef->hichan = ToInt(value);          else if ("hichan" == key) pCurDef->hichan = ToInt(value);
967          else if ("lokey"  == key) pCurDef->lokey  = ToInt(value) + note_offset + 12 * octave_offset;          else if ("lokey"  == key) pCurDef->lokey  = parseKey(value);
968          else if ("hikey"  == key) pCurDef->hikey  = ToInt(value) + note_offset + 12 * octave_offset;          else if ("hikey"  == key) pCurDef->hikey  = parseKey(value);
969          else if ("key" == key)          else if ("key" == key)
970          {          {
971              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;  
972          }          }
973          else if ("lovel"  == key) pCurDef->lovel = ToInt(value);          else if ("lovel"  == key) pCurDef->lovel = ToInt(value);
974          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);
975          else if ("lobend" == key) pCurDef->lobend = ToInt(value);          else if ("lobend" == key) pCurDef->lobend = ToInt(value);
976          else if ("hibend" == key) pCurDef->hibend = ToInt(value);          else if ("hibend" == key) pCurDef->hibend = ToInt(value);
977          else if ("lobpm"  == key) pCurDef->lobpm = ToInt(value);          else if ("lobpm"  == key) pCurDef->lobpm = ToFloat(value);
978          else if ("hibpm"  == key) pCurDef->hibpm = ToInt(value);          else if ("hibpm"  == key) pCurDef->hibpm = ToFloat(value);
979          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);
980          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);
981          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);
# Line 908  namespace sfz Line 988  namespace sfz
988          else if ("hitimer" == key) pCurDef->hitimer = ToFloat(value);          else if ("hitimer" == key) pCurDef->hitimer = ToFloat(value);
989          else if ("seq_length"   == key) pCurDef->seq_length = ToInt(value);          else if ("seq_length"   == key) pCurDef->seq_length = ToInt(value);
990          else if ("seq_position" == key) pCurDef->seq_position = ToInt(value);          else if ("seq_position" == key) pCurDef->seq_position = ToInt(value);
991          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);
992          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);
993          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);
994          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);
995          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);
996          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);
997          else if ("sw_vel" == key)          else if ("sw_vel" == key)
998          {          {
999              if (value == "current") pCurDef->sw_vel = VEL_CURRENT;              if (value == "current") pCurDef->sw_vel = VEL_CURRENT;
# Line 927  namespace sfz Line 1007  namespace sfz
1007              else if (value == "legato")  pCurDef->trigger = TRIGGER_LEGATO;              else if (value == "legato")  pCurDef->trigger = TRIGGER_LEGATO;
1008          }          }
1009          else if ("group"  == key) pCurDef->group = ToInt(value);          else if ("group"  == key) pCurDef->group = ToInt(value);
1010          else if ("off_by" == key) pCurDef->off_by = ToInt(value);          else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);
1011          else if ("off_mode" == key)          else if ("off_mode" == key || "offmode" == key)
1012          {          {
1013              if (value == "fast")  _current_group->off_mode = OFF_FAST;              if (value == "fast")  pCurDef->off_mode = OFF_FAST;
1014              else if (value == "normal") _current_group->off_mode = OFF_NORMAL;              else if (value == "normal") pCurDef->off_mode = OFF_NORMAL;
1015          }          }
1016    
1017          // sample player          // sample player
1018          else if ("count" == key) pCurDef->count = ToInt(value);          else if ("count" == key) { pCurDef->count = ToInt(value); pCurDef->loop_mode = ONE_SHOT; }
1019          else if ("delay" == key) pCurDef->delay = ToFloat(value);          else if ("delay" == key) pCurDef->delay = ToFloat(value);
1020          else if ("delay_random"   == key) pCurDef->delay_random = ToFloat(value);          else if ("delay_random"   == key) pCurDef->delay_random = ToFloat(value);
1021          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 1024  namespace sfz
1024          else if ("end"            == key) pCurDef->end = ToInt(value);          else if ("end"            == key) pCurDef->end = ToInt(value);
1025          else if ("loop_crossfade" == key) pCurDef->loop_crossfade = ToFloat(value);          else if ("loop_crossfade" == key) pCurDef->loop_crossfade = ToFloat(value);
1026          else if ("offset_random"  == key) pCurDef->offset_random = ToInt(value);          else if ("offset_random"  == key) pCurDef->offset_random = ToInt(value);
1027          else if ("loop_mode" == key)          else if ("loop_mode" == key || "loopmode" == key)
1028          {          {
1029              if (value == "no_loop") pCurDef->loop_mode = NO_LOOP;              if (value == "no_loop") pCurDef->loop_mode = NO_LOOP;
1030              else if (value == "one_shot") pCurDef->loop_mode = ONE_SHOT;              else if (value == "one_shot") pCurDef->loop_mode = ONE_SHOT;
1031              else if (value == "loop_continous") pCurDef->loop_mode = LOOP_CONTINOUS;              else if (value == "loop_continuous") pCurDef->loop_mode = LOOP_CONTINUOUS;
1032              else if (value == "loop_sustain") pCurDef->loop_mode = LOOP_SUSTAIN;              else if (value == "loop_sustain") pCurDef->loop_mode = LOOP_SUSTAIN;
1033          }          }
1034          else if ("loop_start" == key) pCurDef->loop_start = ToInt(value);          else if ("loop_start" == key) pCurDef->loop_start = ToInt(value);
1035            else if ("loopstart" == key) pCurDef->loop_start = ToInt(value); // nonstandard
1036          else if ("loop_end" == key) pCurDef->loop_end = ToInt(value);          else if ("loop_end" == key) pCurDef->loop_end = ToInt(value);
1037            else if ("loopend" == key) pCurDef->loop_end = ToInt(value); // nonstandard
1038          else if ("sync_beats" == key) pCurDef->sync_beats = ToInt(value);          else if ("sync_beats" == key) pCurDef->sync_beats = ToInt(value);
1039          else if ("sync_offset" == key) pCurDef->sync_offset = ToInt(value);          else if ("sync_offset" == key) pCurDef->sync_offset = ToInt(value);
1040    
# Line 962  namespace sfz Line 1044  namespace sfz
1044          else if ("width"    == key) pCurDef->width = ToFloat(value);          else if ("width"    == key) pCurDef->width = ToFloat(value);
1045          else if ("position" == key) pCurDef->position = ToFloat(value);          else if ("position" == key) pCurDef->position = ToFloat(value);
1046          else if ("amp_keytrack"  == key) pCurDef->amp_keytrack = ToFloat(value);          else if ("amp_keytrack"  == key) pCurDef->amp_keytrack = ToFloat(value);
1047          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);
1048          else if ("amp_veltrack"  == key) pCurDef->amp_veltrack = ToFloat(value);          else if ("amp_veltrack"  == key) pCurDef->amp_veltrack = ToFloat(value);
1049          else if ("amp_random"  == key) pCurDef->amp_random = ToFloat(value);          else if ("amp_random"  == key) pCurDef->amp_random = ToFloat(value);
1050          else if ("rt_decay"    == key) pCurDef->rt_decay = ToFloat(value);          else if ("rt_decay"    == key) pCurDef->rt_decay = ToFloat(value);
1051          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);
1052          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);
1053          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);
1054          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);
1055          else if ("xf_keycurve" == key)          else if ("xf_keycurve" == key)
1056          {          {
1057              if (value == "gain") pCurDef->xf_keycurve = GAIN;              if (value == "gain") pCurDef->xf_keycurve = GAIN;
# Line 993  namespace sfz Line 1075  namespace sfz
1075          // pitch          // pitch
1076          else if ("transpose" == key) pCurDef->transpose = ToInt(value);          else if ("transpose" == key) pCurDef->transpose = ToInt(value);
1077          else if ("tune" == key) pCurDef->tune = ToInt(value);          else if ("tune" == key) pCurDef->tune = ToInt(value);
1078          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);
1079          else if ("pitch_keytrack" == key) pCurDef->pitch_keytrack = ToInt(value);          else if ("pitch_keytrack" == key) pCurDef->pitch_keytrack = ToInt(value);
1080          else if ("pitch_veltrack" == key) pCurDef->pitch_veltrack = ToInt(value);          else if ("pitch_veltrack" == key) pCurDef->pitch_veltrack = ToInt(value);
1081          else if ("pitch_random" == key) pCurDef->pitch_random = ToInt(value);          else if ("pitch_random" == key) pCurDef->pitch_random = ToInt(value);
1082          else if ("bend_up" == key) pCurDef->bend_up = ToInt(value);          else if ("bend_up" == key || "bendup" == key) pCurDef->bend_up = ToInt(value);
1083          else if ("bend_down" == key) pCurDef->bend_down = ToInt(value);          else if ("bend_down" == key || "benddown" == key) pCurDef->bend_down = ToInt(value);
1084          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);
1085    
1086          // filter          // filter
1087          else if ("fil_type" == key)          else if ("fil_type" == key || "filtype" == key)
1088          {          {
1089              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;
1090              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 1128  namespace sfz
1128          else if ("resonance2" == key) pCurDef->resonance2 = ToFloat(value);          else if ("resonance2" == key) pCurDef->resonance2 = ToFloat(value);
1129          else if ("fil_keytrack"   == key) pCurDef->fil_keytrack = ToInt(value);          else if ("fil_keytrack"   == key) pCurDef->fil_keytrack = ToInt(value);
1130          else if ("fil2_keytrack"  == key) pCurDef->fil2_keytrack = ToInt(value);          else if ("fil2_keytrack"  == key) pCurDef->fil2_keytrack = ToInt(value);
1131          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);
1132          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);
1133          else if ("fil_veltrack"   == key) pCurDef->fil_veltrack = ToInt(value);          else if ("fil_veltrack"   == key) pCurDef->fil_veltrack = ToInt(value);
1134          else if ("fil2_veltrack"  == key) pCurDef->fil2_veltrack = ToInt(value);          else if ("fil2_veltrack"  == key) pCurDef->fil2_veltrack = ToInt(value);
1135          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 1152  namespace sfz
1152          else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);          else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);
1153          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);
1154    
1155          //fixme: parse amp_velcurve_N          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {
1156                pCurDef->amp_velcurve.set(x, ToFloat(value));
1157            }
1158    
1159          // CCs          // CCs
1160          else if (key.find("cc") != std::string::npos)          else if (key.find("cc") != std::string::npos)
# Line 1080  namespace sfz Line 1164  namespace sfz
1164              int num_cc = ToInt(key.substr(delimiter_index + 2));              int num_cc = ToInt(key.substr(delimiter_index + 2));
1165    
1166              // input controls              // input controls
1167              if ("lo" == key_cc) pCurDef->locc[num_cc] = ToInt(value);              if ("lo" == key_cc) pCurDef->locc.set(num_cc, ToInt(value));
1168              else if ("hi" == key_cc) pCurDef->hicc[num_cc] = ToInt(value);              else if ("hi" == key_cc) pCurDef->hicc.set(num_cc, ToInt(value));
1169              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));
1170              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));
1171              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));
1172              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));
1173              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));
1174              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));
1175    
1176              // sample player              // sample player
1177              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));
1178              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));
1179              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));
1180    
1181              // amplifier              // amplifier
1182              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));
1183              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));
1184              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));
1185              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));
1186              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));
1187    
1188              // filter              // filter
1189              else if ("cutoff_on"  == key_cc) pCurDef->cutoff_oncc[num_cc]  = ToInt(value);              else if ("cutoff_on"  == key_cc || "cutoff_" == key_cc) {
1190              else if ("cutoff2_on" == key_cc) pCurDef->cutoff2_oncc[num_cc] = ToInt(value);                  pCurDef->cutoff_oncc.set(num_cc, ToInt(value));
1191              else if ("cutoff_smooth"  == key_cc) pCurDef->cutoff_smoothcc[num_cc]  = ToInt(value);                  pCurDef->cutoff_cc = num_cc;
1192              else if ("cutoff2_smooth" == key_cc) pCurDef->cutoff2_smoothcc[num_cc] = ToInt(value);              } else if ("cutoff2_on" == key_cc) pCurDef->cutoff2_oncc.set(num_cc, ToInt(value));
1193              else if ("cutoff_step"  == key_cc) pCurDef->cutoff_stepcc[num_cc]  = ToInt(value);              else if ("cutoff_smooth"  == key_cc) pCurDef->cutoff_smoothcc.set(num_cc, ToInt(value));
1194              else if ("cutoff2_step" == key_cc) pCurDef->cutoff2_stepcc[num_cc] = ToInt(value);              else if ("cutoff2_smooth" == key_cc) pCurDef->cutoff2_smoothcc.set(num_cc, ToInt(value));
1195              else if ("cutoff_curve" == key_cc) pCurDef->cutoff_curvecc[num_cc] = ToInt(value);              else if ("cutoff_step"  == key_cc) pCurDef->cutoff_stepcc.set(num_cc, ToInt(value));
1196              else if ("cutoff2_curve" == key_cc) pCurDef->cutoff2_curvecc[num_cc] = ToInt(value);              else if ("cutoff2_step" == key_cc) pCurDef->cutoff2_stepcc.set(num_cc, ToInt(value));
1197              else if ("resonance_on" == key_cc) pCurDef->resonance_oncc[num_cc] = ToInt(value);              else if ("cutoff_curve" == key_cc) pCurDef->cutoff_curvecc.set(num_cc, ToInt(value));
1198              else if ("resonance2_on" == key_cc) pCurDef->resonance2_oncc[num_cc] = ToInt(value);              else if ("cutoff2_curve" == key_cc) pCurDef->cutoff2_curvecc.set(num_cc, ToInt(value));
1199              else if ("resonance_smooth" == key_cc) pCurDef->resonance_smoothcc[num_cc] = ToInt(value);              else if ("resonance_on" == key_cc) pCurDef->resonance_oncc.set(num_cc, ToInt(value));
1200              else if ("resonance2_smooth" == key_cc) pCurDef->resonance2_smoothcc[num_cc] = ToInt(value);              else if ("resonance2_on" == key_cc) pCurDef->resonance2_oncc.set(num_cc, ToInt(value));
1201              else if ("resonance_step" == key_cc) pCurDef->resonance_stepcc[num_cc] = ToInt(value);              else if ("resonance_smooth" == key_cc) pCurDef->resonance_smoothcc.set(num_cc, ToInt(value));
1202              else if ("resonance2_step" == key_cc) pCurDef->resonance2_stepcc[num_cc] = ToInt(value);              else if ("resonance2_smooth" == key_cc) pCurDef->resonance2_smoothcc.set(num_cc, ToInt(value));
1203              else if ("resonance_curve" == key_cc) pCurDef->resonance_curvecc[num_cc] = ToInt(value);              else if ("resonance_step" == key_cc) pCurDef->resonance_stepcc.set(num_cc, ToInt(value));
1204              else if ("resonance2_curve" == key_cc) pCurDef->resonance2_curvecc[num_cc] = ToInt(value);              else if ("resonance2_step" == key_cc) pCurDef->resonance2_stepcc.set(num_cc, ToInt(value));
1205                else if ("resonance_curve" == key_cc) pCurDef->resonance_curvecc.set(num_cc, ToInt(value));
1206                else if ("resonance2_curve" == key_cc) pCurDef->resonance2_curvecc.set(num_cc, ToInt(value));
1207    
1208              // per voice equalizer              // per voice equalizer
1209              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));
1210              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));
1211              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));
1212              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));
1213              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));
1214              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));
1215              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));
1216              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));
1217              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));
1218              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1219          } else {          }
1220            // v2 envelope generators
1221            else if (sscanf(key.c_str(), "eg%d%n", &x, &y)) {
1222                const char* s = key.c_str() + y;
1223                if (sscanf(s, "_time%d", &y)) egnode(x, y).time = ToFloat(value);
1224                else if (sscanf(s, "_level%d", &y)) egnode(x, y).level = ToFloat(value);
1225                else if (sscanf(s, "_shape%d", &y)) egnode(x, y).shape = ToFloat(value);
1226                else if (sscanf(s, "_curve%d", &y)) egnode(x, y).curve = ToFloat(value);
1227                else if (strcmp(s, "_sustain") == 0) eg(x).sustain = ToInt(value);
1228                else if (strcmp(s, "_loop") == 0) eg(x).loop = ToInt(value);
1229                else if (strcmp(s, "_loop_count") == 0) eg(x).loop_count = ToInt(value);
1230                else if (strcmp(s, "_amplitude") == 0) eg(x).amplitude = ToFloat(value);
1231                else if (strcmp(s, "_cutoff") == 0) eg(x).cutoff = ToFloat(value);
1232                else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1233            }
1234    
1235            // v1 envelope generators
1236            else if ("ampeg_delay"   == key) pCurDef->ampeg_delay = ToFloat(value);
1237            else if ("ampeg_start"   == key) pCurDef->ampeg_start = ToFloat(value);
1238            else if ("ampeg_attack"   == key) pCurDef->ampeg_attack = ToFloat(value);
1239            else if ("ampeg_hold"   == key) pCurDef->ampeg_hold = ToFloat(value);
1240            else if ("ampeg_decay"   == key) pCurDef->ampeg_decay = ToFloat(value);
1241            else if ("ampeg_sustain"   == key) pCurDef->ampeg_sustain = ToFloat(value);
1242            else if ("ampeg_release" == key) pCurDef->ampeg_release = ToFloat(value);
1243            else if ("ampeg_vel2delay" == key) pCurDef->ampeg_vel2delay = ToFloat(value);
1244            else if ("ampeg_vel2attack" == key) pCurDef->ampeg_vel2attack = ToFloat(value);
1245            else if ("ampeg_vel2hold" == key) pCurDef->ampeg_vel2hold = ToFloat(value);
1246            else if ("ampeg_vel2decay" == key) pCurDef->ampeg_vel2decay = ToFloat(value);
1247            else if ("ampeg_vel2sustain" == key) pCurDef->ampeg_vel2sustain = ToFloat(value);
1248            else if ("ampeg_vel2release" == key) pCurDef->ampeg_vel2release = ToFloat(value);
1249            else if ("fileg_delay"   == key) pCurDef->fileg_delay = ToFloat(value);
1250            else if ("fileg_start"   == key) pCurDef->fileg_start = ToFloat(value);
1251            else if ("fileg_attack"   == key) pCurDef->fileg_attack = ToFloat(value);
1252            else if ("fileg_hold"   == key) pCurDef->fileg_hold = ToFloat(value);
1253            else if ("fileg_decay"   == key) pCurDef->fileg_decay = ToFloat(value);
1254            else if ("fileg_sustain"   == key) pCurDef->fileg_sustain = ToFloat(value);
1255            else if ("fileg_release"   == key) pCurDef->fileg_release = ToFloat(value);
1256            else if ("pitcheg_delay"   == key) pCurDef->pitcheg_delay = ToFloat(value);
1257            else if ("pitcheg_start"   == key) pCurDef->pitcheg_start = ToFloat(value);
1258            else if ("pitcheg_attack"   == key) pCurDef->pitcheg_attack = ToFloat(value);
1259            else if ("pitcheg_hold"   == key) pCurDef->pitcheg_hold = ToFloat(value);
1260            else if ("pitcheg_decay"   == key) pCurDef->pitcheg_decay = ToFloat(value);
1261            else if ("pitcheg_sustain"   == key) pCurDef->pitcheg_sustain = ToFloat(value);
1262            else if ("pitcheg_release"   == key) pCurDef->pitcheg_release = ToFloat(value);
1263    
1264            // v1 LFO
1265            else if ("amplfo_delay" == key) pCurDef->amplfo_delay = ToFloat(value);
1266            else if ("amplfo_fade" == key) pCurDef->amplfo_fade = ToFloat(value);
1267            else if ("amplfo_freq" == key) pCurDef->amplfo_freq = ToFloat(value);
1268            else if ("amplfo_depth" == key) pCurDef->amplfo_depth = ToFloat(value);
1269            else if ("fillfo_delay" == key) pCurDef->fillfo_delay = ToFloat(value);
1270            else if ("fillfo_fade" == key) pCurDef->fillfo_fade = ToFloat(value);
1271            else if ("fillfo_freq" == key) pCurDef->fillfo_freq = ToFloat(value);
1272            else if ("fillfo_depth" == key) pCurDef->fillfo_depth = ToFloat(value);
1273            else if ("pitchlfo_delay" == key) pCurDef->pitchlfo_delay = ToFloat(value);
1274            else if ("pitchlfo_fade" == key) pCurDef->pitchlfo_fade = ToFloat(value);
1275            else if ("pitchlfo_freq" == key) pCurDef->pitchlfo_freq = ToFloat(value);
1276            else if ("pitchlfo_depth" == key) pCurDef->pitchlfo_depth = ToInt(value);
1277    
1278            else {
1279              std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1280          }          }
1281      }      }
1282    
1283        int File::parseKey(const std::string& s) {
1284            int i;
1285            std::istringstream iss(s);
1286            if (isdigit(iss.peek())) {
1287                iss >> i;
1288            } else {
1289                switch (tolower(iss.get())) {
1290                case 'c': i = 0; break;
1291                case 'd': i = 2; break;
1292                case 'e': i = 4; break;
1293                case 'f': i = 5; break;
1294                case 'g': i = 7; break;
1295                case 'a': i = 9; break;
1296                case 'b': i = 11; break;
1297                case '-': if (s == "-1") return -1;
1298                default:
1299                    std::cerr << "Not a note: " << s << std::endl;
1300                    return 0;
1301                }
1302                if (iss.peek() == '#') {
1303                    i++;
1304                    iss.get();
1305                } else if (tolower(iss.peek()) == 'b') {
1306                    i--;
1307                    iss.get();
1308                }
1309                int octave;
1310                if (!(iss >> octave)) {
1311                    std::cerr << "Not a note: " << s << std::endl;
1312                    return 0;
1313                }
1314                i += (octave + 1) * 12;
1315            }
1316            return i + note_offset + 12 * octave_offset;
1317        }
1318    
1319        EGNode::EGNode() : time(0), level(0), shape(0), curve(0) {
1320        }
1321    
1322        EG::EG() :
1323            sustain(0), loop(0), loop_count(0),
1324            amplitude(0), cutoff(0) {
1325        }
1326    
1327        EG& File::eg(int x) {
1328            while (pCurDef->eg.size() <= x) {
1329                pCurDef->eg.add(EG());
1330            }
1331            return pCurDef->eg[x];
1332        }
1333    
1334        EGNode& File::egnode(int x, int y) {
1335            EG& e = eg(x);
1336            while (e.node.size() <= y) {
1337                e.node.add(EGNode());
1338            }
1339            return e.node[y];
1340        }
1341    
1342  } // !namespace sfz  } // !namespace sfz

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

  ViewVC Help
Powered by ViewVC