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

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

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

revision 392 by schoenebeck, Sat Feb 19 02:40:24 2005 UTC revision 438 by persson, Wed Mar 9 22:12:15 2005 UTC
# Line 3  Line 3 
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 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 24  Line 25 
25  #include "DiskThread.h"  #include "DiskThread.h"
26  #include "Voice.h"  #include "Voice.h"
27  #include "EGADSR.h"  #include "EGADSR.h"
28    #include "../EngineFactory.h"
29    
30  #include "Engine.h"  #include "Engine.h"
31    
# Line 35  Line 37 
37    
38  namespace LinuxSampler { namespace gig {  namespace LinuxSampler { namespace gig {
39    
40      InstrumentResourceManager Engine::Instruments;      InstrumentResourceManager Engine::instruments;
41    
42        std::map<AudioOutputDevice*,Engine*> Engine::engines;
43    
44        /**
45         * Get a gig::Engine object for the given gig::EngineChannel and the
46         * given AudioOutputDevice. All engine channels which are connected to
47         * the same audio output device will use the same engine instance. This
48         * method will be called by a gig::EngineChannel whenever it's
49         * connecting to a audio output device.
50         *
51         * @param pChannel - engine channel which acquires an engine object
52         * @param pDevice  - the audio output device \a pChannel is connected to
53         */
54        Engine* Engine::AcquireEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice) {
55            Engine* pEngine = NULL;
56            // check if there's already an engine for the given audio output device
57            if (engines.count(pDevice)) {
58                dmsg(4,("Using existing gig::Engine.\n"));
59                pEngine = engines[pDevice];
60            } else { // create a new engine (and disk thread) instance for the given audio output device
61                dmsg(4,("Creating new gig::Engine.\n"));
62                pEngine = (Engine*) EngineFactory::Create("gig");
63                pEngine->Connect(pDevice);
64                engines[pDevice] = pEngine;
65            }
66            // register engine channel to the engine instance
67            pEngine->engineChannels.push_back(pChannel);
68            dmsg(4,("This gig::Engine has now %d EngineChannels.\n",pEngine->engineChannels.size()));
69            return pEngine;
70        }
71    
72        /**
73         * Once an engine channel is disconnected from an audio output device,
74         * it wil immediately call this method to unregister itself from the
75         * engine instance and if that engine instance is not used by any other
76         * engine channel anymore, then that engine instance will be destroyed.
77         *
78         * @param pChannel - engine channel which wants to disconnect from it's
79         *                   engine instance
80         * @param pDevice  - audio output device \a pChannel was connected to
81         */
82        void Engine::FreeEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice) {
83            dmsg(4,("Disconnecting EngineChannel from gig::Engine.\n"));
84            Engine* pEngine = engines[pDevice];
85            // unregister EngineChannel from the Engine instance
86            pEngine->engineChannels.remove(pChannel);
87            // if the used Engine instance is not used anymore, then destroy it
88            if (pEngine->engineChannels.empty()) {
89                pDevice->Disconnect(pEngine);
90                engines.erase(pDevice);
91                delete pEngine;
92                dmsg(4,("Destroying gig::Engine.\n"));
93            }
94            else dmsg(4,("This gig::Engine has now %d EngineChannels.\n",pEngine->engineChannels.size()));
95        }
96    
97      Engine::Engine() {      Engine::Engine() {
         pRIFF              = NULL;  
         pGig               = NULL;  
         pInstrument        = NULL;  
98          pAudioOutputDevice = NULL;          pAudioOutputDevice = NULL;
99          pDiskThread        = NULL;          pDiskThread        = NULL;
100          pEventGenerator    = NULL;          pEventGenerator    = NULL;
# Line 48  namespace LinuxSampler { namespace gig { Line 102  namespace LinuxSampler { namespace gig {
102          pEventQueue        = new RingBuffer<Event>(MAX_EVENTS_PER_FRAGMENT, 0);          pEventQueue        = new RingBuffer<Event>(MAX_EVENTS_PER_FRAGMENT, 0);
103          pEventPool         = new Pool<Event>(MAX_EVENTS_PER_FRAGMENT);          pEventPool         = new Pool<Event>(MAX_EVENTS_PER_FRAGMENT);
104          pVoicePool         = new Pool<Voice>(MAX_AUDIO_VOICES);          pVoicePool         = new Pool<Voice>(MAX_AUDIO_VOICES);
         pActiveKeys        = new Pool<uint>(128);  
105          pVoiceStealingQueue = new RTList<Event>(pEventPool);          pVoiceStealingQueue = new RTList<Event>(pEventPool);
106          pEvents            = new RTList<Event>(pEventPool);          pEvents            = new RTList<Event>(pEventPool);
107          pCCEvents          = new RTList<Event>(pEventPool);          pCCEvents          = new RTList<Event>(pEventPool);
108    
109          for (uint i = 0; i < Event::destination_count; i++) {          for (uint i = 0; i < Event::destination_count; i++) {
110              pSynthesisEvents[i] = new RTList<Event>(pEventPool);              pSynthesisEvents[i] = new RTList<Event>(pEventPool);
111          }          }
         for (uint i = 0; i < 128; i++) {  
             pMIDIKeyInfo[i].pActiveVoices  = new RTList<Voice>(pVoicePool);  
             pMIDIKeyInfo[i].KeyPressed     = false;  
             pMIDIKeyInfo[i].Active         = false;  
             pMIDIKeyInfo[i].ReleaseTrigger = false;  
             pMIDIKeyInfo[i].pEvents        = new RTList<Event>(pEventPool);  
         }  
112          for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {          for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {
113              iterVoice->SetEngine(this);              iterVoice->SetEngine(this);
114          }          }
# Line 71  namespace LinuxSampler { namespace gig { Line 118  namespace LinuxSampler { namespace gig {
118          pBasicFilterParameters  = NULL;          pBasicFilterParameters  = NULL;
119          pMainFilterParameters   = NULL;          pMainFilterParameters   = NULL;
120    
         InstrumentIdx = -1;  
         InstrumentStat = -1;  
   
         AudioDeviceChannelLeft  = -1;  
         AudioDeviceChannelRight = -1;  
   
121          ResetInternal();          ResetInternal();
122      }      }
123    
# Line 87  namespace LinuxSampler { namespace gig { Line 128  namespace LinuxSampler { namespace gig {
128              delete pDiskThread;              delete pDiskThread;
129              dmsg(1,("OK\n"));              dmsg(1,("OK\n"));
130          }          }
   
         if (pInstrument) Instruments.HandBack(pInstrument, this);  
   
         if (pGig)  delete pGig;  
         if (pRIFF) delete pRIFF;  
         for (uint i = 0; i < 128; i++) {  
             if (pMIDIKeyInfo[i].pActiveVoices) delete pMIDIKeyInfo[i].pActiveVoices;  
             if (pMIDIKeyInfo[i].pEvents)       delete pMIDIKeyInfo[i].pEvents;  
         }  
131          for (uint i = 0; i < Event::destination_count; i++) {          for (uint i = 0; i < Event::destination_count; i++) {
132              if (pSynthesisEvents[i]) delete pSynthesisEvents[i];              if (pSynthesisEvents[i]) delete pSynthesisEvents[i];
133          }          }
# Line 103  namespace LinuxSampler { namespace gig { Line 135  namespace LinuxSampler { namespace gig {
135          if (pCCEvents)   delete pCCEvents;          if (pCCEvents)   delete pCCEvents;
136          if (pEventQueue) delete pEventQueue;          if (pEventQueue) delete pEventQueue;
137          if (pEventPool)  delete pEventPool;          if (pEventPool)  delete pEventPool;
138          if (pVoicePool) {          if (pVoicePool) {
139                  pVoicePool->clear();              pVoicePool->clear();
140                  delete pVoicePool;              delete pVoicePool;
141          }          }
         if (pActiveKeys) delete pActiveKeys;  
         if (pSysexBuffer) delete pSysexBuffer;  
142          if (pEventGenerator) delete pEventGenerator;          if (pEventGenerator) delete pEventGenerator;
143          if (pMainFilterParameters) delete[] pMainFilterParameters;          if (pMainFilterParameters) delete[] pMainFilterParameters;
144          if (pBasicFilterParameters) delete[] pBasicFilterParameters;          if (pBasicFilterParameters) delete[] pBasicFilterParameters;
145          if (pSynthesisParameters[0]) free(pSynthesisParameters[0]);          if (pSynthesisParameters[0]) free(pSynthesisParameters[0]);
146          if (pVoiceStealingQueue) delete pVoiceStealingQueue;          if (pVoiceStealingQueue) delete pVoiceStealingQueue;
147            if (pSysexBuffer) delete pSysexBuffer;
148            EngineFactory::Destroy(this);
149      }      }
150    
151      void Engine::Enable() {      void Engine::Enable() {
# Line 140  namespace LinuxSampler { namespace gig { Line 172  namespace LinuxSampler { namespace gig {
172       */       */
173      void Engine::Reset() {      void Engine::Reset() {
174          DisableAndLock();          DisableAndLock();
   
         //if (pAudioOutputDevice->IsPlaying()) { // if already running  
             /*  
             // signal audio thread not to enter render part anymore  
             SuspensionRequested = true;  
             // sleep until wakened by audio thread  
             pthread_mutex_lock(&__render_state_mutex);  
             pthread_cond_wait(&__render_exit_condition, &__render_state_mutex);  
             pthread_mutex_unlock(&__render_state_mutex);  
             */  
         //}  
   
         //if (wasplaying) pAudioOutputDevice->Stop();  
   
175          ResetInternal();          ResetInternal();
   
         // signal audio thread to continue with rendering  
         //SuspensionRequested = false;  
176          Enable();          Enable();
177      }      }
178    
# Line 166  namespace LinuxSampler { namespace gig { Line 181  namespace LinuxSampler { namespace gig {
181       *  control and status variables. This method is not thread safe!       *  control and status variables. This method is not thread safe!
182       */       */
183      void Engine::ResetInternal() {      void Engine::ResetInternal() {
         Pitch               = 0;  
         SustainPedal        = false;  
184          ActiveVoiceCount    = 0;          ActiveVoiceCount    = 0;
185          ActiveVoiceCountMax = 0;          ActiveVoiceCountMax = 0;
         GlobalVolume        = 1.0;  
         CurrentKeyDimension = 0;  
186    
187          // reset voice stealing parameters          // reset voice stealing parameters
         itLastStolenVoice = RTList<Voice>::Iterator();  
         iuiLastStolenKey  = RTList<uint>::Iterator();  
188          pVoiceStealingQueue->clear();          pVoiceStealingQueue->clear();
189    
190          // reset to normal chromatic scale (means equal temper)          // reset to normal chromatic scale (means equal temper)
191          memset(&ScaleTuning[0], 0x00, 12);          memset(&ScaleTuning[0], 0x00, 12);
192    
         // set all MIDI controller values to zero  
         memset(ControllerTable, 0x00, 128);  
   
         // reset key info  
         for (uint i = 0; i < 128; i++) {  
             pMIDIKeyInfo[i].pActiveVoices->clear();  
             pMIDIKeyInfo[i].pEvents->clear();  
             pMIDIKeyInfo[i].KeyPressed     = false;  
             pMIDIKeyInfo[i].Active         = false;  
             pMIDIKeyInfo[i].ReleaseTrigger = false;  
             pMIDIKeyInfo[i].itSelf         = Pool<uint>::Iterator();  
         }  
   
         // reset all key groups  
         map<uint,uint*>::iterator iter = ActiveKeyGroups.begin();  
         for (; iter != ActiveKeyGroups.end(); iter++) iter->second = NULL;  
   
193          // reset all voices          // reset all voices
194          for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {          for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {
195              iterVoice->Reset();              iterVoice->Reset();
196          }          }
197          pVoicePool->clear();          pVoicePool->clear();
198    
         // free all active keys  
         pActiveKeys->clear();  
   
199          // reset disk thread          // reset disk thread
200          if (pDiskThread) pDiskThread->Reset();          if (pDiskThread) pDiskThread->Reset();
201    
# Line 214  namespace LinuxSampler { namespace gig { Line 203  namespace LinuxSampler { namespace gig {
203          pEventQueue->init();          pEventQueue->init();
204      }      }
205    
     /**  
      * More or less a workaround to set the instrument name, index and load  
      * status variable to zero percent immediately, that is without blocking  
      * the calling thread. It might be used in future for other preparations  
      * as well though.  
      *  
      * @param FileName   - file name of the Gigasampler instrument file  
      * @param Instrument - index of the instrument in the .gig file  
      * @see LoadInstrument()  
      */  
     void Engine::PrepareLoadInstrument(const char* FileName, uint Instrument) {  
         InstrumentFile = FileName;  
         InstrumentIdx  = Instrument;  
         InstrumentStat = 0;  
     }  
   
     /**  
      * Load an instrument from a .gig file. PrepareLoadInstrument() has to  
      * be called first to provide the information which instrument to load.  
      * This method will then actually start to load the instrument and block  
      * the calling thread until loading was completed.  
      *  
      * @returns detailed description of the method call result  
      * @see PrepareLoadInstrument()  
      */  
     void Engine::LoadInstrument() {  
   
         DisableAndLock();  
   
         ResetInternal(); // reset engine  
   
         // free old instrument  
         if (pInstrument) {  
             // give old instrument back to instrument manager  
             Instruments.HandBack(pInstrument, this);  
         }  
   
         // delete all key groups  
         ActiveKeyGroups.clear();  
   
         // request gig instrument from instrument manager  
         try {  
             instrument_id_t instrid;  
             instrid.FileName    = InstrumentFile;  
             instrid.iInstrument = InstrumentIdx;  
             pInstrument = Instruments.Borrow(instrid, this);  
             if (!pInstrument) {  
                 InstrumentStat = -1;  
                 dmsg(1,("no instrument loaded!!!\n"));  
                 exit(EXIT_FAILURE);  
             }  
         }  
         catch (RIFF::Exception e) {  
             InstrumentStat = -2;  
             String msg = "gig::Engine error: Failed to load instrument, cause: " + e.Message;  
             throw LinuxSamplerException(msg);  
         }  
         catch (InstrumentResourceManagerException e) {  
             InstrumentStat = -3;  
             String msg = "gig::Engine error: Failed to load instrument, cause: " + e.Message();  
             throw LinuxSamplerException(msg);  
         }  
         catch (...) {  
             InstrumentStat = -4;  
             throw LinuxSamplerException("gig::Engine error: Failed to load instrument, cause: Unknown exception while trying to parse gig file.");  
         }  
   
         // rebuild ActiveKeyGroups map with key groups of current instrument  
         for (::gig::Region* pRegion = pInstrument->GetFirstRegion(); pRegion; pRegion = pInstrument->GetNextRegion())  
             if (pRegion->KeyGroup) ActiveKeyGroups[pRegion->KeyGroup] = NULL;  
   
         InstrumentIdxName = pInstrument->pInfo->Name;  
         InstrumentStat = 100;  
   
         // inform audio driver for the need of two channels  
         try {  
             if (pAudioOutputDevice) pAudioOutputDevice->AcquireChannels(2); // gig Engine only stereo  
         }  
         catch (AudioOutputException e) {  
             String msg = "Audio output device unable to provide 2 audio channels, cause: " + e.Message();  
             throw LinuxSamplerException(msg);  
         }  
   
         Enable();  
     }  
   
     /**  
      * Will be called by the InstrumentResourceManager when the instrument  
      * we are currently using in this engine is going to be updated, so we  
      * can stop playback before that happens.  
      */  
     void Engine::ResourceToBeUpdated(::gig::Instrument* pResource, void*& pUpdateArg) {  
         dmsg(3,("gig::Engine: Received instrument update message.\n"));  
         DisableAndLock();  
         ResetInternal();  
         this->pInstrument = NULL;  
     }  
   
     /**  
      * Will be called by the InstrumentResourceManager when the instrument  
      * update process was completed, so we can continue with playback.  
      */  
     void Engine::ResourceUpdated(::gig::Instrument* pOldResource, ::gig::Instrument* pNewResource, void* pUpdateArg) {  
         this->pInstrument = pNewResource; //TODO: there are couple of engine parameters we should update here as well if the instrument was updated (see LoadInstrument())  
         Enable();  
     }  
   
206      void Engine::Connect(AudioOutputDevice* pAudioOut) {      void Engine::Connect(AudioOutputDevice* pAudioOut) {
207          pAudioOutputDevice = pAudioOut;          pAudioOutputDevice = pAudioOut;
208    
# Line 335  namespace LinuxSampler { namespace gig { Line 217  namespace LinuxSampler { namespace gig {
217              throw LinuxSamplerException(msg);              throw LinuxSamplerException(msg);
218          }          }
219    
         this->AudioDeviceChannelLeft  = 0;  
         this->AudioDeviceChannelRight = 1;  
         this->pOutputLeft             = pAudioOutputDevice->Channel(0)->Buffer();  
         this->pOutputRight            = pAudioOutputDevice->Channel(1)->Buffer();  
220          this->MaxSamplesPerCycle      = pAudioOutputDevice->MaxSamplesPerCycle();          this->MaxSamplesPerCycle      = pAudioOutputDevice->MaxSamplesPerCycle();
221          this->SampleRate              = pAudioOutputDevice->SampleRate();          this->SampleRate              = pAudioOutputDevice->SampleRate();
222    
223          // FIXME: audio drivers with varying fragment sizes might be a problem here          // FIXME: audio drivers with varying fragment sizes might be a problem here
224          MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * EG_MIN_RELEASE_TIME) - 1;          MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * EG_MIN_RELEASE_TIME) - 1;
225          if (MaxFadeOutPos < 0)          if (MaxFadeOutPos < 0)
226              throw LinuxSamplerException("EG_MIN_RELEASE_TIME in EGADSR.h to big for current audio fragment size / sampling rate!");              throw LinuxSamplerException("EG_MIN_RELEASE_TIME in EGADSR.h too big for current audio fragment size / sampling rate!");
227    
228          // (re)create disk thread          // (re)create disk thread
229          if (this->pDiskThread) {          if (this->pDiskThread) {
# Line 399  namespace LinuxSampler { namespace gig { Line 277  namespace LinuxSampler { namespace gig {
277          }          }
278      }      }
279    
280      void Engine::DisconnectAudioOutputDevice() {      void Engine::ClearEventLists() {
281          if (pAudioOutputDevice) { // if clause to prevent disconnect loops          pEvents->clear();
282              AudioOutputDevice* olddevice = pAudioOutputDevice;          pCCEvents->clear();
283              pAudioOutputDevice = NULL;          for (uint i = 0; i < Event::destination_count; i++) {
284              olddevice->Disconnect(this);              pSynthesisEvents[i]->clear();
             AudioDeviceChannelLeft  = -1;  
             AudioDeviceChannelRight = -1;  
285          }          }
286      }      }
287    
288      /**      /**
289         * Copy all events from the given input queue buffer to the engine's
290         * internal event list. This will be done at the beginning of each audio
291         * cycle (that is each RenderAudio() call) to get all events which have
292         * to be processed in the current audio cycle. Each EngineChannel has
293         * it's own input event queue for the common channel specific events
294         * (like NoteOn, NoteOff and ControlChange events). Beside that, the
295         * engine also has a input event queue for global events (usually SysEx
296         * message).
297         *
298         * @param pEventQueue - input event buffer to read from
299         * @param Samples     - number of sample points to be processed in the
300         *                      current audio cycle
301         */
302        void Engine::ImportEvents(RingBuffer<Event>* pEventQueue, uint Samples) {
303            RingBuffer<Event>::NonVolatileReader eventQueueReader = pEventQueue->get_non_volatile_reader();
304            Event* pEvent;
305            while (true) {
306                // get next event from input event queue
307                if (!(pEvent = eventQueueReader.pop())) break;
308                // if younger event reached, ignore that and all subsequent ones for now
309                if (pEvent->FragmentPos() >= Samples) {
310                    eventQueueReader--;
311                    dmsg(2,("Younger Event, pos=%d ,Samples=%d!\n",pEvent->FragmentPos(),Samples));
312                    pEvent->ResetFragmentPos();
313                    break;
314                }
315                // copy event to internal event list
316                if (pEvents->poolIsEmpty()) {
317                    dmsg(1,("Event pool emtpy!\n"));
318                    break;
319                }
320                *pEvents->allocAppend() = *pEvent;
321            }
322            eventQueueReader.free(); // free all copied events from input queue
323        }
324    
325        /**
326       *  Let this engine proceed to render the given amount of sample points. The       *  Let this engine proceed to render the given amount of sample points. The
327       *  calculated audio data of all voices of this engine will be placed into       *  calculated audio data of all voices of this engine will be placed into
328       *  the engine's audio sum buffer which has to be copied and eventually be       *  the engine's audio sum buffer which has to be copied and eventually be
# Line 422  namespace LinuxSampler { namespace gig { Line 335  namespace LinuxSampler { namespace gig {
335      int Engine::RenderAudio(uint Samples) {      int Engine::RenderAudio(uint Samples) {
336          dmsg(5,("RenderAudio(Samples=%d)\n", Samples));          dmsg(5,("RenderAudio(Samples=%d)\n", Samples));
337    
338          // return if no instrument loaded or engine disabled          // return if engine disabled
339          if (EngineDisabled.Pop()) {          if (EngineDisabled.Pop()) {
340              dmsg(5,("gig::Engine: engine disabled (val=%d)\n",EngineDisabled.GetUnsafe()));              dmsg(5,("gig::Engine: engine disabled (val=%d)\n",EngineDisabled.GetUnsafe()));
341              return 0;              return 0;
342          }          }
         if (!pInstrument) {  
             dmsg(5,("gig::Engine: no instrument loaded\n"));  
             return 0;  
         }  
   
343    
344          // update time of start and end of this audio fragment (as events' time stamps relate to this)          // update time of start and end of this audio fragment (as events' time stamps relate to this)
345          pEventGenerator->UpdateFragmentTime(Samples);          pEventGenerator->UpdateFragmentTime(Samples);
346    
347            // empty the engine's event lists for the new fragment
348            ClearEventLists();
349    
350          // empty the event lists for the new fragment          // get all events from the engine's global input event queue which belong to the current fragment
351          pEvents->clear();          // (these are usually just SysEx messages)
352          pCCEvents->clear();          ImportEvents(this->pEventQueue, Samples);
353          for (uint i = 0; i < Event::destination_count; i++) {  
354              pSynthesisEvents[i]->clear();          // process engine global events (these are currently only MIDI System Exclusive messages)
355            {
356                RTList<Event>::Iterator itEvent = pEvents->first();
357                RTList<Event>::Iterator end     = pEvents->end();
358                for (; itEvent != end; ++itEvent) {
359                    switch (itEvent->Type) {
360                        case Event::type_sysex:
361                            dmsg(5,("Engine: Sysex received\n"));
362                            ProcessSysex(itEvent);
363                            break;
364                    }
365                }
366          }          }
367    
368            // reset internal voice counter (just for statistic of active voices)
369            ActiveVoiceCountTemp = 0;
370    
371            // render audio for all engine channels
372            // TODO: should we make voice stealing engine globally? unfortunately this would mean other disadvantages so I left voice stealing in the engine channel space for now
373          {          {
374              RTList<uint>::Iterator iuiKey = pActiveKeys->first();              std::list<EngineChannel*>::iterator itChannel = engineChannels.begin();
375              RTList<uint>::Iterator end    = pActiveKeys->end();              std::list<EngineChannel*>::iterator end       = engineChannels.end();
376              for(; iuiKey != end; ++iuiKey) {              for (; itChannel != end; itChannel++) {
377                  pMIDIKeyInfo[*iuiKey].pEvents->clear(); // free all events on the key                  if (!(*itChannel)->pInstrument) continue; // ignore if no instrument loaded
378                    RenderAudio(*itChannel, Samples);
379              }              }
380          }          }
381    
382            // just some statistics about this engine instance
383            ActiveVoiceCount = ActiveVoiceCountTemp;
384            if (ActiveVoiceCount > ActiveVoiceCountMax) ActiveVoiceCountMax = ActiveVoiceCount;
385    
386            return 0;
387        }
388    
389          // get all events from the input event queue which belong to the current fragment      void Engine::RenderAudio(EngineChannel* pEngineChannel, uint Samples) {
390            // empty the engine's event lists for the new fragment
391            ClearEventLists();
392            // empty the engine channel's, MIDI key specific event lists
393          {          {
394              RingBuffer<Event>::NonVolatileReader eventQueueReader = pEventQueue->get_non_volatile_reader();              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
395              Event* pEvent;              RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();
396              while (true) {              for(; iuiKey != end; ++iuiKey) {
397                  // get next event from input event queue                  pEngineChannel->pMIDIKeyInfo[*iuiKey].pEvents->clear(); // free all events on the key
                 if (!(pEvent = eventQueueReader.pop())) break;  
                 // if younger event reached, ignore that and all subsequent ones for now  
                 if (pEvent->FragmentPos() >= Samples) {  
                     eventQueueReader--;  
                     dmsg(2,("Younger Event, pos=%d ,Samples=%d!\n",pEvent->FragmentPos(),Samples));  
                     pEvent->ResetFragmentPos();  
                     break;  
                 }  
                 // copy event to internal event list  
                 if (pEvents->poolIsEmpty()) {  
                     dmsg(1,("Event pool emtpy!\n"));  
                     break;  
                 }  
                 *pEvents->allocAppend() = *pEvent;  
398              }              }
             eventQueueReader.free(); // free all copied events from input queue  
399          }          }
400    
401    
402            // get all events from the engine channels's input event queue which belong to the current fragment
403            // (these are the common events like NoteOn, NoteOff, ControlChange, etc.)
404            ImportEvents(pEngineChannel->pEventQueue, Samples);
405    
406    
407          // process events          // process events
408          {          {
409              RTList<Event>::Iterator itEvent = pEvents->first();              RTList<Event>::Iterator itEvent = pEvents->first();
# Line 485  namespace LinuxSampler { namespace gig { Line 412  namespace LinuxSampler { namespace gig {
412                  switch (itEvent->Type) {                  switch (itEvent->Type) {
413                      case Event::type_note_on:                      case Event::type_note_on:
414                          dmsg(5,("Engine: Note on received\n"));                          dmsg(5,("Engine: Note on received\n"));
415                          ProcessNoteOn(itEvent);                          ProcessNoteOn((EngineChannel*)itEvent->pEngineChannel, itEvent);
416                          break;                          break;
417                      case Event::type_note_off:                      case Event::type_note_off:
418                          dmsg(5,("Engine: Note off received\n"));                          dmsg(5,("Engine: Note off received\n"));
419                          ProcessNoteOff(itEvent);                          ProcessNoteOff((EngineChannel*)itEvent->pEngineChannel, itEvent);
420                          break;                          break;
421                      case Event::type_control_change:                      case Event::type_control_change:
422                          dmsg(5,("Engine: MIDI CC received\n"));                          dmsg(5,("Engine: MIDI CC received\n"));
423                          ProcessControlChange(itEvent);                          ProcessControlChange((EngineChannel*)itEvent->pEngineChannel, itEvent);
424                          break;                          break;
425                      case Event::type_pitchbend:                      case Event::type_pitchbend:
426                          dmsg(5,("Engine: Pitchbend received\n"));                          dmsg(5,("Engine: Pitchbend received\n"));
427                          ProcessPitchbend(itEvent);                          ProcessPitchbend((EngineChannel*)itEvent->pEngineChannel, itEvent);
                         break;  
                     case Event::type_sysex:  
                         dmsg(5,("Engine: Sysex received\n"));  
                         ProcessSysex(itEvent);  
428                          break;                          break;
429                  }                  }
430              }              }
431          }          }
432    
433    
         int active_voices = 0;  
   
434          // render audio from all active voices          // render audio from all active voices
435          {          {
436              RTList<uint>::Iterator iuiKey = pActiveKeys->first();              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
437              RTList<uint>::Iterator end    = pActiveKeys->end();              RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();
438              while (iuiKey != end) { // iterate through all active keys              while (iuiKey != end) { // iterate through all active keys
439                  midi_key_info_t* pKey = &pMIDIKeyInfo[*iuiKey];                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
440                  ++iuiKey;                  ++iuiKey;
441    
442                  RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();                  RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
# Line 523  namespace LinuxSampler { namespace gig { Line 444  namespace LinuxSampler { namespace gig {
444                  for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key                  for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
445                      // now render current voice                      // now render current voice
446                      itVoice->Render(Samples);                      itVoice->Render(Samples);
447                      if (itVoice->IsActive()) active_voices++; // still active                      if (itVoice->IsActive()) ActiveVoiceCountTemp++; // still active
448                      else { // voice reached end, is now inactive                      else { // voice reached end, is now inactive
449                          FreeVoice(itVoice); // remove voice from the list of active voices                          FreeVoice(pEngineChannel, itVoice); // remove voice from the list of active voices
450                      }                      }
451                  }                  }
452              }              }
# Line 537  namespace LinuxSampler { namespace gig { Line 458  namespace LinuxSampler { namespace gig {
458              RTList<Event>::Iterator itVoiceStealEvent = pVoiceStealingQueue->first();              RTList<Event>::Iterator itVoiceStealEvent = pVoiceStealingQueue->first();
459              RTList<Event>::Iterator end               = pVoiceStealingQueue->end();              RTList<Event>::Iterator end               = pVoiceStealingQueue->end();
460              for (; itVoiceStealEvent != end; ++itVoiceStealEvent) {              for (; itVoiceStealEvent != end; ++itVoiceStealEvent) {
461                  Pool<Voice>::Iterator itNewVoice = LaunchVoice(itVoiceStealEvent, itVoiceStealEvent->Param.Note.Layer, itVoiceStealEvent->Param.Note.ReleaseTrigger, false);                  Pool<Voice>::Iterator itNewVoice =
462                        LaunchVoice(pEngineChannel, itVoiceStealEvent, itVoiceStealEvent->Param.Note.Layer, itVoiceStealEvent->Param.Note.ReleaseTrigger, false);
463                  if (itNewVoice) {                  if (itNewVoice) {
464                      for (; itNewVoice; itNewVoice = itNewVoice->itChildVoice) {                      for (; itNewVoice; itNewVoice = itNewVoice->itChildVoice) {
465                          itNewVoice->Render(Samples);                          itNewVoice->Render(Samples);
466                          if (itNewVoice->IsActive()) active_voices++; // still active                          if (itNewVoice->IsActive()) ActiveVoiceCountTemp++; // still active
467                          else { // voice reached end, is now inactive                          else { // voice reached end, is now inactive
468                              FreeVoice(itNewVoice); // remove voice from the list of active voices                              FreeVoice(pEngineChannel, itNewVoice); // remove voice from the list of active voices
469                          }                          }
470                      }                      }
471                  }                  }
# Line 552  namespace LinuxSampler { namespace gig { Line 474  namespace LinuxSampler { namespace gig {
474          }          }
475          // reset voice stealing for the new fragment          // reset voice stealing for the new fragment
476          pVoiceStealingQueue->clear();          pVoiceStealingQueue->clear();
477          itLastStolenVoice = RTList<Voice>::Iterator();          pEngineChannel->itLastStolenVoice = RTList<Voice>::Iterator();
478          iuiLastStolenKey  = RTList<uint>::Iterator();          pEngineChannel->iuiLastStolenKey  = RTList<uint>::Iterator();
479    
480    
481          // free all keys which have no active voices left          // free all keys which have no active voices left
482          {          {
483              RTList<uint>::Iterator iuiKey = pActiveKeys->first();              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
484              RTList<uint>::Iterator end    = pActiveKeys->end();              RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();
485              while (iuiKey != end) { // iterate through all active keys              while (iuiKey != end) { // iterate through all active keys
486                  midi_key_info_t* pKey = &pMIDIKeyInfo[*iuiKey];                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
487                  ++iuiKey;                  ++iuiKey;
488                  if (pKey->pActiveVoices->isEmpty()) FreeKey(pKey);                  if (pKey->pActiveVoices->isEmpty()) FreeKey(pEngineChannel, pKey);
489                  #if DEVMODE                  #if DEVMODE
490                  else { // FIXME: should be removed before the final release (purpose: just a sanity check for debugging)                  else { // FIXME: should be removed before the final release (purpose: just a sanity check for debugging)
491                      RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();                      RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
# Line 577  namespace LinuxSampler { namespace gig { Line 499  namespace LinuxSampler { namespace gig {
499                  #endif // DEVMODE                  #endif // DEVMODE
500              }              }
501          }          }
   
   
         // write that to the disk thread class so that it can print it  
         // on the console for debugging purposes  
         ActiveVoiceCount = active_voices;  
         if (ActiveVoiceCount > ActiveVoiceCountMax) ActiveVoiceCountMax = ActiveVoiceCount;  
   
   
         return 0;  
     }  
   
     /**  
      *  Will be called by the MIDIIn Thread to let the audio thread trigger a new  
      *  voice for the given key.  
      *  
      *  @param Key      - MIDI key number of the triggered key  
      *  @param Velocity - MIDI velocity value of the triggered key  
      */  
     void Engine::SendNoteOn(uint8_t Key, uint8_t Velocity) {  
         Event event               = pEventGenerator->CreateEvent();  
         event.Type                = Event::type_note_on;  
         event.Param.Note.Key      = Key;  
         event.Param.Note.Velocity = Velocity;  
         if (this->pEventQueue->write_space() > 0) this->pEventQueue->push(&event);  
         else dmsg(1,("Engine: Input event queue full!"));  
     }  
   
     /**  
      *  Will be called by the MIDIIn Thread to signal the audio thread to release  
      *  voice(s) on the given key.  
      *  
      *  @param Key      - MIDI key number of the released key  
      *  @param Velocity - MIDI release velocity value of the released key  
      */  
     void Engine::SendNoteOff(uint8_t Key, uint8_t Velocity) {  
         Event event               = pEventGenerator->CreateEvent();  
         event.Type                = Event::type_note_off;  
         event.Param.Note.Key      = Key;  
         event.Param.Note.Velocity = Velocity;  
         if (this->pEventQueue->write_space() > 0) this->pEventQueue->push(&event);  
         else dmsg(1,("Engine: Input event queue full!"));  
     }  
   
     /**  
      *  Will be called by the MIDIIn Thread to signal the audio thread to change  
      *  the pitch value for all voices.  
      *  
      *  @param Pitch - MIDI pitch value (-8192 ... +8191)  
      */  
     void Engine::SendPitchbend(int Pitch) {  
         Event event             = pEventGenerator->CreateEvent();  
         event.Type              = Event::type_pitchbend;  
         event.Param.Pitch.Pitch = Pitch;  
         if (this->pEventQueue->write_space() > 0) this->pEventQueue->push(&event);  
         else dmsg(1,("Engine: Input event queue full!"));  
     }  
   
     /**  
      *  Will be called by the MIDIIn Thread to signal the audio thread that a  
      *  continuous controller value has changed.  
      *  
      *  @param Controller - MIDI controller number of the occured control change  
      *  @param Value      - value of the control change  
      */  
     void Engine::SendControlChange(uint8_t Controller, uint8_t Value) {  
         Event event               = pEventGenerator->CreateEvent();  
         event.Type                = Event::type_control_change;  
         event.Param.CC.Controller = Controller;  
         event.Param.CC.Value      = Value;  
         if (this->pEventQueue->write_space() > 0) this->pEventQueue->push(&event);  
         else dmsg(1,("Engine: Input event queue full!"));  
502      }      }
503    
504      /**      /**
# Line 661  namespace LinuxSampler { namespace gig { Line 512  namespace LinuxSampler { namespace gig {
512          Event event             = pEventGenerator->CreateEvent();          Event event             = pEventGenerator->CreateEvent();
513          event.Type              = Event::type_sysex;          event.Type              = Event::type_sysex;
514          event.Param.Sysex.Size  = Size;          event.Param.Sysex.Size  = Size;
515            event.pEngineChannel    = NULL; // as Engine global event
516          if (pEventQueue->write_space() > 0) {          if (pEventQueue->write_space() > 0) {
517              if (pSysexBuffer->write_space() >= Size) {              if (pSysexBuffer->write_space() >= Size) {
518                  // copy sysex data to input buffer                  // copy sysex data to input buffer
# Line 684  namespace LinuxSampler { namespace gig { Line 536  namespace LinuxSampler { namespace gig {
536      /**      /**
537       *  Assigns and triggers a new voice for the respective MIDI key.       *  Assigns and triggers a new voice for the respective MIDI key.
538       *       *
539         *  @param pEngineChannel - engine channel on which this event occured on
540       *  @param itNoteOnEvent - key, velocity and time stamp of the event       *  @param itNoteOnEvent - key, velocity and time stamp of the event
541       */       */
542      void Engine::ProcessNoteOn(Pool<Event>::Iterator& itNoteOnEvent) {      void Engine::ProcessNoteOn(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
543    
544          const int key = itNoteOnEvent->Param.Note.Key;          const int key = itNoteOnEvent->Param.Note.Key;
545    
546          // Change key dimension value if key is in keyswitching area          // Change key dimension value if key is in keyswitching area
547          if (key >= pInstrument->DimensionKeyRange.low && key <= pInstrument->DimensionKeyRange.high)          {
548              CurrentKeyDimension = ((key - pInstrument->DimensionKeyRange.low) * 128) /              const ::gig::Instrument* pInstrument = pEngineChannel->pInstrument;
549                  (pInstrument->DimensionKeyRange.high - pInstrument->DimensionKeyRange.low + 1);              if (key >= pInstrument->DimensionKeyRange.low && key <= pInstrument->DimensionKeyRange.high)
550                    pEngineChannel->CurrentKeyDimension = ((key - pInstrument->DimensionKeyRange.low) * 128) /
551                        (pInstrument->DimensionKeyRange.high - pInstrument->DimensionKeyRange.low + 1);
552            }
553    
554          midi_key_info_t* pKey = &pMIDIKeyInfo[key];          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[key];
555    
556          pKey->KeyPressed = true; // the MIDI key was now pressed down          pKey->KeyPressed = true; // the MIDI key was now pressed down
557    
558          // cancel release process of voices on this key if needed          // cancel release process of voices on this key if needed
559          if (pKey->Active && !SustainPedal) {          if (pKey->Active && !pEngineChannel->SustainPedal) {
560              RTList<Event>::Iterator itCancelReleaseEvent = pKey->pEvents->allocAppend();              RTList<Event>::Iterator itCancelReleaseEvent = pKey->pEvents->allocAppend();
561              if (itCancelReleaseEvent) {              if (itCancelReleaseEvent) {
562                  *itCancelReleaseEvent = *itNoteOnEvent;                  // copy event                  *itCancelReleaseEvent = *itNoteOnEvent;                  // copy event
# Line 713  namespace LinuxSampler { namespace gig { Line 569  namespace LinuxSampler { namespace gig {
569          RTList<Event>::Iterator itNoteOnEventOnKeyList = itNoteOnEvent.moveToEndOf(pKey->pEvents);          RTList<Event>::Iterator itNoteOnEventOnKeyList = itNoteOnEvent.moveToEndOf(pKey->pEvents);
570    
571          // allocate and trigger a new voice for the key          // allocate and trigger a new voice for the key
572          LaunchVoice(itNoteOnEventOnKeyList, 0, false, true);          LaunchVoice(pEngineChannel, itNoteOnEventOnKeyList, 0, false, true);
573    
574            pKey->RoundRobinIndex++;
575      }      }
576    
577      /**      /**
# Line 722  namespace LinuxSampler { namespace gig { Line 580  namespace LinuxSampler { namespace gig {
580       *  sustain pedal will be released or voice turned inactive by itself (e.g.       *  sustain pedal will be released or voice turned inactive by itself (e.g.
581       *  due to completion of sample playback).       *  due to completion of sample playback).
582       *       *
583         *  @param pEngineChannel - engine channel on which this event occured on
584       *  @param itNoteOffEvent - key, velocity and time stamp of the event       *  @param itNoteOffEvent - key, velocity and time stamp of the event
585       */       */
586      void Engine::ProcessNoteOff(Pool<Event>::Iterator& itNoteOffEvent) {      void Engine::ProcessNoteOff(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOffEvent) {
587          midi_key_info_t* pKey = &pMIDIKeyInfo[itNoteOffEvent->Param.Note.Key];          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itNoteOffEvent->Param.Note.Key];
588    
589          pKey->KeyPressed = false; // the MIDI key was now released          pKey->KeyPressed = false; // the MIDI key was now released
590    
591          // release voices on this key if needed          // release voices on this key if needed
592          if (pKey->Active && !SustainPedal) {          if (pKey->Active && !pEngineChannel->SustainPedal) {
593              itNoteOffEvent->Type = Event::type_release; // transform event type              itNoteOffEvent->Type = Event::type_release; // transform event type
594          }          }
595    
# Line 739  namespace LinuxSampler { namespace gig { Line 598  namespace LinuxSampler { namespace gig {
598    
599          // spawn release triggered voice(s) if needed          // spawn release triggered voice(s) if needed
600          if (pKey->ReleaseTrigger) {          if (pKey->ReleaseTrigger) {
601              LaunchVoice(itNoteOffEventOnKeyList, 0, true, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples              LaunchVoice(pEngineChannel, itNoteOffEventOnKeyList, 0, true, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples
602              pKey->ReleaseTrigger = false;              pKey->ReleaseTrigger = false;
603          }          }
604      }      }
# Line 748  namespace LinuxSampler { namespace gig { Line 607  namespace LinuxSampler { namespace gig {
607       *  Moves pitchbend event from the general (input) event list to the pitch       *  Moves pitchbend event from the general (input) event list to the pitch
608       *  event list.       *  event list.
609       *       *
610         *  @param pEngineChannel - engine channel on which this event occured on
611       *  @param itPitchbendEvent - absolute pitch value and time stamp of the event       *  @param itPitchbendEvent - absolute pitch value and time stamp of the event
612       */       */
613      void Engine::ProcessPitchbend(Pool<Event>::Iterator& itPitchbendEvent) {      void Engine::ProcessPitchbend(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itPitchbendEvent) {
614          this->Pitch = itPitchbendEvent->Param.Pitch.Pitch; // store current pitch value          pEngineChannel->Pitch = itPitchbendEvent->Param.Pitch.Pitch; // store current pitch value
615          itPitchbendEvent.moveToEndOf(pSynthesisEvents[Event::destination_vco]);          itPitchbendEvent.moveToEndOf(pSynthesisEvents[Event::destination_vco]);
616      }      }
617    
# Line 760  namespace LinuxSampler { namespace gig { Line 620  namespace LinuxSampler { namespace gig {
620       *  called by the ProcessNoteOn() method and by the voices itself       *  called by the ProcessNoteOn() method and by the voices itself
621       *  (e.g. to spawn further voices on the same key for layered sounds).       *  (e.g. to spawn further voices on the same key for layered sounds).
622       *       *
623         *  @param pEngineChannel      - engine channel on which this event occured on
624       *  @param itNoteOnEvent       - key, velocity and time stamp of the event       *  @param itNoteOnEvent       - key, velocity and time stamp of the event
625       *  @param iLayer              - layer index for the new voice (optional - only       *  @param iLayer              - layer index for the new voice (optional - only
626       *                               in case of layered sounds of course)       *                               in case of layered sounds of course)
# Line 772  namespace LinuxSampler { namespace gig { Line 633  namespace LinuxSampler { namespace gig {
633       *           if the voice wasn't triggered (for example when no region is       *           if the voice wasn't triggered (for example when no region is
634       *           defined for the given key).       *           defined for the given key).
635       */       */
636      Pool<Voice>::Iterator Engine::LaunchVoice(Pool<Event>::Iterator& itNoteOnEvent, int iLayer, bool ReleaseTriggerVoice, bool VoiceStealing) {      Pool<Voice>::Iterator Engine::LaunchVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent, int iLayer, bool ReleaseTriggerVoice, bool VoiceStealing) {
637          midi_key_info_t* pKey = &pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];
638    
639          // allocate a new voice for the key          // allocate a new voice for the key
640          Pool<Voice>::Iterator itNewVoice = pKey->pActiveVoices->allocAppend();          Pool<Voice>::Iterator itNewVoice = pKey->pActiveVoices->allocAppend();
641          if (itNewVoice) {          if (itNewVoice) {
642              // launch the new voice              // launch the new voice
643              if (itNewVoice->Trigger(itNoteOnEvent, this->Pitch, this->pInstrument, iLayer, ReleaseTriggerVoice, VoiceStealing) < 0) {              if (itNewVoice->Trigger(pEngineChannel, itNoteOnEvent, pEngineChannel->Pitch, pEngineChannel->pInstrument, iLayer, ReleaseTriggerVoice, VoiceStealing) < 0) {
644                  dmsg(4,("Voice not triggered\n"));                  dmsg(4,("Voice not triggered\n"));
645                  pKey->pActiveVoices->free(itNewVoice);                  pKey->pActiveVoices->free(itNewVoice);
646              }              }
647              else { // on success              else { // on success
648                  uint** ppKeyGroup = NULL;                  uint** ppKeyGroup = NULL;
649                  if (itNewVoice->KeyGroup) { // if this voice / key belongs to a key group                  if (itNewVoice->KeyGroup) { // if this voice / key belongs to a key group
650                      ppKeyGroup = &ActiveKeyGroups[itNewVoice->KeyGroup];                      ppKeyGroup = &pEngineChannel->ActiveKeyGroups[itNewVoice->KeyGroup];
651                      if (*ppKeyGroup) { // if there's already an active key in that key group                      if (*ppKeyGroup) { // if there's already an active key in that key group
652                          midi_key_info_t* pOtherKey = &pMIDIKeyInfo[**ppKeyGroup];                          midi_key_info_t* pOtherKey = &pEngineChannel->pMIDIKeyInfo[**ppKeyGroup];
653                          // kill all voices on the (other) key                          // kill all voices on the (other) key
654                          RTList<Voice>::Iterator itVoiceToBeKilled = pOtherKey->pActiveVoices->first();                          RTList<Voice>::Iterator itVoiceToBeKilled = pOtherKey->pActiveVoices->first();
655                          RTList<Voice>::Iterator end               = pOtherKey->pActiveVoices->end();                          RTList<Voice>::Iterator end               = pOtherKey->pActiveVoices->end();
# Line 799  namespace LinuxSampler { namespace gig { Line 660  namespace LinuxSampler { namespace gig {
660                  }                  }
661                  if (!pKey->Active) { // mark as active key                  if (!pKey->Active) { // mark as active key
662                      pKey->Active = true;                      pKey->Active = true;
663                      pKey->itSelf = pActiveKeys->allocAppend();                      pKey->itSelf = pEngineChannel->pActiveKeys->allocAppend();
664                      *pKey->itSelf = itNoteOnEvent->Param.Note.Key;                      *pKey->itSelf = itNoteOnEvent->Param.Note.Key;
665                  }                  }
666                  if (itNewVoice->KeyGroup) {                  if (itNewVoice->KeyGroup) {
# Line 811  namespace LinuxSampler { namespace gig { Line 672  namespace LinuxSampler { namespace gig {
672          }          }
673          else if (VoiceStealing) {          else if (VoiceStealing) {
674              // first, get total amount of required voices (dependant on amount of layers)              // first, get total amount of required voices (dependant on amount of layers)
675              ::gig::Region* pRegion = pInstrument->GetRegion(itNoteOnEvent->Param.Note.Key);              ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOnEvent->Param.Note.Key);
676              if (!pRegion) return Pool<Voice>::Iterator(); // nothing defined for this MIDI key, so no voice needed              if (!pRegion) return Pool<Voice>::Iterator(); // nothing defined for this MIDI key, so no voice needed
677              int voicesRequired = pRegion->Layers;              int voicesRequired = pRegion->Layers;
678    
679              // now steal the (remaining) amount of voices              // now steal the (remaining) amount of voices
680              for (int i = iLayer; i < voicesRequired; i++)              for (int i = iLayer; i < voicesRequired; i++)
681                  StealVoice(itNoteOnEvent);                  StealVoice(pEngineChannel, itNoteOnEvent);
682    
683              // put note-on event into voice-stealing queue, so it will be reprocessed after killed voice died              // put note-on event into voice-stealing queue, so it will be reprocessed after killed voice died
684              RTList<Event>::Iterator itStealEvent = pVoiceStealingQueue->allocAppend();              RTList<Event>::Iterator itStealEvent = pVoiceStealingQueue->allocAppend();
# Line 838  namespace LinuxSampler { namespace gig { Line 699  namespace LinuxSampler { namespace gig {
699       *  voice stealing and postpone the note-on event until the selected       *  voice stealing and postpone the note-on event until the selected
700       *  voice actually died.       *  voice actually died.
701       *       *
702         *  @param pEngineChannel - engine channel on which this event occured on
703       *  @param itNoteOnEvent - key, velocity and time stamp of the event       *  @param itNoteOnEvent - key, velocity and time stamp of the event
704       */       */
705      void Engine::StealVoice(Pool<Event>::Iterator& itNoteOnEvent) {      void Engine::StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
706          if (!pEventPool->poolIsEmpty()) {          if (!pEventPool->poolIsEmpty()) {
707    
708              RTList<uint>::Iterator  iuiOldestKey;              RTList<uint>::Iterator  iuiOldestKey;
# Line 854  namespace LinuxSampler { namespace gig { Line 716  namespace LinuxSampler { namespace gig {
716                  // key, or no voice left to kill there, then procceed with                  // key, or no voice left to kill there, then procceed with
717                  // 'oldestkey' algorithm                  // 'oldestkey' algorithm
718                  case voice_steal_algo_keymask: {                  case voice_steal_algo_keymask: {
719                      midi_key_info_t* pOldestKey = &pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];                      midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];
720                      if (itLastStolenVoice) {                      if (pEngineChannel->itLastStolenVoice) {
721                          itOldestVoice = itLastStolenVoice;                          itOldestVoice = pEngineChannel->itLastStolenVoice;
722                          ++itOldestVoice;                          ++itOldestVoice;
723                      }                      }
724                      else { // no voice stolen in this audio fragment cycle yet                      else { // no voice stolen in this audio fragment cycle yet
# Line 871  namespace LinuxSampler { namespace gig { Line 733  namespace LinuxSampler { namespace gig {
733                  // try to pick the oldest voice on the oldest active key                  // try to pick the oldest voice on the oldest active key
734                  // (caution: must stay after 'keymask' algorithm !)                  // (caution: must stay after 'keymask' algorithm !)
735                  case voice_steal_algo_oldestkey: {                  case voice_steal_algo_oldestkey: {
736                      if (itLastStolenVoice) {                      if (pEngineChannel->itLastStolenVoice) {
737                          midi_key_info_t* pOldestKey = &pMIDIKeyInfo[*iuiLastStolenKey];                          midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*pEngineChannel->iuiLastStolenKey];
738                          itOldestVoice = itLastStolenVoice;                          itOldestVoice = pEngineChannel->itLastStolenVoice;
739                          ++itOldestVoice;                          ++itOldestVoice;
740                          if (!itOldestVoice) {                          if (!itOldestVoice) {
741                              iuiOldestKey = iuiLastStolenKey;                              iuiOldestKey = pEngineChannel->iuiLastStolenKey;
742                              ++iuiOldestKey;                              ++iuiOldestKey;
743                              if (iuiOldestKey) {                              if (iuiOldestKey) {
744                                  midi_key_info_t* pOldestKey = &pMIDIKeyInfo[*iuiOldestKey];                                  midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*iuiOldestKey];
745                                  itOldestVoice = pOldestKey->pActiveVoices->first();                                  itOldestVoice = pOldestKey->pActiveVoices->first();
746                              }                              }
747                              else {                              else {
# Line 887  namespace LinuxSampler { namespace gig { Line 749  namespace LinuxSampler { namespace gig {
749                                  return;                                  return;
750                              }                              }
751                          }                          }
752                          else iuiOldestKey = iuiLastStolenKey;                          else iuiOldestKey = pEngineChannel->iuiLastStolenKey;
753                      }                      }
754                      else { // no voice stolen in this audio fragment cycle yet                      else { // no voice stolen in this audio fragment cycle yet
755                          iuiOldestKey = pActiveKeys->first();                          iuiOldestKey = pEngineChannel->pActiveKeys->first();
756                          midi_key_info_t* pOldestKey = &pMIDIKeyInfo[*iuiOldestKey];                          midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*iuiOldestKey];
757                          itOldestVoice = pOldestKey->pActiveVoices->first();                          itOldestVoice = pOldestKey->pActiveVoices->first();
758                      }                      }
759                      break;                      break;
# Line 911  namespace LinuxSampler { namespace gig { Line 773  namespace LinuxSampler { namespace gig {
773              // now kill the selected voice              // now kill the selected voice
774              itOldestVoice->Kill(itNoteOnEvent);              itOldestVoice->Kill(itNoteOnEvent);
775              // remember which voice on which key we stole, so we can simply proceed for the next voice stealing              // remember which voice on which key we stole, so we can simply proceed for the next voice stealing
776              this->itLastStolenVoice = itOldestVoice;              pEngineChannel->itLastStolenVoice = itOldestVoice;
777              this->iuiLastStolenKey = iuiOldestKey;              pEngineChannel->iuiLastStolenKey = iuiOldestKey;
778          }          }
779          else dmsg(1,("Event pool emtpy!\n"));          else dmsg(1,("Event pool emtpy!\n"));
780      }      }
# Line 923  namespace LinuxSampler { namespace gig { Line 785  namespace LinuxSampler { namespace gig {
785       *  it finished to playback its sample, finished its release stage or       *  it finished to playback its sample, finished its release stage or
786       *  just was killed.       *  just was killed.
787       *       *
788         *  @param pEngineChannel - engine channel on which this event occured on
789       *  @param itVoice - points to the voice to be freed       *  @param itVoice - points to the voice to be freed
790       */       */
791      void Engine::FreeVoice(Pool<Voice>::Iterator& itVoice) {      void Engine::FreeVoice(EngineChannel* pEngineChannel, Pool<Voice>::Iterator& itVoice) {
792          if (itVoice) {          if (itVoice) {
793              midi_key_info_t* pKey = &pMIDIKeyInfo[itVoice->MIDIKey];              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itVoice->MIDIKey];
794    
795              uint keygroup = itVoice->KeyGroup;              uint keygroup = itVoice->KeyGroup;
796    
# Line 936  namespace LinuxSampler { namespace gig { Line 799  namespace LinuxSampler { namespace gig {
799    
800              // if no other voices left and member of a key group, remove from key group              // if no other voices left and member of a key group, remove from key group
801              if (pKey->pActiveVoices->isEmpty() && keygroup) {              if (pKey->pActiveVoices->isEmpty() && keygroup) {
802                  uint** ppKeyGroup = &ActiveKeyGroups[keygroup];                  uint** ppKeyGroup = &pEngineChannel->ActiveKeyGroups[keygroup];
803                  if (*ppKeyGroup == &*pKey->itSelf) *ppKeyGroup = NULL; // remove key from key group                  if (*ppKeyGroup == &*pKey->itSelf) *ppKeyGroup = NULL; // remove key from key group
804              }              }
805          }          }
# Line 947  namespace LinuxSampler { namespace gig { Line 810  namespace LinuxSampler { namespace gig {
810       *  Called when there's no more voice left on a key, this call will       *  Called when there's no more voice left on a key, this call will
811       *  update the key info respectively.       *  update the key info respectively.
812       *       *
813         *  @param pEngineChannel - engine channel on which this event occured on
814       *  @param pKey - key which is now inactive       *  @param pKey - key which is now inactive
815       */       */
816      void Engine::FreeKey(midi_key_info_t* pKey) {      void Engine::FreeKey(EngineChannel* pEngineChannel, midi_key_info_t* pKey) {
817          if (pKey->pActiveVoices->isEmpty()) {          if (pKey->pActiveVoices->isEmpty()) {
818              pKey->Active = false;              pKey->Active = false;
819              pActiveKeys->free(pKey->itSelf); // remove key from list of active keys              pEngineChannel->pActiveKeys->free(pKey->itSelf); // remove key from list of active keys
820              pKey->itSelf = RTList<uint>::Iterator();              pKey->itSelf = RTList<uint>::Iterator();
821              pKey->ReleaseTrigger = false;              pKey->ReleaseTrigger = false;
822              pKey->pEvents->clear();              pKey->pEvents->clear();
# Line 965  namespace LinuxSampler { namespace gig { Line 829  namespace LinuxSampler { namespace gig {
829       *  Reacts on supported control change commands (e.g. pitch bend wheel,       *  Reacts on supported control change commands (e.g. pitch bend wheel,
830       *  modulation wheel, aftertouch).       *  modulation wheel, aftertouch).
831       *       *
832         *  @param pEngineChannel - engine channel on which this event occured on
833       *  @param itControlChangeEvent - controller, value and time stamp of the event       *  @param itControlChangeEvent - controller, value and time stamp of the event
834       */       */
835      void Engine::ProcessControlChange(Pool<Event>::Iterator& itControlChangeEvent) {      void Engine::ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlChangeEvent) {
836          dmsg(4,("Engine::ContinuousController cc=%d v=%d\n", itControlChangeEvent->Param.CC.Controller, itControlChangeEvent->Param.CC.Value));          dmsg(4,("Engine::ContinuousController cc=%d v=%d\n", itControlChangeEvent->Param.CC.Controller, itControlChangeEvent->Param.CC.Value));
837    
838          switch (itControlChangeEvent->Param.CC.Controller) {          switch (itControlChangeEvent->Param.CC.Controller) {
839              case 64: {              case 7: { // volume
840                  if (itControlChangeEvent->Param.CC.Value >= 64 && !SustainPedal) {                  //TODO: not sample accurate yet
841                    pEngineChannel->GlobalVolume = (float) itControlChangeEvent->Param.CC.Value / 127.0f;
842                    break;
843                }
844                case 10: { // panpot
845                    //TODO: not sample accurate yet
846                    const int pan = (int) itControlChangeEvent->Param.CC.Value - 64;
847                    pEngineChannel->GlobalPanLeft  = 1.0f - float(RTMath::Max(pan, 0)) /  63.0f;
848                    pEngineChannel->GlobalPanRight = 1.0f - float(RTMath::Min(pan, 0)) / -64.0f;
849                    break;
850                }
851                case 64: { // sustain
852                    if (itControlChangeEvent->Param.CC.Value >= 64 && !pEngineChannel->SustainPedal) {
853                      dmsg(4,("PEDAL DOWN\n"));                      dmsg(4,("PEDAL DOWN\n"));
854                      SustainPedal = true;                      pEngineChannel->SustainPedal = true;
855    
856                      // cancel release process of voices if necessary                      // cancel release process of voices if necessary
857                      RTList<uint>::Iterator iuiKey = pActiveKeys->first();                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
858                      if (iuiKey) {                      if (iuiKey) {
859                          itControlChangeEvent->Type = Event::type_cancel_release; // transform event type                          itControlChangeEvent->Type = Event::type_cancel_release; // transform event type
860                          while (iuiKey) {                          while (iuiKey) {
861                              midi_key_info_t* pKey = &pMIDIKeyInfo[*iuiKey];                              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
862                              ++iuiKey;                              ++iuiKey;
863                              if (!pKey->KeyPressed) {                              if (!pKey->KeyPressed) {
864                                  RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();                                  RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
# Line 991  namespace LinuxSampler { namespace gig { Line 868  namespace LinuxSampler { namespace gig {
868                          }                          }
869                      }                      }
870                  }                  }
871                  if (itControlChangeEvent->Param.CC.Value < 64 && SustainPedal) {                  if (itControlChangeEvent->Param.CC.Value < 64 && pEngineChannel->SustainPedal) {
872                      dmsg(4,("PEDAL UP\n"));                      dmsg(4,("PEDAL UP\n"));
873                      SustainPedal = false;                      pEngineChannel->SustainPedal = false;
874    
875                      // release voices if their respective key is not pressed                      // release voices if their respective key is not pressed
876                      RTList<uint>::Iterator iuiKey = pActiveKeys->first();                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
877                      if (iuiKey) {                      if (iuiKey) {
878                          itControlChangeEvent->Type = Event::type_release; // transform event type                          itControlChangeEvent->Type = Event::type_release; // transform event type
879                          while (iuiKey) {                          while (iuiKey) {
880                              midi_key_info_t* pKey = &pMIDIKeyInfo[*iuiKey];                              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
881                              ++iuiKey;                              ++iuiKey;
882                              if (!pKey->KeyPressed) {                              if (!pKey->KeyPressed) {
883                                  RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();                                  RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
# Line 1015  namespace LinuxSampler { namespace gig { Line 892  namespace LinuxSampler { namespace gig {
892          }          }
893    
894          // update controller value in the engine's controller table          // update controller value in the engine's controller table
895          ControllerTable[itControlChangeEvent->Param.CC.Controller] = itControlChangeEvent->Param.CC.Value;          pEngineChannel->ControllerTable[itControlChangeEvent->Param.CC.Controller] = itControlChangeEvent->Param.CC.Value;
896    
897          // move event from the unsorted event list to the control change event list          // move event from the unsorted event list to the control change event list
898          itControlChangeEvent.moveToEndOf(pCCEvents);          itControlChangeEvent.moveToEndOf(pCCEvents);
# Line 1119  namespace LinuxSampler { namespace gig { Line 996  namespace LinuxSampler { namespace gig {
996          }          }
997      }      }
998    
     float Engine::Volume() {  
         return GlobalVolume;  
     }  
   
     void Engine::Volume(float f) {  
         GlobalVolume = f;  
     }  
   
     uint Engine::Channels() {  
         return 2;  
     }  
   
     void Engine::SetOutputChannel(uint EngineAudioChannel, uint AudioDeviceChannel) {  
         AudioChannel* pChannel = pAudioOutputDevice->Channel(AudioDeviceChannel);  
         if (!pChannel) throw AudioOutputException("Invalid audio output device channel " + ToString(AudioDeviceChannel));  
         switch (EngineAudioChannel) {  
             case 0: // left output channel  
                 pOutputLeft = pChannel->Buffer();  
                 AudioDeviceChannelLeft = AudioDeviceChannel;  
                 break;  
             case 1: // right output channel  
                 pOutputRight = pChannel->Buffer();  
                 AudioDeviceChannelRight = AudioDeviceChannel;  
                 break;  
             default:  
                 throw AudioOutputException("Invalid engine audio channel " + ToString(EngineAudioChannel));  
         }  
     }  
   
     int Engine::OutputChannel(uint EngineAudioChannel) {  
         switch (EngineAudioChannel) {  
             case 0: // left channel  
                 return AudioDeviceChannelLeft;  
             case 1: // right channel  
                 return AudioDeviceChannelRight;  
             default:  
                 throw AudioOutputException("Invalid engine audio channel " + ToString(EngineAudioChannel));  
         }  
     }  
   
999      uint Engine::VoiceCount() {      uint Engine::VoiceCount() {
1000          return ActiveVoiceCount;          return ActiveVoiceCount;
1001      }      }
# Line 1191  namespace LinuxSampler { namespace gig { Line 1028  namespace LinuxSampler { namespace gig {
1028          return "GigEngine";          return "GigEngine";
1029      }      }
1030    
     String Engine::InstrumentFileName() {  
         return InstrumentFile;  
     }  
   
     String Engine::InstrumentName() {  
         return InstrumentIdxName;  
     }  
   
     int Engine::InstrumentIndex() {  
         return InstrumentIdx;  
     }  
   
     int Engine::InstrumentStatus() {  
         return InstrumentStat;  
     }  
   
1031      String Engine::Description() {      String Engine::Description() {
1032          return "Gigasampler Engine";          return "Gigasampler Engine";
1033      }      }
1034    
1035      String Engine::Version() {      String Engine::Version() {
1036          String s = "$Revision: 1.25 $";          String s = "$Revision: 1.30 $";
1037          return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword          return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
1038      }      }
1039    

Legend:
Removed from v.392  
changed lines
  Added in v.438

  ViewVC Help
Powered by ViewVC