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

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

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

revision 2082 by persson, Sun Apr 11 10:20:24 2010 UTC revision 2175 by persson, Mon Apr 25 08:12:36 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  {  {
# Line 64  namespace sfz Line 65  namespace sfz
65      /////////////////////////////////////////////////////////////      /////////////////////////////////////////////////////////////
66      // class Definition      // class Definition
67    
68      Definition::Definition() :      Definition::Definition()
         locc(128), hicc(128), start_locc(128), start_hicc(128), stop_locc(128),  
         stop_hicc(128), on_locc(128), on_hicc(128), delay_oncc(128), delay_samples_oncc(128),  
         offset_oncc(128), amp_velcurve(128), gain_oncc(128), xfin_locc(128), xfin_hicc(128),  
         xfout_locc(128), xfout_hicc(128), cutoff_oncc(128), cutoff2_oncc(128), cutoff_smoothcc(128),  
         cutoff2_smoothcc(128), cutoff_stepcc(128), cutoff2_stepcc(128), cutoff_curvecc(128),  
         cutoff2_curvecc(128), resonance_oncc(128), resonance2_oncc(128), resonance_smoothcc(128),  
         resonance2_smoothcc(128), resonance_stepcc(128), resonance2_stepcc(128),  
         resonance_curvecc(128), resonance2_curvecc(128), eq1_freq_oncc(128), eq2_freq_oncc(128),  
         eq3_freq_oncc(128), eq1_bw_oncc(128), eq2_bw_oncc(128), eq3_bw_oncc(128),  
         eq1_gain_oncc(128), eq2_gain_oncc(128), eq3_gain_oncc(128)  
   
69      {      {
70      }      }
71    
# Line 118  namespace sfz Line 108  namespace sfz
108          }          }
109      }      }
110    
111      bool      bool Region::OnKey(const Query& q) {
112      Region::OnKey(uint8_t chan, uint8_t key, uint8_t vel,          // As the region comes from a LookupTable search on the query,
113                int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,          // the following parameters are not checked here: chan, key,
114                uint8_t prog, float rand, trigger_t trig, uint8_t* cc,          // vel, chanaft, polyaft, prog, sw_previous, cc. They are all
115                float timer, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)          // handled by the lookup table.
116      {          bool is_triggered(
117          // chan        (MIDI channel)              q.bend    >= lobend     &&  q.bend    <= hibend     &&
118          // key         (MIDI note)              q.bpm     >= lobpm      &&  q.bpm     <  hibpm      &&
119          // vel         (MIDI velocity)              q.rand    >= lorand     &&  q.rand    <  hirand     &&
120                q.timer   >= lotimer    &&  q.timer   <= hitimer    &&
121          // bend        (MIDI pitch bend)  
122          // bpm         (host BPM)              ( sw_last == -1 ||
123          // chanaft     (MIDI channel pressure)                ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (q.last_sw_key == sw_last) : false) ) &&
         // polyaft     (MIDI polyphonic aftertouch)  
         // prog        (MIDI program change)  
         // rand        (generated random number)  
         // trigger     (how it was triggered)  
         // cc          (all 128 CC values)  
   
         // timer       (time since previous region in the group was triggered)  
         // sw          (the state of region key switches, 128 possible values)  
         // last_sw_key (the last key pressed in the key switch range)  
         // prev_sw_key (the previous note value)  
   
         bool is_triggered (  
             chan    >= lochan     &&  chan    <= hichan     &&  
             key     >= lokey      &&  key     <= hikey      &&  
             vel     >= lovel      &&  vel     <= hivel      &&  
             bend    >= lobend     &&  bend    <= hibend     &&  
             bpm     >= lobpm      &&  bpm     <  hibpm      &&  
             chanaft >= lochanaft  &&  chanaft <= hichanaft  &&  
             polyaft >= lopolyaft  &&  polyaft <= hipolyaft  &&  
             prog    >= loprog     &&  prog    <= hiprog     &&  
             rand    >= lorand     &&  rand    <  hirand     &&  
             timer   >= lotimer    &&  timer   <= hitimer    &&  
   
             ( (sw_lokey == -1 || sw_hikey == -1 || sw_last  == -1) ||  
               ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (last_sw_key == sw_last) : true) ) &&  
124    
125              ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_down == -1 ||
126                ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&                ((sw_down >= sw_lokey && (sw_hikey == -1 || sw_down <= sw_hikey)) ? (q.sw[sw_down]) : false) )  &&
127    
128              ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||              ( sw_up   == -1 ||
129                ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&                ((sw_up   >= sw_lokey && (sw_hikey == -1 || sw_up   <= sw_hikey)) ? (!q.sw[sw_up]) : true) )  &&
130    
131              ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&              ((trigger & q.trig) != 0)
              ((trigger & trig) != 0)  
132          );          );
133    
134          if (!is_triggered)          if (!is_triggered)
135              return false;              return false;
136    
         for (int i = 0; i < 128; ++i)  
         {  
             if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))  
                 return false;  
         }  
   
137          // seq_position has to be checked last, so we know that we          // seq_position has to be checked last, so we know that we
138          // increment the right counter          // increment the right counter
139          is_triggered = (seq_counter == seq_position);          is_triggered = (seq_counter == seq_position);
# Line 184  namespace sfz Line 142  namespace sfz
142          return is_triggered;          return is_triggered;
143      }      }
144    
     bool  
     Region::OnControl(uint8_t chan, uint8_t cont, uint8_t val,  
         int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft,  
         uint8_t prog, float rand, trigger_t trig, uint8_t* cc,  
         float timer, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key)  
     {  
         // chan      (MIDI channel)  
         // cont      (MIDI controller)  
         // val       (MIDI controller value)  
   
         // bend      (MIDI pitch bend)  
         // bpm       (host BPM)  
         // chanaft   (MIDI channel pressure)  
         // polyaft   (MIDI polyphonic aftertouch)  
         // prog      (MIDI program change)  
         // rand      (generated random number)  
         // trigger   (how it was triggered)  
         // cc        (all CC values)  
   
         // timer       (time since previous region in the group was triggered)  
         // sw          (the state of region key switches, 128 possible values)  
         // last_sw_key (the last key pressed in the key switch range)  
         // prev_sw_key (the previous note value)  
   
         bool is_triggered = (  
             chan    >= lochan           &&  chan    <= hichan             &&  
             ((val   >= on_locc[cont]    &&  val     <= on_hicc[cont])     ||  
              (val   >= start_locc[cont] &&  val     <= start_hicc[cont])) &&  
             bend    >= lobend           &&  bend    <= hibend             &&  
             bpm     >= lobpm            &&  bpm     <  hibpm              &&  
             chanaft >= lochanaft        &&  chanaft <= hichanaft          &&  
             polyaft >= lopolyaft        &&  polyaft <= hipolyaft          &&  
             prog    >= loprog           &&  prog    <= hiprog             &&  
             rand    >= lorand           &&  rand    <  hirand             &&  
             timer   >= lotimer          &&  timer   <= hitimer            &&  
   
             ( (sw_lokey == -1 || sw_hikey == -1 || sw_last  == -1) ||  
               ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (last_sw_key == sw_last) : true) ) &&  
   
             ( (sw_down  == -1 || sw_lokey == -1 || sw_hikey == -1) ||  
               ((sw_down >= sw_lokey && sw_down <= sw_hikey) ? (sw[sw_down]) : true) )  &&  
   
             ( (sw_up    == -1 || sw_lokey == -1 || sw_hikey == -1) ||  
               ((sw_up   >= sw_lokey && sw_up   <= sw_hikey) ? (!sw[sw_up])  : true) )  &&  
   
             ((sw_previous != -1) ? (prev_sw_key == sw_previous) : true)  &&  
              ((trigger & trig) != 0)  
         );  
   
         if (!is_triggered)  
             return false;  
   
         for (int i = 0; i < 128; ++i)  
         {  
             if (locc[i] != -1 && hicc[i] != -1 && !(cc[i] >= locc[i] && cc[i] <= hicc[i]))  
                 return false;  
         }  
   
         return true;  
     }  
   
145      Articulation*      Articulation*
146      Region::GetArticulation(int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft, uint8_t* cc)      Region::GetArticulation(int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft, uint8_t* cc)
147      {      {
# Line 252  namespace sfz Line 149  namespace sfz
149      }      }
150    
151      bool Region::HasLoop() {      bool Region::HasLoop() {
152          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() :
153                (loop_mode == ::sfz::LOOP_CONTINUOUS || loop_mode == ::sfz::LOOP_SUSTAIN);
154          return b && GetLoopStart() && GetLoopEnd() && GetLoopEnd() > GetLoopStart();          return b && GetLoopStart() && GetLoopEnd() && GetLoopEnd() > GetLoopStart();
155      }      }
156    
157      uint Region::GetLoopStart() {      uint Region::GetLoopStart() {
158          return (!loop_start) ? 0 : *loop_start; // TODO: use sample loop when loop_start not defined          return (!loop_start) ? pSample->GetLoopStart() : *loop_start;
159      }      }
160    
161      uint Region::GetLoopEnd() {      uint Region::GetLoopEnd() {
162          return (!loop_end) ? 0 : *loop_end; // TODO: use sample loop when loop_end not defined          return (!loop_end) ? pSample->GetLoopEnd() : *loop_end;
163      }      }
164    
165      uint Region::GetLoopCount() {      uint Region::GetLoopCount() {
# Line 275  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, bool* sw, uint8_t last_sw_key, uint8_t prev_sw_key  
     ) {  
         std::vector<Region*> v;  
         for (int i = 0; i < regions.size(); i++) {  
             if (regions[i]->OnKey (  
                 chan, key, vel, bend, bpm, chanaft, polyaft, prog,  
                 rand, trig, cc, timer, sw, last_sw_key, prev_sw_key)  
                     ) { v.push_back(regions[i]); }  
         }  
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 370  namespace sfz Line 274  namespace sfz
274          trigger = TRIGGER_ATTACK;          trigger = TRIGGER_ATTACK;
275    
276          group = 0;          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 381  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 456  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] = -1;              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();          eg.clear();
418    
# Line 670  namespace sfz Line 575  namespace sfz
575          region->fil_type = fil_type;          region->fil_type = fil_type;
576          region->cutoff = cutoff;          region->cutoff = cutoff;
577          region->cutoff_oncc = cutoff_oncc;          region->cutoff_oncc = cutoff_oncc;
578            region->cutoff_cc = cutoff_cc;
579          region->cutoff_smoothcc = cutoff_smoothcc;          region->cutoff_smoothcc = cutoff_smoothcc;
580          region->cutoff_stepcc = cutoff_stepcc;          region->cutoff_stepcc = cutoff_stepcc;
581          region->cutoff_curvecc = cutoff_curvecc;          region->cutoff_curvecc = cutoff_curvecc;
# Line 869  namespace sfz Line 775  namespace sfz
775              }              }
776          }          }
777    
778            std::set<float*> velcurves;
779          for (int i = 0; i < _instrument->regions.size(); i++) {          for (int i = 0; i < _instrument->regions.size(); i++) {
780              ::sfz::Region* pRegion = _instrument->regions[i];              ::sfz::Region* pRegion = _instrument->regions[i];
781              int low = pRegion->lokey;              int low = pRegion->lokey;
782              int high = pRegion->hikey;              int high = pRegion->hikey;
783              if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {              if (low != -1) { // lokey -1 means region doesn't play on note-on
784                  std::cerr << "Invalid key range: " << low << " - " << high << std::endl;                  // hikey -1 is the same as no limit, except that it
785              } else {                  // also enables on_locc/on_hicc
786                  for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;                  if (high == -1) high = 127;
787                    if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {
788                        std::cerr << "Invalid key range: " << low << " - " << high << std::endl;
789                    } else {
790                        for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;
791                    }
792              }              }
793    
794              // get keyswitches              // get keyswitches
795              low = pRegion->sw_lokey;              low = pRegion->sw_lokey;
796                if (low < 0) low = 0;
797              high = pRegion->sw_hikey;              high = pRegion->sw_hikey;
798              if(low == -1 && high == -1) {              if (high == -1) {
799                  // Key switches not defined, so nothing to do                  // Key switches not defined, so nothing to do
800              } else if(low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {              } else if (low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {
801                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;                  for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;
802              } else {              } else {
803                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;                  std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;
804              }              }
805    
806              // create velocity response curve              // create velocity response curve
807              int prev = 0;  
808              float prevvalue = 0;              // don't use copy-on-write here, instead change the actual
809              for (int v = 0 ; v < 128 ; v++) {              // unique buffers in memory
810                  if (pRegion->amp_velcurve[v] >= 0) {              float* velcurve = const_cast<float*>(&pRegion->amp_velcurve[0]);
811                      float step = (pRegion->amp_velcurve[v] - prevvalue) / (v - prev);              if (velcurves.insert(velcurve).second) {
812                      for ( ; prev < v ; prev++) {                  int prev = 0;
813                          pRegion->amp_velcurve[prev] = prevvalue;                  float prevvalue = 0;
814                          prevvalue += step;                  for (int v = 0 ; v < 128 ; v++) {
815                        if (velcurve[v] >= 0) {
816                            float step = (velcurve[v] - prevvalue) / (v - prev);
817                            for ( ; prev < v ; prev++) {
818                                velcurve[prev] = prevvalue;
819                                prevvalue += step;
820                            }
821                      }                      }
822                  }                  }
823              }                  if (prev) {
824              if (prev) {                      float step = (1 - prevvalue) / (127 - prev);
825                  float step = (1 - prevvalue) / (127 - prev);                      for ( ; prev < 128 ; prev++) {
826                  for ( ; prev < 128 ; prev++) {                          velcurve[prev] = prevvalue;
827                      pRegion->amp_velcurve[prev] = prevvalue;                          prevvalue += step;
828                      prevvalue += step;                      }
829                    } else {
830                        // default curve
831                        for (int v = 0 ; v < 128 ; v++) {
832                            velcurve[v] = v * v / (127.0 * 127.0);
833                        }
834                  }                  }
835              } else {  
836                  // default curve                  // apply amp_veltrack
837                    float offset = -pRegion->amp_veltrack;
838                    if (offset <= 0) offset += 100;
839                  for (int v = 0 ; v < 128 ; v++) {                  for (int v = 0 ; v < 128 ; v++) {
840                      pRegion->amp_velcurve[v] = v * v / (127.0 * 127.0);                      velcurve[v] = (offset + pRegion->amp_veltrack * velcurve[v]) / 100;
841                  }                  }
842              }              }
843              // apply amp_veltrack          }
844              float offset = -pRegion->amp_veltrack;  
845              if (offset <= 0) offset += 100;          _instrument->pLookupTable = new LookupTable(_instrument);
846              for (int v = 0 ; v < 128 ; v++) {  
847                  pRegion->amp_velcurve[v] =          // create separate lookup tables for controller triggered
848                      (offset + pRegion->amp_veltrack * pRegion->amp_velcurve[v]) / 100;          // regions, one for each CC
849              }          for (int i = 0 ; i < 128 ; i++) {
850                _instrument->pLookupTableCC[i] = new LookupTable(_instrument, i);
851          }          }
852      }      }
853    
# Line 1033  namespace sfz Line 960  namespace sfz
960          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);          else if ("hivel"  == key) pCurDef->hivel = ToInt(value);
961          else if ("lobend" == key) pCurDef->lobend = ToInt(value);          else if ("lobend" == key) pCurDef->lobend = ToInt(value);
962          else if ("hibend" == key) pCurDef->hibend = ToInt(value);          else if ("hibend" == key) pCurDef->hibend = ToInt(value);
963          else if ("lobpm"  == key) pCurDef->lobpm = ToInt(value);          else if ("lobpm"  == key) pCurDef->lobpm = ToFloat(value);
964          else if ("hibpm"  == key) pCurDef->hibpm = ToInt(value);          else if ("hibpm"  == key) pCurDef->hibpm = ToFloat(value);
965          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);          else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);
966          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);          else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);
967          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);          else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);
# Line 1069  namespace sfz Line 996  namespace sfz
996          else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);          else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);
997          else if ("off_mode" == key || "offmode" == key)          else if ("off_mode" == key || "offmode" == key)
998          {          {
999              if (value == "fast")  _current_group->off_mode = OFF_FAST;              if (value == "fast")  pCurDef->off_mode = OFF_FAST;
1000              else if (value == "normal") _current_group->off_mode = OFF_NORMAL;              else if (value == "normal") pCurDef->off_mode = OFF_NORMAL;
1001          }          }
1002    
1003          // sample player          // sample player
# Line 1143  namespace sfz Line 1070  namespace sfz
1070          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);          else if ("bend_step" == key) pCurDef->bend_step = ToInt(value);
1071    
1072          // filter          // filter
1073          else if ("fil_type" == key)          else if ("fil_type" == key || "filtype" == key)
1074          {          {
1075              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;              if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;
1076              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;              else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;
# Line 1212  namespace sfz Line 1139  namespace sfz
1139          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);          else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);
1140    
1141          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {          else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {
1142              pCurDef->amp_velcurve[x] = ToFloat(value);              pCurDef->amp_velcurve.set(x, ToFloat(value));
1143          }          }
1144    
1145          // CCs          // CCs
# Line 1223  namespace sfz Line 1150  namespace sfz
1150              int num_cc = ToInt(key.substr(delimiter_index + 2));              int num_cc = ToInt(key.substr(delimiter_index + 2));
1151    
1152              // input controls              // input controls
1153              if ("lo" == key_cc) pCurDef->locc[num_cc] = ToInt(value);              if ("lo" == key_cc) pCurDef->locc.set(num_cc, ToInt(value));
1154              else if ("hi" == key_cc) pCurDef->hicc[num_cc] = ToInt(value);              else if ("hi" == key_cc) pCurDef->hicc.set(num_cc, ToInt(value));
1155              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));
1156              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));
1157              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));
1158              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));
1159              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));
1160              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));
1161    
1162              // sample player              // sample player
1163              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));
1164              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));
1165              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));
1166    
1167              // amplifier              // amplifier
1168              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));
1169              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));
1170              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));
1171              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));
1172              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));
1173    
1174              // filter              // filter
1175              else if ("cutoff_on"  == key_cc) pCurDef->cutoff_oncc[num_cc]  = ToInt(value);              else if ("cutoff_on"  == key_cc || "cutoff_" == key_cc) {
1176              else if ("cutoff2_on" == key_cc) pCurDef->cutoff2_oncc[num_cc] = ToInt(value);                  pCurDef->cutoff_oncc.set(num_cc, ToInt(value));
1177              else if ("cutoff_smooth"  == key_cc) pCurDef->cutoff_smoothcc[num_cc]  = ToInt(value);                  pCurDef->cutoff_cc = num_cc;
1178              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));
1179              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));
1180              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));
1181              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));
1182              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));
1183              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));
1184              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));
1185              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));
1186              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));
1187              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));
1188              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));
1189              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));
1190              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));
1191                else if ("resonance_curve" == key_cc) pCurDef->resonance_curvecc.set(num_cc, ToInt(value));
1192                else if ("resonance2_curve" == key_cc) pCurDef->resonance2_curvecc.set(num_cc, ToInt(value));
1193    
1194              // per voice equalizer              // per voice equalizer
1195              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));
1196              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));
1197              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));
1198              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));
1199              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));
1200              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));
1201              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));
1202              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));
1203              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));
1204              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;              else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1205          }          }
1206          // v2 envelope generators          // v2 envelope generators
# Line 1345  namespace sfz Line 1274  namespace sfz
1274              case 'g': i = 7; break;              case 'g': i = 7; break;
1275              case 'a': i = 9; break;              case 'a': i = 9; break;
1276              case 'b': i = 11; break;              case 'b': i = 11; break;
1277                case '-': if (s == "-1") return -1;
1278              default:              default:
1279                  std::cerr << "Not a note: " << s << std::endl;                  std::cerr << "Not a note: " << s << std::endl;
1280                  return 0;                  return 0;

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

  ViewVC Help
Powered by ViewVC