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

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

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

revision 2058 by persson, Sun Feb 14 11:40:49 2010 UTC revision 2216 by iliev, Mon Jul 25 17:21:16 2011 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2008 Anders Dahnielson <anders@dahnielson.com>          *   *   Copyright (C) 2008 Anders Dahnielson <anders@dahnielson.com>          *
6   *   Copyright (C) 2009 - 2010 Anders Dahnielson and 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 32  Line 32 
32  #include "../../common/File.h"  #include "../../common/File.h"
33  #include "../../common/Path.h"  #include "../../common/Path.h"
34  #include "../../common/global_private.h"  #include "../../common/global_private.h"
35    #include "LookupTable.h"
36    
37  namespace sfz  namespace sfz
38  {  {
39    
40      Sample* SampleManager::FindSample(std::string samplePath) {      Sample* SampleManager::FindSample(std::string samplePath, int offset) {
41          std::map<Sample*, 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) {
44                    /* Because the start of the sample is cached in RAM we treat
45                     * same sample with different offset as different samples
46                     * // TODO: Ignore offset when the whole sample is cached in RAM?
47                     */
48                    int maxOffset = it->first->MaxOffset;
49                    if(it->first->Offset == offset || (it->first->Offset < maxOffset && offset < maxOffset)) {
50                        return it->first;
51                    }
52                }
53          }          }
54    
55          return NULL;          return NULL;
# Line 64  namespace sfz Line 74  namespace sfz
74      /////////////////////////////////////////////////////////////      /////////////////////////////////////////////////////////////
75      // class Definition      // class Definition
76    
77      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)  
   
78      {      {
79      }      }
80    
# Line 89  namespace sfz Line 88  namespace sfz
88      Region::Region()      Region::Region()
89      {      {
90          pSample = NULL;          pSample = NULL;
91            seq_counter = 1;
92      }      }
93    
94      Region::~Region()      Region::~Region()
# Line 99  namespace sfz Line 99  namespace sfz
99      Sample* Region::GetSample(bool create)      Sample* Region::GetSample(bool create)
100      {      {
101          if(pSample == NULL && create) {          if(pSample == NULL && create) {
102              Sample* sf = GetInstrument()->GetSampleManager()->FindSample(sample);              int i = offset ? *offset : 0;
103                Sample* sf = GetInstrument()->GetSampleManager()->FindSample(sample, i);
104              if (sf != NULL) pSample = sf; // Reuse already created sample              if (sf != NULL) pSample = sf; // Reuse already created sample
105              else pSample = new Sample(sample);              else pSample = new Sample(sample, false, i);
106              GetInstrument()->GetSampleManager()->AddSampleConsumer(pSample, this);              GetInstrument()->GetSampleManager()->AddSampleConsumer(pSample, this);
107          }          }
108          return pSample;          return pSample;
# Line 117  namespace sfz Line 118  namespace sfz
118          }          }
119      }      }
120    
121      bool      bool Region::OnKey(const Query& q) {
122      Region::OnKey(uint8_t chan, uint8_t key, uint8_t vel,          // As the region comes from a LookupTable search on the query,
123                int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          // the following parameters are not checked here: chan, key,
124                uint8_t prog, float rand, trigger_t trig, uint8_t* cc,          // vel, chanaft, polyaft, prog, sw_previous, cc. They are all
125                float timer, uint8_t seq, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)          // handled by the lookup table.
126      {          bool is_triggered(
127          // chan        (MIDI channel)              q.bend    >= lobend     &&  q.bend    <= hibend     &&
128          // key         (MIDI note)              q.bpm     >= lobpm      &&  q.bpm     <  hibpm      &&
129          // vel         (MIDI velocity)              q.rand    >= lorand     &&  q.rand    <  hirand     &&
130                q.timer   >= lotimer    &&  q.timer   <= hitimer    &&
131          // bend        (MIDI pitch bend)  
132          // bpm         (host BPM)              ( sw_last == -1 ||
133          // 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) ) &&  
134    
135              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_down == -1 ||
136                ((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) )  &&
137    
138              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
139                ((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) )  &&
140    
141              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ((trigger & q.trig) != 0)
              ((trigger & trig) != 0)  
142          );          );
143    
144          if (!is_triggered)          if (!is_triggered)
145              return false;              return false;
146    
147          for (int i = 0; i < 128; ++i)          // seq_position has to be checked last, so we know that we
148          {          // increment the right counter
149              if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))          is_triggered = (seq_counter == seq_position);
150                  return false;          seq_counter = (seq_counter % seq_length) + 1;
         }  
151    
152          return true;          return is_triggered;
     }  
   
     bool  
     Region::OnControl(uint8_t chan, uint8_t cont, uint8_t val,  
         int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,  
         uint8_t prog, float rand, trigger_t trig, uint8_t* cc,  
         float timer, uint8_t seq, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)  
     {  
         // chan      (MIDI channel)  
         // cont      (MIDI controller)  
         // val       (MIDI controller value)  
   
         // bend      (MIDI pitch bend)  
         // bpm       (host BPM)  
         // chanaft   (MIDI channel pressure)  
         // polyaft   (MIDI polyphonic aftertouch)  
         // prog      (MIDI program change)  
         // rand      (generated random number)  
         // trigger   (how it was triggered)  
         // cc        (all CC values)  
   
         // timer       (time since previous region in the group was triggered)  
         // 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)  
         );  
   
         if (!is_triggered)  
             return false;  
   
         for (int i = 0; i < 128; ++i)  
         {  
             if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))  
                 return false;  
         }  
   
         return true;  
153      }      }
154    
155      Articulation*      Articulation*
# Line 250  namespace sfz Line 159  namespace sfz
159      }      }
160    
161      bool Region::HasLoop() {      bool Region::HasLoop() {
162          bool b = loop_mode == ::sfz::LOOP_CONTINUOUS || loop_mode == ::sfz::LOOP_SUSTAIN; // TODO: ONE_SHOT mode          bool b = loop_mode == ::sfz::LOOP_UNSET ? pSample->GetLoops() :
163                (loop_mode == ::sfz::LOOP_CONTINUOUS || loop_mode == ::sfz::LOOP_SUSTAIN);
164          return b && GetLoopStart() && GetLoopEnd() && GetLoopEnd() > GetLoopStart();          return b && GetLoopStart() && GetLoopEnd() && GetLoopEnd() > GetLoopStart();
165      }      }
166    
167      uint Region::GetLoopStart() {      uint Region::GetLoopStart() {
168          return (!loop_start) ? 0 : *loop_start; // TODO: use sample loop when loop_start not defined          return (!loop_start) ? pSample->GetLoopStart() : *loop_start;
169      }      }
170    
171      uint Region::GetLoopEnd() {      uint Region::GetLoopEnd() {
172          return (!loop_end) ? 0 : *loop_end; // TODO: use sample loop when loop_end not defined          return (!loop_end) ? pSample->GetLoopEnd() : *loop_end;
173      }      }
174    
175      uint Region::GetLoopCount() {      uint Region::GetLoopCount() {
# Line 273  namespace sfz Line 183  namespace sfz
183      {      {
184          this->name = name;          this->name = name;
185          this->pSampleManager = pSampleManager ? pSampleManager : this;          this->pSampleManager = pSampleManager ? pSampleManager : this;
186            pLookupTable = 0;
187      }      }
188    
189      Instrument::~Instrument()      Instrument::~Instrument()
190      {      {
191          for(int i = 0; i < regions.size(); i++) {          for (int i = 0; i < regions.size(); i++) {
192              delete (regions[i]);              delete regions[i];
193            }
194            delete pLookupTable;
195            for (int i = 0 ; i < 128 ; i++) {
196                delete pLookupTableCC[i];
197          }          }
         regions.clear();  
198      }      }
199    
200      std::vector<Region*> Instrument::GetRegionsOnKey (      void Query::search(const Instrument* pInstrument) {
201          uint8_t chan, uint8_t key, uint8_t vel,          pRegionList = &pInstrument->pLookupTable->query(*this);
202          int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          regionIndex = 0;
203          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]); }  
         }  
204    
205          return v;      void Query::search(const Instrument* pInstrument, int triggercc) {
206            pRegionList = &pInstrument->pLookupTableCC[triggercc]->query(*this);
207            regionIndex = 0;
208        }
209    
210        Region* Query::next() {
211            for ( ; regionIndex < pRegionList->size() ; regionIndex++) {
212                if ((*pRegionList)[regionIndex]->OnKey(*this)) {
213                    return (*pRegionList)[regionIndex++];
214                }
215            }
216            return 0;
217      }      }
218    
219      bool Instrument::DestroyRegion(Region* pRegion) {      bool Instrument::DestroyRegion(Region* pRegion) {
# Line 368  namespace sfz Line 284  namespace sfz
284          trigger = TRIGGER_ATTACK;          trigger = TRIGGER_ATTACK;
285    
286          group = 0;          group = 0;
287          off_by.unset();          off_by = 0;
288          off_mode = OFF_FAST;          off_mode = OFF_FAST;
289    
290          // sample player          // sample player
# Line 379  namespace sfz Line 295  namespace sfz
295          end.unset();          end.unset();
296          loop_crossfade.unset();          loop_crossfade.unset();
297          offset.unset(); offset_random.unset();          offset.unset(); offset_random.unset();
298          loop_mode = NO_LOOP;          loop_mode = LOOP_UNSET;
299          loop_start.unset(); loop_end.unset();          loop_start.unset(); loop_end.unset();
300          sync_beats.unset(); sync_offset.unset();          sync_beats.unset(); sync_offset.unset();
301    
# Line 454  namespace sfz Line 370  namespace sfz
370          for (int i = 0; i < 128; ++i)          for (int i = 0; i < 128; ++i)
371          {          {
372              // input control              // input control
373              locc[i] = 0;              locc.set(i, 0);
374              hicc[i] = 127;              hicc.set(i, 127);
375              start_locc[i] = -1;              start_locc.set(i, -1);
376              start_hicc[i] = -1;              start_hicc.set(i, -1);
377              stop_locc[i] = -1;              stop_locc.set(i, -1);
378              stop_hicc[i] = -1;              stop_hicc.set(i, -1);
379              on_locc[i] = -1;              on_locc.set(i, -1);
380              on_hicc[i] = -1;              on_hicc.set(i, -1);
381    
382              // sample player              // sample player
383              delay_oncc[i].unset();              delay_oncc.set(i, optional<float>::nothing);
384              delay_samples_oncc[i].unset();              delay_samples_oncc.set(i, optional<int>::nothing);
385              offset_oncc[i].unset();              offset_oncc.set(i, optional<int>::nothing);
386    
387              // amplifier              // amplifier
388              amp_velcurve_[i] = 0; //fixme: 20 log (127^2 / i^2)              amp_velcurve.set(i, -1);
389              gain_oncc[i] = 0;              gain_oncc.set(i, 0);
390              xfin_locc[i] = 0;              xfin_locc.set(i, 0);
391              xfin_hicc[i] = 0;              xfin_hicc.set(i, 0);
392              xfout_locc[i] = 127;              xfout_locc.set(i, 127);
393              xfout_hicc[i] = 127;              xfout_hicc.set(i, 127);
394    
395              // filter              // filter
396              cutoff_oncc[i] = 0;              cutoff_oncc.set(i, 0);
397              cutoff_smoothcc[i] = 0;              cutoff_smoothcc.set(i, 0);
398              cutoff_stepcc[i] = 0;              cutoff_stepcc.set(i, 0);
399              cutoff_curvecc[i] = 0;              cutoff_curvecc.set(i, 0);
400              resonance_oncc[i] = 0;              resonance_oncc.set(i, 0);
401              resonance_smoothcc[i] = 0;              resonance_smoothcc.set(i, 0);
402              resonance_stepcc[i] = 0;              resonance_stepcc.set(i, 0);
403              resonance_curvecc[i] = 0;              resonance_curvecc.set(i, 0);
404    
405              cutoff2_oncc[i] = 0;              cutoff2_oncc.set(i, 0);
406              cutoff2_smoothcc[i] = 0;              cutoff2_smoothcc.set(i, 0);
407              cutoff2_stepcc[i] = 0;              cutoff2_stepcc.set(i, 0);
408              cutoff2_curvecc[i] = 0;              cutoff2_curvecc.set(i, 0);
409              resonance2_oncc[i] = 0;              resonance2_oncc.set(i, 0);
410              resonance2_smoothcc[i] = 0;              resonance2_smoothcc.set(i, 0);
411              resonance2_stepcc[i] = 0;              resonance2_stepcc.set(i, 0);
412              resonance2_curvecc[i] = 0;              resonance2_curvecc.set(i, 0);
413    
414              // per voice equalizer              // per voice equalizer
415              eq1_freq_oncc[i] = 0;              eq1_freq_oncc.set(i, 0);
416              eq2_freq_oncc[i] = 0;              eq2_freq_oncc.set(i, 0);
417              eq3_freq_oncc[i] = 0;              eq3_freq_oncc.set(i, 0);
418              eq1_bw_oncc[i] = 0;              eq1_bw_oncc.set(i, 0);
419              eq2_bw_oncc[i] = 0;              eq2_bw_oncc.set(i, 0);
420              eq3_bw_oncc[i] = 0;              eq3_bw_oncc.set(i, 0);
421              eq1_gain_oncc[i] = 0;              eq1_gain_oncc.set(i, 0);
422              eq2_gain_oncc[i] = 0;              eq2_gain_oncc.set(i, 0);
423              eq3_gain_oncc[i] = 0;              eq3_gain_oncc.set(i, 0);
424          }          }
425            cutoff_cc = 0;
426    
427          eg.clear();          eg.clear();
428    
# Line 518  namespace sfz Line 435  namespace sfz
435          ampeg_sustain  = 100; // in percentage          ampeg_sustain  = 100; // in percentage
436          ampeg_release  = 0;          ampeg_release  = 0;
437    
438            ampeg_vel2delay   = 0;
439            ampeg_vel2attack  = 0;
440            ampeg_vel2hold    = 0;
441            ampeg_vel2decay   = 0;
442            ampeg_vel2sustain = 0;
443            ampeg_vel2release = 0;
444    
445          fileg_delay    = 0;          fileg_delay    = 0;
446          fileg_start    = 0; //in percentage          fileg_start    = 0; //in percentage
447          fileg_attack   = 0;          fileg_attack   = 0;
# Line 533  namespace sfz Line 457  namespace sfz
457          pitcheg_decay    = 0;          pitcheg_decay    = 0;
458          pitcheg_sustain  = 100; // in percentage          pitcheg_sustain  = 100; // in percentage
459          pitcheg_release  = 0;          pitcheg_release  = 0;
460    
461            amplfo_delay     = 0;
462            amplfo_fade      = 0;
463            amplfo_freq      = 0;
464            amplfo_depth     = 0;
465    
466            fillfo_delay     = 0;
467            fillfo_fade      = 0;
468            fillfo_freq      = 0;
469            fillfo_depth     = 0;
470    
471            pitchlfo_delay   = 0;
472            pitchlfo_fade    = 0;
473            pitchlfo_freq    = 0;
474            pitchlfo_depth   = 0;
475      }      }
476    
477      Region*      Region*
# Line 618  namespace sfz Line 557  namespace sfz
557          region->amp_keytrack = amp_keytrack;          region->amp_keytrack = amp_keytrack;
558          region->amp_keycenter = amp_keycenter;          region->amp_keycenter = amp_keycenter;
559          region->amp_veltrack = amp_veltrack;          region->amp_veltrack = amp_veltrack;
560          region->amp_velcurve_ = amp_velcurve_;          region->amp_velcurve = amp_velcurve;
561          region->amp_random = amp_random;          region->amp_random = amp_random;
562          region->rt_decay = rt_decay;          region->rt_decay = rt_decay;
563          region->gain_oncc = gain_oncc;          region->gain_oncc = gain_oncc;
# Line 653  namespace sfz Line 592  namespace sfz
592          region->fil_type = fil_type;          region->fil_type = fil_type;
593          region->cutoff = cutoff;          region->cutoff = cutoff;
594          region->cutoff_oncc = cutoff_oncc;          region->cutoff_oncc = cutoff_oncc;
595            region->cutoff_cc = cutoff_cc;
596          region->cutoff_smoothcc = cutoff_smoothcc;          region->cutoff_smoothcc = cutoff_smoothcc;
597          region->cutoff_stepcc = cutoff_stepcc;          region->cutoff_stepcc = cutoff_stepcc;
598          region->cutoff_curvecc = cutoff_curvecc;          region->cutoff_curvecc = cutoff_curvecc;
# Line 724  namespace sfz Line 664  namespace sfz
664          region->ampeg_sustain  = ampeg_sustain;          region->ampeg_sustain  = ampeg_sustain;
665          region->ampeg_release  = ampeg_release;          region->ampeg_release  = ampeg_release;
666    
667            region->ampeg_vel2delay   = ampeg_vel2delay;
668            region->ampeg_vel2attack  = ampeg_vel2attack;
669            region->ampeg_vel2hold    = ampeg_vel2hold;
670            region->ampeg_vel2decay   = ampeg_vel2decay;
671            region->ampeg_vel2sustain = ampeg_vel2sustain;
672            region->ampeg_vel2release = ampeg_vel2release;
673    
674          region->fileg_delay    = fileg_delay;          region->fileg_delay    = fileg_delay;
675          region->fileg_start    = fileg_start;          region->fileg_start    = fileg_start;
676          region->fileg_attack   = fileg_attack;          region->fileg_attack   = fileg_attack;
# Line 740  namespace sfz Line 687  namespace sfz
687          region->pitcheg_sustain  = pitcheg_sustain;          region->pitcheg_sustain  = pitcheg_sustain;
688          region->pitcheg_release  = pitcheg_release;          region->pitcheg_release  = pitcheg_release;
689    
690            region->amplfo_delay     = amplfo_delay;
691            region->amplfo_fade      = amplfo_fade;
692            region->amplfo_freq      = amplfo_freq;
693            region->amplfo_depth     = amplfo_depth;
694    
695            region->fillfo_delay     = fillfo_delay;
696            region->fillfo_fade      = fillfo_fade;
697            region->fillfo_freq      = fillfo_freq;
698            region->fillfo_depth     = fillfo_depth;
699    
700            region->pitchlfo_delay   = pitchlfo_delay;
701            region->pitchlfo_fade    = pitchlfo_fade;
702            region->pitchlfo_freq    = pitchlfo_freq;
703            region->pitchlfo_depth   = pitchlfo_depth;
704    
705          return region;          return region;
706      }      }
707    
# Line 837  namespace sfz Line 799  namespace sfz
799              }              }
800          }          }
801    
802            std::set<float*> velcurves;
803          for (int i = 0; i < _instrument->regions.size(); i++) {          for (int i = 0; i < _instrument->regions.size(); i++) {
804              ::sfz::Region* pRegion = _instrument->regions[i];              ::sfz::Region* pRegion = _instrument->regions[i];
805              int low = pRegion->lokey;              int low = pRegion->lokey;
806              int high = pRegion->hikey;              int high = pRegion->hikey;
807              if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {              if (low != -1) { // lokey -1 means region doesn't play on note-on
808                  std::cerr << "Invalid key range: " << low << " - " << high << std::endl;                  // hikey -1 is the same as no limit, except that it
809              } else {                  // also enables on_locc/on_hicc
810                  for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;                  if (high == -1) high = 127;
811                    if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {
812                        std::cerr << "Invalid key range: " << low << " - " << high << std::endl;
813                    } else {
814                        for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;
815                    }
816              }              }
817    
818              // get keyswitches              // get keyswitches
819              low = pRegion->sw_lokey;              low = pRegion->sw_lokey;
820                if (low < 0) low = 0;
821              high = pRegion->sw_hikey;              high = pRegion->sw_hikey;
822              if(low == -1 && high == -1) {              if (high == -1) {
823                  // Key switches not defined, so nothing to do                  // Key switches not defined, so nothing to do
824              } else if(low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {              } else if (low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {
825                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;
826              } else {              } else {
827                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;
828              }              }
829    
830                // create velocity response curve
831    
832                // don't use copy-on-write here, instead change the actual
833                // unique buffers in memory
834                float* velcurve = const_cast<float*>(&pRegion->amp_velcurve[0]);
835                if (velcurves.insert(velcurve).second) {
836                    int prev = 0;
837                    float prevvalue = 0;
838                    for (int v = 0 ; v < 128 ; v++) {
839                        if (velcurve[v] >= 0) {
840                            float step = (velcurve[v] - prevvalue) / (v - prev);
841                            for ( ; prev < v ; prev++) {
842                                velcurve[prev] = prevvalue;
843                                prevvalue += step;
844                            }
845                        }
846                    }
847                    if (prev) {
848                        float step = (1 - prevvalue) / (127 - prev);
849                        for ( ; prev < 128 ; prev++) {
850                            velcurve[prev] = prevvalue;
851                            prevvalue += step;
852                        }
853                    } else {
854                        // default curve
855                        for (int v = 0 ; v < 128 ; v++) {
856                            velcurve[v] = v * v / (127.0 * 127.0);
857                        }
858                    }
859    
860                    // apply amp_veltrack
861                    float offset = -pRegion->amp_veltrack;
862                    if (offset <= 0) offset += 100;
863                    for (int v = 0 ; v < 128 ; v++) {
864                        velcurve[v] = (offset + pRegion->amp_veltrack * velcurve[v]) / 100;
865                    }
866                }
867            }
868    
869            _instrument->pLookupTable = new LookupTable(_instrument);
870    
871            // create separate lookup tables for controller triggered
872            // regions, one for each CC
873            for (int i = 0 ; i < 128 ; i++) {
874                _instrument->pLookupTableCC[i] = new LookupTable(_instrument, i);
875          }          }
876      }      }
877    
# Line 969  namespace sfz Line 984  namespace sfz
984          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);
985          else if ("lobend" == key) pCurDef->lobend = ToInt(value);          else if ("lobend" == key) pCurDef->lobend = ToInt(value);
986          else if ("hibend" == key) pCurDef->hibend = ToInt(value);          else if ("hibend" == key) pCurDef->hibend = ToInt(value);
987          else if ("lobpm"  == key) pCurDef->lobpm = ToInt(value);          else if ("lobpm"  == key) pCurDef->lobpm = ToFloat(value);
988          else if ("hibpm"  == key) pCurDef->hibpm = ToInt(value);          else if ("hibpm"  == key) pCurDef->hibpm = ToFloat(value);
989          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);
990          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);
991          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);
# Line 1005  namespace sfz Line 1020  namespace sfz
1020          else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);          else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);
1021          else if ("off_mode" == key || "offmode" == key)          else if ("off_mode" == key || "offmode" == key)
1022          {          {
1023              if (value == "fast")  _current_group->off_mode = OFF_FAST;              if (value == "fast")  pCurDef->off_mode = OFF_FAST;
1024              else if (value == "normal") _current_group->off_mode = OFF_NORMAL;              else if (value == "normal") pCurDef->off_mode = OFF_NORMAL;
1025          }          }
1026    
1027          // sample player          // sample player
# Line 1030  namespace sfz Line 1045  namespace sfz
1045          else if ("loopstart" == key) pCurDef->loop_start = ToInt(value); // nonstandard          else if ("loopstart" == key) pCurDef->loop_start = ToInt(value); // nonstandard
1046          else if ("loop_end" == key) pCurDef->loop_end = ToInt(value);          else if ("loop_end" == key) pCurDef->loop_end = ToInt(value);
1047          else if ("loopend" == key) pCurDef->loop_end = ToInt(value); // nonstandard          else if ("loopend" == key) pCurDef->loop_end = ToInt(value); // nonstandard
1048            else if ("offset" == key) pCurDef->offset = ToInt(value);
1049          else if ("sync_beats" == key) pCurDef->sync_beats = ToInt(value);          else if ("sync_beats" == key) pCurDef->sync_beats = ToInt(value);
1050          else if ("sync_offset" == key) pCurDef->sync_offset = ToInt(value);          else if ("sync_offset" == key) pCurDef->sync_offset = ToInt(value);
1051    
# Line 1079  namespace sfz Line 1095  namespace sfz
1095          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);
1096    
1097          // filter          // filter
1098          else if ("fil_type" == key)          else if ("fil_type" == key || "filtype" == key)
1099          {          {
1100              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;
1101              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;
# Line 1147  namespace sfz Line 1163  namespace sfz
1163          else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);          else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);
1164          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);
1165    
1166          //fixme: parse amp_velcurve_N          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {
1167                pCurDef->amp_velcurve.set(x, ToFloat(value));
1168            }
1169    
1170          // CCs          // CCs
1171          else if (key.find("cc") != std::string::npos)          else if (key.find("cc") != std::string::npos)
# Line 1157  namespace sfz Line 1175  namespace sfz
1175              int num_cc = ToInt(key.substr(delimiter_index + 2));              int num_cc = ToInt(key.substr(delimiter_index + 2));
1176    
1177              // input controls              // input controls
1178              if ("lo" == key_cc) pCurDef->locc[num_cc] = ToInt(value);              if ("lo" == key_cc) pCurDef->locc.set(num_cc, ToInt(value));
1179              else if ("hi" == key_cc) pCurDef->hicc[num_cc] = ToInt(value);              else if ("hi" == key_cc) pCurDef->hicc.set(num_cc, ToInt(value));
1180              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));
1181              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));
1182              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));
1183              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));
1184              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));
1185              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));
1186    
1187              // sample player              // sample player
1188              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));
1189              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));
1190              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));
1191    
1192              // amplifier              // amplifier
1193              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));
1194              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));
1195              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));
1196              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));
1197              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));
1198    
1199              // filter              // filter
1200              else if ("cutoff_on"  == key_cc) pCurDef->cutoff_oncc[num_cc]  = ToInt(value);              else if ("cutoff_on"  == key_cc || "cutoff_" == key_cc) {
1201              else if ("cutoff2_on" == key_cc) pCurDef->cutoff2_oncc[num_cc] = ToInt(value);                  pCurDef->cutoff_oncc.set(num_cc, ToInt(value));
1202              else if ("cutoff_smooth"  == key_cc) pCurDef->cutoff_smoothcc[num_cc]  = ToInt(value);                  pCurDef->cutoff_cc = num_cc;
1203              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));
1204              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));
1205              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));
1206              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));
1207              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));
1208              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));
1209              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));
1210              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));
1211              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));
1212              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));
1213              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));
1214              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));
1215              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));
1216                else if ("resonance_curve" == key_cc) pCurDef->resonance_curvecc.set(num_cc, ToInt(value));
1217                else if ("resonance2_curve" == key_cc) pCurDef->resonance2_curvecc.set(num_cc, ToInt(value));
1218    
1219              // per voice equalizer              // per voice equalizer
1220              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));
1221              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));
1222              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));
1223              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));
1224              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));
1225              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));
1226              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));
1227              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));
1228              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));
1229              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1230          }          }
1231          // v2 envelope generators          // v2 envelope generators
# Line 1230  namespace sfz Line 1250  namespace sfz
1250          else if ("ampeg_hold"   == key) pCurDef->ampeg_hold = ToFloat(value);          else if ("ampeg_hold"   == key) pCurDef->ampeg_hold = ToFloat(value);
1251          else if ("ampeg_decay"   == key) pCurDef->ampeg_decay = ToFloat(value);          else if ("ampeg_decay"   == key) pCurDef->ampeg_decay = ToFloat(value);
1252          else if ("ampeg_sustain"   == key) pCurDef->ampeg_sustain = ToFloat(value);          else if ("ampeg_sustain"   == key) pCurDef->ampeg_sustain = ToFloat(value);
1253          else if ("ampeg_release"   == key) pCurDef->ampeg_release = ToFloat(value);          else if ("ampeg_release" == key) pCurDef->ampeg_release = ToFloat(value);
1254            else if ("ampeg_vel2delay" == key) pCurDef->ampeg_vel2delay = ToFloat(value);
1255            else if ("ampeg_vel2attack" == key) pCurDef->ampeg_vel2attack = ToFloat(value);
1256            else if ("ampeg_vel2hold" == key) pCurDef->ampeg_vel2hold = ToFloat(value);
1257            else if ("ampeg_vel2decay" == key) pCurDef->ampeg_vel2decay = ToFloat(value);
1258            else if ("ampeg_vel2sustain" == key) pCurDef->ampeg_vel2sustain = ToFloat(value);
1259            else if ("ampeg_vel2release" == key) pCurDef->ampeg_vel2release = ToFloat(value);
1260          else if ("fileg_delay"   == key) pCurDef->fileg_delay = ToFloat(value);          else if ("fileg_delay"   == key) pCurDef->fileg_delay = ToFloat(value);
1261          else if ("fileg_start"   == key) pCurDef->fileg_start = ToFloat(value);          else if ("fileg_start"   == key) pCurDef->fileg_start = ToFloat(value);
1262          else if ("fileg_attack"   == key) pCurDef->fileg_attack = ToFloat(value);          else if ("fileg_attack"   == key) pCurDef->fileg_attack = ToFloat(value);
# Line 1245  namespace sfz Line 1271  namespace sfz
1271          else if ("pitcheg_decay"   == key) pCurDef->pitcheg_decay = ToFloat(value);          else if ("pitcheg_decay"   == key) pCurDef->pitcheg_decay = ToFloat(value);
1272          else if ("pitcheg_sustain"   == key) pCurDef->pitcheg_sustain = ToFloat(value);          else if ("pitcheg_sustain"   == key) pCurDef->pitcheg_sustain = ToFloat(value);
1273          else if ("pitcheg_release"   == key) pCurDef->pitcheg_release = ToFloat(value);          else if ("pitcheg_release"   == key) pCurDef->pitcheg_release = ToFloat(value);
1274    
1275            // v1 LFO
1276            else if ("amplfo_delay" == key) pCurDef->amplfo_delay = ToFloat(value);
1277            else if ("amplfo_fade" == key) pCurDef->amplfo_fade = ToFloat(value);
1278            else if ("amplfo_freq" == key) pCurDef->amplfo_freq = ToFloat(value);
1279            else if ("amplfo_depth" == key) pCurDef->amplfo_depth = ToFloat(value);
1280            else if ("fillfo_delay" == key) pCurDef->fillfo_delay = ToFloat(value);
1281            else if ("fillfo_fade" == key) pCurDef->fillfo_fade = ToFloat(value);
1282            else if ("fillfo_freq" == key) pCurDef->fillfo_freq = ToFloat(value);
1283            else if ("fillfo_depth" == key) pCurDef->fillfo_depth = ToFloat(value);
1284            else if ("pitchlfo_delay" == key) pCurDef->pitchlfo_delay = ToFloat(value);
1285            else if ("pitchlfo_fade" == key) pCurDef->pitchlfo_fade = ToFloat(value);
1286            else if ("pitchlfo_freq" == key) pCurDef->pitchlfo_freq = ToFloat(value);
1287            else if ("pitchlfo_depth" == key) pCurDef->pitchlfo_depth = ToInt(value);
1288    
1289          else {          else {
1290              std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1291          }          }
# Line 1264  namespace sfz Line 1305  namespace sfz
1305              case 'g': i = 7; break;              case 'g': i = 7; break;
1306              case 'a': i = 9; break;              case 'a': i = 9; break;
1307              case 'b': i = 11; break;              case 'b': i = 11; break;
1308                case '-': if (s == "-1") return -1;
1309              default:              default:
1310                  std::cerr << "Not a note: " << s << std::endl;                  std::cerr << "Not a note: " << s << std::endl;
1311                  return 0;                  return 0;

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

  ViewVC Help
Powered by ViewVC