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

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

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

revision 2265 by iliev, Mon Aug 22 12:22:34 2011 UTC revision 2403 by persson, Sun Jan 20 19:01:53 2013 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 - 2011 Anders Dahnielson and Grigor Iliev          *   *   Copyright (C) 2009 - 2013 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 56  namespace sfz Line 56  namespace sfz
56              long TotalFrames;              long TotalFrames;
57                            
58          public:          public:
59              Sample(String File, bool DontClose = false, uint offset = 0, int end = -2 /* -2 means unspecified */)              Sample(String File, bool DontClose = false, uint offset = 0, int end = 0 /* 0 means unspecified */)
60                    : LinuxSampler::SampleFileBase<Region>(File, DontClose)                    : LinuxSampler::SampleFileBase<Region>(File, DontClose)
61              {              {
62                  Offset = offset;                  Offset = offset;
# Line 68  namespace sfz Line 68  namespace sfz
68                      Offset = 0;                      Offset = 0;
69                  }                  }
70                                    
71                  if (End == -2 || End > tfc) TotalFrames = tfc;                  if (End == 0 || End > tfc) TotalFrames = tfc;
72                  else if (End == -1 || End < Offset) TotalFrames = 0;                  else if (End == -1 || End < Offset) TotalFrames = 0;
73                  else TotalFrames = End;                  else TotalFrames = End;
74              }              }
# Line 289  namespace sfz Line 289  namespace sfz
289          void operator=(const EGNode& egNode) { Copy(egNode); }          void operator=(const EGNode& egNode) { Copy(egNode); }
290          void Copy(const EGNode& egNode);          void Copy(const EGNode& egNode);
291      };      };
292        
293        class EqImpl {
294        public:
295            float eq1freq, eq2freq, eq3freq;
296            float eq1bw, eq2bw, eq3bw;
297            float eq1gain, eq2gain, eq3gain;
298            LinuxSampler::ArrayList<CC> eq1freq_oncc;
299            LinuxSampler::ArrayList<CC> eq2freq_oncc;
300            LinuxSampler::ArrayList<CC> eq3freq_oncc;
301            LinuxSampler::ArrayList<CC> eq1bw_oncc;
302            LinuxSampler::ArrayList<CC> eq2bw_oncc;
303            LinuxSampler::ArrayList<CC> eq3bw_oncc;
304            LinuxSampler::ArrayList<CC> eq1gain_oncc;
305            LinuxSampler::ArrayList<CC> eq2gain_oncc;
306            LinuxSampler::ArrayList<CC> eq3gain_oncc;
307            
308            EqImpl();
309            
310            EqImpl(const EqImpl& eq) { Copy(eq); }
311            void Copy(const EqImpl& eq);
312            bool HasEq();
313        };
314        
315        class EqSmoothStepImpl: public EqImpl {
316        public:
317            LinuxSampler::ArrayList<CC> eq1freq_smoothcc;
318            LinuxSampler::ArrayList<CC> eq2freq_smoothcc;
319            LinuxSampler::ArrayList<CC> eq3freq_smoothcc;
320            LinuxSampler::ArrayList<CC> eq1bw_smoothcc;
321            LinuxSampler::ArrayList<CC> eq2bw_smoothcc;
322            LinuxSampler::ArrayList<CC> eq3bw_smoothcc;
323            LinuxSampler::ArrayList<CC> eq1gain_smoothcc;
324            LinuxSampler::ArrayList<CC> eq2gain_smoothcc;
325            LinuxSampler::ArrayList<CC> eq3gain_smoothcc;
326            
327            LinuxSampler::ArrayList<CC> eq1freq_stepcc;
328            LinuxSampler::ArrayList<CC> eq2freq_stepcc;
329            LinuxSampler::ArrayList<CC> eq3freq_stepcc;
330            LinuxSampler::ArrayList<CC> eq1bw_stepcc;
331            LinuxSampler::ArrayList<CC> eq2bw_stepcc;
332            LinuxSampler::ArrayList<CC> eq3bw_stepcc;
333            LinuxSampler::ArrayList<CC> eq1gain_stepcc;
334            LinuxSampler::ArrayList<CC> eq2gain_stepcc;
335            LinuxSampler::ArrayList<CC> eq3gain_stepcc;
336            
337            EqSmoothStepImpl() { }
338            EqSmoothStepImpl(const EqSmoothStepImpl& eq) { Copy(eq); }
339            
340            void Copy(const EqSmoothStepImpl& eq);
341            void copySmoothValues();
342            void copyStepValues();
343        };
344    
345      class EG      class EG: public EqImpl
346      {      {
347      public:      public:
348          LinuxSampler::ArrayList<EGNode> node;          LinuxSampler::ArrayList<EGNode> node;
# Line 319  namespace sfz Line 371  namespace sfz
371          void Copy(const EG& eg);          void Copy(const EG& eg);
372      };      };
373    
374      class LFO      class LFO: public EqSmoothStepImpl
375      {      {
376      public:      public:
377          float delay; // 0 to 100 seconds          float delay; // 0 to 100 seconds
# Line 454  namespace sfz Line 506  namespace sfz
506          optional<float> delay; optional<float> delay_random; Array<optional<float> > delay_oncc;          optional<float> delay; optional<float> delay_random; Array<optional<float> > delay_oncc;
507          optional<int> delay_beats; optional<int> stop_beats;          optional<int> delay_beats; optional<int> stop_beats;
508          optional<int> delay_samples; Array<optional<int> > delay_samples_oncc;          optional<int> delay_samples; Array<optional<int> > delay_samples_oncc;
509          optional<int> end;          int end;
510          optional<float> loop_crossfade;          optional<float> loop_crossfade;
511          optional<uint> offset; optional<int> offset_random; Array<optional<int> > offset_oncc;          optional<uint> offset; optional<int> offset_random; Array<optional<int> > offset_oncc;
512          loop_mode_t loop_mode;          loop_mode_t loop_mode;
# Line 464  namespace sfz Line 516  namespace sfz
516    
517          // amplifier          // amplifier
518          float volume;          float volume;
519            float amplitude;
520          float pan;          float pan;
521          float width;          float width;
522          float position;          float position;
# Line 702  namespace sfz Line 755  namespace sfz
755      class File      class File
756      {      {
757      public:      public:
758            static void copyCurves(LinuxSampler::ArrayList<CC>& curves, LinuxSampler::ArrayList<CC>& dest);
759            static void copySmoothValues(LinuxSampler::ArrayList<CC>& smooths, LinuxSampler::ArrayList<CC>& dest);
760            static void copyStepValues(LinuxSampler::ArrayList<CC>& steps, LinuxSampler::ArrayList<CC>& dest);
761            
762          /// Load an existing SFZ file          /// Load an existing SFZ file
763          File(std::string file, SampleManager* pSampleManager = NULL);          File(std::string file, SampleManager* pSampleManager = NULL);
764          virtual ~File();          virtual ~File();
# Line 716  namespace sfz Line 773  namespace sfz
773          EG& eg(int x);          EG& eg(int x);
774          EGNode& egnode(int x, int y);          EGNode& egnode(int x, int y);
775          LFO& lfo(int x);          LFO& lfo(int x);
         void copyCurves(LinuxSampler::ArrayList<CC>& curves, LinuxSampler::ArrayList<CC>& dest);  
         void copySmoothValues(LinuxSampler::ArrayList<CC>& smooths, LinuxSampler::ArrayList<CC>& dest);  
         void copyStepValues(LinuxSampler::ArrayList<CC>& steps, LinuxSampler::ArrayList<CC>& dest);  
776                    
777          int   ToInt(const std::string& s) throw(LinuxSampler::Exception);          int   ToInt(const std::string& s) throw(LinuxSampler::Exception);
778          float ToFloat(const std::string& s) throw(LinuxSampler::Exception);          float ToFloat(const std::string& s) throw(LinuxSampler::Exception);

Legend:
Removed from v.2265  
changed lines
  Added in v.2403

  ViewVC Help
Powered by ViewVC