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

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

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

revision 2243 by iliev, Fri Aug 12 17:30:47 2011 UTC revision 2244 by iliev, Thu Aug 18 11:32:33 2011 UTC
# Line 90  namespace LinuxSampler { namespace sfz { Line 90  namespace LinuxSampler { namespace sfz {
90            
91      class SmoothCCUnit: public CurveCCUnit {      class SmoothCCUnit: public CurveCCUnit {
92          protected:          protected:
93              FixedArray<Smoother> Smoothers;              RTList<Smoother>* pSmoothers;
94          public:          public:
95              SmoothCCUnit(SfzSignalUnitRack* rack, Listener* l = NULL): CurveCCUnit(rack, l), Smoothers(MaxCCs) { }              SmoothCCUnit(SfzSignalUnitRack* rack, Listener* l = NULL): CurveCCUnit(rack, l), pSmoothers(NULL) { }
96                virtual ~SmoothCCUnit();
97                            
98              virtual void AddSmoothCC(uint8_t Controller, float Influence, short int Curve, float Smooth);              virtual void AddSmoothCC(uint8_t Controller, float Influence, short int Curve, float Smooth);
99                virtual void RemoveAllCCs() { CurveCCUnit::RemoveAllCCs(); pSmoothers->clear(); }
100                virtual void InitCCList(Pool<CC>* pCCPool, Pool<Smoother>* pSmootherPool);
101                            
102              virtual void RemoveAllCCs() { CurveCCUnit::RemoveAllCCs(); Smoothers.clear(); }              void InitSmoothers(Pool<Smoother>* pSmootherPool);
103      };      };
104            
105            
# Line 104  namespace LinuxSampler { namespace sfz { Line 107  namespace LinuxSampler { namespace sfz {
107          public:          public:
108              XFInCCUnit(SfzSignalUnitRack* rack, Listener* l = NULL): CCUnit(rack, l) { }              XFInCCUnit(SfzSignalUnitRack* rack, Listener* l = NULL): CCUnit(rack, l) { }
109                            
110              virtual bool Active() { return Ctrls.size() > 0; }              virtual bool Active() { return !pCtrls->isEmpty(); }
111              virtual void Calculate();              virtual void Calculate();
112              virtual void SetCrossFadeCCs(::sfz::Array<int>& loCCs, ::sfz::Array<int>& hiCCs);              virtual void SetCrossFadeCCs(::sfz::Array<int>& loCCs, ::sfz::Array<int>& hiCCs);
113      };      };
# Line 273  namespace LinuxSampler { namespace sfz { Line 276  namespace LinuxSampler { namespace sfz {
276              virtual void  Trigger();              virtual void  Trigger();
277              virtual void  Increment();              virtual void  Increment();
278              virtual float GetLevel() { return Level; }              virtual float GetLevel() { return Level; }
279              virtual void  ValueChanged(CCSignalUnit* pUnit);              
280                // CCSignalUnit::Listener interface implementation
281                virtual void ValueChanged(CCSignalUnit* pUnit);
282      };      };
283            
284      class LFOv1Unit: public LFOUnit {      class LFOv1Unit: public LFOUnit {
# Line 434  namespace LinuxSampler { namespace sfz { Line 439  namespace LinuxSampler { namespace sfz {
439              virtual void Trigger();              virtual void Trigger();
440              virtual void EnterFadeOutStage();              virtual void EnterFadeOutStage();
441                            
442                /** Called when the engine is set and the engine's pools are ready to use. */
443                void InitRTLists();
444                
445                /** Invoked when the voice gone inactive. */
446                void Reset();
447                
448              friend class EndpointUnit;              friend class EndpointUnit;
449      };      };
450  }} // namespace LinuxSampler::sfz  }} // namespace LinuxSampler::sfz

Legend:
Removed from v.2243  
changed lines
  Added in v.2244

  ViewVC Help
Powered by ViewVC