/[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 53 by schoenebeck, Mon Apr 26 17:15:51 2004 UTC revision 285 by schoenebeck, Thu Oct 14 21:31:26 2004 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003 by Benno Senoner and Christian Schoenebeck         *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *                                                                         *   *                                                                         *
7   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
8   *   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 29  Line 29 
29  # warning Engine.h included  # warning Engine.h included
30  #endif // DEBUG_HEADERS  #endif // DEBUG_HEADERS
31    
32    #include <map>
33    
34  #include "../../common/RingBuffer.h"  #include "../../common/RingBuffer.h"
35  #include "../../common/RTELMemoryPool.h"  #include "../../common/Pool.h"
36  #include "../../common/ConditionServer.h"  #include "../../common/ConditionServer.h"
37  #include "../common/Engine.h"  #include "../common/Engine.h"
38  #include "../common/Event.h"  #include "../common/Event.h"
39    #include "../common/BiquadFilter.h"
40  #include "../../lib/fileloader/libgig/gig.h"  #include "../../lib/fileloader/libgig/gig.h"
41  #include "InstrumentResourceManager.h"  #include "InstrumentResourceManager.h"
42  #include "../../network/lscp.h"  #include "../../network/lscp.h"
43    
44  #define PITCHBEND_SEMITONES             12  #define PITCHBEND_SEMITONES             12
45  #define MAX_AUDIO_VOICES                64  #define MAX_AUDIO_VOICES                128
46    #define SYSEX_BUFFER_SIZE               2048  // 2kB
47    #define VOICE_STEAL_ALGORITHM           voice_steal_algo_oldestkey  ///< @see voice_steal_algo_t for available voice stealing algorithms
48    
49  namespace LinuxSampler { namespace gig {  namespace LinuxSampler { namespace gig {
50    
51        using std::map;
52    
53      // just symbol prototyping      // just symbol prototyping
54      class Voice;      class Voice;
55      class DiskThread;      class DiskThread;
# Line 51  namespace LinuxSampler { namespace gig { Line 58  namespace LinuxSampler { namespace gig {
58      /**      /**
59       * Sampler engine for the Gigasampler format.       * Sampler engine for the Gigasampler format.
60       */       */
61      class gig::Engine : public LinuxSampler::Engine, public InstrumentConsumer {      class Engine : public LinuxSampler::Engine, public InstrumentConsumer {
62          public:          public:
63                // types
64                enum voice_steal_algo_t {
65                    voice_steal_algo_none,
66                    voice_steal_algo_keymask,
67                    voice_steal_algo_oldestkey
68                };
69    
70              // methods              // methods
71              Engine();              Engine();
72             ~Engine();             ~Engine();
# Line 66  namespace LinuxSampler { namespace gig { Line 80  namespace LinuxSampler { namespace gig {
80              virtual void   SendNoteOff(uint8_t Key, uint8_t Velocity);              virtual void   SendNoteOff(uint8_t Key, uint8_t Velocity);
81              virtual void   SendPitchbend(int Pitch);              virtual void   SendPitchbend(int Pitch);
82              virtual void   SendControlChange(uint8_t Controller, uint8_t Value);              virtual void   SendControlChange(uint8_t Controller, uint8_t Value);
83                virtual void   SendSysex(void* pData, uint Size);
84              virtual float  Volume();              virtual float  Volume();
85              virtual void   Volume(float f);              virtual void   Volume(float f);
86                virtual uint   Channels();
87              virtual void   Connect(AudioOutputDevice* pAudioOut);              virtual void   Connect(AudioOutputDevice* pAudioOut);
88              virtual void   DisconnectAudioOutputDevice();              virtual void   DisconnectAudioOutputDevice();
89                virtual void   SetOutputChannel(uint EngineAudioChannel, uint AudioDeviceChannel);
90                virtual int    OutputChannel(uint EngineAudioChannel);
91              virtual int    RenderAudio(uint Samples);              virtual int    RenderAudio(uint Samples);
92              virtual uint   VoiceCount();              virtual uint   VoiceCount();
93              virtual uint   VoiceCountMax();              virtual uint   VoiceCountMax();
# Line 80  namespace LinuxSampler { namespace gig { Line 98  namespace LinuxSampler { namespace gig {
98              virtual String DiskStreamBufferFillPercentage();              virtual String DiskStreamBufferFillPercentage();
99              virtual String Description();              virtual String Description();
100              virtual String Version();              virtual String Version();
101                virtual String EngineName();
102                virtual String InstrumentFileName();
103                virtual int    InstrumentIndex();
104                virtual int    InstrumentStatus();
105    
106              // abstract methods derived from interface class 'InstrumentConsumer'              // abstract methods derived from interface class 'InstrumentConsumer'
107              virtual void ResourceToBeUpdated(::gig::Instrument* pResource, void*& pUpdateArg);              virtual void ResourceToBeUpdated(::gig::Instrument* pResource, void*& pUpdateArg);
108              virtual void ResourceUpdated(::gig::Instrument* pOldResource, ::gig::Instrument* pNewResource, void* pUpdateArg);              virtual void ResourceUpdated(::gig::Instrument* pOldResource, ::gig::Instrument* pNewResource, void* pUpdateArg);
109          protected:          protected:
110              struct midi_key_info_t {              struct midi_key_info_t {
111                  RTEList<Voice>* pActiveVoices; ///< Contains the active voices associated with the MIDI key.                  RTList<Voice>*  pActiveVoices;  ///< Contains the active voices associated with the MIDI key.
112                  bool            KeyPressed;    ///< Is true if the respective MIDI key is currently pressed.                  bool            KeyPressed;     ///< Is true if the respective MIDI key is currently pressed.
113                  bool            Active;        ///< If the key contains active voices.                  bool            Active;         ///< If the key contains active voices.
114                  uint*           pSelf;         ///< hack to allow fast deallocation of the key from the list of active keys                  bool            ReleaseTrigger; ///< If we have to launch release triggered voice(s) when the key is released
115                  RTEList<Event>* pEvents;       ///< Key specific events (only Note-on, Note-off and sustain pedal currently)                  Pool<uint>::Iterator itSelf;         ///< hack to allow fast deallocation of the key from the list of active keys
116                    RTList<Event>*  pEvents;        ///< Key specific events (only Note-on, Note-off and sustain pedal currently)
117              };              };
118    
119              static InstrumentResourceManager Instruments;              static InstrumentResourceManager Instruments;
120    
121              AudioOutputDevice*      pAudioOutputDevice;              AudioOutputDevice*      pAudioOutputDevice;
122                float*                  pOutputLeft;           ///< Audio output channel buffer (left)
123                float*                  pOutputRight;          ///< Audio output channel buffer (right)
124                int                     AudioDeviceChannelLeft;  ///< audio device channel number to which the left channel is connected to
125                int                     AudioDeviceChannelRight; ///< audio device channel number to which the right channel is connected to
126                uint                    SampleRate;            ///< Sample rate of the engines output audio signal (in Hz)
127                uint                    MaxSamplesPerCycle;    ///< Size of each audio output buffer
128              DiskThread*             pDiskThread;              DiskThread*             pDiskThread;
129              uint8_t                 ControllerTable[128];  ///< Reflects the current values (0-127) of all MIDI controllers for this engine / sampler channel.              uint8_t                 ControllerTable[128];  ///< Reflects the current values (0-127) of all MIDI controllers for this engine / sampler channel.
130              RingBuffer<Event>*      pEventQueue;           ///< Input event queue.              RingBuffer<Event>*      pEventQueue;           ///< Input event queue.
131                RingBuffer<uint8_t>*    pSysexBuffer;          ///< Input buffer for MIDI system exclusive messages.
132              midi_key_info_t         pMIDIKeyInfo[128];     ///< Contains all active voices sorted by MIDI key number and other informations to the respective MIDI key              midi_key_info_t         pMIDIKeyInfo[128];     ///< Contains all active voices sorted by MIDI key number and other informations to the respective MIDI key
133              RTELMemoryPool<Voice>*  pVoicePool;            ///< Contains all voices that can be activated.              Pool<Voice>*            pVoicePool;            ///< Contains all voices that can be activated.
134              RTELMemoryPool<uint>*   pActiveKeys;           ///< Holds all keys in it's allocation list with active voices.              Pool<uint>*             pActiveKeys;           ///< Holds all keys in it's allocation list with active voices.
135              RTELMemoryPool<Event>*  pEventPool;            ///< Contains all Event objects that can be used.              Pool<Event>*            pEventPool;            ///< Contains all Event objects that can be used.
136              EventGenerator*         pEventGenerator;              EventGenerator*         pEventGenerator;
137              RTEList<Event>*         pEvents;               ///< All events for the current audio fragment.              RTList<Event>*          pVoiceStealingQueue;   ///< All voice-launching events which had to be postponed due to free voice shortage.
138              RTEList<Event>*         pCCEvents;             ///< All control change events for the current audio fragment.              RTList<Event>*          pEvents;               ///< All events for the current audio fragment.
139              RTEList<Event>*         pSynthesisEvents[Event::destination_count];     ///< Events directly affecting synthesis parameter (like pitch, volume and filter).              RTList<Event>*          pCCEvents;             ///< All control change events for the current audio fragment.
140                RTList<Event>*          pSynthesisEvents[Event::destination_count];     ///< Events directly affecting synthesis parameter (like pitch, volume and filter).
141              float*                  pSynthesisParameters[Event::destination_count]; ///< Matrix with final synthesis parameters for the current audio fragment which will be used in the main synthesis loop.              float*                  pSynthesisParameters[Event::destination_count]; ///< Matrix with final synthesis parameters for the current audio fragment which will be used in the main synthesis loop.
142                biquad_param_t*         pBasicFilterParameters; ///< Biquad parameters of the basic bandpass filter.
143                biquad_param_t*         pMainFilterParameters;  ///< Main biquad parameters of the individual filter (lowpass / bandpass / highpass).
144                map<uint,uint*>         ActiveKeyGroups;        ///< Contains active keys (in case they belong to a key group) ordered by key group ID.
145              RIFF::File*             pRIFF;              RIFF::File*             pRIFF;
146              ::gig::File*            pGig;              ::gig::File*            pGig;
147              ::gig::Instrument*      pInstrument;              ::gig::Instrument*      pInstrument;
# Line 118  namespace LinuxSampler { namespace gig { Line 152  namespace LinuxSampler { namespace gig {
152              int                     ActiveVoiceCountMax;   ///< the maximum voice usage since application start              int                     ActiveVoiceCountMax;   ///< the maximum voice usage since application start
153              bool                    SuspensionRequested;              bool                    SuspensionRequested;
154              ConditionServer         EngineDisabled;              ConditionServer         EngineDisabled;
155                String                  InstrumentFile;
156              void ProcessNoteOn(Event* pNoteOnEvent);              int                     InstrumentIdx;
157              void ProcessNoteOff(Event* pNoteOffEvent);              int                     InstrumentStat;
158              void ProcessPitchbend(Event* pPitchbendEvent);              int8_t                  ScaleTuning[12];       ///< contains optional detune factors (-64..+63 cents) for all 12 semitones of an octave
159              void ProcessControlChange(Event* pControlChangeEvent);              RTList<Voice>::Iterator itLastStolenVoice;      ///< Only for voice stealing: points to the last voice which was theft in current audio fragment, NULL otherwise.
160              void KillVoice(Voice* pVoice);              RTList<uint>::Iterator  iuiLastStolenKey;      ///< Only for voice stealing: key number of last key on which the last voice was theft in current audio fragment, NULL otherwise.
161                int                     MaxFadeOutPos;         ///< The last position in an audio fragment to allow a instant fade out (e.g. for voice stealing) without leading to clicks.
162    
163                void ProcessNoteOn(Pool<Event>::Iterator& itNoteOnEvent);
164                void ProcessNoteOff(Pool<Event>::Iterator& itNoteOffEvent);
165                void ProcessPitchbend(Pool<Event>::Iterator& itPitchbendEvent);
166                void ProcessControlChange(Pool<Event>::Iterator& itControlChangeEvent);
167                void ProcessSysex(Pool<Event>::Iterator& itSysexEvent);
168                Pool<Voice>::Iterator LaunchVoice(Pool<Event>::Iterator& itNoteOnEvent, int iLayer = 0, bool ReleaseTriggerVoice = false, bool VoiceStealing = true);
169                void StealVoice(Pool<Event>::Iterator& itNoteOnEvent);
170                void FreeVoice(Pool<Voice>::Iterator& itVoice);
171              void ResetSynthesisParameters(Event::destination_t dst, float val);              void ResetSynthesisParameters(Event::destination_t dst, float val);
172              void ResetInternal();              void ResetInternal();
173    
# Line 135  namespace LinuxSampler { namespace gig { Line 179  namespace LinuxSampler { namespace gig {
179              friend class VCOManipulator;              friend class VCOManipulator;
180              friend class InstrumentResourceManager;              friend class InstrumentResourceManager;
181          private:          private:
182              //static void AllocateSynthesisParametersMatrix();              void    DisableAndLock();
183                uint8_t GSCheckSum(const RingBuffer<uint8_t>::NonVolatileReader AddrReader, uint DataSize);
184              void DisableAndLock();              void    AdjustScale(int8_t ScaleTunes[12]);
185      };      };
186    
187  }} // namespace LinuxSampler::gig  }} // namespace LinuxSampler::gig

Legend:
Removed from v.53  
changed lines
  Added in v.285

  ViewVC Help
Powered by ViewVC