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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2264 - (show annotations) (download)
Mon Aug 22 10:00:01 2011 UTC (12 years, 8 months ago) by iliev
File size: 83011 byte(s)
* sfz engine: implemented opcodes pitch_onccN,
  pitch_curveccN, pitch_smoothccN, pitch_stepccN

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2008 Anders Dahnielson <anders@dahnielson.com> *
6 * Copyright (C) 2009 - 2011 Anders Dahnielson and Grigor Iliev *
7 * *
8 * 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 *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the Free Software *
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21 * MA 02111-1307 USA *
22 ***************************************************************************/
23
24 #include "sfz.h"
25
26 #include <iostream>
27 #include <sstream>
28 #include <cctype>
29 #include <cstdio>
30 #include <cstring>
31
32 #include "../../common/File.h"
33 #include "../../common/Path.h"
34 #include "LookupTable.h"
35
36 namespace sfz
37 {
38 template <typename T> T check(std::string name, T min, T max, T val) {
39 if (val < min) {
40 std::cerr << "sfz: The value of opcode '" << name;
41 std::cerr << "' is below the minimum allowed value (min=" << min << "): " << val << std::endl;
42 val = min;
43 }
44 if (val > max) {
45 std::cerr << "sfz: The value of opcode '" << name;
46 std::cerr << "' is above the maximum allowed value (max=" << max << "): " << val << std::endl;
47 val = max;
48 }
49
50 return val;
51 }
52
53 Sample* SampleManager::FindSample(std::string samplePath, uint offset, int end) {
54 std::map<Sample*, std::set<Region*> >::iterator it = sampleMap.begin();
55 for (; it != sampleMap.end(); it++) {
56 if (it->first->GetFile() == samplePath) {
57 /* Because the start of the sample is cached in RAM we treat
58 * same sample with different offset as different samples
59 * // TODO: Ignore offset when the whole sample is cached in RAM?
60 */
61 if (it->first->Offset == offset && it->first->End == end) return it->first;
62 }
63 }
64
65 return NULL;
66 }
67
68 /////////////////////////////////////////////////////////////
69 // class optional
70
71 const optional_base::nothing_t optional_base::nothing;
72
73 /////////////////////////////////////////////////////////////
74 // class Articulation
75
76 Articulation::Articulation()
77 {
78 }
79
80 Articulation::~Articulation()
81 {
82 }
83
84 /////////////////////////////////////////////////////////////
85 // class Definition
86
87 Definition::Definition()
88 {
89 }
90
91 Definition::~Definition()
92 {
93 }
94
95 /////////////////////////////////////////////////////////////
96 // class Region
97
98 Region::Region()
99 {
100 pSample = NULL;
101 seq_counter = 1;
102 }
103
104 Region::~Region()
105 {
106 DestroySampleIfNotUsed();
107 }
108
109 Sample* Region::GetSample(bool create)
110 {
111 if(pSample == NULL && create) {
112 uint i = offset ? *offset : 0;
113 int e = end ? *end : -2;
114 Sample* sf = GetInstrument()->GetSampleManager()->FindSample(sample, i, e);
115 if (sf != NULL) pSample = sf; // Reuse already created sample
116 else pSample = new Sample(sample, false, i, e);
117 GetInstrument()->GetSampleManager()->AddSampleConsumer(pSample, this);
118 }
119 return pSample;
120 }
121
122 void Region::DestroySampleIfNotUsed() {
123 if (pSample == NULL) return;
124 GetInstrument()->GetSampleManager()->RemoveSampleConsumer(pSample, this);
125 if (!GetInstrument()->GetSampleManager()->HasSampleConsumers(pSample)) {
126 GetInstrument()->GetSampleManager()->RemoveSample(pSample);
127 delete pSample;
128 pSample = NULL;
129 }
130 }
131
132 bool Region::OnKey(const Query& q) {
133 // As the region comes from a LookupTable search on the query,
134 // the following parameters are not checked here: chan, key,
135 // vel, chanaft, polyaft, prog, sw_previous, cc. They are all
136 // handled by the lookup table.
137 bool is_triggered(
138 q.bend >= lobend && q.bend <= hibend &&
139 q.bpm >= lobpm && q.bpm < hibpm &&
140 q.rand >= lorand && q.rand < hirand &&
141 q.timer >= lotimer && q.timer <= hitimer &&
142
143 ( sw_last == -1 ||
144 ((sw_last >= sw_lokey && sw_last <= sw_hikey) ? (q.last_sw_key == sw_last) : false) ) &&
145
146 ( sw_down == -1 ||
147 ((sw_down >= sw_lokey && (sw_hikey == -1 || sw_down <= sw_hikey)) ? (q.sw[sw_down]) : false) ) &&
148
149 ( sw_up == -1 ||
150 ((sw_up >= sw_lokey && (sw_hikey == -1 || sw_up <= sw_hikey)) ? (!q.sw[sw_up]) : true) ) &&
151
152 ((trigger & q.trig) != 0)
153 );
154
155 if (!is_triggered)
156 return false;
157
158 // seq_position has to be checked last, so we know that we
159 // increment the right counter
160 is_triggered = (seq_counter == seq_position);
161 seq_counter = (seq_counter % seq_length) + 1;
162
163 return is_triggered;
164 }
165
166 Articulation*
167 Region::GetArticulation(int bend, uint8_t bpm, uint8_t chanaft, uint8_t polyaft, uint8_t* cc)
168 {
169 return new Articulation(); //todo: implement GetArticulation()
170 }
171
172 bool Region::HasLoop() {
173 bool b = loop_mode == ::sfz::LOOP_UNSET ? pSample->GetLoops() :
174 (loop_mode == ::sfz::LOOP_CONTINUOUS || loop_mode == ::sfz::LOOP_SUSTAIN);
175 return b && GetLoopStart() && GetLoopEnd() && GetLoopEnd() > GetLoopStart();
176 }
177
178 uint Region::GetLoopStart() {
179 return (!loop_start) ? pSample->GetLoopStart() : *loop_start;
180 }
181
182 uint Region::GetLoopEnd() {
183 return (!loop_end) ? pSample->GetLoopEnd() : *loop_end;
184 }
185
186 uint Region::GetLoopCount() {
187 return (!count) ? 0 : *count;
188 }
189
190 /////////////////////////////////////////////////////////////
191 // class Instrument
192
193 Instrument::Instrument(std::string name, SampleManager* pSampleManager) : KeyBindings(128, false), KeySwitchBindings(128, false)
194 {
195 this->name = name;
196 this->pSampleManager = pSampleManager ? pSampleManager : this;
197 pLookupTable = 0;
198
199 // The first 6 curves are defined internally (actually 7 with the one at index 0)
200 Curve c;
201 for (int i = 0; i < 128; i++) c.v[i] = i / 127.0f;
202 curves.add(c); curves.add(c); curves.add(c); curves.add(c);
203 curves.add(c); curves.add(c); curves.add(c);
204 ///////
205 }
206
207 Instrument::~Instrument()
208 {
209 for (int i = 0; i < regions.size(); i++) {
210 delete regions[i];
211 }
212 delete pLookupTable;
213 for (int i = 0 ; i < 128 ; i++) {
214 delete pLookupTableCC[i];
215 }
216 }
217
218 void Query::search(const Instrument* pInstrument) {
219 pRegionList = &pInstrument->pLookupTable->query(*this);
220 regionIndex = 0;
221 }
222
223 void Query::search(const Instrument* pInstrument, int triggercc) {
224 pRegionList = &pInstrument->pLookupTableCC[triggercc]->query(*this);
225 regionIndex = 0;
226 }
227
228 Region* Query::next() {
229 for ( ; regionIndex < pRegionList->size() ; regionIndex++) {
230 if ((*pRegionList)[regionIndex]->OnKey(*this)) {
231 return (*pRegionList)[regionIndex++];
232 }
233 }
234 return 0;
235 }
236
237 bool Instrument::DestroyRegion(Region* pRegion) {
238 for (std::vector<Region*>::iterator it = regions.begin(); it != regions.end(); it++) {
239 if(*it == pRegion) {
240 regions.erase(it);
241 delete pRegion;
242 return true;
243 }
244 }
245
246 return false;
247 }
248
249 bool Instrument::HasKeyBinding(uint8_t key) {
250 if (key > 127) return false;
251 return KeyBindings[key];
252 }
253
254 bool Instrument::HasKeySwitchBinding(uint8_t key) {
255 if (key > 127) return false;
256 return KeySwitchBindings[key];
257 }
258
259 /////////////////////////////////////////////////////////////
260 // class Group
261
262 Group::Group() :
263 id(0)
264 {
265 Reset();
266 }
267
268 Group::~Group()
269 {
270 }
271
272 void
273 Group::Reset()
274 {
275 // This is where all the default values are set.
276
277 // sample definition default
278 sample = "";
279
280 // input control
281 lochan = 1; hichan = 16;
282 lokey = 0; hikey = 127;
283 lovel = 0; hivel = 127;
284 lobend = -8192; hibend = 8192;
285 lobpm = 0; hibpm = 500;
286 lochanaft = 0; hichanaft = 127;
287 lopolyaft = 0; hipolyaft = 127;
288 loprog = 0; hiprog = 127;
289 lorand = 0.0; hirand = 1.0;
290 lotimer = 0.0; hitimer = 0.0;
291
292 seq_length = 1;
293 seq_position = 1;
294
295 sw_lokey = -1; sw_hikey = -1;
296 sw_last = -1;
297 sw_down = -1;
298 sw_up = -1;
299 sw_previous = -1;
300 sw_vel = VEL_CURRENT;
301
302 trigger = TRIGGER_ATTACK;
303
304 group = 0;
305 off_by = 0;
306 off_mode = OFF_FAST;
307
308 // sample player
309 count.unset();
310 delay.unset(); delay_random.unset();
311 delay_beats.unset(); stop_beats.unset();
312 delay_samples.unset();
313 end.unset();
314 loop_crossfade.unset();
315 offset.unset(); offset_random.unset();
316 loop_mode = LOOP_UNSET;
317 loop_start.unset(); loop_end.unset();
318 sync_beats.unset(); sync_offset.unset();
319
320 // amplifier
321 volume = 0;
322 volume_oncc.clear();
323 volume_curvecc.clear();
324 volume_smoothcc.clear();
325 pan = 0;
326 pan_oncc.clear();
327 pan_curvecc.clear();
328 pan_smoothcc.clear();
329 width = 100;
330 position = 0;
331 amp_keytrack = 0;
332 amp_keycenter = 60;
333 amp_veltrack = 100;
334 amp_random = 0;
335 rt_decay = 0;
336 xfin_lokey = 0; xfin_hikey = 0;
337 xfout_lokey = 127; xfout_hikey = 127;
338 xf_keycurve = POWER;
339 xfin_lovel = 0; xfin_hivel = 0;
340 xfout_lovel = 127; xfout_hivel = 127;
341 xf_velcurve = POWER;
342 xf_cccurve = POWER;
343
344 // pitch
345 transpose = 0;
346 tune = 0;
347 pitch_keycenter = 60;
348 pitch_keytrack = 100;
349 pitch_veltrack = 0;
350 pitch_random = 0;
351 bend_up = 200;
352 bend_down = -200;
353 bend_step = 1;
354
355 pitch_oncc.clear();
356 pitch_smoothcc.clear();
357 pitch_curvecc.clear();
358 pitch_stepcc.clear();
359
360 // filter
361 fil_type = LPF_2P;
362 cutoff.unset();
363 cutoff_chanaft = 0;
364 cutoff_polyaft = 0;
365 resonance = 0;
366 fil_keytrack = 0;
367 fil_keycenter = 60;
368 fil_veltrack = 0;
369 fil_random = 0;
370
371 fil2_type = LPF_2P;
372 cutoff2.unset();
373 cutoff2_chanaft = 0;
374 cutoff2_polyaft = 0;
375 resonance2 = 0;
376 fil2_keytrack = 0;
377 fil2_keycenter = 60;
378 fil2_veltrack = 0;
379 fil2_random = 0;
380
381 cutoff_oncc.clear();
382 cutoff_smoothcc.clear();
383 cutoff_curvecc.clear();
384 cutoff2_oncc.clear();
385 cutoff2_smoothcc.clear();
386 cutoff2_curvecc.clear();
387
388 resonance_oncc.clear();
389 resonance_smoothcc.clear();
390 resonance_curvecc.clear();
391 resonance2_oncc.clear();
392 resonance2_smoothcc.clear();
393 resonance2_curvecc.clear();
394
395 // per voice equalizer
396 eq1_freq = 50;
397 eq2_freq = 500;
398 eq3_freq = 5000;
399 eq1_vel2freq = 0;
400 eq2_vel2freq = 0;
401 eq3_vel2freq = 0;
402 eq1_bw = 1;
403 eq2_bw = 1;
404 eq3_bw = 1;
405 eq1_gain = 0;
406 eq2_gain = 0;
407 eq3_gain = 0;
408 eq1_vel2gain = 0;
409 eq2_vel2gain = 0;
410 eq3_vel2gain = 0;
411
412 // CCs
413 for (int i = 0; i < 128; ++i)
414 {
415 // input control
416 locc.set(i, 0);
417 hicc.set(i, 127);
418 start_locc.set(i, -1);
419 start_hicc.set(i, -1);
420 stop_locc.set(i, -1);
421 stop_hicc.set(i, -1);
422 on_locc.set(i, -1);
423 on_hicc.set(i, -1);
424
425 // sample player
426 delay_oncc.set(i, optional<float>::nothing);
427 delay_samples_oncc.set(i, optional<int>::nothing);
428 offset_oncc.set(i, optional<int>::nothing);
429
430 // amplifier
431 amp_velcurve.set(i, -1);
432 gain_oncc.set(i, 0);
433 xfin_locc.set(i, 0);
434 xfin_hicc.set(i, 0);
435 xfout_locc.set(i, 0);
436 xfout_hicc.set(i, 0);
437
438 // filter
439 cutoff_stepcc.set(i, 0);
440 resonance_stepcc.set(i, 0);
441
442 cutoff2_stepcc.set(i, 0);
443 resonance2_stepcc.set(i, 0);
444
445 // per voice equalizer
446 eq1_freq_oncc.set(i, 0);
447 eq2_freq_oncc.set(i, 0);
448 eq3_freq_oncc.set(i, 0);
449 eq1_bw_oncc.set(i, 0);
450 eq2_bw_oncc.set(i, 0);
451 eq3_bw_oncc.set(i, 0);
452 eq1_gain_oncc.set(i, 0);
453 eq2_gain_oncc.set(i, 0);
454 eq3_gain_oncc.set(i, 0);
455 }
456
457 eg.clear();
458 lfos.clear();
459
460 // deprecated
461 ampeg_delay = 0;
462 ampeg_start = 0; //in percentage
463 ampeg_attack = 0;
464 ampeg_hold = 0;
465 ampeg_decay = 0;
466 ampeg_sustain = -1; // in percentage
467 ampeg_release = 0;
468
469 ampeg_vel2delay = 0;
470 ampeg_vel2attack = 0;
471 ampeg_vel2hold = 0;
472 ampeg_vel2decay = 0;
473 ampeg_vel2sustain = 0;
474 ampeg_vel2release = 0;
475
476 ampeg_delaycc.clear();
477 ampeg_startcc.clear();
478 ampeg_attackcc.clear();
479 ampeg_holdcc.clear();
480 ampeg_decaycc.clear();
481 ampeg_sustaincc.clear();
482 ampeg_releasecc.clear();
483
484 fileg_delay = 0;
485 fileg_start = 0; //in percentage
486 fileg_attack = 0;
487 fileg_hold = 0;
488 fileg_decay = 0;
489 fileg_sustain = 100; // in percentage
490 fileg_release = 0;
491
492 fileg_vel2delay = 0;
493 fileg_vel2attack = 0;
494 fileg_vel2hold = 0;
495 fileg_vel2decay = 0;
496 fileg_vel2sustain = 0;
497 fileg_vel2release = 0;
498 fileg_depth = 0;
499
500 fileg_delay_oncc.clear();
501 fileg_start_oncc.clear();
502 fileg_attack_oncc.clear();
503 fileg_hold_oncc.clear();
504 fileg_decay_oncc.clear();
505 fileg_sustain_oncc.clear();
506 fileg_release_oncc.clear();
507 fileg_depth_oncc.clear();
508
509 pitcheg_delay = 0;
510 pitcheg_start = 0; //in percentage
511 pitcheg_attack = 0;
512 pitcheg_hold = 0;
513 pitcheg_decay = 0;
514 pitcheg_sustain = 100; // in percentage
515 pitcheg_release = 0;
516 pitcheg_depth = 0;
517
518 pitcheg_vel2delay = 0;
519 pitcheg_vel2attack = 0;
520 pitcheg_vel2hold = 0;
521 pitcheg_vel2decay = 0;
522 pitcheg_vel2sustain = 0;
523 pitcheg_vel2release = 0;
524
525 pitcheg_delay_oncc.clear();
526 pitcheg_start_oncc.clear();
527 pitcheg_attack_oncc.clear();
528 pitcheg_hold_oncc.clear();
529 pitcheg_decay_oncc.clear();
530 pitcheg_sustain_oncc.clear();
531 pitcheg_release_oncc.clear();
532 pitcheg_depth_oncc.clear();
533
534 amplfo_delay = 0;
535 amplfo_fade = 0;
536 amplfo_freq = -1; /* -1 is used to determine whether the LFO was initialized */
537 amplfo_depth = 0;
538 amplfo_delay_oncc.clear();
539 amplfo_fade_oncc.clear();
540 amplfo_depthcc.clear();
541 amplfo_freqcc.clear();
542
543 fillfo_delay = 0;
544 fillfo_fade = 0;
545 fillfo_freq = -1; /* -1 is used to determine whether the LFO was initialized */
546 fillfo_depth = 0;
547 fillfo_delay_oncc.clear();
548 fillfo_fade_oncc.clear();
549 fillfo_depthcc.clear();
550 fillfo_freqcc.clear();
551
552 pitchlfo_delay = 0;
553 pitchlfo_fade = 0;
554 pitchlfo_freq = -1; /* -1 is used to determine whether the LFO was initialized */
555 pitchlfo_depth = 0;
556 pitchlfo_delay_oncc.clear();
557 pitchlfo_fade_oncc.clear();
558 pitchlfo_depthcc.clear();
559 pitchlfo_freqcc.clear();
560 }
561
562 Region*
563 Group::RegionFactory()
564 {
565 // This is where the current group setting are copied to the new region.
566
567 Region* region = new Region();
568
569 region->id = id++;
570
571 // sample definition
572 region->sample = sample;
573
574 // input control
575 region->lochan = lochan;
576 region->hichan = hichan;
577 region->lokey = lokey;
578 region->hikey = hikey;
579 region->lovel = lovel;
580 region->hivel = hivel;
581 region->locc = locc;
582 region->hicc = hicc;
583 region->lobend = lobend;
584 region->hibend = hibend;
585 region->lobpm = lobpm;
586 region->hibpm = hibpm;
587 region->lochanaft = lochanaft;
588 region->hichanaft = hichanaft;
589 region->lopolyaft = lopolyaft;
590 region->hipolyaft = hipolyaft;
591 region->loprog = loprog;
592 region->hiprog = hiprog;
593 region->lorand = lorand;
594 region->hirand = hirand;
595 region->lotimer = lotimer;
596 region->hitimer = hitimer;
597 region->seq_length = seq_length;
598 region->seq_position = seq_position;
599 region->start_locc = start_locc;
600 region->start_hicc = start_hicc;
601 region->stop_locc = stop_locc;
602 region->stop_hicc = stop_hicc;
603 region->sw_lokey = sw_lokey;
604 region->sw_hikey = sw_hikey;
605 region->sw_last = sw_last;
606 region->sw_down = sw_down;
607 region->sw_up = sw_up;
608 region->sw_previous = sw_previous;
609 region->sw_vel = sw_vel;
610 region->trigger = trigger;
611 region->group = group;
612 region->off_by = off_by;
613 region->off_mode = off_mode;
614 region->on_locc = on_locc;
615 region->on_hicc = on_hicc;
616
617 // sample player
618 region->count = count;
619 region->delay = delay;
620 region->delay_random = delay_random;
621 region->delay_oncc = delay_oncc;
622 region->delay_beats = delay_beats;
623 region->stop_beats = stop_beats;
624 region->delay_samples = delay_samples;
625 region->delay_samples_oncc = delay_samples_oncc;
626 region->end = end;
627 region->loop_crossfade = loop_crossfade;
628 region->offset = offset;
629 region->offset_random = offset_random;
630 region->offset_oncc = offset_oncc;
631 region->loop_mode = loop_mode;
632 region->loop_start = loop_start;
633 region->loop_end = loop_end;
634 region->sync_beats = sync_beats;
635 region->sync_offset = sync_offset;
636
637 // amplifier
638 region->volume = volume;
639 region->volume_oncc = volume_oncc;
640 region->volume_curvecc = volume_curvecc;
641 region->volume_smoothcc = volume_smoothcc;
642 region->pan = pan;
643 region->pan_oncc = pan_oncc;
644 region->pan_curvecc = pan_curvecc;
645 region->pan_smoothcc = pan_smoothcc;
646 region->width = width;
647 region->position = position;
648 region->amp_keytrack = amp_keytrack;
649 region->amp_keycenter = amp_keycenter;
650 region->amp_veltrack = amp_veltrack;
651 region->amp_velcurve = amp_velcurve;
652 region->amp_random = amp_random;
653 region->rt_decay = rt_decay;
654 region->gain_oncc = gain_oncc;
655 region->xfin_lokey = xfin_lokey;
656 region->xfin_hikey = xfin_hikey;
657 region->xfout_lokey = xfout_lokey;
658 region->xfout_hikey = xfout_hikey;
659 region->xf_keycurve = xf_keycurve;
660 region->xfin_lovel = xfin_lovel;
661 region->xfin_hivel = xfin_lovel;
662 region->xfout_lovel = xfout_lovel;
663 region->xfout_hivel = xfout_hivel;
664 region->xf_velcurve = xf_velcurve;
665 region->xfin_locc = xfin_locc;
666 region->xfin_hicc = xfin_hicc;
667 region->xfout_locc = xfout_locc;
668 region->xfout_hicc = xfout_hicc;
669 region->xf_cccurve = xf_cccurve;
670
671 // pitch
672 region->transpose = transpose;
673 region->tune = tune;
674 region->pitch_keycenter = pitch_keycenter;
675 region->pitch_keytrack = pitch_keytrack;
676 region->pitch_veltrack = pitch_veltrack;
677 region->pitch_random = pitch_random;
678 region->bend_up = bend_up;
679 region->bend_down = bend_down;
680 region->bend_step = bend_step;
681
682 region->pitch_oncc = pitch_oncc;
683 region->pitch_smoothcc = pitch_smoothcc;
684 region->pitch_curvecc = pitch_curvecc;
685 region->pitch_stepcc = pitch_stepcc;
686
687 // filter
688 region->fil_type = fil_type;
689 region->cutoff = cutoff;
690 region->cutoff_oncc = cutoff_oncc;
691 region->cutoff_smoothcc = cutoff_smoothcc;
692 region->cutoff_stepcc = cutoff_stepcc;
693 region->cutoff_curvecc = cutoff_curvecc;
694 region->cutoff_chanaft = cutoff_chanaft;
695 region->cutoff_polyaft = cutoff_polyaft;
696 region->resonance = resonance;
697 region->resonance_oncc = resonance_oncc;
698 region->resonance_smoothcc = resonance_smoothcc;
699 region->resonance_stepcc = resonance_stepcc;
700 region->resonance_curvecc = resonance_curvecc;
701 region->fil_keytrack = fil_keytrack;
702 region->fil_keycenter = fil_keycenter;
703 region->fil_veltrack = fil_veltrack;
704 region->fil_random = fil_random;
705
706 region->fil2_type = fil2_type;
707 region->cutoff2 = cutoff2;
708 region->cutoff2_oncc = cutoff2_oncc;
709 region->cutoff2_smoothcc = cutoff2_smoothcc;
710 region->cutoff2_stepcc = cutoff2_stepcc;
711 region->cutoff2_curvecc = cutoff2_curvecc;
712 region->cutoff2_chanaft = cutoff2_chanaft;
713 region->cutoff2_polyaft = cutoff2_polyaft;
714 region->resonance2 = resonance2;
715 region->resonance2_oncc = resonance2_oncc;
716 region->resonance2_smoothcc = resonance2_smoothcc;
717 region->resonance2_stepcc = resonance2_stepcc;
718 region->resonance2_curvecc = resonance2_curvecc;
719 region->fil2_keytrack = fil2_keytrack;
720 region->fil2_keycenter = fil2_keycenter;
721 region->fil2_veltrack = fil2_veltrack;
722 region->fil2_random = fil2_random;
723
724 // per voice equalizer
725 region->eq1_freq = eq1_freq;
726 region->eq2_freq = eq2_freq;
727 region->eq3_freq = eq3_freq;
728 region->eq1_freq_oncc = eq1_freq_oncc;
729 region->eq2_freq_oncc = eq2_freq_oncc;
730 region->eq3_freq_oncc = eq3_freq_oncc;
731 region->eq1_vel2freq = eq1_vel2freq;
732 region->eq2_vel2freq = eq2_vel2freq;
733 region->eq3_vel2freq = eq3_vel2freq;
734 region->eq1_bw = eq1_bw;
735 region->eq2_bw = eq2_bw;
736 region->eq3_bw = eq3_bw;
737 region->eq1_bw_oncc = eq1_bw_oncc;
738 region->eq2_bw_oncc = eq2_bw_oncc;
739 region->eq3_bw_oncc = eq3_bw_oncc;
740 region->eq1_gain = eq1_gain;
741 region->eq2_gain = eq2_gain;
742 region->eq3_gain = eq3_gain;
743 region->eq1_gain_oncc = eq1_gain_oncc;
744 region->eq2_gain_oncc = eq2_gain_oncc;
745 region->eq3_gain_oncc = eq3_gain_oncc;
746 region->eq1_vel2gain = eq1_vel2gain;
747 region->eq2_vel2gain = eq2_vel2gain;
748 region->eq3_vel2gain = eq3_vel2gain;
749
750 // envelope generator
751 region->eg = eg;
752
753 // deprecated
754 region->ampeg_delay = ampeg_delay;
755 region->ampeg_start = ampeg_start;
756 region->ampeg_attack = ampeg_attack;
757 region->ampeg_hold = ampeg_hold;
758 region->ampeg_decay = ampeg_decay;
759 region->ampeg_sustain = ampeg_sustain;
760 region->ampeg_release = ampeg_release;
761
762 region->ampeg_vel2delay = ampeg_vel2delay;
763 region->ampeg_vel2attack = ampeg_vel2attack;
764 region->ampeg_vel2hold = ampeg_vel2hold;
765 region->ampeg_vel2decay = ampeg_vel2decay;
766 region->ampeg_vel2sustain = ampeg_vel2sustain;
767 region->ampeg_vel2release = ampeg_vel2release;
768
769 region->ampeg_delaycc = ampeg_delaycc;
770 region->ampeg_startcc = ampeg_startcc;
771 region->ampeg_attackcc = ampeg_attackcc;
772 region->ampeg_holdcc = ampeg_holdcc;
773 region->ampeg_decaycc = ampeg_decaycc;
774 region->ampeg_sustaincc = ampeg_sustaincc;
775 region->ampeg_releasecc = ampeg_releasecc;
776
777 region->fileg_delay = fileg_delay;
778 region->fileg_start = fileg_start;
779 region->fileg_attack = fileg_attack;
780 region->fileg_hold = fileg_hold;
781 region->fileg_decay = fileg_decay;
782 region->fileg_sustain = fileg_sustain;
783 region->fileg_release = fileg_release;
784 region->fileg_depth = fileg_depth;
785
786 region->fileg_vel2delay = fileg_vel2delay;
787 region->fileg_vel2attack = fileg_vel2attack;
788 region->fileg_vel2hold = fileg_vel2hold;
789 region->fileg_vel2decay = fileg_vel2decay;
790 region->fileg_vel2sustain = fileg_vel2sustain;
791 region->fileg_vel2release = fileg_vel2release;
792
793 region->fileg_delay_oncc = fileg_delay_oncc;
794 region->fileg_start_oncc = fileg_start_oncc;
795 region->fileg_attack_oncc = fileg_attack_oncc;
796 region->fileg_hold_oncc = fileg_hold_oncc;
797 region->fileg_decay_oncc = fileg_decay_oncc;
798 region->fileg_sustain_oncc = fileg_sustain_oncc;
799 region->fileg_release_oncc = fileg_release_oncc;
800 region->fileg_depth_oncc = fileg_depth_oncc;
801
802 region->pitcheg_delay = pitcheg_delay;
803 region->pitcheg_start = pitcheg_start;
804 region->pitcheg_attack = pitcheg_attack;
805 region->pitcheg_hold = pitcheg_hold;
806 region->pitcheg_decay = pitcheg_decay;
807 region->pitcheg_sustain = pitcheg_sustain;
808 region->pitcheg_release = pitcheg_release;
809 region->pitcheg_depth = pitcheg_depth;
810
811 region->pitcheg_vel2delay = pitcheg_vel2delay;
812 region->pitcheg_vel2attack = pitcheg_vel2attack;
813 region->pitcheg_vel2hold = pitcheg_vel2hold;
814 region->pitcheg_vel2decay = pitcheg_vel2decay;
815 region->pitcheg_vel2sustain = pitcheg_vel2sustain;
816 region->pitcheg_vel2release = pitcheg_vel2release;
817
818 region->pitcheg_delay_oncc = pitcheg_delay_oncc;
819 region->pitcheg_start_oncc = pitcheg_start_oncc;
820 region->pitcheg_attack_oncc = pitcheg_attack_oncc;
821 region->pitcheg_hold_oncc = pitcheg_hold_oncc;
822 region->pitcheg_decay_oncc = pitcheg_decay_oncc;
823 region->pitcheg_sustain_oncc = pitcheg_sustain_oncc;
824 region->pitcheg_release_oncc = pitcheg_release_oncc;
825 region->pitcheg_depth_oncc = pitcheg_depth_oncc;
826
827 region->amplfo_delay = amplfo_delay;
828 region->amplfo_fade = amplfo_fade;
829 region->amplfo_freq = amplfo_freq;
830 region->amplfo_depth = amplfo_depth;
831
832 region->amplfo_delay_oncc = amplfo_delay_oncc;
833 region->amplfo_fade_oncc = amplfo_fade_oncc;
834 region->amplfo_depthcc = amplfo_depthcc;
835 region->amplfo_freqcc = amplfo_freqcc;
836
837 region->fillfo_delay = fillfo_delay;
838 region->fillfo_fade = fillfo_fade;
839 region->fillfo_freq = fillfo_freq;
840 region->fillfo_depth = fillfo_depth;
841
842 region->fillfo_delay_oncc = fillfo_delay_oncc;
843 region->fillfo_fade_oncc = fillfo_fade_oncc;
844 region->fillfo_depthcc = fillfo_depthcc;
845 region->fillfo_freqcc = fillfo_freqcc;
846
847 region->pitchlfo_delay = pitchlfo_delay;
848 region->pitchlfo_fade = pitchlfo_fade;
849 region->pitchlfo_freq = pitchlfo_freq;
850 region->pitchlfo_depth = pitchlfo_depth;
851
852 region->pitchlfo_delay_oncc = pitchlfo_delay_oncc;
853 region->pitchlfo_fade_oncc = pitchlfo_fade_oncc;
854 region->pitchlfo_depthcc = pitchlfo_depthcc;
855 region->pitchlfo_freqcc = pitchlfo_freqcc;
856
857 region->eg = eg;
858 region->lfos = lfos;
859
860 return region;
861 }
862
863 /////////////////////////////////////////////////////////////
864 // class File
865
866 File::File(std::string file, SampleManager* pSampleManager) :
867 _current_section(GROUP),
868 default_path(""),
869 octave_offset(0),
870 note_offset(0)
871 {
872 _instrument = new Instrument(LinuxSampler::Path::getBaseName(file), pSampleManager);
873 _current_group = new Group();
874 pCurDef = _current_group;
875 enum token_type_t { HEADER, OPCODE };
876 token_type_t token_type;
877 std::string token_string;
878
879 std::ifstream fs(file.c_str());
880 currentDir = LinuxSampler::Path::stripLastName(file);
881 std::string token;
882 std::string line;
883 currentLine = 0;
884
885 while (std::getline(fs, line))
886 {
887 currentLine++;
888 // COMMENT
889 std::string::size_type slash_index = line.find("//");
890 if (slash_index != std::string::npos)
891 line.resize(slash_index);
892
893 // DEFINITION
894 std::stringstream linestream(line);
895 while (linestream >> token)
896 {
897 if (token[0] == '<' and token[token.size()-1] == '>')
898 {
899 // HEAD
900 if (!token_string.empty())
901 {
902 switch (token_type)
903 {
904 case HEADER:
905 push_header(token_string);
906 break;
907 case OPCODE:
908 push_opcode(token_string);
909 break;
910 }
911 token_string.erase();
912 }
913 token_string.append(token);
914 token_type = HEADER;
915 }
916 else if (token.find('=') != std::string::npos)
917 {
918 // HEAD
919 if (!token_string.empty())
920 {
921 switch (token_type)
922 {
923 case HEADER:
924 push_header(token_string);
925 break;
926 case OPCODE:
927 push_opcode(token_string);
928 break;
929 }
930 token_string.erase();
931 }
932 token_string.append(token);
933 token_type = OPCODE;
934 }
935 else
936 {
937 // TAIL
938 token_string.append(" ");
939 token_string.append(token);
940 }
941 }
942
943 // EOL
944 if (!token_string.empty())
945 {
946 switch (token_type)
947 {
948 case HEADER:
949 push_header(token_string);
950 break;
951 case OPCODE:
952 push_opcode(token_string);
953 break;
954 }
955 token_string.erase();
956 }
957 }
958
959 std::set<float*> velcurves;
960 for (int i = 0; i < _instrument->regions.size(); i++) {
961 ::sfz::Region* pRegion = _instrument->regions[i];
962 int low = pRegion->lokey;
963 int high = pRegion->hikey;
964 if (low != -1) { // lokey -1 means region doesn't play on note-on
965 // hikey -1 is the same as no limit, except that it
966 // also enables on_locc/on_hicc
967 if (high == -1) high = 127;
968 if (low < 0 || low > 127 || high < 0 || high > 127 || low > high) {
969 std::cerr << "Invalid key range: " << low << " - " << high << std::endl;
970 } else {
971 for (int j = low; j <= high; j++) _instrument->KeyBindings[j] = true;
972 }
973 }
974
975 // get keyswitches
976 low = pRegion->sw_lokey;
977 if (low < 0) low = 0;
978 high = pRegion->sw_hikey;
979 if (high == -1) {
980 // Key switches not defined, so nothing to do
981 } else if (low >= 0 && low <= 127 && high >= 0 && high <= 127 && high >= low) {
982 for (int j = low; j <= high; j++) _instrument->KeySwitchBindings[j] = true;
983 } else {
984 std::cerr << "Invalid key switch range: " << low << " - " << high << std::endl;
985 }
986
987 // create velocity response curve
988
989 // don't use copy-on-write here, instead change the actual
990 // unique buffers in memory
991 float* velcurve = const_cast<float*>(&pRegion->amp_velcurve[0]);
992 if (velcurves.insert(velcurve).second) {
993 int prev = 0;
994 float prevvalue = 0;
995 for (int v = 0 ; v < 128 ; v++) {
996 if (velcurve[v] >= 0) {
997 float step = (velcurve[v] - prevvalue) / (v - prev);
998 for ( ; prev < v ; prev++) {
999 velcurve[prev] = prevvalue;
1000 prevvalue += step;
1001 }
1002 }
1003 }
1004 if (prev) {
1005 float step = (1 - prevvalue) / (127 - prev);
1006 for ( ; prev < 128 ; prev++) {
1007 velcurve[prev] = prevvalue;
1008 prevvalue += step;
1009 }
1010 } else {
1011 // default curve
1012 for (int v = 0 ; v < 128 ; v++) {
1013 velcurve[v] = v * v / (127.0 * 127.0);
1014 }
1015 }
1016
1017 // apply amp_veltrack
1018 float offset = -pRegion->amp_veltrack;
1019 if (offset <= 0) offset += 100;
1020 for (int v = 0 ; v < 128 ; v++) {
1021 velcurve[v] = (offset + pRegion->amp_veltrack * velcurve[v]) / 100;
1022 }
1023 }
1024 }
1025
1026 _instrument->pLookupTable = new LookupTable(_instrument);
1027
1028 // create separate lookup tables for controller triggered
1029 // regions, one for each CC
1030 for (int i = 0 ; i < 128 ; i++) {
1031 _instrument->pLookupTableCC[i] = new LookupTable(_instrument, i);
1032 }
1033
1034 for (int i = 0; i < _instrument->regions.size(); i++) {
1035 Region* r = _instrument->regions[i];
1036
1037 copyCurves(r->volume_curvecc, r->volume_oncc);
1038 r->volume_curvecc.clear();
1039
1040 copySmoothValues(r->volume_smoothcc, r->volume_oncc);
1041 r->volume_smoothcc.clear();
1042
1043 copyCurves(r->pitch_curvecc, r->pitch_oncc);
1044 r->pitch_curvecc.clear();
1045
1046 copySmoothValues(r->pitch_smoothcc, r->pitch_oncc);
1047 r->pitch_smoothcc.clear();
1048
1049 copyStepValues(r->pitch_stepcc, r->pitch_oncc);
1050 r->pitch_stepcc.clear();
1051
1052 copyCurves(r->pan_curvecc, r->pan_oncc);
1053 r->pan_curvecc.clear();
1054
1055 copySmoothValues(r->pan_smoothcc, r->pan_oncc);
1056 r->pan_smoothcc.clear();
1057
1058 copyCurves(r->cutoff_curvecc, r->cutoff_oncc);
1059 r->cutoff_curvecc.clear();
1060
1061 copySmoothValues(r->cutoff_smoothcc, r->cutoff_oncc);
1062 r->cutoff_smoothcc.clear();
1063
1064 copyCurves(r->cutoff2_curvecc, r->cutoff2_oncc);
1065 r->cutoff2_curvecc.clear();
1066
1067 copySmoothValues(r->cutoff2_smoothcc, r->cutoff2_oncc);
1068 r->cutoff2_smoothcc.clear();
1069
1070 copyCurves(r->resonance_curvecc, r->resonance_oncc);
1071 r->resonance_curvecc.clear();
1072
1073 copySmoothValues(r->resonance_smoothcc, r->resonance_oncc);
1074 r->resonance_smoothcc.clear();
1075
1076 copyCurves(r->resonance2_curvecc, r->resonance2_oncc);
1077 r->resonance2_curvecc.clear();
1078
1079 copySmoothValues(r->resonance2_smoothcc, r->resonance2_oncc);
1080 r->resonance2_smoothcc.clear();
1081
1082 for (int j = 0; j < r->eg.size(); j++) {
1083 copyCurves(r->eg[j].pan_curvecc, r->eg[j].pan_oncc);
1084 r->eg[j].pan_curvecc.clear();
1085 }
1086
1087 for (int j = 0; j < r->lfos.size(); j++) {
1088 copySmoothValues(r->lfos[j].volume_smoothcc, r->lfos[j].volume_oncc);
1089 r->lfos[j].volume_smoothcc.clear();
1090
1091 copySmoothValues(r->lfos[j].freq_smoothcc, r->lfos[j].freq_oncc);
1092 r->lfos[j].freq_smoothcc.clear();
1093
1094 copySmoothValues(r->lfos[j].pitch_smoothcc, r->lfos[j].pitch_oncc);
1095 r->lfos[j].pitch_smoothcc.clear();
1096
1097 copySmoothValues(r->lfos[j].pan_smoothcc, r->lfos[j].pan_oncc);
1098 r->lfos[j].pan_smoothcc.clear();
1099
1100 copySmoothValues(r->lfos[j].cutoff_smoothcc, r->lfos[j].cutoff_oncc);
1101 r->lfos[j].cutoff_smoothcc.clear();
1102
1103 copySmoothValues(r->lfos[j].resonance_smoothcc, r->lfos[j].resonance_oncc);
1104 r->lfos[j].resonance_smoothcc.clear();
1105 }
1106 }
1107 }
1108
1109 File::~File()
1110 {
1111 delete _current_group;
1112 delete _instrument;
1113 }
1114
1115 Instrument*
1116 File::GetInstrument()
1117 {
1118 return _instrument;
1119 }
1120
1121 void File::copyCurves(LinuxSampler::ArrayList<CC>& curves, LinuxSampler::ArrayList<CC>& dest) {
1122 for (int i = 0; i < curves.size(); i++) {
1123 for (int j = 0; j < dest.size(); j++) {
1124 if (curves[i].Controller == dest[j].Controller) {
1125 dest[j].Curve = curves[i].Curve;
1126 }
1127 }
1128 }
1129 }
1130
1131 void File::copySmoothValues(LinuxSampler::ArrayList<CC>& smooths, LinuxSampler::ArrayList<CC>& dest) {
1132 for (int i = 0; i < smooths.size(); i++) {
1133 for (int j = 0; j < dest.size(); j++) {
1134 if (smooths[i].Controller == dest[j].Controller) {
1135 dest[j].Smooth = smooths[i].Smooth;
1136 }
1137 }
1138 }
1139 }
1140
1141 void File::copyStepValues(LinuxSampler::ArrayList<CC>& steps, LinuxSampler::ArrayList<CC>& dest) {
1142 for (int i = 0; i < steps.size(); i++) {
1143 for (int j = 0; j < dest.size(); j++) {
1144 if (steps[i].Controller == dest[j].Controller) {
1145 dest[j].Step = steps[i].Step;
1146 }
1147 }
1148 }
1149 }
1150
1151 int File::ToInt(const std::string& s) throw(LinuxSampler::Exception) {
1152 int i;
1153 std::istringstream iss(s);
1154 if(!(iss >> i)) {
1155 std::ostringstream oss;
1156 oss << "Line " << currentLine << ": Expected an integer";
1157 throw LinuxSampler::Exception(oss.str());
1158 }
1159 return i;
1160 }
1161
1162 float File::ToFloat(const std::string& s) throw(LinuxSampler::Exception) {
1163 float i;
1164 std::istringstream iss(s);
1165 if(!(iss >> i)) {
1166 std::ostringstream oss;
1167 oss << "Line " << currentLine << ": Expected a floating-point number";
1168 throw LinuxSampler::Exception(oss.str());
1169 }
1170 return i;
1171 }
1172
1173 void
1174 File::push_header(std::string token)
1175 {
1176 if (token == "<group>")
1177 {
1178 _current_section = GROUP;
1179 _current_group->Reset();
1180 pCurDef = _current_group;
1181 }
1182 else if (token == "<region>")
1183 {
1184 _current_section = REGION;
1185 _current_region = _current_group->RegionFactory();
1186 pCurDef = _current_region;
1187 _instrument->regions.push_back(_current_region);
1188 _current_region->SetInstrument(_instrument);
1189 }
1190 else if (token == "<control>")
1191 {
1192 _current_section = CONTROL;
1193 default_path = "";
1194 octave_offset = 0;
1195 note_offset = 0;
1196 }
1197 else if (token == "<curve>")
1198 {
1199 _current_section = CURVE;
1200 _instrument->curves.add(Curve());
1201 _current_curve = &_instrument->curves[_instrument->curves.size() - 1];
1202 }
1203 else
1204 {
1205 _current_section = UNKNOWN;
1206 std::cerr << "The header '" << token << "' is unsupported by libsfz!" << std::endl;
1207 }
1208 }
1209
1210 void
1211 File::push_opcode(std::string token)
1212 {
1213 if (_current_section == UNKNOWN)
1214 return;
1215
1216 std::string::size_type delimiter_index = token.find('=');
1217 std::string key = token.substr(0, delimiter_index);
1218 std::string value = token.substr(delimiter_index + 1);
1219 int x, y, z;
1220
1221 if (_current_section == CURVE) {
1222 if (sscanf(key.c_str(), "v%d", &x)) {
1223 if (x < 0 || x > 127) {
1224 std::cerr << "Invalid curve index: " << x << std::endl;
1225 }
1226 _current_curve->v[x] = check(key, 0.0f, 1.0f, ToFloat(value));
1227 } else {
1228 std::cerr << "The opcode '" << key << "' in section <curve> is unsupported by libsfz!" << std::endl;
1229 }
1230
1231 return;
1232 }
1233
1234 // sample definition
1235 if ("sample" == key)
1236 {
1237 std::string path = default_path + value;
1238 #ifndef WIN32
1239 for (int i = 0; i < path.length(); i++) if( path[i] == '\\') path[i] = '/';
1240 #endif
1241 path = currentDir + LinuxSampler::File::DirSeparator + path; // TODO: check for absolute path
1242
1243 if(pCurDef) pCurDef->sample = path;
1244 return;
1245 }
1246
1247 // control header directives
1248 else if ("default_path" == key)
1249 {
1250 switch (_current_section)
1251 {
1252 case CONTROL:
1253 default_path = value;
1254 }
1255 return;
1256 }
1257 else if ("octave_offset" == key)
1258 {
1259 switch (_current_section)
1260 {
1261 case CONTROL:
1262 octave_offset = ToInt(value);
1263 }
1264 return;
1265 }
1266 else if ("note_offset" == key)
1267 {
1268 switch (_current_section)
1269 {
1270 case CONTROL:
1271 note_offset = ToInt(value);
1272 }
1273 return;
1274 }
1275
1276 // input controls
1277 else if ("lochan" == key) pCurDef->lochan = ToInt(value);
1278 else if ("hichan" == key) pCurDef->hichan = ToInt(value);
1279 else if ("lokey" == key) pCurDef->lokey = parseKey(value);
1280 else if ("hikey" == key) pCurDef->hikey = parseKey(value);
1281 else if ("key" == key)
1282 {
1283 pCurDef->lokey = pCurDef->hikey = pCurDef->pitch_keycenter = parseKey(value);
1284 }
1285 else if ("lovel" == key) pCurDef->lovel = ToInt(value);
1286 else if ("hivel" == key) pCurDef->hivel = ToInt(value);
1287 else if ("lobend" == key) pCurDef->lobend = ToInt(value);
1288 else if ("hibend" == key) pCurDef->hibend = ToInt(value);
1289 else if ("lobpm" == key) pCurDef->lobpm = ToFloat(value);
1290 else if ("hibpm" == key) pCurDef->hibpm = ToFloat(value);
1291 else if ("lochanaft" == key) pCurDef->lochanaft = ToInt(value);
1292 else if ("hichanaft" == key) pCurDef->hichanaft = ToInt(value);
1293 else if ("lopolyaft" == key) pCurDef->lopolyaft = ToInt(value);
1294 else if ("hipolyaft" == key) pCurDef->hipolyaft = ToInt(value);
1295 else if ("loprog" == key) pCurDef->loprog = ToInt(value);
1296 else if ("hiprog" == key) pCurDef->hiprog = ToInt(value);
1297 else if ("lorand" == key) pCurDef->lorand = ToFloat(value);
1298 else if ("hirand" == key) pCurDef->hirand = ToFloat(value);
1299 else if ("lotimer" == key) pCurDef->lotimer = ToFloat(value);
1300 else if ("hitimer" == key) pCurDef->hitimer = ToFloat(value);
1301 else if ("seq_length" == key) pCurDef->seq_length = ToInt(value);
1302 else if ("seq_position" == key) pCurDef->seq_position = ToInt(value);
1303 else if ("sw_lokey" == key) pCurDef->sw_lokey = parseKey(value);
1304 else if ("sw_hikey" == key) pCurDef->sw_hikey = parseKey(value);
1305 else if ("sw_last" == key) pCurDef->sw_last = parseKey(value);
1306 else if ("sw_down" == key) pCurDef->sw_down = parseKey(value);
1307 else if ("sw_up" == key) pCurDef->sw_up = parseKey(value);
1308 else if ("sw_previous" == key) pCurDef->sw_previous = parseKey(value);
1309 else if ("sw_vel" == key)
1310 {
1311 if (value == "current") pCurDef->sw_vel = VEL_CURRENT;
1312 else if (value == "previous") pCurDef->sw_vel = VEL_PREVIOUS;
1313 }
1314 else if ("trigger" == key)
1315 {
1316 if (value == "attack") pCurDef->trigger = TRIGGER_ATTACK;
1317 else if (value == "release") pCurDef->trigger = TRIGGER_RELEASE;
1318 else if (value == "first") pCurDef->trigger = TRIGGER_FIRST;
1319 else if (value == "legato") pCurDef->trigger = TRIGGER_LEGATO;
1320 }
1321 else if ("group" == key) pCurDef->group = ToInt(value);
1322 else if ("off_by" == key || "offby" == key) pCurDef->off_by = ToInt(value);
1323 else if ("off_mode" == key || "offmode" == key)
1324 {
1325 if (value == "fast") pCurDef->off_mode = OFF_FAST;
1326 else if (value == "normal") pCurDef->off_mode = OFF_NORMAL;
1327 }
1328
1329 // sample player
1330 else if ("count" == key) { pCurDef->count = ToInt(value); pCurDef->loop_mode = ONE_SHOT; }
1331 else if ("delay" == key) pCurDef->delay = ToFloat(value);
1332 else if ("delay_random" == key) pCurDef->delay_random = ToFloat(value);
1333 else if ("delay_beats" == key) pCurDef->delay_beats = ToInt(value);
1334 else if ("stop_beats" == key) pCurDef->stop_beats = ToInt(value);
1335 else if ("delay_samples" == key) pCurDef->delay_samples = ToInt(value);
1336 else if ("end" == key) pCurDef->end = ToInt(value);
1337 else if ("loop_crossfade" == key) pCurDef->loop_crossfade = ToFloat(value);
1338 else if ("offset_random" == key) pCurDef->offset_random = ToInt(value);
1339 else if ("loop_mode" == key || "loopmode" == key)
1340 {
1341 if (value == "no_loop") pCurDef->loop_mode = NO_LOOP;
1342 else if (value == "one_shot") pCurDef->loop_mode = ONE_SHOT;
1343 else if (value == "loop_continuous") pCurDef->loop_mode = LOOP_CONTINUOUS;
1344 else if (value == "loop_sustain") pCurDef->loop_mode = LOOP_SUSTAIN;
1345 }
1346 else if ("loop_start" == key) pCurDef->loop_start = ToInt(value);
1347 else if ("loopstart" == key) pCurDef->loop_start = ToInt(value); // nonstandard
1348 else if ("loop_end" == key) pCurDef->loop_end = ToInt(value);
1349 else if ("loopend" == key) pCurDef->loop_end = ToInt(value); // nonstandard
1350 else if ("offset" == key) pCurDef->offset = ToInt(value);
1351 else if ("sync_beats" == key) pCurDef->sync_beats = ToInt(value);
1352 else if ("sync_offset" == key) pCurDef->sync_offset = ToInt(value);
1353
1354 // amplifier
1355 else if ("volume" == key) pCurDef->volume = ToFloat(value);
1356 else if ("pan" == key) pCurDef->pan = ToFloat(value);
1357 else if ("width" == key) pCurDef->width = ToFloat(value);
1358 else if ("position" == key) pCurDef->position = ToFloat(value);
1359 else if ("amp_keytrack" == key) pCurDef->amp_keytrack = ToFloat(value);
1360 else if ("amp_keycenter" == key) pCurDef->amp_keycenter = parseKey(value);
1361 else if ("amp_veltrack" == key) pCurDef->amp_veltrack = ToFloat(value);
1362 else if ("amp_random" == key) pCurDef->amp_random = ToFloat(value);
1363 else if ("rt_decay" == key || "rtdecay" == key) pCurDef->rt_decay = ToFloat(value);
1364 else if ("xfin_lokey" == key) pCurDef->xfin_lokey = parseKey(value);
1365 else if ("xfin_hikey" == key) pCurDef->xfin_hikey = parseKey(value);
1366 else if ("xfout_lokey" == key) pCurDef->xfout_lokey = parseKey(value);
1367 else if ("xfout_hikey" == key) pCurDef->xfout_hikey = parseKey(value);
1368 else if ("xf_keycurve" == key)
1369 {
1370 if (value == "gain") pCurDef->xf_keycurve = GAIN;
1371 else if (value == "power") pCurDef->xf_keycurve = POWER;
1372 }
1373 else if ("xfin_lovel" == key) pCurDef->xfin_lovel = ToInt(value);
1374 else if ("xfin_hivel" == key) pCurDef->xfin_hivel = ToInt(value);
1375 else if ("xfout_lovel" == key) pCurDef->xfout_lovel = ToInt(value);
1376 else if ("xfout_hivel" == key) pCurDef->xfout_hivel = ToInt(value);
1377 else if ("xf_velcurve" == key)
1378 {
1379 if (value == "gain") pCurDef->xf_velcurve = GAIN;
1380 else if (value == "power") pCurDef->xf_velcurve = POWER;
1381 }
1382 else if ("xf_cccurve" == key)
1383 {
1384 if (value == "gain") pCurDef->xf_cccurve = GAIN;
1385 else if (value == "power") pCurDef->xf_cccurve = POWER;
1386 }
1387
1388 // pitch
1389 else if ("transpose" == key) pCurDef->transpose = ToInt(value);
1390 else if ("tune" == key) pCurDef->tune = ToInt(value);
1391 else if ("pitch_keycenter" == key) pCurDef->pitch_keycenter = parseKey(value);
1392 else if ("pitch_keytrack" == key) pCurDef->pitch_keytrack = ToInt(value);
1393 else if ("pitch_veltrack" == key) pCurDef->pitch_veltrack = ToInt(value);
1394 else if ("pitch_random" == key) pCurDef->pitch_random = ToInt(value);
1395 else if ("bend_up" == key || "bendup" == key) pCurDef->bend_up = ToInt(value);
1396 else if ("bend_down" == key || "benddown" == key) pCurDef->bend_down = ToInt(value);
1397 else if ("bend_step" == key || "bendstep" == key) pCurDef->bend_step = ToInt(value);
1398
1399 // filter
1400 else if ("fil_type" == key || "filtype" == key)
1401 {
1402 if (value == "lpf_1p") pCurDef->fil_type = LPF_1P;
1403 else if (value == "hpf_1p") pCurDef->fil_type = HPF_1P;
1404 else if (value == "bpf_1p") pCurDef->fil_type = BPF_1P;
1405 else if (value == "brf_1p") pCurDef->fil_type = BRF_1P;
1406 else if (value == "apf_1p") pCurDef->fil_type = APF_1P;
1407 else if (value == "lpf_2p") pCurDef->fil_type = LPF_2P;
1408 else if (value == "hpf_2p") pCurDef->fil_type = HPF_2P;
1409 else if (value == "bpf_2p") pCurDef->fil_type = BPF_2P;
1410 else if (value == "brf_2p") pCurDef->fil_type = BRF_2P;
1411 else if (value == "pkf_2p") pCurDef->fil_type = PKF_2P;
1412 else if (value == "lpf_4p") pCurDef->fil_type = LPF_4P;
1413 else if (value == "hpf_4p") pCurDef->fil_type = HPF_4P;
1414 else if (value == "lpf_6p") pCurDef->fil_type = LPF_6P;
1415 else if (value == "hpf_6p") pCurDef->fil_type = HPF_6P;
1416 }
1417 else if ("fil2_type" == key)
1418 {
1419 if (value == "lpf_1p") pCurDef->fil2_type = LPF_1P;
1420 else if (value == "hpf_1p") pCurDef->fil2_type = HPF_1P;
1421 else if (value == "bpf_1p") pCurDef->fil2_type = BPF_1P;
1422 else if (value == "brf_1p") pCurDef->fil2_type = BRF_1P;
1423 else if (value == "apf_1p") pCurDef->fil2_type = APF_1P;
1424 else if (value == "lpf_2p") pCurDef->fil2_type = LPF_2P;
1425 else if (value == "hpf_2p") pCurDef->fil2_type = HPF_2P;
1426 else if (value == "bpf_2p") pCurDef->fil2_type = BPF_2P;
1427 else if (value == "brf_2p") pCurDef->fil2_type = BRF_2P;
1428 else if (value == "pkf_2p") pCurDef->fil2_type = PKF_2P;
1429 else if (value == "lpf_4p") pCurDef->fil2_type = LPF_4P;
1430 else if (value == "hpf_4p") pCurDef->fil2_type = HPF_4P;
1431 else if (value == "lpf_6p") pCurDef->fil2_type = LPF_6P;
1432 else if (value == "hpf_6p") pCurDef->fil2_type = HPF_6P;
1433 }
1434 else if ("cutoff" == key) pCurDef->cutoff = ToFloat(value);
1435 else if ("cutoff2" == key) pCurDef->cutoff2 = ToFloat(value);
1436 else if ("cutoff_chanaft" == key) {
1437 pCurDef->cutoff_chanaft = check(key, -9600, 9600, ToInt(value));
1438 pCurDef->cutoff_oncc.add( CC(128, check(key, -9600, 9600, ToInt(value))) );
1439 } else if ("cutoff2_chanaft" == key) pCurDef->cutoff2_chanaft = ToInt(value);
1440 else if ("cutoff_polyaft" == key) pCurDef->cutoff_polyaft = ToInt(value);
1441 else if ("cutoff2_polyaft" == key) pCurDef->cutoff2_polyaft = ToInt(value);
1442 else if ("resonance" == key) pCurDef->resonance = ToFloat(value);
1443 else if ("resonance2" == key) pCurDef->resonance2 = ToFloat(value);
1444 else if ("fil_keytrack" == key) pCurDef->fil_keytrack = ToInt(value);
1445 else if ("fil2_keytrack" == key) pCurDef->fil2_keytrack = ToInt(value);
1446 else if ("fil_keycenter" == key) pCurDef->fil_keycenter = parseKey(value);
1447 else if ("fil2_keycenter" == key) pCurDef->fil2_keycenter = parseKey(value);
1448 else if ("fil_veltrack" == key) pCurDef->fil_veltrack = ToInt(value);
1449 else if ("fil2_veltrack" == key) pCurDef->fil2_veltrack = ToInt(value);
1450 else if ("fil_random" == key) pCurDef->fil_random = ToInt(value);
1451 else if ("fil2_random" == key) pCurDef->fil2_random = ToInt(value);
1452
1453 // per voice equalizer
1454 else if ("eq1_freq" == key) pCurDef->eq1_freq = ToFloat(value);
1455 else if ("eq2_freq" == key) pCurDef->eq2_freq = ToFloat(value);
1456 else if ("eq3_freq" == key) pCurDef->eq3_freq = ToFloat(value);
1457 else if ("eq1_vel2freq" == key) pCurDef->eq1_vel2freq = ToFloat(value);
1458 else if ("eq2_vel2freq" == key) pCurDef->eq2_vel2freq = ToFloat(value);
1459 else if ("eq3_vel2freq" == key) pCurDef->eq3_vel2freq = ToFloat(value);
1460 else if ("eq1_bw" == key) pCurDef->eq1_bw = ToFloat(value);
1461 else if ("eq2_bw" == key) pCurDef->eq2_bw = ToFloat(value);
1462 else if ("eq3_bw" == key) pCurDef->eq3_bw = ToFloat(value);
1463 else if ("eq1_gain" == key) pCurDef->eq1_gain = ToFloat(value);
1464 else if ("eq2_gain" == key) pCurDef->eq2_gain = ToFloat(value);
1465 else if ("eq3_gain" == key) pCurDef->eq3_gain = ToFloat(value);
1466 else if ("eq1_vel2gain" == key) pCurDef->eq1_vel2gain = ToFloat(value);
1467 else if ("eq2_vel2gain" == key) pCurDef->eq2_vel2gain = ToFloat(value);
1468 else if ("eq3_vel2gain" == key) pCurDef->eq3_vel2gain = ToFloat(value);
1469
1470 else if (sscanf(key.c_str(), "amp_velcurve_%d", &x)) {
1471 pCurDef->amp_velcurve.set(x, ToFloat(value));
1472 }
1473
1474 // v2 envelope generators
1475 else if (sscanf(key.c_str(), "eg%d%n", &x, &y)) {
1476 const char* s = key.c_str() + y;
1477 if (sscanf(s, "_time%d%n", &y, &z)) {
1478 const char* s2 = s + z;
1479 if (strcmp(s2, "") == 0) egnode(x, y).time = check(key, 0.0f, 100.0f, ToFloat(value));
1480 else if (sscanf(s2, "_oncc%d", &z)) egnode(x, y).time_oncc.add( CC(z, check(key, 0.0f, 100.0f, ToFloat(value))) );
1481 } else if (sscanf(s, "_level%d%n", &y, &z)) {
1482 const char* s2 = s + z;
1483 if (strcmp(s2, "") == 0) egnode(x, y).level = check(key, 0.0f, 1.0f, ToFloat(value));
1484 else if (sscanf(s2, "_oncc%d", &z)) egnode(x, y).level_oncc.add( CC(z, check(key, 0.0f, 1.0f, ToFloat(value))) );
1485 }
1486 else if (sscanf(s, "_shape%d", &y)) egnode(x, y).shape = ToFloat(value);
1487 else if (sscanf(s, "_curve%d", &y)) egnode(x, y).curve = ToFloat(value);
1488 else if (strcmp(s, "_sustain") == 0) eg(x).sustain = ToInt(value);
1489 else if (strcmp(s, "_loop") == 0) eg(x).loop = ToInt(value);
1490 else if (strcmp(s, "_loop_count") == 0) eg(x).loop_count = ToInt(value);
1491 else if (strcmp(s, "_amplitude") == 0) eg(x).amplitude = ToFloat(value);
1492 else if (sscanf(s, "_amplitude_oncc%d", &y)) eg(x).amplitude_oncc.add( CC(y, check(key, 0.0f, 100.0f, ToFloat(value))) );
1493 else if (strcmp(s, "_volume") == 0) eg(x).volume = check(key, -144.0f, 6.0f, ToFloat(value));
1494 else if (sscanf(s, "_volume_oncc%d", &y)) eg(x).volume_oncc.add( CC(y, check(key, -144.0f, 6.0f, ToFloat(value))) );
1495 else if (strcmp(s, "_cutoff") == 0) eg(x).cutoff = ToFloat(value);
1496 else if (sscanf(s, "_cutoff_oncc%d", &y)) eg(x).cutoff_oncc.add( CC(y, check(key, -9600, 9600, ToInt(value))) );
1497 else if (strcmp(s, "_pitch") == 0) eg(x).pitch = check(key, -9600, 9600, ToInt(value));
1498 else if (sscanf(s, "_pitch_oncc%d", &y)) eg(x).pitch_oncc.add( CC(y, check(key, -9600, 9600, ToInt(value))) );
1499 else if (strcmp(s, "_resonance") == 0) eg(x).resonance = check(key, 0.0f, 40.0f, ToFloat(value));
1500 else if (sscanf(s, "_resonance_oncc%d", &y)) eg(x).resonance_oncc.add( CC(y, check(key, 0.0f, 40.0f, ToFloat(value))) );
1501 else if (strcmp(s, "_pan") == 0) eg(x).pan = check(key, -100.0f, 100.0f, ToFloat(value));
1502 else if (strcmp(s, "_pan_curve") == 0) eg(x).pan_curve = check(key, 0, 30000, ToInt(value));
1503 else if (sscanf(s, "_pan_oncc%d", &y)) eg(x).pan_oncc.add( CC(y, check(key, -100.0f, 100.0f, ToFloat(value))) );
1504 else if (sscanf(s, "_pan_curvecc%d", &y)) eg(x).pan_curvecc.add( CC(y, 0.0f, check(key, 0, 30000, ToInt(value))) );
1505 else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1506 }
1507
1508 // v1 envelope generators
1509 else if ("ampeg_delay" == key) pCurDef->ampeg_delay = ToFloat(value);
1510 else if ("ampeg_start" == key) pCurDef->ampeg_start = ToFloat(value);
1511 else if ("ampeg_attack" == key) pCurDef->ampeg_attack = ToFloat(value);
1512 else if ("ampeg_hold" == key) pCurDef->ampeg_hold = ToFloat(value);
1513 else if ("ampeg_decay" == key) pCurDef->ampeg_decay = ToFloat(value);
1514 else if ("ampeg_sustain" == key) pCurDef->ampeg_sustain = ToFloat(value);
1515 else if ("ampeg_release" == key) pCurDef->ampeg_release = ToFloat(value);
1516 else if ("ampeg_vel2delay" == key) pCurDef->ampeg_vel2delay = ToFloat(value);
1517 else if ("ampeg_vel2attack" == key) pCurDef->ampeg_vel2attack = ToFloat(value);
1518 else if ("ampeg_vel2hold" == key) pCurDef->ampeg_vel2hold = ToFloat(value);
1519 else if ("ampeg_vel2decay" == key) pCurDef->ampeg_vel2decay = ToFloat(value);
1520 else if ("ampeg_vel2sustain" == key) pCurDef->ampeg_vel2sustain = ToFloat(value);
1521 else if ("ampeg_vel2release" == key) pCurDef->ampeg_vel2release = ToFloat(value);
1522 else if ("fileg_delay" == key) pCurDef->fileg_delay = ToFloat(value);
1523 else if ("fileg_start" == key) pCurDef->fileg_start = ToFloat(value);
1524 else if ("fileg_attack" == key) pCurDef->fileg_attack = ToFloat(value);
1525 else if ("fileg_hold" == key) pCurDef->fileg_hold = ToFloat(value);
1526 else if ("fileg_decay" == key) pCurDef->fileg_decay = ToFloat(value);
1527 else if ("fileg_sustain" == key) pCurDef->fileg_sustain = ToFloat(value);
1528 else if ("fileg_release" == key) pCurDef->fileg_release = ToFloat(value);
1529 else if ("fileg_depth" == key) pCurDef->fileg_depth = check(key, -12000, 12000, ToInt(value));
1530 else if ("fileg_vel2delay" == key) pCurDef->fileg_vel2delay = check(key, -100.0f, 100.0f, ToFloat(value));
1531 else if ("fileg_vel2attack" == key) pCurDef->fileg_vel2attack = ToFloat(value);
1532 else if ("fileg_vel2hold" == key) pCurDef->fileg_vel2hold = ToFloat(value);
1533 else if ("fileg_vel2decay" == key) pCurDef->fileg_vel2decay = ToFloat(value);
1534 else if ("fileg_vel2sustain" == key) pCurDef->fileg_vel2sustain = ToFloat(value);
1535 else if ("fileg_vel2release" == key) pCurDef->fileg_vel2release = ToFloat(value);
1536 else if ("pitcheg_delay" == key) pCurDef->pitcheg_delay = ToFloat(value);
1537 else if ("pitcheg_start" == key) pCurDef->pitcheg_start = ToFloat(value);
1538 else if ("pitcheg_attack" == key) pCurDef->pitcheg_attack = ToFloat(value);
1539 else if ("pitcheg_hold" == key) pCurDef->pitcheg_hold = ToFloat(value);
1540 else if ("pitcheg_decay" == key) pCurDef->pitcheg_decay = ToFloat(value);
1541 else if ("pitcheg_sustain" == key) pCurDef->pitcheg_sustain = ToFloat(value);
1542 else if ("pitcheg_release" == key) pCurDef->pitcheg_release = ToFloat(value);
1543 else if ("pitcheg_depth" == key) pCurDef->pitcheg_depth = check(key, -12000, 12000, ToInt(value));
1544 else if ("pitcheg_vel2delay" == key) pCurDef->pitcheg_vel2delay = check(key, -100.0f, 100.0f, ToFloat(value));
1545 else if ("pitcheg_vel2attack" == key) pCurDef->pitcheg_vel2attack = ToFloat(value);
1546 else if ("pitcheg_vel2hold" == key) pCurDef->pitcheg_vel2hold = ToFloat(value);
1547 else if ("pitcheg_vel2decay" == key) pCurDef->pitcheg_vel2decay = ToFloat(value);
1548 else if ("pitcheg_vel2sustain" == key) pCurDef->pitcheg_vel2sustain = ToFloat(value);
1549 else if ("pitcheg_vel2release" == key) pCurDef->pitcheg_vel2release = ToFloat(value);
1550
1551
1552 // v1 LFO
1553 else if ("amplfo_delay" == key) pCurDef->amplfo_delay = ToFloat(value);
1554 else if ("amplfo_fade" == key) pCurDef->amplfo_fade = ToFloat(value);
1555 else if ("amplfo_freq" == key) pCurDef->amplfo_freq = ToFloat(value);
1556 else if ("amplfo_freqchanaft" == key) pCurDef->amplfo_freqcc.add( CC(128, check(key, -200.0f, 200.0f, ToFloat(value))) );
1557 else if ("amplfo_depth" == key) pCurDef->amplfo_depth = ToFloat(value);
1558 else if ("amplfo_depthchanaft" == key) pCurDef->amplfo_depthcc.add( CC(128, check(key, -10.0f, 10.0f, ToFloat(value))) );
1559 else if ("fillfo_delay" == key) pCurDef->fillfo_delay = ToFloat(value);
1560 else if ("fillfo_fade" == key) pCurDef->fillfo_fade = ToFloat(value);
1561 else if ("fillfo_freq" == key) pCurDef->fillfo_freq = ToFloat(value);
1562 else if ("fillfo_freqchanaft" == key) pCurDef->fillfo_freqcc.add( CC(128, check(key, -200.0f, 200.0f, ToFloat(value))) );
1563 else if ("fillfo_depth" == key) pCurDef->fillfo_depth = ToFloat(value);
1564 else if ("fillfo_depthchanaft" == key) pCurDef->fillfo_depthcc.add( CC(128, check(key, -1200, 1200, ToInt(value))) );
1565 else if ("pitchlfo_delay" == key) pCurDef->pitchlfo_delay = ToFloat(value);
1566 else if ("pitchlfo_fade" == key) pCurDef->pitchlfo_fade = ToFloat(value);
1567 else if ("pitchlfo_freq" == key) pCurDef->pitchlfo_freq = ToFloat(value);
1568 else if ("pitchlfo_freqchanaft" == key) pCurDef->pitchlfo_freqcc.add( CC(128, check(key, -200.0f, 200.0f, ToFloat(value))) );
1569 else if ("pitchlfo_depth" == key) pCurDef->pitchlfo_depth = ToInt(value);
1570 else if ("pitchlfo_depthchanaft" == key) pCurDef->pitchlfo_depthcc.add( CC(128, check(key, -1200, 1200, ToInt(value))) );
1571
1572
1573 // v2 LFO
1574 else if (sscanf(key.c_str(), "lfo%d%n", &x, &y)) {
1575 const char* s = key.c_str() + y;
1576 if (strcmp(s, "_freq") == 0) lfo(x).freq = check(key, 0.0f, 20.0f, ToFloat(value));
1577 else if (sscanf(s, "_freq_oncc%d", &y)) lfo(x).freq_oncc.add( CC(y, check(key, 0.0f, 20.0f, ToFloat(value))) );
1578 else if (sscanf(s, "_freq_smoothcc%d", &y)) lfo(x).freq_smoothcc.add( CC(y, 0, -1, check(key, 0, 100000 /* max? */, ToInt(value))) );
1579 else if (strcmp(s, "_wave") == 0) lfo(x).wave = ToInt(value);
1580 else if (strcmp(s, "_delay") == 0) lfo(x).delay = check(key, 0.0f, 100.0f, ToFloat(value));
1581 else if (sscanf(s, "_delay_oncc%d", &y)) lfo(x).delay_oncc.add( CC(y, check(key, 0.0f, 100.0f, ToFloat(value))) );
1582 else if (strcmp(s, "_fade") == 0) lfo(x).fade = check(key, 0.0f, 100.0f, ToFloat(value));
1583 else if (sscanf(s, "_fade_oncc%d", &y)) lfo(x).fade_oncc.add( CC(y, check(key, 0.0f, 100.0f, ToFloat(value))) );
1584 else if (strcmp(s, "_phase") == 0) lfo(x).phase = check(key, 0.0f, 360.0f, ToFloat(value));
1585 else if (sscanf(s, "_phase_oncc%d", &y)) lfo(x).phase_oncc.add( CC(y, check(key, 0.0f, 360.0f, ToFloat(value))) );
1586 else if (strcmp(s, "_volume") == 0) lfo(x).volume = check(key, -144.0f, 6.0f, ToFloat(value));
1587 else if (sscanf(s, "_volume_oncc%d", &y)) lfo(x).volume_oncc.add( CC(y, check(key, -144.0f, 6.0f, ToFloat(value))) );
1588 else if (sscanf(s, "_volume_smoothcc%d", &y)) lfo(x).volume_smoothcc.add( CC(y, 0, -1, check(key, 0, 100000 /* max? */, ToInt(value))) );
1589 else if (strcmp(s, "_pitch") == 0) lfo(x).pitch = check(key, -9600, 9600, ToInt(value));
1590 else if (sscanf(s, "_pitch_oncc%d", &y)) lfo(x).pitch_oncc.add( CC(y, check(key, -9600, 9600, ToInt(value))) );
1591 else if (sscanf(s, "_pitch_smoothcc%d", &y)) lfo(x).pitch_smoothcc.add( CC(y, 0, -1, check(key, 0, 100000 /* max? */, ToInt(value))) );
1592 else if (strcmp(s, "_cutoff") == 0) lfo(x).cutoff = check(key, -9600, 9600, ToInt(value));
1593 else if (sscanf(s, "_cutoff_oncc%d", &y)) lfo(x).cutoff_oncc.add( CC(y, check(key, -9600, 9600, ToInt(value))) );
1594 else if (sscanf(s, "_cutoff_smoothcc%d", &y)) lfo(x).cutoff_smoothcc.add( CC(y, 0, -1, check(key, 0, 100000 /* max? */, ToInt(value))) );
1595 else if (strcmp(s, "_resonance") == 0) lfo(x).resonance = check(key, 0.0f, 40.0f, ToFloat(value));
1596 else if (sscanf(s, "_resonance_oncc%d", &y)) lfo(x).resonance_oncc.add( CC(y, check(key, 0.0f, 40.0f, ToFloat(value))) );
1597 else if (sscanf(s, "_resonance_smoothcc%d", &y)) lfo(x).resonance_smoothcc.add( CC(y, 0, -1, check(key, 0, 100000 /* max? */, ToInt(value))) );
1598 else if (strcmp(s, "_pan") == 0) lfo(x).pan = check(key, -100.0f, 100.0f, ToFloat(value));
1599 else if (sscanf(s, "_pan_oncc%d", &y)) lfo(x).pan_oncc.add( CC(y, check(key, -100.0f, 100.0f, ToFloat(value))) );
1600 else if (sscanf(s, "_pan_smoothcc%d", &y)) lfo(x).pan_smoothcc.add( CC(y, 0, -1, check(key, 0, 100000 /* max? */, ToInt(value))) );
1601 else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1602 }
1603
1604 // CCs
1605 else if (key.find("cc") != std::string::npos)
1606 {
1607 std::string::size_type delimiter_index = key.find("cc");
1608 std::string key_cc = key.substr(0, delimiter_index);
1609 if (key_cc.size() > 3 && !strcmp(key_cc.c_str() + (key_cc.size() - 3), "_on")) {
1610 key_cc = key_cc.substr(0, key_cc.size() - 3);
1611 }
1612 int num_cc = ToInt(key.substr(delimiter_index + 2));
1613
1614 // input controls
1615 if ("lo" == key_cc) pCurDef->locc.set(num_cc, ToInt(value));
1616 else if ("hi" == key_cc) pCurDef->hicc.set(num_cc, ToInt(value));
1617 else if ("start_lo" == key_cc) pCurDef->start_locc.set(num_cc, ToInt(value));
1618 else if ("start_hi" == key_cc) pCurDef->start_hicc.set(num_cc, ToInt(value));
1619 else if ("stop_lo" == key_cc) pCurDef->stop_locc.set(num_cc, ToInt(value));
1620 else if ("stop_hi" == key_cc) pCurDef->stop_hicc.set(num_cc, ToInt(value));
1621 else if ("on_lo" == key_cc) pCurDef->on_locc.set(num_cc, ToInt(value));
1622 else if ("on_hi" == key_cc) pCurDef->on_hicc.set(num_cc, ToInt(value));
1623
1624 // sample player
1625 else if ("delay" == key_cc) pCurDef->delay_oncc.set(num_cc, ToFloat(value));
1626 else if ("delay_samples" == key_cc) pCurDef->delay_samples_oncc.set(num_cc, ToInt(value));
1627 else if ("offset" == key_cc) pCurDef->offset_oncc.set(num_cc, ToInt(value));
1628
1629 // amplifier
1630 else if ("gain" == key_cc || "gain_" == key_cc) pCurDef->gain_oncc.set(num_cc, ToFloat(value));
1631 else if ("xfin_lo" == key_cc) pCurDef->xfin_locc.set(num_cc, ToInt(value));
1632 else if ("xfin_hi" == key_cc) pCurDef->xfin_hicc.set(num_cc, ToInt(value));
1633 else if ("xfout_lo" == key_cc) pCurDef->xfout_locc.set(num_cc, ToInt(value));
1634 else if ("xfout_hi" == key_cc) pCurDef->xfout_hicc.set(num_cc, ToInt(value));
1635
1636 // pitch
1637 else if ("pitch" == key_cc) pCurDef->pitch_oncc.add( CC(num_cc, check(key, -9600, 9600, ToInt(value))) );
1638 else if ("pitch_smooth" == key_cc) pCurDef->pitch_smoothcc.add( CC(num_cc, 0, -1, check(key, 0.0f, 100000.0f /* max? */, ToFloat(value))) );
1639 else if ("pitch_curve" == key_cc) pCurDef->pitch_curvecc.add( CC(num_cc, 0, check(key, 0, 30000, ToInt(value))) );
1640 else if ("pitch_step" == key_cc) pCurDef->pitch_stepcc.add( CC(num_cc, 0, -1, 0, check(key, 0, 1200, ToInt(value))) );
1641
1642 // filter
1643 else if ("cutoff" == key_cc || "cutoff_" == key_cc) {
1644 pCurDef->cutoff_oncc.add( CC(num_cc, check(key, -9600, 9600, ToInt(value))) );
1645 } else if ("cutoff2" == key_cc) pCurDef->cutoff2_oncc.add( CC(num_cc, check(key, -9600, 9600, ToInt(value))) );
1646 else if ("cutoff_smooth" == key_cc) pCurDef->cutoff_smoothcc.add( CC(num_cc, 0, -1, check(key, 0.0f, 100000.0f /* max? */, ToFloat(value))) );
1647 else if ("cutoff2_smooth" == key_cc) pCurDef->cutoff2_smoothcc.add( CC(num_cc, 0, -1, check(key, 0.0f, 100000.0f /* max? */, ToFloat(value))) );
1648 else if ("cutoff_step" == key_cc) pCurDef->cutoff_stepcc.set(num_cc, ToInt(value));
1649 else if ("cutoff2_step" == key_cc) pCurDef->cutoff2_stepcc.set(num_cc, ToInt(value));
1650 else if ("cutoff_curve" == key_cc) pCurDef->cutoff_curvecc.add( CC(num_cc, 0, check(key, 0, 30000, ToInt(value))) );
1651 else if ("cutoff2_curve" == key_cc) pCurDef->cutoff2_curvecc.add( CC(num_cc, 0, check(key, 0, 30000, ToInt(value))) );
1652 else if ("resonance" == key_cc) pCurDef->resonance_oncc.add( CC(num_cc, check(key, 0.0f, 40.0f, ToFloat(value))) );
1653 else if ("resonance2" == key_cc) pCurDef->resonance2_oncc.add( CC(num_cc, check(key, 0.0f, 40.0f, ToFloat(value))) );
1654 else if ("resonance_smooth" == key_cc) pCurDef->resonance_smoothcc.add( CC(num_cc, 0, -1, check(key, 0, 100000 /* max? */, ToInt(value))) );
1655 else if ("resonance2_smooth" == key_cc) pCurDef->resonance2_smoothcc.add( CC(num_cc, 0, -1, check(key, 0, 100000 /* max? */, ToInt(value))) );
1656 else if ("resonance_step" == key_cc) pCurDef->resonance_stepcc.set(num_cc, ToInt(value));
1657 else if ("resonance2_step" == key_cc) pCurDef->resonance2_stepcc.set(num_cc, ToInt(value));
1658 else if ("resonance_curve" == key_cc) pCurDef->resonance_curvecc.add( CC(num_cc, 0.0f, check(key, 0, 30000, ToInt(value))) );
1659 else if ("resonance2_curve" == key_cc) pCurDef->resonance2_curvecc.add( CC(num_cc, 0.0f, check(key, 0, 30000, ToInt(value))) );
1660
1661 // per voice equalizer
1662 else if ("eq1_freq" == key_cc) pCurDef->eq1_freq_oncc.set(num_cc, ToInt(value));
1663 else if ("eq2_freq" == key_cc) pCurDef->eq2_freq_oncc.set(num_cc, ToInt(value));
1664 else if ("eq3_freq" == key_cc) pCurDef->eq3_freq_oncc.set(num_cc, ToInt(value));
1665 else if ("eq1_bw" == key_cc) pCurDef->eq1_bw_oncc.set(num_cc, ToInt(value));
1666 else if ("eq2_bw" == key_cc) pCurDef->eq2_bw_oncc.set(num_cc, ToInt(value));
1667 else if ("eq3_bw" == key_cc) pCurDef->eq3_bw_oncc.set(num_cc, ToInt(value));
1668 else if ("eq1_gain" == key_cc) pCurDef->eq1_gain_oncc.set(num_cc, ToInt(value));
1669 else if ("eq2_gain" == key_cc) pCurDef->eq2_gain_oncc.set(num_cc, ToInt(value));
1670 else if ("eq3_gain" == key_cc) pCurDef->eq3_gain_oncc.set(num_cc, ToInt(value));
1671
1672 else if ("ampeg_delay" == key_cc) pCurDef->ampeg_delaycc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1673 else if ("ampeg_start" == key_cc) pCurDef->ampeg_startcc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1674 else if ("ampeg_attack" == key_cc) pCurDef->ampeg_attackcc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1675 else if ("ampeg_hold" == key_cc) pCurDef->ampeg_holdcc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1676 else if ("ampeg_decay" == key_cc) pCurDef->ampeg_decaycc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1677 else if ("ampeg_sustain" == key_cc) pCurDef->ampeg_sustaincc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1678 else if ("ampeg_release" == key_cc) pCurDef->ampeg_releasecc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1679
1680 else if ("fileg_delay" == key_cc) pCurDef->fileg_delay_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1681 else if ("fileg_start" == key_cc) pCurDef->fileg_start_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1682 else if ("fileg_attack" == key_cc) pCurDef->fileg_attack_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1683 else if ("fileg_hold" == key_cc) pCurDef->fileg_hold_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1684 else if ("fileg_decay" == key_cc) pCurDef->fileg_decay_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1685 else if ("fileg_sustain" == key_cc) pCurDef->fileg_sustain_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1686 else if ("fileg_release" == key_cc) pCurDef->fileg_release_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1687 else if ("fileg_depth" == key_cc) pCurDef->fileg_depth_oncc.add( CC(num_cc, check(key, -12000, 12000, ToInt(value))) );
1688
1689 else if ("pitcheg_delay" == key_cc) pCurDef->pitcheg_delay_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1690 else if ("pitcheg_start" == key_cc) pCurDef->pitcheg_start_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1691 else if ("pitcheg_attack" == key_cc) pCurDef->pitcheg_attack_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1692 else if ("pitcheg_hold" == key_cc) pCurDef->pitcheg_hold_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1693 else if ("pitcheg_decay" == key_cc) pCurDef->pitcheg_decay_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1694 else if ("pitcheg_sustain" == key_cc) pCurDef->pitcheg_sustain_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1695 else if ("pitcheg_release" == key_cc) pCurDef->pitcheg_release_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1696 else if ("pitcheg_depth" == key_cc) pCurDef->pitcheg_depth_oncc.add( CC(num_cc, check(key, -12000, 12000, ToInt(value))) );
1697
1698 else if ("pitchlfo_delay" == key_cc) pCurDef->pitchlfo_delay_oncc.add( CC(num_cc, check(key, 0.0f, 100.0f, ToFloat(value))) );
1699 else if ("pitchlfo_fade" == key_cc) pCurDef->pitchlfo_fade_oncc.add( CC(num_cc, check(key, 0.0f, 100.0f, ToFloat(value))) );
1700 else if ("pitchlfo_depth" == key_cc) pCurDef->pitchlfo_depthcc.add( CC(num_cc, check(key, -1200, 1200, ToInt(value))) );
1701 else if ("pitchlfo_freq" == key_cc) pCurDef->pitchlfo_freqcc.add( CC(num_cc, check(key, -200.0f, 200.0f, ToFloat(value))) );
1702 else if ("fillfo_delay" == key_cc) pCurDef->fillfo_delay_oncc.add( CC(num_cc, check(key, 0.0f, 100.0f, ToFloat(value))) );
1703 else if ("fillfo_fade" == key_cc) pCurDef->fillfo_fade_oncc.add( CC(num_cc, check(key, 0.0f, 100.0f, ToFloat(value))) );
1704 else if ("fillfo_depth" == key_cc) pCurDef->fillfo_depthcc.add( CC(num_cc, check(key, -1200, 1200, ToInt(value))) );
1705 else if ("fillfo_freq" == key_cc) pCurDef->fillfo_freqcc.add( CC(num_cc, check(key, -200.0f, 200.0f, ToFloat(value))) );
1706 else if ("amplfo_delay" == key_cc) pCurDef->amplfo_delay_oncc.add( CC(num_cc, check(key, 0.0f, 100.0f, ToFloat(value))) );
1707 else if ("amplfo_fade" == key_cc) pCurDef->amplfo_fade_oncc.add( CC(num_cc, check(key, 0.0f, 100.0f, ToFloat(value))) );
1708 else if ("amplfo_depth" == key_cc) pCurDef->amplfo_depthcc.add( CC(num_cc, check(key, -10.0f, 10.0f, ToFloat(value))) );
1709 else if ("amplfo_freq" == key_cc) pCurDef->amplfo_freqcc.add( CC(num_cc, check(key, -200.0f, 200.0f, ToFloat(value))) );
1710 else if ("volume" == key_cc) pCurDef->volume_oncc.add( CC(num_cc, check(key, -144.0f, 100.0f, ToFloat(value))) );
1711 else if ("volume_curve" == key_cc) pCurDef->volume_curvecc.add( CC(num_cc, 0, check(key, 0, 30000, ToInt(value))) );
1712 else if ("volume_smooth" == key_cc) pCurDef->volume_smoothcc.add( CC(num_cc, 0, -1, check(key, 0.0f, 100000.0f /* max? */, ToFloat(value))) );
1713 else if ("pan" == key_cc) pCurDef->pan_oncc.add( CC(num_cc, check(key, -100.0f, 100.0f, ToFloat(value))) );
1714 else if ("pan_curve" == key_cc) pCurDef->pan_curvecc.add( CC(num_cc, 0, check(key, 0, 30000, ToInt(value))) );
1715 else if ("pan_smooth" == key_cc) pCurDef->pan_smoothcc.add( CC(num_cc, 0, -1, check(key, 0.0f, 100000.0f /* max? */, ToFloat(value))) );
1716 else std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1717 }
1718
1719 else {
1720 std::cerr << "The opcode '" << key << "' is unsupported by libsfz!" << std::endl;
1721 }
1722 }
1723
1724 int File::parseKey(const std::string& s) {
1725 int i;
1726 std::istringstream iss(s);
1727 if (isdigit(iss.peek())) {
1728 iss >> i;
1729 } else {
1730 switch (tolower(iss.get())) {
1731 case 'c': i = 0; break;
1732 case 'd': i = 2; break;
1733 case 'e': i = 4; break;
1734 case 'f': i = 5; break;
1735 case 'g': i = 7; break;
1736 case 'a': i = 9; break;
1737 case 'b': i = 11; break;
1738 case '-': if (s == "-1") return -1;
1739 default:
1740 std::cerr << "Not a note: " << s << std::endl;
1741 return 0;
1742 }
1743 if (iss.peek() == '#') {
1744 i++;
1745 iss.get();
1746 } else if (tolower(iss.peek()) == 'b') {
1747 i--;
1748 iss.get();
1749 }
1750 int octave;
1751 if (!(iss >> octave)) {
1752 std::cerr << "Not a note: " << s << std::endl;
1753 return 0;
1754 }
1755 i += (octave + 1) * 12;
1756 }
1757 return i + note_offset + 12 * octave_offset;
1758 }
1759
1760 EGNode::EGNode() : time(0), level(0), shape(0), curve(0) {
1761 }
1762
1763 void EGNode::Copy(const EGNode& egNode) {
1764 time = egNode.time;
1765 level = egNode.level;
1766 shape = egNode.shape;
1767 curve = egNode.curve;
1768
1769 time_oncc = egNode.time_oncc;
1770 level_oncc = egNode.level_oncc;
1771 }
1772
1773 EG::EG() :
1774 sustain(0), loop(0), loop_count(0), amplitude(0), pan(0), pan_curve(-1),
1775 cutoff(0), pitch(0), resonance(0), volume(-200) /* less than -144 dB is considered unset */
1776 { }
1777
1778 void EG::Copy(const EG& eg) {
1779 sustain = eg.sustain;
1780 loop = eg.loop;
1781 loop_count = eg.loop_count;
1782 amplitude = eg.amplitude;
1783 volume = eg.volume;
1784 cutoff = eg.cutoff;
1785 pitch = eg.pitch;
1786 resonance = eg.resonance;
1787 pan = eg.pan;
1788 pan_curve = eg.pan_curve;
1789 node = eg.node;
1790
1791 amplitude_oncc = eg.amplitude_oncc;
1792 volume_oncc = eg.volume_oncc;
1793 cutoff_oncc = eg.cutoff_oncc;
1794 pitch_oncc = eg.pitch_oncc;
1795 resonance_oncc = eg.resonance_oncc;
1796 pan_oncc = eg.pan_oncc;
1797 pan_curvecc = eg.pan_curvecc;
1798 }
1799
1800 LFO::LFO(): freq (-1),/* -1 is used to determine whether the LFO was initialized */
1801 fade(0), phase(0), wave(0), delay(0), pitch(0), cutoff(0), resonance(0), pan(0), volume(0) {
1802
1803 }
1804
1805 void LFO::Copy(const LFO& lfo) {
1806 delay = lfo.delay;
1807 freq = lfo.freq;
1808 fade = lfo.fade;
1809 phase = lfo.phase;
1810 wave = lfo.wave;
1811 volume = lfo.volume;
1812 pitch = lfo.pitch;
1813 cutoff = lfo.cutoff;
1814 resonance = lfo.resonance;
1815 pan = lfo.pan;
1816
1817 delay_oncc = lfo.delay_oncc;
1818 freq_oncc = lfo.freq_oncc;
1819 freq_smoothcc = lfo.freq_smoothcc;
1820 fade_oncc = lfo.fade_oncc;
1821 phase_oncc = lfo.phase_oncc;
1822 pitch_oncc = lfo.pitch_oncc;
1823 pitch_smoothcc = lfo.pitch_smoothcc;
1824 volume_oncc = lfo.volume_oncc;
1825 volume_smoothcc = lfo.volume_smoothcc;
1826 pan_oncc = lfo.pan_oncc;
1827 pan_smoothcc = lfo.pan_smoothcc;
1828 cutoff_oncc = lfo.cutoff_oncc;
1829 cutoff_smoothcc = lfo.cutoff_smoothcc;
1830 resonance_oncc = lfo.resonance_oncc;
1831 resonance_smoothcc = lfo.resonance_smoothcc;
1832 }
1833
1834 EG& File::eg(int x) {
1835 while (pCurDef->eg.size() <= x) {
1836 pCurDef->eg.add(EG());
1837 }
1838 return pCurDef->eg[x];
1839 }
1840
1841 EGNode& File::egnode(int x, int y) {
1842 EG& e = eg(x);
1843 while (e.node.size() <= y) {
1844 e.node.add(EGNode());
1845 }
1846 return e.node[y];
1847 }
1848
1849 LFO& File::lfo(int x) {
1850 while (pCurDef->lfos.size() <= x) {
1851 pCurDef->lfos.add(LFO());
1852 }
1853 return pCurDef->lfos[x];
1854 }
1855
1856 } // !namespace sfz

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC