/[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 2299 by iliev, Sun Dec 11 20:50:31 2011 UTC
# 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 702  namespace sfz Line 754  namespace sfz
754      class File      class File
755      {      {
756      public:      public:
757            static void copyCurves(LinuxSampler::ArrayList<CC>& curves, LinuxSampler::ArrayList<CC>& dest);
758            static void copySmoothValues(LinuxSampler::ArrayList<CC>& smooths, LinuxSampler::ArrayList<CC>& dest);
759            static void copyStepValues(LinuxSampler::ArrayList<CC>& steps, LinuxSampler::ArrayList<CC>& dest);
760            
761          /// Load an existing SFZ file          /// Load an existing SFZ file
762          File(std::string file, SampleManager* pSampleManager = NULL);          File(std::string file, SampleManager* pSampleManager = NULL);
763          virtual ~File();          virtual ~File();
# Line 716  namespace sfz Line 772  namespace sfz
772          EG& eg(int x);          EG& eg(int x);
773          EGNode& egnode(int x, int y);          EGNode& egnode(int x, int y);
774          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);  
775                    
776          int   ToInt(const std::string& s) throw(LinuxSampler::Exception);          int   ToInt(const std::string& s) throw(LinuxSampler::Exception);
777          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.2299

  ViewVC Help
Powered by ViewVC