/[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 424 by schoenebeck, Fri Mar 4 22:54:11 2005 UTC revision 649 by schoenebeck, Wed Jun 15 00:01:28 2005 UTC
# Line 56  namespace LinuxSampler { namespace gig { Line 56  namespace LinuxSampler { namespace gig {
56          // check if there's already an engine for the given audio output device          // check if there's already an engine for the given audio output device
57          if (engines.count(pDevice)) {          if (engines.count(pDevice)) {
58              dmsg(4,("Using existing gig::Engine.\n"));              dmsg(4,("Using existing gig::Engine.\n"));
59              pEngine = engines[pDevice];                          pEngine = engines[pDevice];
60          } else { // create a new engine (and disk thread) instance for the given audio output device          } else { // create a new engine (and disk thread) instance for the given audio output device
61              dmsg(4,("Creating new gig::Engine.\n"));              dmsg(4,("Creating new gig::Engine.\n"));
62              pEngine = (Engine*) EngineFactory::Create("gig");              pEngine = (Engine*) EngineFactory::Create("gig");
63              pEngine->Connect(pDevice);              pEngine->Connect(pDevice);
64              engines[pDevice] = pEngine;                          engines[pDevice] = pEngine;
65          }          }
66          // register engine channel to the engine instance          // register engine channel to the engine instance
67          pEngine->engineChannels.push_back(pChannel);          pEngine->engineChannels.add(pChannel);
68            // remember index in the ArrayList
69            pChannel->iEngineIndexSelf = pEngine->engineChannels.size() - 1;
70          dmsg(4,("This gig::Engine has now %d EngineChannels.\n",pEngine->engineChannels.size()));          dmsg(4,("This gig::Engine has now %d EngineChannels.\n",pEngine->engineChannels.size()));
71          return pEngine;          return pEngine;
72      }      }
# Line 94  namespace LinuxSampler { namespace gig { Line 96  namespace LinuxSampler { namespace gig {
96          else dmsg(4,("This gig::Engine has now %d EngineChannels.\n",pEngine->engineChannels.size()));          else dmsg(4,("This gig::Engine has now %d EngineChannels.\n",pEngine->engineChannels.size()));
97      }      }
98    
99        /**
100         * Constructor
101         */
102      Engine::Engine() {      Engine::Engine() {
103          pAudioOutputDevice = NULL;          pAudioOutputDevice = NULL;
104          pDiskThread        = NULL;          pDiskThread        = NULL;
105          pEventGenerator    = NULL;          pEventGenerator    = NULL;
106          pSysexBuffer       = new RingBuffer<uint8_t>(SYSEX_BUFFER_SIZE, 0);          pSysexBuffer       = new RingBuffer<uint8_t>(CONFIG_SYSEX_BUFFER_SIZE, 0);
107          pEventQueue        = new RingBuffer<Event>(MAX_EVENTS_PER_FRAGMENT, 0);          pEventQueue        = new RingBuffer<Event>(CONFIG_MAX_EVENTS_PER_FRAGMENT, 0);
108          pEventPool         = new Pool<Event>(MAX_EVENTS_PER_FRAGMENT);          pEventPool         = new Pool<Event>(CONFIG_MAX_EVENTS_PER_FRAGMENT);
109          pVoicePool         = new Pool<Voice>(MAX_AUDIO_VOICES);                  pVoicePool         = new Pool<Voice>(CONFIG_MAX_VOICES);
110          pVoiceStealingQueue = new RTList<Event>(pEventPool);          pVoiceStealingQueue = new RTList<Event>(pEventPool);
111          pEvents            = new RTList<Event>(pEventPool);          pGlobalEvents      = new RTList<Event>(pEventPool);
         pCCEvents          = new RTList<Event>(pEventPool);  
           
         for (uint i = 0; i < Event::destination_count; i++) {  
             pSynthesisEvents[i] = 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 121  namespace LinuxSampler { namespace gig { Line 121  namespace LinuxSampler { namespace gig {
121          ResetInternal();          ResetInternal();
122      }      }
123    
124        /**
125         * Destructor
126         */
127      Engine::~Engine() {      Engine::~Engine() {
128          if (pDiskThread) {          if (pDiskThread) {
129              dmsg(1,("Stopping disk thread..."));              dmsg(1,("Stopping disk thread..."));
# Line 128  namespace LinuxSampler { namespace gig { Line 131  namespace LinuxSampler { namespace gig {
131              delete pDiskThread;              delete pDiskThread;
132              dmsg(1,("OK\n"));              dmsg(1,("OK\n"));
133          }          }
         for (uint i = 0; i < Event::destination_count; i++) {  
             if (pSynthesisEvents[i]) delete pSynthesisEvents[i];  
         }  
         if (pEvents)     delete pEvents;  
         if (pCCEvents)   delete pCCEvents;  
134          if (pEventQueue) delete pEventQueue;          if (pEventQueue) delete pEventQueue;
135          if (pEventPool)  delete pEventPool;          if (pEventPool)  delete pEventPool;
136          if (pVoicePool) {          if (pVoicePool) {
# Line 186  namespace LinuxSampler { namespace gig { Line 184  namespace LinuxSampler { namespace gig {
184    
185          // reset voice stealing parameters          // reset voice stealing parameters
186          pVoiceStealingQueue->clear();          pVoiceStealingQueue->clear();
187            itLastStolenVoice          = RTList<Voice>::Iterator();
188            itLastStolenVoiceGlobally  = RTList<Voice>::Iterator();
189            iuiLastStolenKey           = RTList<uint>::Iterator();
190            iuiLastStolenKeyGlobally   = RTList<uint>::Iterator();
191            pLastStolenChannel         = NULL;
192    
193          // reset to normal chromatic scale (means equal temper)          // reset to normal chromatic scale (means equal temper)
194          memset(&ScaleTuning[0], 0x00, 12);          memset(&ScaleTuning[0], 0x00, 12);
# Line 201  namespace LinuxSampler { namespace gig { Line 204  namespace LinuxSampler { namespace gig {
204    
205          // delete all input events          // delete all input events
206          pEventQueue->init();          pEventQueue->init();
207      }          }
208    
209        /**
210         * Connect this engine instance with the given audio output device.
211         * This method will be called when an Engine instance is created.
212         * All of the engine's data structures which are dependant to the used
213         * audio output device / driver will be (re)allocated and / or
214         * adjusted appropriately.
215         *
216         * @param pAudioOut - audio output device to connect to
217         */
218      void Engine::Connect(AudioOutputDevice* pAudioOut) {      void Engine::Connect(AudioOutputDevice* pAudioOut) {
219          pAudioOutputDevice = pAudioOut;          pAudioOutputDevice = pAudioOut;
220    
# Line 216  namespace LinuxSampler { namespace gig { Line 228  namespace LinuxSampler { namespace gig {
228              String msg = "Audio output device unable to provide 2 audio channels, cause: " + e.Message();              String msg = "Audio output device unable to provide 2 audio channels, cause: " + e.Message();
229              throw LinuxSamplerException(msg);              throw LinuxSamplerException(msg);
230          }          }
231            
232          this->MaxSamplesPerCycle      = pAudioOutputDevice->MaxSamplesPerCycle();          this->MaxSamplesPerCycle = pAudioOutputDevice->MaxSamplesPerCycle();
233          this->SampleRate              = pAudioOutputDevice->SampleRate();          this->SampleRate         = pAudioOutputDevice->SampleRate();
234    
235          // FIXME: audio drivers with varying fragment sizes might be a problem here          // FIXME: audio drivers with varying fragment sizes might be a problem here
236          MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * EG_MIN_RELEASE_TIME) - 1;          MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * CONFIG_EG_MIN_RELEASE_TIME) - 1;
237          if (MaxFadeOutPos < 0)          if (MaxFadeOutPos < 0)
238              throw LinuxSamplerException("EG_MIN_RELEASE_TIME in EGADSR.h too big for current audio fragment size / sampling rate!");              throw LinuxSamplerException("CONFIG_EG_MIN_RELEASE_TIME too big for current audio fragment size / sampling rate!");
239    
240          // (re)create disk thread          // (re)create disk thread
241          if (this->pDiskThread) {          if (this->pDiskThread) {
# Line 232  namespace LinuxSampler { namespace gig { Line 244  namespace LinuxSampler { namespace gig {
244              delete this->pDiskThread;              delete this->pDiskThread;
245              dmsg(1,("OK\n"));              dmsg(1,("OK\n"));
246          }          }
247          this->pDiskThread = new DiskThread(((pAudioOut->MaxSamplesPerCycle() << MAX_PITCH) << 1) + 6); //FIXME: assuming stereo          this->pDiskThread = new DiskThread(((pAudioOut->MaxSamplesPerCycle() << CONFIG_MAX_PITCH) << 1) + 6); //FIXME: assuming stereo
248          if (!pDiskThread) {          if (!pDiskThread) {
249              dmsg(0,("gig::Engine  new diskthread = NULL\n"));              dmsg(0,("gig::Engine  new diskthread = NULL\n"));
250              exit(EXIT_FAILURE);              exit(EXIT_FAILURE);
# Line 277  namespace LinuxSampler { namespace gig { Line 289  namespace LinuxSampler { namespace gig {
289          }          }
290      }      }
291    
292        /**
293         * Clear all engine global event lists.
294         */
295      void Engine::ClearEventLists() {      void Engine::ClearEventLists() {
296          pEvents->clear();          pGlobalEvents->clear();
         pCCEvents->clear();  
         for (uint i = 0; i < Event::destination_count; i++) {  
             pSynthesisEvents[i]->clear();  
         }  
297      }      }
298    
299      /**      /**
300       * Copy all events from the given input queue buffer to the engine's       * Copy all events from the engine's global input queue buffer to the
301       * internal event list. This will be done at the beginning of each audio       * engine's internal event list. This will be done at the beginning of
302       * cycle (that is each RenderAudio() call) to get all events which have       * each audio cycle (that is each RenderAudio() call) to distinguish
303       * to be processed in the current audio cycle. Each EngineChannel has       * all global events which have to be processed in the current audio
304       * it's own input event queue for the common channel specific events       * cycle. These events are usually just SysEx messages. Every
305       * (like NoteOn, NoteOff and ControlChange events). Beside that, the       * EngineChannel has it's own input event queue buffer and event list
306       * engine also has a input event queue for global events (usually SysEx       * to handle common events like NoteOn, NoteOff and ControlChange
307       * message).       * events.
308       *       *
309       * @param pEventQueue - input event buffer to read from       * @param Samples - number of sample points to be processed in the
310       * @param Samples     - number of sample points to be processed in the       *                  current audio cycle
      *                      current audio cycle  
311       */       */
312      void Engine::ImportEvents(RingBuffer<Event>* pEventQueue, uint Samples) {      void Engine::ImportEvents(uint Samples) {
313          RingBuffer<Event>::NonVolatileReader eventQueueReader = pEventQueue->get_non_volatile_reader();          RingBuffer<Event>::NonVolatileReader eventQueueReader = pEventQueue->get_non_volatile_reader();
314          Event* pEvent;          Event* pEvent;
315          while (true) {          while (true) {
# Line 313  namespace LinuxSampler { namespace gig { Line 323  namespace LinuxSampler { namespace gig {
323                  break;                  break;
324              }              }
325              // copy event to internal event list              // copy event to internal event list
326              if (pEvents->poolIsEmpty()) {              if (pGlobalEvents->poolIsEmpty()) {
327                  dmsg(1,("Event pool emtpy!\n"));                  dmsg(1,("Event pool emtpy!\n"));
328                  break;                  break;
329              }              }
330              *pEvents->allocAppend() = *pEvent;              *pGlobalEvents->allocAppend() = *pEvent;
331          }          }
332          eventQueueReader.free(); // free all copied events from input queue          eventQueueReader.free(); // free all copied events from input queue
333      }          }
334    
335      /**      /**
336       *  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
# Line 344  namespace LinuxSampler { namespace gig { Line 354  namespace LinuxSampler { namespace gig {
354          // 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)
355          pEventGenerator->UpdateFragmentTime(Samples);          pEventGenerator->UpdateFragmentTime(Samples);
356    
         // empty the engine's event lists for the new fragment  
         ClearEventLists();  
   
357          // get all events from the engine's global input event queue which belong to the current fragment          // get all events from the engine's global input event queue which belong to the current fragment
358          // (these are usually just SysEx messages)          // (these are usually just SysEx messages)
359          ImportEvents(this->pEventQueue, Samples);          ImportEvents(Samples);
360    
361          // process engine global events (these are currently only MIDI System Exclusive messages)          // process engine global events (these are currently only MIDI System Exclusive messages)
362          {          {
363              RTList<Event>::Iterator itEvent = pEvents->first();              RTList<Event>::Iterator itEvent = pGlobalEvents->first();
364              RTList<Event>::Iterator end     = pEvents->end();              RTList<Event>::Iterator end     = pGlobalEvents->end();
365              for (; itEvent != end; ++itEvent) {              for (; itEvent != end; ++itEvent) {
366                  switch (itEvent->Type) {                  switch (itEvent->Type) {
367                      case Event::type_sysex:                      case Event::type_sysex:
# Line 365  namespace LinuxSampler { namespace gig { Line 372  namespace LinuxSampler { namespace gig {
372              }              }
373          }          }
374    
375            // We only allow a maximum of CONFIG_MAX_VOICES voices to be stolen
376            // in each audio fragment. All subsequent request for spawning new
377            // voices in the same audio fragment will be ignored.
378            VoiceTheftsLeft = CONFIG_MAX_VOICES;
379    
380          // reset internal voice counter (just for statistic of active voices)          // reset internal voice counter (just for statistic of active voices)
381          ActiveVoiceCountTemp = 0;          ActiveVoiceCountTemp = 0;
382    
383          // render audio for all engine channels  
384          // 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          // handle events on all engine channels
385          {          for (int i = 0; i < engineChannels.size(); i++) {
386              std::list<EngineChannel*>::iterator itChannel = engineChannels.begin();              if (!engineChannels[i]->pInstrument) continue; // ignore if no instrument loaded
387              std::list<EngineChannel*>::iterator end       = engineChannels.end();              ProcessEvents(engineChannels[i], Samples);
388              for (; itChannel != end; itChannel++) {          }
389                  if (!(*itChannel)->pInstrument) continue; // ignore if no instrument loaded  
390                  RenderAudio(*itChannel, Samples);          // render all 'normal', active voices on all engine channels
391              }          for (int i = 0; i < engineChannels.size(); i++) {
392                if (!engineChannels[i]->pInstrument) continue; // ignore if no instrument loaded
393                RenderActiveVoices(engineChannels[i], Samples);
394            }
395    
396            // now that all ordinary voices on ALL engine channels are rendered, render new stolen voices
397            RenderStolenVoices(Samples);
398    
399            // handle cleanup on all engine channels for the next audio fragment
400            for (int i = 0; i < engineChannels.size(); i++) {
401                if (!engineChannels[i]->pInstrument) continue; // ignore if no instrument loaded
402                PostProcess(engineChannels[i]);
403          }          }
404    
405    
406            // empty the engine's event list for the next audio fragment
407            ClearEventLists();
408    
409            // reset voice stealing for the next audio fragment
410            pVoiceStealingQueue->clear();
411    
412          // just some statistics about this engine instance          // just some statistics about this engine instance
413          ActiveVoiceCount = ActiveVoiceCountTemp;          ActiveVoiceCount = ActiveVoiceCountTemp;
414          if (ActiveVoiceCount > ActiveVoiceCountMax) ActiveVoiceCountMax = ActiveVoiceCount;          if (ActiveVoiceCount > ActiveVoiceCountMax) ActiveVoiceCountMax = ActiveVoiceCount;
415    
416            FrameTime += Samples;
417    
418          return 0;          return 0;
419      }      }
420    
421      void Engine::RenderAudio(EngineChannel* pEngineChannel, uint Samples) {      /**
422          // empty the engine's event lists for the new fragment       * Dispatch and handle all events in this audio fragment for the given
423          ClearEventLists();       * engine channel.
424          // empty the engine channel's, MIDI key specific event lists       *
425          {       * @param pEngineChannel - engine channel on which events should be
426              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();       *                         processed
427              RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();       * @param Samples        - amount of sample points to be processed in
428              for(; iuiKey != end; ++iuiKey) {       *                         this audio fragment cycle
429                  pEngineChannel->pMIDIKeyInfo[*iuiKey].pEvents->clear(); // free all events on the key       */
430              }      void Engine::ProcessEvents(EngineChannel* pEngineChannel, uint Samples) {
         }  
   
   
431          // get all events from the engine channels's input event queue which belong to the current fragment          // get all events from the engine channels's input event queue which belong to the current fragment
432          // (these are the common events like NoteOn, NoteOff, ControlChange, etc.)          // (these are the common events like NoteOn, NoteOff, ControlChange, etc.)
433          ImportEvents(pEngineChannel->pEventQueue, Samples);                pEngineChannel->ImportEvents(Samples);
   
434    
435          // process events          // process events
436          {          {
437              RTList<Event>::Iterator itEvent = pEvents->first();              RTList<Event>::Iterator itEvent = pEngineChannel->pEvents->first();
438              RTList<Event>::Iterator end     = pEvents->end();              RTList<Event>::Iterator end     = pEngineChannel->pEvents->end();
439              for (; itEvent != end; ++itEvent) {              for (; itEvent != end; ++itEvent) {
440                  switch (itEvent->Type) {                  switch (itEvent->Type) {
441                      case Event::type_note_on:                      case Event::type_note_on:
# Line 430  namespace LinuxSampler { namespace gig { Line 458  namespace LinuxSampler { namespace gig {
458              }              }
459          }          }
460    
461            // reset voice stealing for the next engine channel (or next audio fragment)
462            itLastStolenVoice         = RTList<Voice>::Iterator();
463            itLastStolenVoiceGlobally = RTList<Voice>::Iterator();
464            iuiLastStolenKey          = RTList<uint>::Iterator();
465            iuiLastStolenKeyGlobally  = RTList<uint>::Iterator();
466            pLastStolenChannel        = NULL;
467        }
468    
469          // render audio from all active voices      /**
470          {       * Render all 'normal' voices (that is voices which were not stolen in
471              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();       * this fragment) on the given engine channel.
472              RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();       *
473              while (iuiKey != end) { // iterate through all active keys       * @param pEngineChannel - engine channel on which audio should be
474                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];       *                         rendered
475                  ++iuiKey;       * @param Samples        - amount of sample points to be rendered in
476         *                         this audio fragment cycle
477                  RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();       */
478                  RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();      void Engine::RenderActiveVoices(EngineChannel* pEngineChannel, uint Samples) {
479                  for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key          RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
480                      // now render current voice          RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();
481                      itVoice->Render(Samples);          while (iuiKey != end) { // iterate through all active keys
482                      if (itVoice->IsActive()) ActiveVoiceCountTemp++; // still active              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
483                      else { // voice reached end, is now inactive              ++iuiKey;
484                          FreeVoice(pEngineChannel, itVoice); // remove voice from the list of active voices  
485                      }              RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
486                RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
487                for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
488                    // now render current voice
489                    itVoice->Render(Samples);
490                    if (itVoice->IsActive()) ActiveVoiceCountTemp++; // still active
491                    else { // voice reached end, is now inactive
492                        FreeVoice(pEngineChannel, itVoice); // remove voice from the list of active voices
493                  }                  }
494              }              }
495          }          }
496        }
497    
498                /**
499          // now render all postponed voices from voice stealing       * Render all stolen voices (only voices which were stolen in this
500          {       * fragment) on the given engine channel. Stolen voices are rendered
501              RTList<Event>::Iterator itVoiceStealEvent = pVoiceStealingQueue->first();       * after all normal voices have been rendered; this is needed to render
502              RTList<Event>::Iterator end               = pVoiceStealingQueue->end();       * audio of those voices which were selected for voice stealing until
503              for (; itVoiceStealEvent != end; ++itVoiceStealEvent) {       * the point were the stealing (that is the take over of the voice)
504                  Pool<Voice>::Iterator itNewVoice =       * actually happened.
505                      LaunchVoice(pEngineChannel, itVoiceStealEvent, itVoiceStealEvent->Param.Note.Layer, itVoiceStealEvent->Param.Note.ReleaseTrigger, false);       *
506                  if (itNewVoice) {       * @param pEngineChannel - engine channel on which audio should be
507                      for (; itNewVoice; itNewVoice = itNewVoice->itChildVoice) {       *                         rendered
508                          itNewVoice->Render(Samples);       * @param Samples        - amount of sample points to be rendered in
509                          if (itNewVoice->IsActive()) ActiveVoiceCountTemp++; // still active       *                         this audio fragment cycle
510                          else { // voice reached end, is now inactive       */
511                              FreeVoice(pEngineChannel, itNewVoice); // remove voice from the list of active voices      void Engine::RenderStolenVoices(uint Samples) {
512                          }          RTList<Event>::Iterator itVoiceStealEvent = pVoiceStealingQueue->first();
513                      }          RTList<Event>::Iterator end               = pVoiceStealingQueue->end();
514            for (; itVoiceStealEvent != end; ++itVoiceStealEvent) {
515                EngineChannel* pEngineChannel = (EngineChannel*) itVoiceStealEvent->pEngineChannel;
516                Pool<Voice>::Iterator itNewVoice =
517                    LaunchVoice(pEngineChannel, itVoiceStealEvent, itVoiceStealEvent->Param.Note.Layer, itVoiceStealEvent->Param.Note.ReleaseTrigger, false);
518                if (itNewVoice) {
519                    itNewVoice->Render(Samples);
520                    if (itNewVoice->IsActive()) ActiveVoiceCountTemp++; // still active
521                    else { // voice reached end, is now inactive
522                        FreeVoice(pEngineChannel, itNewVoice); // remove voice from the list of active voices
523                  }                  }
                 else dmsg(1,("gig::Engine: ERROR, voice stealing didn't work out!\n"));  
524              }              }
525                else dmsg(1,("gig::Engine: ERROR, voice stealing didn't work out!\n"));
526    
527                // we need to clear the key's event list explicitly here in case key was never active
528                midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itVoiceStealEvent->Param.Note.Key];
529                pKey->VoiceTheftsQueued--;
530                if (!pKey->Active && !pKey->VoiceTheftsQueued) pKey->pEvents->clear();
531          }          }
532          // reset voice stealing for the new fragment      }
         pVoiceStealingQueue->clear();  
         pEngineChannel->itLastStolenVoice = RTList<Voice>::Iterator();  
         pEngineChannel->iuiLastStolenKey  = RTList<uint>::Iterator();  
           
533    
534        /**
535         * Free all keys which have turned inactive in this audio fragment, from
536         * the list of active keys and clear all event lists on that engine
537         * channel.
538         *
539         * @param pEngineChannel - engine channel to cleanup
540         */
541        void Engine::PostProcess(EngineChannel* pEngineChannel) {
542          // free all keys which have no active voices left          // free all keys which have no active voices left
543          {          {
544              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
# Line 486  namespace LinuxSampler { namespace gig { Line 547  namespace LinuxSampler { namespace gig {
547                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
548                  ++iuiKey;                  ++iuiKey;
549                  if (pKey->pActiveVoices->isEmpty()) FreeKey(pEngineChannel, pKey);                  if (pKey->pActiveVoices->isEmpty()) FreeKey(pEngineChannel, pKey);
550                  #if DEVMODE                  #if CONFIG_DEVMODE
551                  else { // FIXME: should be removed before the final release (purpose: just a sanity check for debugging)                  else { // just a sanity check for debugging
552                      RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();                      RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
553                      RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();                      RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
554                      for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key                      for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
# Line 496  namespace LinuxSampler { namespace gig { Line 557  namespace LinuxSampler { namespace gig {
557                          }                          }
558                      }                      }
559                  }                  }
560                  #endif // DEVMODE                  #endif // CONFIG_DEVMODE
561              }              }
562          }          }
563    
564            // empty the engine channel's own event lists
565            pEngineChannel->ClearEventLists();
566      }      }
567    
568      /**      /**
# Line 528  namespace LinuxSampler { namespace gig { Line 592  namespace LinuxSampler { namespace gig {
592                  // finally place sysex event into input event queue                  // finally place sysex event into input event queue
593                  pEventQueue->push(&event);                  pEventQueue->push(&event);
594              }              }
595              else dmsg(1,("Engine: Sysex message too large (%d byte) for input buffer (%d byte)!",Size,SYSEX_BUFFER_SIZE));              else dmsg(1,("Engine: Sysex message too large (%d byte) for input buffer (%d byte)!",Size,CONFIG_SYSEX_BUFFER_SIZE));
596          }          }
597          else dmsg(1,("Engine: Input event queue full!"));          else dmsg(1,("Engine: Input event queue full!"));
598      }      }
# Line 540  namespace LinuxSampler { namespace gig { Line 604  namespace LinuxSampler { namespace gig {
604       *  @param itNoteOnEvent - key, velocity and time stamp of the event       *  @param itNoteOnEvent - key, velocity and time stamp of the event
605       */       */
606      void Engine::ProcessNoteOn(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {      void Engine::ProcessNoteOn(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
607            
608          const int key = itNoteOnEvent->Param.Note.Key;          const int key = itNoteOnEvent->Param.Note.Key;
609    
610          // Change key dimension value if key is in keyswitching area          // Change key dimension value if key is in keyswitching area
# Line 554  namespace LinuxSampler { namespace gig { Line 618  namespace LinuxSampler { namespace gig {
618          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[key];          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[key];
619    
620          pKey->KeyPressed = true; // the MIDI key was now pressed down          pKey->KeyPressed = true; // the MIDI key was now pressed down
621            pKey->Velocity   = itNoteOnEvent->Param.Note.Velocity;
622            pKey->NoteOnTime = FrameTime + itNoteOnEvent->FragmentPos(); // will be used to calculate note length
623    
624          // cancel release process of voices on this key if needed          // cancel release process of voices on this key if needed
625          if (pKey->Active && !pEngineChannel->SustainPedal) {          if (pKey->Active && !pEngineChannel->SustainPedal) {
# Line 568  namespace LinuxSampler { namespace gig { Line 634  namespace LinuxSampler { namespace gig {
634          // move note on event to the key's own event list          // move note on event to the key's own event list
635          RTList<Event>::Iterator itNoteOnEventOnKeyList = itNoteOnEvent.moveToEndOf(pKey->pEvents);          RTList<Event>::Iterator itNoteOnEventOnKeyList = itNoteOnEvent.moveToEndOf(pKey->pEvents);
636    
637          // allocate and trigger a new voice for the key          // allocate and trigger new voice(s) for the key
638          LaunchVoice(pEngineChannel, itNoteOnEventOnKeyList, 0, false, true);          {
639                // first, get total amount of required voices (dependant on amount of layers)
640                ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOnEventOnKeyList->Param.Note.Key);
641                if (pRegion) {
642                    int voicesRequired = pRegion->Layers;
643                    // now launch the required amount of voices
644                    for (int i = 0; i < voicesRequired; i++)
645                        LaunchVoice(pEngineChannel, itNoteOnEventOnKeyList, i, false, true);
646                }
647            }
648    
649            // if neither a voice was spawned or postponed then remove note on event from key again
650            if (!pKey->Active && !pKey->VoiceTheftsQueued)
651                pKey->pEvents->free(itNoteOnEventOnKeyList);
652    
653            pKey->RoundRobinIndex++;
654      }      }
655    
656      /**      /**
# Line 589  namespace LinuxSampler { namespace gig { Line 670  namespace LinuxSampler { namespace gig {
670          // release voices on this key if needed          // release voices on this key if needed
671          if (pKey->Active && !pEngineChannel->SustainPedal) {          if (pKey->Active && !pEngineChannel->SustainPedal) {
672              itNoteOffEvent->Type = Event::type_release; // transform event type              itNoteOffEvent->Type = Event::type_release; // transform event type
         }  
673    
674          // move event to the key's own event list              // move event to the key's own event list
675          RTList<Event>::Iterator itNoteOffEventOnKeyList = itNoteOffEvent.moveToEndOf(pKey->pEvents);              RTList<Event>::Iterator itNoteOffEventOnKeyList = itNoteOffEvent.moveToEndOf(pKey->pEvents);
676    
677          // spawn release triggered voice(s) if needed              // spawn release triggered voice(s) if needed
678          if (pKey->ReleaseTrigger) {              if (pKey->ReleaseTrigger) {
679              LaunchVoice(pEngineChannel, itNoteOffEventOnKeyList, 0, true, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples                  // first, get total amount of required voices (dependant on amount of layers)
680              pKey->ReleaseTrigger = false;                  ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOffEventOnKeyList->Param.Note.Key);
681                    if (pRegion) {
682                        int voicesRequired = pRegion->Layers;
683    
684                        // MIDI note-on velocity is used instead of note-off velocity
685                        itNoteOffEventOnKeyList->Param.Note.Velocity = pKey->Velocity;
686    
687                        // now launch the required amount of voices
688                        for (int i = 0; i < voicesRequired; i++)
689                            LaunchVoice(pEngineChannel, itNoteOffEventOnKeyList, i, true, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples
690                    }
691                    pKey->ReleaseTrigger = false;
692                }
693    
694                // if neither a voice was spawned or postponed then remove note off event from key again
695                if (!pKey->Active && !pKey->VoiceTheftsQueued)
696                    pKey->pEvents->free(itNoteOffEventOnKeyList);
697          }          }
698      }      }
699    
# Line 610  namespace LinuxSampler { namespace gig { Line 706  namespace LinuxSampler { namespace gig {
706       */       */
707      void Engine::ProcessPitchbend(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itPitchbendEvent) {      void Engine::ProcessPitchbend(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itPitchbendEvent) {
708          pEngineChannel->Pitch = itPitchbendEvent->Param.Pitch.Pitch; // store current pitch value          pEngineChannel->Pitch = itPitchbendEvent->Param.Pitch.Pitch; // store current pitch value
709          itPitchbendEvent.moveToEndOf(pSynthesisEvents[Event::destination_vco]);          itPitchbendEvent.moveToEndOf(pEngineChannel->pSynthesisEvents[Event::destination_vco]);
710      }      }
711    
712      /**      /**
# Line 669  namespace LinuxSampler { namespace gig { Line 765  namespace LinuxSampler { namespace gig {
765              }              }
766          }          }
767          else if (VoiceStealing) {          else if (VoiceStealing) {
768              // first, get total amount of required voices (dependant on amount of layers)              // try to steal one voice
769              ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOnEvent->Param.Note.Key);              int result = StealVoice(pEngineChannel, itNoteOnEvent);
770              if (!pRegion) return Pool<Voice>::Iterator(); // nothing defined for this MIDI key, so no voice needed              if (!result) { // voice stolen successfully
771              int voicesRequired = pRegion->Layers;                  // put note-on event into voice-stealing queue, so it will be reprocessed after killed voice died
772                    RTList<Event>::Iterator itStealEvent = pVoiceStealingQueue->allocAppend();
773              // now steal the (remaining) amount of voices                  if (itStealEvent) {
774              for (int i = iLayer; i < voicesRequired; i++)                      *itStealEvent = *itNoteOnEvent; // copy event
775                  StealVoice(pEngineChannel, itNoteOnEvent);                      itStealEvent->Param.Note.Layer = iLayer;
776                        itStealEvent->Param.Note.ReleaseTrigger = ReleaseTriggerVoice;
777              // put note-on event into voice-stealing queue, so it will be reprocessed after killed voice died                      pKey->VoiceTheftsQueued++;
778              RTList<Event>::Iterator itStealEvent = pVoiceStealingQueue->allocAppend();                  }
779              if (itStealEvent) {                  else dmsg(1,("Voice stealing queue full!\n"));
                 *itStealEvent = *itNoteOnEvent; // copy event  
                 itStealEvent->Param.Note.Layer = iLayer;  
                 itStealEvent->Param.Note.ReleaseTrigger = ReleaseTriggerVoice;  
780              }              }
             else dmsg(1,("Voice stealing queue full!\n"));  
781          }          }
782    
783          return Pool<Voice>::Iterator(); // no free voice or error          return Pool<Voice>::Iterator(); // no free voice or error
# Line 699  namespace LinuxSampler { namespace gig { Line 791  namespace LinuxSampler { namespace gig {
791       *       *
792       *  @param pEngineChannel - engine channel on which this event occured on       *  @param pEngineChannel - engine channel on which this event occured on
793       *  @param itNoteOnEvent - key, velocity and time stamp of the event       *  @param itNoteOnEvent - key, velocity and time stamp of the event
794         *  @returns 0 on success, a value < 0 if no active voice could be picked for voice stealing
795       */       */
796      void Engine::StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {      int Engine::StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
797            if (!VoiceTheftsLeft) {
798                dmsg(1,("Max. voice thefts per audio fragment reached (you may raise CONFIG_MAX_VOICES).\n"));
799                return -1;
800            }
801          if (!pEventPool->poolIsEmpty()) {          if (!pEventPool->poolIsEmpty()) {
802    
803              RTList<uint>::Iterator  iuiOldestKey;              RTList<Voice>::Iterator itSelectedVoice;
             RTList<Voice>::Iterator itOldestVoice;  
804    
805              // Select one voice for voice stealing              // Select one voice for voice stealing
806              switch (VOICE_STEAL_ALGORITHM) {              switch (CONFIG_VOICE_STEAL_ALGO) {
807    
808                  // try to pick the oldest voice on the key where the new                  // try to pick the oldest voice on the key where the new
809                  // voice should be spawned, if there is no voice on that                  // voice should be spawned, if there is no voice on that
810                  // key, or no voice left to kill there, then procceed with                  // key, or no voice left to kill, then procceed with
811                  // 'oldestkey' algorithm                  // 'oldestkey' algorithm
812                  case voice_steal_algo_keymask: {                  case voice_steal_algo_oldestvoiceonkey: {
813                      midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];                      midi_key_info_t* pSelectedKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];
814                      if (pEngineChannel->itLastStolenVoice) {                      itSelectedVoice = pSelectedKey->pActiveVoices->first();
815                          itOldestVoice = pEngineChannel->itLastStolenVoice;                      // proceed iterating if voice was created in this fragment cycle
816                          ++itOldestVoice;                      while (itSelectedVoice && !itSelectedVoice->hasRendered()) ++itSelectedVoice;
817                      }                      // if we haven't found a voice then proceed with algorithm 'oldestkey'
818                      else { // no voice stolen in this audio fragment cycle yet                      if (itSelectedVoice && itSelectedVoice->hasRendered()) break;
                         itOldestVoice = pOldestKey->pActiveVoices->first();  
                     }  
                     if (itOldestVoice) {  
                         iuiOldestKey = pOldestKey->itSelf;  
                         break; // selection succeeded  
                     }  
819                  } // no break - intentional !                  } // no break - intentional !
820    
821                  // try to pick the oldest voice on the oldest active key                  // try to pick the oldest voice on the oldest active key
822                  // (caution: must stay after 'keymask' algorithm !)                  // from the same engine channel
823                    // (caution: must stay after 'oldestvoiceonkey' algorithm !)
824                  case voice_steal_algo_oldestkey: {                  case voice_steal_algo_oldestkey: {
825                      if (pEngineChannel->itLastStolenVoice) {                      // if we already stole in this fragment, try to proceed on same key
826                          midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*pEngineChannel->iuiLastStolenKey];                      if (this->itLastStolenVoice) {
827                          itOldestVoice = pEngineChannel->itLastStolenVoice;                          itSelectedVoice = this->itLastStolenVoice;
828                          ++itOldestVoice;                          do {
829                          if (!itOldestVoice) {                              ++itSelectedVoice;
830                              iuiOldestKey = pEngineChannel->iuiLastStolenKey;                          } while (itSelectedVoice && !itSelectedVoice->hasRendered()); // proceed iterating if voice was created in this fragment cycle
831                              ++iuiOldestKey;                          // found a "stealable" voice ?
832                              if (iuiOldestKey) {                          if (itSelectedVoice && itSelectedVoice->hasRendered()) {
833                                  midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*iuiOldestKey];                              // remember which voice we stole, so we can simply proceed on next voice stealing
834                                  itOldestVoice = pOldestKey->pActiveVoices->first();                              this->itLastStolenVoice = itSelectedVoice;
835                              }                              break; // selection succeeded
                             else {  
                                 dmsg(1,("gig::Engine: Warning, too less voices, even for voice stealing! - Better recompile with higher MAX_AUDIO_VOICES.\n"));  
                                 return;  
                             }  
836                          }                          }
                         else iuiOldestKey = pEngineChannel->iuiLastStolenKey;  
837                      }                      }
838                      else { // no voice stolen in this audio fragment cycle yet                      // get (next) oldest key
839                          iuiOldestKey = pEngineChannel->pActiveKeys->first();                      RTList<uint>::Iterator iuiSelectedKey = (this->iuiLastStolenKey) ? ++this->iuiLastStolenKey : pEngineChannel->pActiveKeys->first();
840                          midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*iuiOldestKey];                      while (iuiSelectedKey) {
841                          itOldestVoice = pOldestKey->pActiveVoices->first();                          midi_key_info_t* pSelectedKey = &pEngineChannel->pMIDIKeyInfo[*iuiSelectedKey];
842                            itSelectedVoice = pSelectedKey->pActiveVoices->first();                        
843                            // proceed iterating if voice was created in this fragment cycle
844                            while (itSelectedVoice && !itSelectedVoice->hasRendered()) ++itSelectedVoice;
845                            // found a "stealable" voice ?
846                            if (itSelectedVoice && itSelectedVoice->hasRendered()) {
847                                // remember which voice on which key we stole, so we can simply proceed on next voice stealing
848                                this->iuiLastStolenKey  = iuiSelectedKey;
849                                this->itLastStolenVoice = itSelectedVoice;
850                                break; // selection succeeded
851                            }
852                            ++iuiSelectedKey; // get next oldest key
853                      }                      }
854                      break;                      break;
855                  }                  }
# Line 761  namespace LinuxSampler { namespace gig { Line 858  namespace LinuxSampler { namespace gig {
858                  case voice_steal_algo_none:                  case voice_steal_algo_none:
859                  default: {                  default: {
860                      dmsg(1,("No free voice (voice stealing disabled)!\n"));                      dmsg(1,("No free voice (voice stealing disabled)!\n"));
861                      return;                      return -1;
862                  }                  }
863              }              }
864    
865              //FIXME: can be removed, just a sanity check for debugging              // if we couldn't steal a voice from the same engine channel then
866              if (!itOldestVoice->IsActive()) dmsg(1,("gig::Engine: ERROR, tried to steal a voice which was not active !!!\n"));              // steal oldest voice on the oldest key from any other engine channel
867                // (the smaller engine channel number, the higher priority)
868                if (!itSelectedVoice || !itSelectedVoice->hasRendered()) {
869                    EngineChannel* pSelectedChannel;
870                    int            iChannelIndex;
871                    // select engine channel
872                    if (pLastStolenChannel) {
873                        pSelectedChannel = pLastStolenChannel;
874                        iChannelIndex    = pSelectedChannel->iEngineIndexSelf;
875                    } else { // pick the engine channel followed by this engine channel
876                        iChannelIndex    = (pEngineChannel->iEngineIndexSelf + 1) % engineChannels.size();
877                        pSelectedChannel = engineChannels[iChannelIndex];
878                    }
879                    // iterate through engine channels
880                    while (true) {
881                        // if we already stole in this fragment, try to proceed on same key
882                        if (this->itLastStolenVoiceGlobally) {
883                            itSelectedVoice = this->itLastStolenVoiceGlobally;
884                            do {
885                                ++itSelectedVoice;
886                            } while (itSelectedVoice && !itSelectedVoice->hasRendered()); // proceed iterating if voice was created in this fragment cycle
887                            // break if selection succeeded
888                            if (itSelectedVoice && itSelectedVoice->hasRendered()) {
889                                // remember which voice we stole, so we can simply proceed on next voice stealing
890                                this->itLastStolenVoiceGlobally = itSelectedVoice;
891                                break; // selection succeeded
892                            }
893                        }
894                        // get (next) oldest key
895                        RTList<uint>::Iterator iuiSelectedKey = (this->iuiLastStolenKey) ? ++this->iuiLastStolenKey : pSelectedChannel->pActiveKeys->first();
896                        while (iuiSelectedKey) {
897                            midi_key_info_t* pSelectedKey = &pEngineChannel->pMIDIKeyInfo[*iuiSelectedKey];
898                            itSelectedVoice = pSelectedKey->pActiveVoices->first();
899                            // proceed iterating if voice was created in this fragment cycle
900                            while (itSelectedVoice && !itSelectedVoice->hasRendered()) ++itSelectedVoice;
901                            // found a "stealable" voice ?
902                            if (itSelectedVoice && itSelectedVoice->hasRendered()) {
903                                // remember which voice on which key on which engine channel we stole, so we can simply proceed on next voice stealing
904                                this->iuiLastStolenKeyGlobally  = iuiSelectedKey;
905                                this->itLastStolenVoiceGlobally = itSelectedVoice;
906                                this->pLastStolenChannel        = pSelectedChannel;
907                                break; // selection succeeded
908                            }
909                            ++iuiSelectedKey; // get next key on current engine channel
910                        }
911                        // get next engine channel
912                        iChannelIndex    = (iChannelIndex + 1) % engineChannels.size();
913                        pSelectedChannel = engineChannels[iChannelIndex];
914                    }
915                }
916    
917                #if CONFIG_DEVMODE
918                if (!itSelectedVoice->IsActive()) {
919                    dmsg(1,("gig::Engine: ERROR, tried to steal a voice which was not active !!!\n"));
920                    return -1;
921                }
922                #endif // CONFIG_DEVMODE
923    
924              // now kill the selected voice              // now kill the selected voice
925              itOldestVoice->Kill(itNoteOnEvent);              itSelectedVoice->Kill(itNoteOnEvent);            
926              // remember which voice on which key we stole, so we can simply proceed for the next voice stealing  
927              pEngineChannel->itLastStolenVoice = itOldestVoice;              --VoiceTheftsLeft;
928              pEngineChannel->iuiLastStolenKey = iuiOldestKey;  
929                return 0; // success
930            }
931            else {
932                dmsg(1,("Event pool emtpy!\n"));
933                return -1;
934          }          }
         else dmsg(1,("Event pool emtpy!\n"));  
935      }      }
936    
937      /**      /**
# Line 833  namespace LinuxSampler { namespace gig { Line 990  namespace LinuxSampler { namespace gig {
990      void Engine::ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlChangeEvent) {      void Engine::ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlChangeEvent) {
991          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));
992    
993          switch (itControlChangeEvent->Param.CC.Controller) {          // update controller value in the engine channel's controller table
994            pEngineChannel->ControllerTable[itControlChangeEvent->Param.CC.Controller] = itControlChangeEvent->Param.CC.Value;
995    
996            // move event from the unsorted event list to the control change event list
997            Pool<Event>::Iterator itControlChangeEventOnCCList = itControlChangeEvent.moveToEndOf(pEngineChannel->pCCEvents);
998    
999            switch (itControlChangeEventOnCCList->Param.CC.Controller) {
1000              case 7: { // volume              case 7: { // volume
1001                  //TODO: not sample accurate yet                  //TODO: not sample accurate yet
1002                  pEngineChannel->GlobalVolume = (float) itControlChangeEvent->Param.CC.Value / 127.0f;                  pEngineChannel->GlobalVolume = (float) itControlChangeEventOnCCList->Param.CC.Value / 127.0f;
1003                  break;                  break;
1004              }              }
1005              case 10: { // panpot              case 10: { // panpot
1006                  //TODO: not sample accurate yet                  //TODO: not sample accurate yet
1007                  const int pan = (int) itControlChangeEvent->Param.CC.Value - 64;                  const int pan = (int) itControlChangeEventOnCCList->Param.CC.Value - 64;
1008                  pEngineChannel->GlobalPanLeft  = 1.0f - float(RTMath::Max(pan, 0)) /  63.0f;                  pEngineChannel->GlobalPanLeft  = 1.0f - float(RTMath::Max(pan, 0)) /  63.0f;
1009                  pEngineChannel->GlobalPanRight = 1.0f - float(RTMath::Min(pan, 0)) / -64.0f;                  pEngineChannel->GlobalPanRight = 1.0f - float(RTMath::Min(pan, 0)) / -64.0f;
1010                  break;                  break;
1011              }              }
1012              case 64: { // sustain              case 64: { // sustain
1013                  if (itControlChangeEvent->Param.CC.Value >= 64 && !pEngineChannel->SustainPedal) {                  if (itControlChangeEventOnCCList->Param.CC.Value >= 64 && !pEngineChannel->SustainPedal) {
1014                      dmsg(4,("PEDAL DOWN\n"));                      dmsg(4,("PEDAL DOWN\n"));
1015                      pEngineChannel->SustainPedal = true;                      pEngineChannel->SustainPedal = true;
1016    
1017                      // cancel release process of voices if necessary                      // cancel release process of voices if necessary
1018                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1019                      if (iuiKey) {                      for (; iuiKey; ++iuiKey) {
1020                          itControlChangeEvent->Type = Event::type_cancel_release; // transform event type                          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1021                          while (iuiKey) {                          if (!pKey->KeyPressed) {
1022                              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];                              RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
1023                              ++iuiKey;                              if (itNewEvent) {
1024                              if (!pKey->KeyPressed) {                                  *itNewEvent = *itControlChangeEventOnCCList; // copy event to the key's own event list
1025                                  RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();                                  itNewEvent->Type = Event::type_cancel_release; // transform event type
                                 if (itNewEvent) *itNewEvent = *itControlChangeEvent; // copy event to the key's own event list  
                                 else dmsg(1,("Event pool emtpy!\n"));  
1026                              }                              }
1027                                else dmsg(1,("Event pool emtpy!\n"));
1028                          }                          }
1029                      }                      }
1030                  }                  }
1031                  if (itControlChangeEvent->Param.CC.Value < 64 && pEngineChannel->SustainPedal) {                  if (itControlChangeEventOnCCList->Param.CC.Value < 64 && pEngineChannel->SustainPedal) {
1032                      dmsg(4,("PEDAL UP\n"));                      dmsg(4,("PEDAL UP\n"));
1033                      pEngineChannel->SustainPedal = false;                      pEngineChannel->SustainPedal = false;
1034    
1035                      // release voices if their respective key is not pressed                      // release voices if their respective key is not pressed
1036                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1037                      if (iuiKey) {                      for (; iuiKey; ++iuiKey) {
1038                          itControlChangeEvent->Type = Event::type_release; // transform event type                          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1039                          while (iuiKey) {                          if (!pKey->KeyPressed) {
1040                              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];                              RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
1041                              ++iuiKey;                              if (itNewEvent) {
1042                              if (!pKey->KeyPressed) {                                  *itNewEvent = *itControlChangeEventOnCCList; // copy event to the key's own event list
1043                                  RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();                                  itNewEvent->Type = Event::type_release; // transform event type
                                 if (itNewEvent) *itNewEvent = *itControlChangeEvent; // copy event to the key's own event list  
                                 else dmsg(1,("Event pool emtpy!\n"));  
1044                              }                              }
1045                                else dmsg(1,("Event pool emtpy!\n"));
1046                          }                          }
1047                      }                      }
1048                  }                  }
1049                  break;                  break;
1050              }              }
         }  
1051    
         // update controller value in the engine's controller table  
         pEngineChannel->ControllerTable[itControlChangeEvent->Param.CC.Controller] = itControlChangeEvent->Param.CC.Value;  
1052    
1053          // move event from the unsorted event list to the control change event list              // Channel Mode Messages
1054          itControlChangeEvent.moveToEndOf(pCCEvents);  
1055                case 120: { // all sound off
1056                    KillAllVoices(pEngineChannel, itControlChangeEventOnCCList);
1057                    break;
1058                }
1059                case 121: { // reset all controllers
1060                    pEngineChannel->ResetControllers();
1061                    break;
1062                }
1063                case 123: { // all notes off
1064                    ReleaseAllVoices(pEngineChannel, itControlChangeEventOnCCList);
1065                    break;
1066                }
1067            }
1068      }      }
1069    
1070      /**      /**
# Line 911  namespace LinuxSampler { namespace gig { Line 1082  namespace LinuxSampler { namespace gig {
1082    
1083          switch (id) {          switch (id) {
1084              case 0x41: { // Roland              case 0x41: { // Roland
1085                    dmsg(3,("Roland Sysex\n"));
1086                  uint8_t device_id, model_id, cmd_id;                  uint8_t device_id, model_id, cmd_id;
1087                  if (!reader.pop(&device_id)) goto free_sysex_data;                  if (!reader.pop(&device_id)) goto free_sysex_data;
1088                  if (!reader.pop(&model_id))  goto free_sysex_data;                  if (!reader.pop(&model_id))  goto free_sysex_data;
# Line 923  namespace LinuxSampler { namespace gig { Line 1095  namespace LinuxSampler { namespace gig {
1095                  const RingBuffer<uint8_t>::NonVolatileReader checksum_reader = reader; // so we can calculate the check sum later                  const RingBuffer<uint8_t>::NonVolatileReader checksum_reader = reader; // so we can calculate the check sum later
1096                  if (reader.read(&addr[0], 3) != 3) goto free_sysex_data;                  if (reader.read(&addr[0], 3) != 3) goto free_sysex_data;
1097                  if (addr[0] == 0x40 && addr[1] == 0x00) { // System Parameters                  if (addr[0] == 0x40 && addr[1] == 0x00) { // System Parameters
1098                        dmsg(3,("\tSystem Parameter\n"));
1099                  }                  }
1100                  else if (addr[0] == 0x40 && addr[1] == 0x01) { // Common Parameters                  else if (addr[0] == 0x40 && addr[1] == 0x01) { // Common Parameters
1101                        dmsg(3,("\tCommon Parameter\n"));
1102                  }                  }
1103                  else if (addr[0] == 0x40 && (addr[1] & 0xf0) == 0x10) { // Part Parameters (1)                  else if (addr[0] == 0x40 && (addr[1] & 0xf0) == 0x10) { // Part Parameters (1)
1104                      switch (addr[3]) {                      dmsg(3,("\tPart Parameter\n"));
1105                        switch (addr[2]) {
1106                          case 0x40: { // scale tuning                          case 0x40: { // scale tuning
1107                                dmsg(3,("\t\tScale Tuning\n"));
1108                              uint8_t scale_tunes[12]; // detuning of all 12 semitones of an octave                              uint8_t scale_tunes[12]; // detuning of all 12 semitones of an octave
1109                              if (reader.read(&scale_tunes[0], 12) != 12) goto free_sysex_data;                              if (reader.read(&scale_tunes[0], 12) != 12) goto free_sysex_data;
1110                              uint8_t checksum;                              uint8_t checksum;
1111                              if (!reader.pop(&checksum))                      goto free_sysex_data;                              if (!reader.pop(&checksum)) goto free_sysex_data;
1112                              if (GSCheckSum(checksum_reader, 12) != checksum) goto free_sysex_data;                              #if CONFIG_ASSERT_GS_SYSEX_CHECKSUM
1113                                if (GSCheckSum(checksum_reader, 12)) goto free_sysex_data;
1114                                #endif // CONFIG_ASSERT_GS_SYSEX_CHECKSUM
1115                              for (int i = 0; i < 12; i++) scale_tunes[i] -= 64;                              for (int i = 0; i < 12; i++) scale_tunes[i] -= 64;
1116                              AdjustScale((int8_t*) scale_tunes);                              AdjustScale((int8_t*) scale_tunes);
1117                                dmsg(3,("\t\t\tNew scale applied.\n"));
1118                              break;                              break;
1119                          }                          }
1120                      }                      }
# Line 980  namespace LinuxSampler { namespace gig { Line 1159  namespace LinuxSampler { namespace gig {
1159      }      }
1160    
1161      /**      /**
1162         * Releases all voices on an engine channel. All voices will go into
1163         * the release stage and thus it might take some time (e.g. dependant to
1164         * their envelope release time) until they actually die.
1165         *
1166         * @param pEngineChannel - engine channel on which all voices should be released
1167         * @param itReleaseEvent - event which caused this releasing of all voices
1168         */
1169        void Engine::ReleaseAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itReleaseEvent) {
1170            RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1171            while (iuiKey) {
1172                midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1173                ++iuiKey;
1174                // append a 'release' event to the key's own event list
1175                RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
1176                if (itNewEvent) {
1177                    *itNewEvent = *itReleaseEvent; // copy original event (to the key's event list)
1178                    itNewEvent->Type = Event::type_release; // transform event type
1179                }
1180                else dmsg(1,("Event pool emtpy!\n"));
1181            }
1182        }
1183    
1184        /**
1185         * Kills all voices on an engine channel as soon as possible. Voices
1186         * won't get into release state, their volume level will be ramped down
1187         * as fast as possible.
1188         *
1189         * @param pEngineChannel - engine channel on which all voices should be killed
1190         * @param itKillEvent    - event which caused this killing of all voices
1191         */
1192        void Engine::KillAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itKillEvent) {
1193            RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1194            RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();
1195            while (iuiKey != end) { // iterate through all active keys
1196                midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1197                ++iuiKey;
1198                RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
1199                RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
1200                for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
1201                    itVoice->Kill(itKillEvent);
1202                }
1203            }
1204        }
1205    
1206        /**
1207       * Initialize the parameter sequence for the modulation destination given by       * Initialize the parameter sequence for the modulation destination given by
1208       * by 'dst' with the constant value given by val.       * by 'dst' with the constant value given by val.
1209       */       */
# Line 992  namespace LinuxSampler { namespace gig { Line 1216  namespace LinuxSampler { namespace gig {
1216             m[i+2] = val;             m[i+2] = val;
1217             m[i+3] = val;             m[i+3] = val;
1218          }          }
1219      }          }
1220    
1221      uint Engine::VoiceCount() {      uint Engine::VoiceCount() {
1222          return ActiveVoiceCount;          return ActiveVoiceCount;
# Line 1023  namespace LinuxSampler { namespace gig { Line 1247  namespace LinuxSampler { namespace gig {
1247      }      }
1248    
1249      String Engine::EngineName() {      String Engine::EngineName() {
1250          return "GigEngine";          return LS_GIG_ENGINE_NAME;
1251      }      }
1252    
1253      String Engine::Description() {      String Engine::Description() {
# Line 1031  namespace LinuxSampler { namespace gig { Line 1255  namespace LinuxSampler { namespace gig {
1255      }      }
1256    
1257      String Engine::Version() {      String Engine::Version() {
1258          String s = "$Revision: 1.29 $";          String s = "$Revision: 1.41 $";
1259          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
1260      }      }
1261    

Legend:
Removed from v.424  
changed lines
  Added in v.649

  ViewVC Help
Powered by ViewVC