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

Diff of /linuxsampler/trunk/src/engines/gig/Engine.h

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

revision 1012 by capela, Sun Jan 7 15:52:36 2007 UTC revision 1748 by persson, Sun Jun 22 14:46:46 2008 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck    *
6   *   Copyright (C) 2005-2007 Christian Schoenebeck                        *   *   Copyright (C) 2005-2008 Christian Schoenebeck                         *
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 60  namespace LinuxSampler { namespace gig { Line 60  namespace LinuxSampler { namespace gig {
60              Engine();              Engine();
61              virtual ~Engine();              virtual ~Engine();
62              void Connect(AudioOutputDevice* pAudioOut);              void Connect(AudioOutputDevice* pAudioOut);
63                void SuspendAll();
64                void ResumeAll();
65                void Suspend(::gig::Region* pRegion);
66                void Resume(::gig::Region* pRegion);
67    
68              // implementation of abstract methods derived from class 'LinuxSampler::Engine'              // implementation of abstract methods derived from class 'LinuxSampler::Engine'
69              virtual int    RenderAudio(uint Samples);              virtual int    RenderAudio(uint Samples);
# Line 79  namespace LinuxSampler { namespace gig { Line 83  namespace LinuxSampler { namespace gig {
83              virtual String EngineName();              virtual String EngineName();
84              virtual InstrumentManager* GetInstrumentManager();              virtual InstrumentManager* GetInstrumentManager();
85    
86              static const float* VolumeCurve;    ///< Table that maps volume control change values 0..127 to amplitude. Unity gain is at 90.              // Simple array wrapper just to make sure memory is freed
87              static const float* PanCurve;       ///< Table that maps pan control change values 0..128 to right channel amplitude. Unity gain is at 64 (center).              // when liblinuxsampler is unloaded
88              static const float* CrossfadeCurve; ///< Table that maps crossfade control change values 0..127 to amplitude. Unity gain is at 127.              class FloatTable {
89                private:
90                    const float* array;
91                public:
92                    FloatTable(const float* array) : array(array) { }
93                    ~FloatTable() { delete[] array; }
94                    const float& operator[](int i) const { return array[i]; }
95                };
96    
97                static const FloatTable VolumeCurve;    ///< Table that maps volume control change values 0..127 to amplitude. Unity gain is at 90.
98                static const FloatTable PanCurve;       ///< Table that maps pan control change values 0..128 to right channel amplitude. Unity gain is at 64 (center).
99                static const FloatTable CrossfadeCurve; ///< Table that maps crossfade control change values 0..127 to amplitude. Unity gain is at 127.
100    
101          //protected:          //protected:
102              static InstrumentResourceManager instruments;              static InstrumentResourceManager instruments;
# Line 109  namespace LinuxSampler { namespace gig { Line 124  namespace LinuxSampler { namespace gig {
124              bool                    SuspensionRequested;              bool                    SuspensionRequested;
125              ConditionServer         EngineDisabled;              ConditionServer         EngineDisabled;
126              int8_t                  ScaleTuning[12];       ///< contains optional detune factors (-64..+63 cents) for all 12 semitones of an octave              int8_t                  ScaleTuning[12];       ///< contains optional detune factors (-64..+63 cents) for all 12 semitones of an octave
127              int                     MaxFadeOutPos;         ///< The last position in an audio fragment to allow an instant fade out (e.g. for voice stealing) without leading to clicks.              int                     MinFadeOutSamples;     ///< The number of samples needed to make an instant fade out (e.g. for voice stealing) without leading to clicks.
128              uint32_t                RandomSeed;            ///< State of the random number generator used by the random dimension.              uint32_t                RandomSeed;            ///< State of the random number generator used by the random dimension.
129              Mutex                   ResetInternalMutex;    ///< Mutex to protect the ResetInternal function for concurrent usage (e.g. by the lscp and instrument loader threads).              Mutex                   ResetInternalMutex;    ///< Mutex to protect the ResetInternal function for concurrent usage (e.g. by the lscp and instrument loader threads).
130                Pool< ::gig::DimensionRegion*>* pDimRegionPool[2]; ///< Double buffered pool, used by the engine channels to keep track of dimension regions in use.
131    
132              void ProcessEvents(EngineChannel* pEngineChannel, uint Samples);              void ProcessEvents(EngineChannel* pEngineChannel, uint Samples);
133              void RenderActiveVoices(EngineChannel* pEngineChannel, uint Samples);              void RenderActiveVoices(EngineChannel* pEngineChannel, uint Samples);
# Line 125  namespace LinuxSampler { namespace gig { Line 141  namespace LinuxSampler { namespace gig {
141              void ProcessPitchbend(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itPitchbendEvent);              void ProcessPitchbend(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itPitchbendEvent);
142              void ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlChangeEvent);              void ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlChangeEvent);
143              void ProcessSysex(Pool<Event>::Iterator& itSysexEvent);              void ProcessSysex(Pool<Event>::Iterator& itSysexEvent);
144                void ProcessSuspensionsChanges();
145                void ProcessPendingStreamDeletions();
146              Pool<Voice>::Iterator LaunchVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent, int iLayer, bool ReleaseTriggerVoice, bool VoiceStealing, bool HandleKeyGroupConflicts);              Pool<Voice>::Iterator LaunchVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent, int iLayer, bool ReleaseTriggerVoice, bool VoiceStealing, bool HandleKeyGroupConflicts);
147              int  StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent);              int  StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent);
148              void FreeVoice(EngineChannel* pEngineChannel, Pool<Voice>::Iterator& itVoice);              void FreeVoice(EngineChannel* pEngineChannel, Pool<Voice>::Iterator& itVoice);
149              void FreeKey(EngineChannel* pEngineChannel, midi_key_info_t* pKey);              void FreeKey(EngineChannel* pEngineChannel, midi_key_info_t* pKey);
150              void ResetInternal();              void ResetInternal();
151              void ResetScaleTuning();              void ResetScaleTuning();
152                void ResetSuspendedRegions();
153    
154              static Engine* AcquireEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice);              static Engine* AcquireEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice);
155              static void    FreeEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice);              static void    FreeEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice);
# Line 139  namespace LinuxSampler { namespace gig { Line 158  namespace LinuxSampler { namespace gig {
158    
159              friend class Voice;              friend class Voice;
160          private:          private:
161                Pool< ::gig::Region*> SuspendedRegions;
162                Mutex                 SuspendedRegionsMutex;
163                Condition             SuspensionChangeOngoing;
164                ::gig::Region*        pPendingRegionSuspension;
165                ::gig::Region*        pPendingRegionResumption;
166                int                   iPendingStreamDeletions;
167    
168              ArrayList<EngineChannel*> engineChannels; ///< All engine channels of a gig::Engine instance.              ArrayList<EngineChannel*> engineChannels; ///< All engine channels of a gig::Engine instance.
169    
170              static std::map<AudioOutputDevice*,Engine*> engines; ///< All instances of gig::Engine.              static std::map<AudioOutputDevice*,Engine*> engines; ///< All instances of gig::Engine.
# Line 151  namespace LinuxSampler { namespace gig { Line 177  namespace LinuxSampler { namespace gig {
177              void    ReleaseAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itReleaseEvent);              void    ReleaseAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itReleaseEvent);
178              void    KillAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itKillEvent);              void    KillAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itKillEvent);
179              bool    ShouldReleaseVoice(EngineChannel* pEngineChannel, int Key);              bool    ShouldReleaseVoice(EngineChannel* pEngineChannel, int Key);
180                bool    RegionSuspended(::gig::Region* pRegion);
181              static float* InitVolumeCurve();              static float* InitVolumeCurve();
182              static float* InitPanCurve();              static float* InitPanCurve();
183              static float* InitCrossfadeCurve();              static float* InitCrossfadeCurve();

Legend:
Removed from v.1012  
changed lines
  Added in v.1748

  ViewVC Help
Powered by ViewVC