/[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 438 by persson, Wed Mar 9 22:12:15 2005 UTC revision 1039 by persson, Sat Feb 3 20:46:44 2007 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck   *
6   *   Copyright (C) 2005 Christian Schoenebeck                              *   *   Copyright (C) 2005-2007 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 29  Line 29 
29    
30  #include "Engine.h"  #include "Engine.h"
31    
 #if defined(__APPLE__)  
 # include <stdlib.h>  
 #else  
 # include <malloc.h>  
 #endif  
   
32  namespace LinuxSampler { namespace gig {  namespace LinuxSampler { namespace gig {
33    
34      InstrumentResourceManager Engine::instruments;      InstrumentResourceManager Engine::instruments;
# Line 57  namespace LinuxSampler { namespace gig { Line 51  namespace LinuxSampler { namespace gig {
51          if (engines.count(pDevice)) {          if (engines.count(pDevice)) {
52              dmsg(4,("Using existing gig::Engine.\n"));              dmsg(4,("Using existing gig::Engine.\n"));
53              pEngine = engines[pDevice];              pEngine = engines[pDevice];
54    
55                // Disable the engine while the new engine channel is
56                // added and initialized. The engine will be enabled again
57                // in EngineChannel::Connect.
58                pEngine->DisableAndLock();
59          } 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
60              dmsg(4,("Creating new gig::Engine.\n"));              dmsg(4,("Creating new gig::Engine.\n"));
61              pEngine = (Engine*) EngineFactory::Create("gig");              pEngine = (Engine*) EngineFactory::Create("gig");
# Line 64  namespace LinuxSampler { namespace gig { Line 63  namespace LinuxSampler { namespace gig {
63              engines[pDevice] = pEngine;              engines[pDevice] = pEngine;
64          }          }
65          // register engine channel to the engine instance          // register engine channel to the engine instance
66          pEngine->engineChannels.push_back(pChannel);          pEngine->engineChannels.add(pChannel);
67            // remember index in the ArrayList
68            pChannel->iEngineIndexSelf = pEngine->engineChannels.size() - 1;
69          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()));
70          return pEngine;          return pEngine;
71      }      }
# Line 94  namespace LinuxSampler { namespace gig { Line 95  namespace LinuxSampler { namespace gig {
95          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()));
96      }      }
97    
98        /**
99         * Constructor
100         */
101      Engine::Engine() {      Engine::Engine() {
102          pAudioOutputDevice = NULL;          pAudioOutputDevice = NULL;
103          pDiskThread        = NULL;          pDiskThread        = NULL;
104          pEventGenerator    = NULL;          pEventGenerator    = NULL;
105          pSysexBuffer       = new RingBuffer<uint8_t>(SYSEX_BUFFER_SIZE, 0);          pSysexBuffer       = new RingBuffer<uint8_t,false>(CONFIG_SYSEX_BUFFER_SIZE, 0);
106          pEventQueue        = new RingBuffer<Event>(MAX_EVENTS_PER_FRAGMENT, 0);          pEventQueue        = new RingBuffer<Event,false>(CONFIG_MAX_EVENTS_PER_FRAGMENT, 0);
107          pEventPool         = new Pool<Event>(MAX_EVENTS_PER_FRAGMENT);          pEventPool         = new Pool<Event>(CONFIG_MAX_EVENTS_PER_FRAGMENT);
108          pVoicePool         = new Pool<Voice>(MAX_AUDIO_VOICES);          pVoicePool         = new Pool<Voice>(CONFIG_MAX_VOICES);
109            pDimRegionsInUse   = new ::gig::DimensionRegion*[CONFIG_MAX_VOICES + 1];
110          pVoiceStealingQueue = new RTList<Event>(pEventPool);          pVoiceStealingQueue = new RTList<Event>(pEventPool);
111          pEvents            = new RTList<Event>(pEventPool);          pGlobalEvents      = new RTList<Event>(pEventPool);
112          pCCEvents          = new RTList<Event>(pEventPool);          InstrumentChangeQueue      = new RingBuffer<instrument_change_command_t,false>(1, 0);
113            InstrumentChangeReplyQueue = new RingBuffer<instrument_change_reply_t,false>(1, 0);
114    
         for (uint i = 0; i < Event::destination_count; i++) {  
             pSynthesisEvents[i] = new RTList<Event>(pEventPool);  
         }  
115          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()) {
116              iterVoice->SetEngine(this);              iterVoice->SetEngine(this);
117          }          }
118          pVoicePool->clear();          pVoicePool->clear();
119    
         pSynthesisParameters[0] = NULL; // we allocate when an audio device is connected  
         pBasicFilterParameters  = NULL;  
         pMainFilterParameters   = NULL;  
   
120          ResetInternal();          ResetInternal();
121            ResetScaleTuning();
122      }      }
123    
124        /**
125         * Destructor
126         */
127      Engine::~Engine() {      Engine::~Engine() {
128            MidiInputPort::RemoveSysexListener(this);
129          if (pDiskThread) {          if (pDiskThread) {
130              dmsg(1,("Stopping disk thread..."));              dmsg(1,("Stopping disk thread..."));
131              pDiskThread->StopThread();              pDiskThread->StopThread();
132              delete pDiskThread;              delete pDiskThread;
133              dmsg(1,("OK\n"));              dmsg(1,("OK\n"));
134          }          }
         for (uint i = 0; i < Event::destination_count; i++) {  
             if (pSynthesisEvents[i]) delete pSynthesisEvents[i];  
         }  
         if (pEvents)     delete pEvents;  
         if (pCCEvents)   delete pCCEvents;  
135          if (pEventQueue) delete pEventQueue;          if (pEventQueue) delete pEventQueue;
136          if (pEventPool)  delete pEventPool;          if (pEventPool)  delete pEventPool;
137          if (pVoicePool) {          if (pVoicePool) {
# Line 140  namespace LinuxSampler { namespace gig { Line 139  namespace LinuxSampler { namespace gig {
139              delete pVoicePool;              delete pVoicePool;
140          }          }
141          if (pEventGenerator) delete pEventGenerator;          if (pEventGenerator) delete pEventGenerator;
         if (pMainFilterParameters) delete[] pMainFilterParameters;  
         if (pBasicFilterParameters) delete[] pBasicFilterParameters;  
         if (pSynthesisParameters[0]) free(pSynthesisParameters[0]);  
142          if (pVoiceStealingQueue) delete pVoiceStealingQueue;          if (pVoiceStealingQueue) delete pVoiceStealingQueue;
143          if (pSysexBuffer) delete pSysexBuffer;          if (pSysexBuffer) delete pSysexBuffer;
144          EngineFactory::Destroy(this);          Unregister();
145      }      }
146    
147      void Engine::Enable() {      void Engine::Enable() {
# Line 173  namespace LinuxSampler { namespace gig { Line 169  namespace LinuxSampler { namespace gig {
169      void Engine::Reset() {      void Engine::Reset() {
170          DisableAndLock();          DisableAndLock();
171          ResetInternal();          ResetInternal();
172            ResetScaleTuning();
173          Enable();          Enable();
174      }      }
175    
176      /**      /**
177       *  Reset all voices and disk thread and clear input event queue and all       *  Reset all voices and disk thread and clear input event queue and all
178       *  control and status variables. This method is not thread safe!       *  control and status variables. This method is protected by a mutex.
179       */       */
180      void Engine::ResetInternal() {      void Engine::ResetInternal() {
181            ResetInternalMutex.Lock();
182    
183            // make sure that the engine does not get any sysex messages
184            // while it's reseting
185            bool sysexDisabled = MidiInputPort::RemoveSysexListener(this);
186          ActiveVoiceCount    = 0;          ActiveVoiceCount    = 0;
187          ActiveVoiceCountMax = 0;          ActiveVoiceCountMax = 0;
188    
189          // reset voice stealing parameters          // reset voice stealing parameters
190          pVoiceStealingQueue->clear();          pVoiceStealingQueue->clear();
191            itLastStolenVoice          = RTList<Voice>::Iterator();
192          // reset to normal chromatic scale (means equal temper)          itLastStolenVoiceGlobally  = RTList<Voice>::Iterator();
193          memset(&ScaleTuning[0], 0x00, 12);          iuiLastStolenKey           = RTList<uint>::Iterator();
194            iuiLastStolenKeyGlobally   = RTList<uint>::Iterator();
195            pLastStolenChannel         = NULL;
196    
197          // reset all voices          // reset all voices
198          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()) {
# Line 201  namespace LinuxSampler { namespace gig { Line 205  namespace LinuxSampler { namespace gig {
205    
206          // delete all input events          // delete all input events
207          pEventQueue->init();          pEventQueue->init();
208            pSysexBuffer->init();
209            if (sysexDisabled) MidiInputPort::AddSysexListener(this);
210            ResetInternalMutex.Unlock();
211      }      }
212    
213        /**
214         * Reset to normal, chromatic scale (means equal tempered).
215         */
216        void Engine::ResetScaleTuning() {
217            memset(&ScaleTuning[0], 0x00, 12);
218        }
219    
220        /**
221         * Connect this engine instance with the given audio output device.
222         * This method will be called when an Engine instance is created.
223         * All of the engine's data structures which are dependant to the used
224         * audio output device / driver will be (re)allocated and / or
225         * adjusted appropriately.
226         *
227         * @param pAudioOut - audio output device to connect to
228         */
229      void Engine::Connect(AudioOutputDevice* pAudioOut) {      void Engine::Connect(AudioOutputDevice* pAudioOut) {
230          pAudioOutputDevice = pAudioOut;          pAudioOutputDevice = pAudioOut;
231    
# Line 214  namespace LinuxSampler { namespace gig { Line 237  namespace LinuxSampler { namespace gig {
237          }          }
238          catch (AudioOutputException e) {          catch (AudioOutputException e) {
239              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();
240              throw LinuxSamplerException(msg);              throw Exception(msg);
241          }          }
242    
243          this->MaxSamplesPerCycle      = pAudioOutputDevice->MaxSamplesPerCycle();          this->MaxSamplesPerCycle = pAudioOutputDevice->MaxSamplesPerCycle();
244          this->SampleRate              = pAudioOutputDevice->SampleRate();          this->SampleRate         = pAudioOutputDevice->SampleRate();
245    
246          // FIXME: audio drivers with varying fragment sizes might be a problem here          // FIXME: audio drivers with varying fragment sizes might be a problem here
247          MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * EG_MIN_RELEASE_TIME) - 1;          MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * CONFIG_EG_MIN_RELEASE_TIME) - 1;
248          if (MaxFadeOutPos < 0)          if (MaxFadeOutPos < 0) {
249              throw LinuxSamplerException("EG_MIN_RELEASE_TIME in EGADSR.h too big for current audio fragment size / sampling rate!");              std::cerr << "gig::Engine: WARNING, CONFIG_EG_MIN_RELEASE_TIME "
250                          << "too big for current audio fragment size & sampling rate! "
251                          << "May lead to click sounds if voice stealing chimes in!\n" << std::flush;
252                // force volume ramp downs at the beginning of each fragment
253                MaxFadeOutPos = 0;
254                // lower minimum release time
255                const float minReleaseTime = (float) MaxSamplesPerCycle / (float) SampleRate;
256                for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {
257                    iterVoice->EG1.CalculateFadeOutCoeff(minReleaseTime, SampleRate);
258                }
259                pVoicePool->clear();
260            }
261    
262          // (re)create disk thread          // (re)create disk thread
263          if (this->pDiskThread) {          if (this->pDiskThread) {
# Line 232  namespace LinuxSampler { namespace gig { Line 266  namespace LinuxSampler { namespace gig {
266              delete this->pDiskThread;              delete this->pDiskThread;
267              dmsg(1,("OK\n"));              dmsg(1,("OK\n"));
268          }          }
269          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
270                                               &instruments);
271          if (!pDiskThread) {          if (!pDiskThread) {
272              dmsg(0,("gig::Engine  new diskthread = NULL\n"));              dmsg(0,("gig::Engine  new diskthread = NULL\n"));
273              exit(EXIT_FAILURE);              exit(EXIT_FAILURE);
# Line 248  namespace LinuxSampler { namespace gig { Line 283  namespace LinuxSampler { namespace gig {
283          if (pEventGenerator) delete pEventGenerator;          if (pEventGenerator) delete pEventGenerator;
284          pEventGenerator = new EventGenerator(pAudioOut->SampleRate());          pEventGenerator = new EventGenerator(pAudioOut->SampleRate());
285    
         // (re)allocate synthesis parameter matrix  
         if (pSynthesisParameters[0]) free(pSynthesisParameters[0]);  
   
         #if defined(__APPLE__)  
         pSynthesisParameters[0] = (float *) malloc(Event::destination_count * sizeof(float) * pAudioOut->MaxSamplesPerCycle());  
         #else  
         pSynthesisParameters[0] = (float *) memalign(16,(Event::destination_count * sizeof(float) * pAudioOut->MaxSamplesPerCycle()));  
         #endif  
         for (int dst = 1; dst < Event::destination_count; dst++)  
             pSynthesisParameters[dst] = pSynthesisParameters[dst - 1] + pAudioOut->MaxSamplesPerCycle();  
   
         // (re)allocate biquad filter parameter sequence  
         if (pBasicFilterParameters) delete[] pBasicFilterParameters;  
         if (pMainFilterParameters)  delete[] pMainFilterParameters;  
         pBasicFilterParameters = new biquad_param_t[pAudioOut->MaxSamplesPerCycle()];  
         pMainFilterParameters  = new biquad_param_t[pAudioOut->MaxSamplesPerCycle()];  
   
286          dmsg(1,("Starting disk thread..."));          dmsg(1,("Starting disk thread..."));
287          pDiskThread->StartThread();          pDiskThread->StartThread();
288          dmsg(1,("OK\n"));          dmsg(1,("OK\n"));
# Line 277  namespace LinuxSampler { namespace gig { Line 295  namespace LinuxSampler { namespace gig {
295          }          }
296      }      }
297    
298        /**
299         * Clear all engine global event lists.
300         */
301      void Engine::ClearEventLists() {      void Engine::ClearEventLists() {
302          pEvents->clear();          pGlobalEvents->clear();
         pCCEvents->clear();  
         for (uint i = 0; i < Event::destination_count; i++) {  
             pSynthesisEvents[i]->clear();  
         }  
303      }      }
304    
305      /**      /**
306       * 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
307       * 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
308       * cycle (that is each RenderAudio() call) to get all events which have       * each audio cycle (that is each RenderAudio() call) to distinguish
309       * to be processed in the current audio cycle. Each EngineChannel has       * all global events which have to be processed in the current audio
310       * it's own input event queue for the common channel specific events       * cycle. These events are usually just SysEx messages. Every
311       * (like NoteOn, NoteOff and ControlChange events). Beside that, the       * EngineChannel has it's own input event queue buffer and event list
312       * engine also has a input event queue for global events (usually SysEx       * to handle common events like NoteOn, NoteOff and ControlChange
313       * message).       * events.
314       *       *
315       * @param pEventQueue - input event buffer to read from       * @param Samples - number of sample points to be processed in the
316       * @param Samples     - number of sample points to be processed in the       *                  current audio cycle
      *                      current audio cycle  
317       */       */
318      void Engine::ImportEvents(RingBuffer<Event>* pEventQueue, uint Samples) {      void Engine::ImportEvents(uint Samples) {
319          RingBuffer<Event>::NonVolatileReader eventQueueReader = pEventQueue->get_non_volatile_reader();          RingBuffer<Event,false>::NonVolatileReader eventQueueReader = pEventQueue->get_non_volatile_reader();
320          Event* pEvent;          Event* pEvent;
321          while (true) {          while (true) {
322              // get next event from input event queue              // get next event from input event queue
# Line 313  namespace LinuxSampler { namespace gig { Line 329  namespace LinuxSampler { namespace gig {
329                  break;                  break;
330              }              }
331              // copy event to internal event list              // copy event to internal event list
332              if (pEvents->poolIsEmpty()) {              if (pGlobalEvents->poolIsEmpty()) {
333                  dmsg(1,("Event pool emtpy!\n"));                  dmsg(1,("Event pool emtpy!\n"));
334                  break;                  break;
335              }              }
336              *pEvents->allocAppend() = *pEvent;              *pGlobalEvents->allocAppend() = *pEvent;
337          }          }
338          eventQueueReader.free(); // free all copied events from input queue          eventQueueReader.free(); // free all copied events from input queue
339      }      }
340    
341      /**      /**
342       *  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.
343       *  calculated audio data of all voices of this engine will be placed into       * The engine will iterate through all engine channels and render audio
344       *  the engine's audio sum buffer which has to be copied and eventually be       * for each engine channel independently. The calculated audio data of
345       *  converted to the appropriate value range by the audio output class (e.g.       * all voices of each engine channel will be placed into the audio sum
346       *  AlsaIO or JackIO) right after.       * buffers of the respective audio output device, connected to the
347         * respective engine channel.
348       *       *
349       *  @param Samples - number of sample points to be rendered       *  @param Samples - number of sample points to be rendered
350       *  @returns       0 on success       *  @returns       0 on success
351       */       */
352      int Engine::RenderAudio(uint Samples) {      int Engine::RenderAudio(uint Samples) {
353          dmsg(5,("RenderAudio(Samples=%d)\n", Samples));          dmsg(7,("RenderAudio(Samples=%d)\n", Samples));
354    
355          // return if engine disabled          // return if engine disabled
356          if (EngineDisabled.Pop()) {          if (EngineDisabled.Pop()) {
# Line 344  namespace LinuxSampler { namespace gig { Line 361  namespace LinuxSampler { namespace gig {
361          // 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)
362          pEventGenerator->UpdateFragmentTime(Samples);          pEventGenerator->UpdateFragmentTime(Samples);
363    
364          // empty the engine's event lists for the new fragment          // We only allow a maximum of CONFIG_MAX_VOICES voices to be spawned
365          ClearEventLists();          // in each audio fragment. All subsequent request for spawning new
366            // voices in the same audio fragment will be ignored.
367            VoiceSpawnsLeft = CONFIG_MAX_VOICES;
368    
369          // 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
370          // (these are usually just SysEx messages)          // (these are usually just SysEx messages)
371          ImportEvents(this->pEventQueue, Samples);          ImportEvents(Samples);
372    
373          // process engine global events (these are currently only MIDI System Exclusive messages)          // process engine global events (these are currently only MIDI System Exclusive messages)
374          {          {
375              RTList<Event>::Iterator itEvent = pEvents->first();              RTList<Event>::Iterator itEvent = pGlobalEvents->first();
376              RTList<Event>::Iterator end     = pEvents->end();              RTList<Event>::Iterator end     = pGlobalEvents->end();
377              for (; itEvent != end; ++itEvent) {              for (; itEvent != end; ++itEvent) {
378                  switch (itEvent->Type) {                  switch (itEvent->Type) {
379                      case Event::type_sysex:                      case Event::type_sysex:
# Line 368  namespace LinuxSampler { namespace gig { Line 387  namespace LinuxSampler { namespace gig {
387          // reset internal voice counter (just for statistic of active voices)          // reset internal voice counter (just for statistic of active voices)
388          ActiveVoiceCountTemp = 0;          ActiveVoiceCountTemp = 0;
389    
390          // render audio for all engine channels          // handle instrument change commands
391          // 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          instrument_change_command_t command;
392          {          if (InstrumentChangeQueue->pop(&command) > 0) {
393              std::list<EngineChannel*>::iterator itChannel = engineChannels.begin();              EngineChannel* pEngineChannel = command.pEngineChannel;
394              std::list<EngineChannel*>::iterator end       = engineChannels.end();              pEngineChannel->pInstrument = command.pInstrument;
395              for (; itChannel != end; itChannel++) {  
396                  if (!(*itChannel)->pInstrument) continue; // ignore if no instrument loaded              // iterate through all active voices and mark their
397                  RenderAudio(*itChannel, Samples);              // dimension regions as "in use". The instrument resource
398                // manager may delete all of the instrument except the
399                // dimension regions and samples that are in use.
400                int i = 0;
401                RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
402                RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();
403                while (iuiKey != end) { // iterate through all active keys
404                    midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
405                    ++iuiKey;
406    
407                    RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
408                    RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
409                    for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
410                        if (!itVoice->Orphan) {
411                            itVoice->Orphan = true;
412                            pDimRegionsInUse[i++] = itVoice->pDimRgn;
413                        }
414                    }
415              }              }
416                pDimRegionsInUse[i] = 0; // end of list
417    
418                // send a reply to the calling thread, which is waiting
419                instrument_change_reply_t reply;
420                InstrumentChangeReplyQueue->push(&reply);
421            }
422    
423            // handle events on all engine channels
424            for (int i = 0; i < engineChannels.size(); i++) {
425                ProcessEvents(engineChannels[i], Samples);
426            }
427    
428            // render all 'normal', active voices on all engine channels
429            for (int i = 0; i < engineChannels.size(); i++) {
430                RenderActiveVoices(engineChannels[i], Samples);
431          }          }
432    
433            // now that all ordinary voices on ALL engine channels are rendered, render new stolen voices
434            RenderStolenVoices(Samples);
435    
436            // handle audio routing for engine channels with FX sends
437            for (int i = 0; i < engineChannels.size(); i++) {
438                if (engineChannels[i]->fxSends.empty()) continue; // ignore if no FX sends
439                RouteAudio(engineChannels[i], Samples);
440            }
441    
442            // handle cleanup on all engine channels for the next audio fragment
443            for (int i = 0; i < engineChannels.size(); i++) {
444                PostProcess(engineChannels[i]);
445            }
446    
447    
448            // empty the engine's event list for the next audio fragment
449            ClearEventLists();
450    
451            // reset voice stealing for the next audio fragment
452            pVoiceStealingQueue->clear();
453    
454          // just some statistics about this engine instance          // just some statistics about this engine instance
455          ActiveVoiceCount = ActiveVoiceCountTemp;          ActiveVoiceCount = ActiveVoiceCountTemp;
456          if (ActiveVoiceCount > ActiveVoiceCountMax) ActiveVoiceCountMax = ActiveVoiceCount;          if (ActiveVoiceCount > ActiveVoiceCountMax) ActiveVoiceCountMax = ActiveVoiceCount;
457    
458            FrameTime += Samples;
459    
460          return 0;          return 0;
461      }      }
462    
463      void Engine::RenderAudio(EngineChannel* pEngineChannel, uint Samples) {      /**
464          // empty the engine's event lists for the new fragment       * Dispatch and handle all events in this audio fragment for the given
465          ClearEventLists();       * engine channel.
466          // empty the engine channel's, MIDI key specific event lists       *
467          {       * @param pEngineChannel - engine channel on which events should be
468              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();       *                         processed
469              RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();       * @param Samples        - amount of sample points to be processed in
470              for(; iuiKey != end; ++iuiKey) {       *                         this audio fragment cycle
471                  pEngineChannel->pMIDIKeyInfo[*iuiKey].pEvents->clear(); // free all events on the key       */
472              }      void Engine::ProcessEvents(EngineChannel* pEngineChannel, uint Samples) {
         }  
   
   
473          // 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
474          // (these are the common events like NoteOn, NoteOff, ControlChange, etc.)          // (these are the common events like NoteOn, NoteOff, ControlChange, etc.)
475          ImportEvents(pEngineChannel->pEventQueue, Samples);          pEngineChannel->ImportEvents(Samples);
   
476    
477          // process events          // process events
478          {          {
479              RTList<Event>::Iterator itEvent = pEvents->first();              RTList<Event>::Iterator itEvent = pEngineChannel->pEvents->first();
480              RTList<Event>::Iterator end     = pEvents->end();              RTList<Event>::Iterator end     = pEngineChannel->pEvents->end();
481              for (; itEvent != end; ++itEvent) {              for (; itEvent != end; ++itEvent) {
482                  switch (itEvent->Type) {                  switch (itEvent->Type) {
483                      case Event::type_note_on:                      case Event::type_note_on:
# Line 430  namespace LinuxSampler { namespace gig { Line 500  namespace LinuxSampler { namespace gig {
500              }              }
501          }          }
502    
503            // reset voice stealing for the next engine channel (or next audio fragment)
504            itLastStolenVoice         = RTList<Voice>::Iterator();
505            itLastStolenVoiceGlobally = RTList<Voice>::Iterator();
506            iuiLastStolenKey          = RTList<uint>::Iterator();
507            iuiLastStolenKeyGlobally  = RTList<uint>::Iterator();
508            pLastStolenChannel        = NULL;
509        }
510    
511          // render audio from all active voices      /**
512          {       * Render all 'normal' voices (that is voices which were not stolen in
513              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();       * this fragment) on the given engine channel.
514              RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();       *
515              while (iuiKey != end) { // iterate through all active keys       * @param pEngineChannel - engine channel on which audio should be
516                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];       *                         rendered
517                  ++iuiKey;       * @param Samples        - amount of sample points to be rendered in
518         *                         this audio fragment cycle
519         */
520        void Engine::RenderActiveVoices(EngineChannel* pEngineChannel, uint Samples) {
521            #if !CONFIG_PROCESS_MUTED_CHANNELS
522            if (pEngineChannel->GetMute()) return; // skip if sampler channel is muted
523            #endif
524    
525                  RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();          RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
526                  RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();          RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();
527                  for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key          while (iuiKey != end) { // iterate through all active keys
528                      // now render current voice              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
529                      itVoice->Render(Samples);              ++iuiKey;
530                      if (itVoice->IsActive()) ActiveVoiceCountTemp++; // still active  
531                      else { // voice reached end, is now inactive              RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
532                          FreeVoice(pEngineChannel, itVoice); // remove voice from the list of active voices              RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
533                      }              for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
534                    // now render current voice
535                    itVoice->Render(Samples);
536                    if (itVoice->IsActive()) ActiveVoiceCountTemp++; // still active
537                    else { // voice reached end, is now inactive
538                        FreeVoice(pEngineChannel, itVoice); // remove voice from the list of active voices
539                  }                  }
540              }              }
541          }          }
542        }
543    
544        /**
545         * Render all stolen voices (only voices which were stolen in this
546         * fragment) on the given engine channel. Stolen voices are rendered
547         * after all normal voices have been rendered; this is needed to render
548         * audio of those voices which were selected for voice stealing until
549         * the point were the stealing (that is the take over of the voice)
550         * actually happened.
551         *
552         * @param pEngineChannel - engine channel on which audio should be
553         *                         rendered
554         * @param Samples        - amount of sample points to be rendered in
555         *                         this audio fragment cycle
556         */
557        void Engine::RenderStolenVoices(uint Samples) {
558            RTList<Event>::Iterator itVoiceStealEvent = pVoiceStealingQueue->first();
559            RTList<Event>::Iterator end               = pVoiceStealingQueue->end();
560            for (; itVoiceStealEvent != end; ++itVoiceStealEvent) {
561                EngineChannel* pEngineChannel = (EngineChannel*) itVoiceStealEvent->pEngineChannel;
562                if (!pEngineChannel->pInstrument) continue; // ignore if no instrument loaded
563                Pool<Voice>::Iterator itNewVoice =
564                    LaunchVoice(pEngineChannel, itVoiceStealEvent, itVoiceStealEvent->Param.Note.Layer, itVoiceStealEvent->Param.Note.ReleaseTrigger, false, false);
565                if (itNewVoice) {
566                    itNewVoice->Render(Samples);
567                    if (itNewVoice->IsActive()) ActiveVoiceCountTemp++; // still active
568                    else { // voice reached end, is now inactive
569                        FreeVoice(pEngineChannel, itNewVoice); // remove voice from the list of active voices
570                    }
571                }
572                else dmsg(1,("gig::Engine: ERROR, voice stealing didn't work out!\n"));
573    
574                // we need to clear the key's event list explicitly here in case key was never active
575                midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itVoiceStealEvent->Param.Note.Key];
576                pKey->VoiceTheftsQueued--;
577                if (!pKey->Active && !pKey->VoiceTheftsQueued) pKey->pEvents->clear();
578            }
579        }
580    
581          // now render all postponed voices from voice stealing      /**
582         * Will be called in case the respective engine channel sports FX send
583         * channels. In this particular case, engine channel local buffers are
584         * used to render and mix all voices to. This method is responsible for
585         * copying the audio data from those local buffers to the master audio
586         * output channels as well as to the FX send audio output channels with
587         * their respective FX send levels.
588         *
589         * @param pEngineChannel - engine channel from which audio should be
590         *                         routed
591         * @param Samples        - amount of sample points to be routed in
592         *                         this audio fragment cycle
593         */
594        void Engine::RouteAudio(EngineChannel* pEngineChannel, uint Samples) {
595            // route master signal
596          {          {
597              RTList<Event>::Iterator itVoiceStealEvent = pVoiceStealingQueue->first();              AudioChannel* pDstL = pAudioOutputDevice->Channel(pEngineChannel->AudioDeviceChannelLeft);
598              RTList<Event>::Iterator end               = pVoiceStealingQueue->end();              AudioChannel* pDstR = pAudioOutputDevice->Channel(pEngineChannel->AudioDeviceChannelRight);
599              for (; itVoiceStealEvent != end; ++itVoiceStealEvent) {              pEngineChannel->pChannelLeft->MixTo(pDstL, Samples);
600                  Pool<Voice>::Iterator itNewVoice =              pEngineChannel->pChannelRight->MixTo(pDstR, Samples);
601                      LaunchVoice(pEngineChannel, itVoiceStealEvent, itVoiceStealEvent->Param.Note.Layer, itVoiceStealEvent->Param.Note.ReleaseTrigger, false);          }
602                  if (itNewVoice) {          // route FX send signal
603                      for (; itNewVoice; itNewVoice = itNewVoice->itChildVoice) {          {
604                          itNewVoice->Render(Samples);              for (int iFxSend = 0; iFxSend < pEngineChannel->GetFxSendCount(); iFxSend++) {
605                          if (itNewVoice->IsActive()) ActiveVoiceCountTemp++; // still active                  FxSend* pFxSend = pEngineChannel->GetFxSend(iFxSend);
606                          else { // voice reached end, is now inactive                  // left channel
607                              FreeVoice(pEngineChannel, itNewVoice); // remove voice from the list of active voices                  const int iDstL = pFxSend->DestinationChannel(0);
608                          }                  if (iDstL < 0) {
609                      }                      dmsg(1,("Engine::RouteAudio() Error: invalid FX send (L) destination channel"));
610                    } else {
611                        AudioChannel* pDstL = pAudioOutputDevice->Channel(iDstL);
612                        if (!pDstL) {
613                            dmsg(1,("Engine::RouteAudio() Error: invalid FX send (L) destination channel"));
614                        } else pEngineChannel->pChannelLeft->MixTo(pDstL, Samples, pFxSend->Level());
615                    }
616                    // right channel
617                    const int iDstR = pFxSend->DestinationChannel(1);
618                    if (iDstR < 0) {
619                        dmsg(1,("Engine::RouteAudio() Error: invalid FX send (R) destination channel"));
620                    } else {
621                        AudioChannel* pDstR = pAudioOutputDevice->Channel(iDstR);
622                        if (!pDstR) {
623                            dmsg(1,("Engine::RouteAudio() Error: invalid FX send (R) destination channel"));
624                        } else pEngineChannel->pChannelRight->MixTo(pDstR, Samples, pFxSend->Level());
625                  }                  }
                 else dmsg(1,("gig::Engine: ERROR, voice stealing didn't work out!\n"));  
626              }              }
627          }          }
628          // reset voice stealing for the new fragment          // reset buffers with silence (zero out) for the next audio cycle
629          pVoiceStealingQueue->clear();          pEngineChannel->pChannelLeft->Clear();
630          pEngineChannel->itLastStolenVoice = RTList<Voice>::Iterator();          pEngineChannel->pChannelRight->Clear();
631          pEngineChannel->iuiLastStolenKey  = RTList<uint>::Iterator();      }
   
632    
633        /**
634         * Free all keys which have turned inactive in this audio fragment, from
635         * the list of active keys and clear all event lists on that engine
636         * channel.
637         *
638         * @param pEngineChannel - engine channel to cleanup
639         */
640        void Engine::PostProcess(EngineChannel* pEngineChannel) {
641          // free all keys which have no active voices left          // free all keys which have no active voices left
642          {          {
643              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();              RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
# Line 486  namespace LinuxSampler { namespace gig { Line 646  namespace LinuxSampler { namespace gig {
646                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];                  midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
647                  ++iuiKey;                  ++iuiKey;
648                  if (pKey->pActiveVoices->isEmpty()) FreeKey(pEngineChannel, pKey);                  if (pKey->pActiveVoices->isEmpty()) FreeKey(pEngineChannel, pKey);
649                  #if DEVMODE                  #if CONFIG_DEVMODE
650                  else { // FIXME: should be removed before the final release (purpose: just a sanity check for debugging)                  else { // just a sanity check for debugging
651                      RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();                      RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
652                      RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();                      RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
653                      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 656  namespace LinuxSampler { namespace gig {
656                          }                          }
657                      }                      }
658                  }                  }
659                  #endif // DEVMODE                  #endif // CONFIG_DEVMODE
660              }              }
661          }          }
662    
663            // empty the engine channel's own event lists
664            pEngineChannel->ClearEventLists();
665      }      }
666    
667      /**      /**
# Line 528  namespace LinuxSampler { namespace gig { Line 691  namespace LinuxSampler { namespace gig {
691                  // finally place sysex event into input event queue                  // finally place sysex event into input event queue
692                  pEventQueue->push(&event);                  pEventQueue->push(&event);
693              }              }
694              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));
695          }          }
696          else dmsg(1,("Engine: Input event queue full!"));          else dmsg(1,("Engine: Input event queue full!"));
697      }      }
# Line 540  namespace LinuxSampler { namespace gig { Line 703  namespace LinuxSampler { namespace gig {
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::ProcessNoteOn(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {      void Engine::ProcessNoteOn(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
706            #if !CONFIG_PROCESS_MUTED_CHANNELS
707            if (pEngineChannel->GetMute()) return; // skip if sampler channel is muted
708            #endif
709    
710            if (!pEngineChannel->pInstrument) return; // ignore if no instrument loaded
711    
712          const int key = itNoteOnEvent->Param.Note.Key;          const int key = itNoteOnEvent->Param.Note.Key;
713            midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[key];
714    
715            // move note on event to the key's own event list
716            RTList<Event>::Iterator itNoteOnEventOnKeyList = itNoteOnEvent.moveToEndOf(pKey->pEvents);
717    
718            // if Solo Mode then kill all already active voices
719            if (pEngineChannel->SoloMode) {
720                Pool<uint>::Iterator itYoungestKey = pEngineChannel->pActiveKeys->last();
721                if (itYoungestKey) {
722                    const int iYoungestKey = *itYoungestKey;
723                    const midi_key_info_t* pOtherKey = &pEngineChannel->pMIDIKeyInfo[iYoungestKey];
724                    if (pOtherKey->Active) {
725                        // get final portamento position of currently active voice
726                        if (pEngineChannel->PortamentoMode) {
727                            RTList<Voice>::Iterator itVoice = pOtherKey->pActiveVoices->last();
728                            if (itVoice) itVoice->UpdatePortamentoPos(itNoteOnEventOnKeyList);
729                        }
730                        // kill all voices on the (other) key
731                        RTList<Voice>::Iterator itVoiceToBeKilled = pOtherKey->pActiveVoices->first();
732                        RTList<Voice>::Iterator end               = pOtherKey->pActiveVoices->end();
733                        for (; itVoiceToBeKilled != end; ++itVoiceToBeKilled) {
734                            if (itVoiceToBeKilled->Type != Voice::type_release_trigger)
735                                itVoiceToBeKilled->Kill(itNoteOnEventOnKeyList);
736                        }
737                    }
738                }
739                // set this key as 'currently active solo key'
740                pEngineChannel->SoloKey = key;
741            }
742    
743          // Change key dimension value if key is in keyswitching area          // Change key dimension value if key is in keyswitching area
744          {          {
745              const ::gig::Instrument* pInstrument = pEngineChannel->pInstrument;              const ::gig::Instrument* pInstrument = pEngineChannel->pInstrument;
746              if (key >= pInstrument->DimensionKeyRange.low && key <= pInstrument->DimensionKeyRange.high)              if (key >= pInstrument->DimensionKeyRange.low && key <= pInstrument->DimensionKeyRange.high)
747                  pEngineChannel->CurrentKeyDimension = ((key - pInstrument->DimensionKeyRange.low) * 128) /                  pEngineChannel->CurrentKeyDimension = float(key - pInstrument->DimensionKeyRange.low) /
748                      (pInstrument->DimensionKeyRange.high - pInstrument->DimensionKeyRange.low + 1);                      (pInstrument->DimensionKeyRange.high - pInstrument->DimensionKeyRange.low + 1);
749          }          }
750    
         midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[key];  
   
751          pKey->KeyPressed = true; // the MIDI key was now pressed down          pKey->KeyPressed = true; // the MIDI key was now pressed down
752            pKey->Velocity   = itNoteOnEventOnKeyList->Param.Note.Velocity;
753            pKey->NoteOnTime = FrameTime + itNoteOnEventOnKeyList->FragmentPos(); // will be used to calculate note length
754    
755          // cancel release process of voices on this key if needed          // cancel release process of voices on this key if needed
756          if (pKey->Active && !pEngineChannel->SustainPedal) {          if (pKey->Active && !pEngineChannel->SustainPedal) {
757              RTList<Event>::Iterator itCancelReleaseEvent = pKey->pEvents->allocAppend();              RTList<Event>::Iterator itCancelReleaseEvent = pKey->pEvents->allocAppend();
758              if (itCancelReleaseEvent) {              if (itCancelReleaseEvent) {
759                  *itCancelReleaseEvent = *itNoteOnEvent;                  // copy event                  *itCancelReleaseEvent = *itNoteOnEventOnKeyList;         // copy event
760                  itCancelReleaseEvent->Type = Event::type_cancel_release; // transform event type                  itCancelReleaseEvent->Type = Event::type_cancel_release; // transform event type
761              }              }
762              else dmsg(1,("Event pool emtpy!\n"));              else dmsg(1,("Event pool emtpy!\n"));
763          }          }
764    
765          // move note on event to the key's own event list          // allocate and trigger new voice(s) for the key
766          RTList<Event>::Iterator itNoteOnEventOnKeyList = itNoteOnEvent.moveToEndOf(pKey->pEvents);          {
767                // first, get total amount of required voices (dependant on amount of layers)
768                ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOnEventOnKeyList->Param.Note.Key);
769                if (pRegion) {
770                    int voicesRequired = pRegion->Layers;
771                    // now launch the required amount of voices
772                    for (int i = 0; i < voicesRequired; i++)
773                        LaunchVoice(pEngineChannel, itNoteOnEventOnKeyList, i, false, true, true);
774                }
775            }
776    
777          // allocate and trigger a new voice for the key          // if neither a voice was spawned or postponed then remove note on event from key again
778          LaunchVoice(pEngineChannel, itNoteOnEventOnKeyList, 0, false, true);          if (!pKey->Active && !pKey->VoiceTheftsQueued)
779                pKey->pEvents->free(itNoteOnEventOnKeyList);
780    
781            if (!pEngineChannel->SoloMode || pEngineChannel->PortamentoPos < 0.0f) pEngineChannel->PortamentoPos = (float) key;
782          pKey->RoundRobinIndex++;          pKey->RoundRobinIndex++;
783      }      }
784    
# Line 584  namespace LinuxSampler { namespace gig { Line 792  namespace LinuxSampler { namespace gig {
792       *  @param itNoteOffEvent - key, velocity and time stamp of the event       *  @param itNoteOffEvent - key, velocity and time stamp of the event
793       */       */
794      void Engine::ProcessNoteOff(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOffEvent) {      void Engine::ProcessNoteOff(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOffEvent) {
795          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itNoteOffEvent->Param.Note.Key];          #if !CONFIG_PROCESS_MUTED_CHANNELS
796            if (pEngineChannel->GetMute()) return; // skip if sampler channel is muted
797            #endif
798    
799            const int iKey = itNoteOffEvent->Param.Note.Key;
800            midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[iKey];
801          pKey->KeyPressed = false; // the MIDI key was now released          pKey->KeyPressed = false; // the MIDI key was now released
802    
         // release voices on this key if needed  
         if (pKey->Active && !pEngineChannel->SustainPedal) {  
             itNoteOffEvent->Type = Event::type_release; // transform event type  
         }  
   
803          // move event to the key's own event list          // move event to the key's own event list
804          RTList<Event>::Iterator itNoteOffEventOnKeyList = itNoteOffEvent.moveToEndOf(pKey->pEvents);          RTList<Event>::Iterator itNoteOffEventOnKeyList = itNoteOffEvent.moveToEndOf(pKey->pEvents);
805    
806          // spawn release triggered voice(s) if needed          bool bShouldRelease = pKey->Active && ShouldReleaseVoice(pEngineChannel, itNoteOffEventOnKeyList->Param.Note.Key);
807          if (pKey->ReleaseTrigger) {  
808              LaunchVoice(pEngineChannel, itNoteOffEventOnKeyList, 0, true, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples          // in case Solo Mode is enabled, kill all voices on this key and respawn a voice on the highest pressed key (if any)
809              pKey->ReleaseTrigger = false;          if (pEngineChannel->SoloMode && pEngineChannel->pInstrument) { //TODO: this feels like too much code just for handling solo mode :P
810                bool bOtherKeysPressed = false;
811                if (iKey == pEngineChannel->SoloKey) {
812                    pEngineChannel->SoloKey = -1;
813                    // if there's still a key pressed down, respawn a voice (group) on the highest key
814                    for (int i = 127; i > 0; i--) {
815                        midi_key_info_t* pOtherKey = &pEngineChannel->pMIDIKeyInfo[i];
816                        if (pOtherKey->KeyPressed) {
817                            bOtherKeysPressed = true;
818                            // make the other key the new 'currently active solo key'
819                            pEngineChannel->SoloKey = i;
820                            // get final portamento position of currently active voice
821                            if (pEngineChannel->PortamentoMode) {
822                                RTList<Voice>::Iterator itVoice = pKey->pActiveVoices->first();
823                                if (itVoice) itVoice->UpdatePortamentoPos(itNoteOffEventOnKeyList);
824                            }
825                            // create a pseudo note on event
826                            RTList<Event>::Iterator itPseudoNoteOnEvent = pOtherKey->pEvents->allocAppend();
827                            if (itPseudoNoteOnEvent) {
828                                // copy event
829                                *itPseudoNoteOnEvent = *itNoteOffEventOnKeyList;
830                                // transform event to a note on event
831                                itPseudoNoteOnEvent->Type                = Event::type_note_on;
832                                itPseudoNoteOnEvent->Param.Note.Key      = i;
833                                itPseudoNoteOnEvent->Param.Note.Velocity = pOtherKey->Velocity;
834                                // allocate and trigger new voice(s) for the other key
835                                {
836                                    // first, get total amount of required voices (dependant on amount of layers)
837                                    ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(i);
838                                    if (pRegion) {
839                                        int voicesRequired = pRegion->Layers;
840                                        // now launch the required amount of voices
841                                        for (int iLayer = 0; iLayer < voicesRequired; iLayer++)
842                                            LaunchVoice(pEngineChannel, itPseudoNoteOnEvent, iLayer, false, true, false);
843                                    }
844                                }
845                                // if neither a voice was spawned or postponed then remove note on event from key again
846                                if (!pOtherKey->Active && !pOtherKey->VoiceTheftsQueued)
847                                    pOtherKey->pEvents->free(itPseudoNoteOnEvent);
848    
849                            } else dmsg(1,("Could not respawn voice, no free event left\n"));
850                            break; // done
851                        }
852                    }
853                }
854                if (bOtherKeysPressed) {
855                    if (pKey->Active) { // kill all voices on this key
856                        bShouldRelease = false; // no need to release, as we kill it here
857                        RTList<Voice>::Iterator itVoiceToBeKilled = pKey->pActiveVoices->first();
858                        RTList<Voice>::Iterator end               = pKey->pActiveVoices->end();
859                        for (; itVoiceToBeKilled != end; ++itVoiceToBeKilled) {
860                            if (itVoiceToBeKilled->Type != Voice::type_release_trigger)
861                                itVoiceToBeKilled->Kill(itNoteOffEventOnKeyList);
862                        }
863                    }
864                } else pEngineChannel->PortamentoPos = -1.0f;
865          }          }
866    
867            // if no solo mode (the usual case) or if solo mode and no other key pressed, then release voices on this key if needed
868            if (bShouldRelease) {
869                itNoteOffEventOnKeyList->Type = Event::type_release; // transform event type
870    
871                // spawn release triggered voice(s) if needed
872                if (pKey->ReleaseTrigger && pEngineChannel->pInstrument) {
873                    // first, get total amount of required voices (dependant on amount of layers)
874                    ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOffEventOnKeyList->Param.Note.Key);
875                    if (pRegion) {
876                        int voicesRequired = pRegion->Layers;
877    
878                        // MIDI note-on velocity is used instead of note-off velocity
879                        itNoteOffEventOnKeyList->Param.Note.Velocity = pKey->Velocity;
880    
881                        // now launch the required amount of voices
882                        for (int i = 0; i < voicesRequired; i++)
883                            LaunchVoice(pEngineChannel, itNoteOffEventOnKeyList, i, true, false, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples
884                    }
885                    pKey->ReleaseTrigger = false;
886                }
887            }
888    
889            // if neither a voice was spawned or postponed on this key then remove note off event from key again
890            if (!pKey->Active && !pKey->VoiceTheftsQueued)
891                pKey->pEvents->free(itNoteOffEventOnKeyList);
892      }      }
893    
894      /**      /**
895       *  Moves pitchbend event from the general (input) event list to the pitch       *  Moves pitchbend event from the general (input) event list to the engine
896       *  event list.       *  channel's event list. It will actually processed later by the
897         *  respective voice.
898       *       *
899       *  @param pEngineChannel - engine channel on which this event occured on       *  @param pEngineChannel - engine channel on which this event occured on
900       *  @param itPitchbendEvent - absolute pitch value and time stamp of the event       *  @param itPitchbendEvent - absolute pitch value and time stamp of the event
901       */       */
902      void Engine::ProcessPitchbend(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itPitchbendEvent) {      void Engine::ProcessPitchbend(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itPitchbendEvent) {
903          pEngineChannel->Pitch = itPitchbendEvent->Param.Pitch.Pitch; // store current pitch value          pEngineChannel->Pitch = itPitchbendEvent->Param.Pitch.Pitch; // store current pitch value
         itPitchbendEvent.moveToEndOf(pSynthesisEvents[Event::destination_vco]);  
904      }      }
905    
906      /**      /**
# Line 629  namespace LinuxSampler { namespace gig { Line 917  namespace LinuxSampler { namespace gig {
917       *  @param VoiceStealing       - if voice stealing should be performed       *  @param VoiceStealing       - if voice stealing should be performed
918       *                               when there is no free voice       *                               when there is no free voice
919       *                               (optional, default = true)       *                               (optional, default = true)
920         *  @param HandleKeyGroupConflicts - if voices should be killed due to a
921         *                                   key group conflict
922       *  @returns pointer to new voice or NULL if there was no free voice or       *  @returns pointer to new voice or NULL if there was no free voice or
923       *           if the voice wasn't triggered (for example when no region is       *           if the voice wasn't triggered (for example when no region is
924       *           defined for the given key).       *           defined for the given key).
925       */       */
926      Pool<Voice>::Iterator Engine::LaunchVoice(EngineChannel* pEngineChannel, 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, bool HandleKeyGroupConflicts) {
927          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];          int MIDIKey            = itNoteOnEvent->Param.Note.Key;
928            midi_key_info_t* pKey  = &pEngineChannel->pMIDIKeyInfo[MIDIKey];
929            ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(MIDIKey);
930    
931            // if nothing defined for this key
932            if (!pRegion) return Pool<Voice>::Iterator(); // nothing to do
933    
934            // only mark the first voice of a layered voice (group) to be in a
935            // key group, so the layered voices won't kill each other
936            int iKeyGroup = (iLayer == 0 && !ReleaseTriggerVoice) ? pRegion->KeyGroup : 0;
937    
938            // handle key group (a.k.a. exclusive group) conflicts
939            if (HandleKeyGroupConflicts) {
940                if (iKeyGroup) { // if this voice / key belongs to a key group
941                    uint** ppKeyGroup = &pEngineChannel->ActiveKeyGroups[iKeyGroup];
942                    if (*ppKeyGroup) { // if there's already an active key in that key group
943                        midi_key_info_t* pOtherKey = &pEngineChannel->pMIDIKeyInfo[**ppKeyGroup];
944                        // kill all voices on the (other) key
945                        RTList<Voice>::Iterator itVoiceToBeKilled = pOtherKey->pActiveVoices->first();
946                        RTList<Voice>::Iterator end               = pOtherKey->pActiveVoices->end();
947                        for (; itVoiceToBeKilled != end; ++itVoiceToBeKilled) {
948                            if (itVoiceToBeKilled->Type != Voice::type_release_trigger) {
949                                itVoiceToBeKilled->Kill(itNoteOnEvent);
950                                --VoiceSpawnsLeft; //FIXME: just a hack, we should better check in StealVoice() if the voice was killed due to key conflict
951                            }
952                        }
953                    }
954                }
955            }
956    
957            Voice::type_t VoiceType = Voice::type_normal;
958    
959            // get current dimension values to select the right dimension region
960            //TODO: for stolen voices this dimension region selection block is processed twice, this should be changed
961            //FIXME: controller values for selecting the dimension region here are currently not sample accurate
962            uint DimValues[8] = { 0 };
963            for (int i = pRegion->Dimensions - 1; i >= 0; i--) {
964                switch (pRegion->pDimensionDefinitions[i].dimension) {
965                    case ::gig::dimension_samplechannel:
966                        DimValues[i] = 0; //TODO: we currently ignore this dimension
967                        break;
968                    case ::gig::dimension_layer:
969                        DimValues[i] = iLayer;
970                        break;
971                    case ::gig::dimension_velocity:
972                        DimValues[i] = itNoteOnEvent->Param.Note.Velocity;
973                        break;
974                    case ::gig::dimension_channelaftertouch:
975                        DimValues[i] = pEngineChannel->ControllerTable[128];
976                        break;
977                    case ::gig::dimension_releasetrigger:
978                        VoiceType = (ReleaseTriggerVoice) ? Voice::type_release_trigger : (!iLayer) ? Voice::type_release_trigger_required : Voice::type_normal;
979                        DimValues[i] = (uint) ReleaseTriggerVoice;
980                        break;
981                    case ::gig::dimension_keyboard:
982                        DimValues[i] = (uint) (pEngineChannel->CurrentKeyDimension * pRegion->pDimensionDefinitions[i].zones);
983                        break;
984                    case ::gig::dimension_roundrobin:
985                        DimValues[i] = (uint) pEngineChannel->pMIDIKeyInfo[MIDIKey].RoundRobinIndex; // incremented for each note on
986                        break;
987                    case ::gig::dimension_random:
988                        RandomSeed   = RandomSeed * 1103515245 + 12345; // classic pseudo random number generator
989                        DimValues[i] = (uint) RandomSeed >> (32 - pRegion->pDimensionDefinitions[i].bits); // highest bits are most random
990                        break;
991                    case ::gig::dimension_modwheel:
992                        DimValues[i] = pEngineChannel->ControllerTable[1];
993                        break;
994                    case ::gig::dimension_breath:
995                        DimValues[i] = pEngineChannel->ControllerTable[2];
996                        break;
997                    case ::gig::dimension_foot:
998                        DimValues[i] = pEngineChannel->ControllerTable[4];
999                        break;
1000                    case ::gig::dimension_portamentotime:
1001                        DimValues[i] = pEngineChannel->ControllerTable[5];
1002                        break;
1003                    case ::gig::dimension_effect1:
1004                        DimValues[i] = pEngineChannel->ControllerTable[12];
1005                        break;
1006                    case ::gig::dimension_effect2:
1007                        DimValues[i] = pEngineChannel->ControllerTable[13];
1008                        break;
1009                    case ::gig::dimension_genpurpose1:
1010                        DimValues[i] = pEngineChannel->ControllerTable[16];
1011                        break;
1012                    case ::gig::dimension_genpurpose2:
1013                        DimValues[i] = pEngineChannel->ControllerTable[17];
1014                        break;
1015                    case ::gig::dimension_genpurpose3:
1016                        DimValues[i] = pEngineChannel->ControllerTable[18];
1017                        break;
1018                    case ::gig::dimension_genpurpose4:
1019                        DimValues[i] = pEngineChannel->ControllerTable[19];
1020                        break;
1021                    case ::gig::dimension_sustainpedal:
1022                        DimValues[i] = pEngineChannel->ControllerTable[64];
1023                        break;
1024                    case ::gig::dimension_portamento:
1025                        DimValues[i] = pEngineChannel->ControllerTable[65];
1026                        break;
1027                    case ::gig::dimension_sostenutopedal:
1028                        DimValues[i] = pEngineChannel->ControllerTable[66];
1029                        break;
1030                    case ::gig::dimension_softpedal:
1031                        DimValues[i] = pEngineChannel->ControllerTable[67];
1032                        break;
1033                    case ::gig::dimension_genpurpose5:
1034                        DimValues[i] = pEngineChannel->ControllerTable[80];
1035                        break;
1036                    case ::gig::dimension_genpurpose6:
1037                        DimValues[i] = pEngineChannel->ControllerTable[81];
1038                        break;
1039                    case ::gig::dimension_genpurpose7:
1040                        DimValues[i] = pEngineChannel->ControllerTable[82];
1041                        break;
1042                    case ::gig::dimension_genpurpose8:
1043                        DimValues[i] = pEngineChannel->ControllerTable[83];
1044                        break;
1045                    case ::gig::dimension_effect1depth:
1046                        DimValues[i] = pEngineChannel->ControllerTable[91];
1047                        break;
1048                    case ::gig::dimension_effect2depth:
1049                        DimValues[i] = pEngineChannel->ControllerTable[92];
1050                        break;
1051                    case ::gig::dimension_effect3depth:
1052                        DimValues[i] = pEngineChannel->ControllerTable[93];
1053                        break;
1054                    case ::gig::dimension_effect4depth:
1055                        DimValues[i] = pEngineChannel->ControllerTable[94];
1056                        break;
1057                    case ::gig::dimension_effect5depth:
1058                        DimValues[i] = pEngineChannel->ControllerTable[95];
1059                        break;
1060                    case ::gig::dimension_none:
1061                        std::cerr << "gig::Engine::LaunchVoice() Error: dimension=none\n" << std::flush;
1062                        break;
1063                    default:
1064                        std::cerr << "gig::Engine::LaunchVoice() Error: Unknown dimension\n" << std::flush;
1065                }
1066            }
1067    
1068            // return if this is a release triggered voice and there is no
1069            // releasetrigger dimension (could happen if an instrument
1070            // change has occured between note on and off)
1071            if (ReleaseTriggerVoice && VoiceType != Voice::type_release_trigger) return Pool<Voice>::Iterator();
1072    
1073            ::gig::DimensionRegion* pDimRgn = pRegion->GetDimensionRegionByValue(DimValues);
1074    
1075            // no need to continue if sample is silent
1076            if (!pDimRgn->pSample || !pDimRgn->pSample->SamplesTotal) return Pool<Voice>::Iterator();
1077    
1078          // allocate a new voice for the key          // allocate a new voice for the key
1079          Pool<Voice>::Iterator itNewVoice = pKey->pActiveVoices->allocAppend();          Pool<Voice>::Iterator itNewVoice = pKey->pActiveVoices->allocAppend();
1080          if (itNewVoice) {          if (itNewVoice) {
1081              // launch the new voice              // launch the new voice
1082              if (itNewVoice->Trigger(pEngineChannel, itNoteOnEvent, pEngineChannel->Pitch, pEngineChannel->pInstrument, iLayer, ReleaseTriggerVoice, VoiceStealing) < 0) {              if (itNewVoice->Trigger(pEngineChannel, itNoteOnEvent, pEngineChannel->Pitch, pDimRgn, VoiceType, iKeyGroup) < 0) {
1083                  dmsg(4,("Voice not triggered\n"));                  dmsg(4,("Voice not triggered\n"));
1084                  pKey->pActiveVoices->free(itNewVoice);                  pKey->pActiveVoices->free(itNewVoice);
1085              }              }
1086              else { // on success              else { // on success
1087                  uint** ppKeyGroup = NULL;                  --VoiceSpawnsLeft;
                 if (itNewVoice->KeyGroup) { // if this voice / key belongs to a key group  
                     ppKeyGroup = &pEngineChannel->ActiveKeyGroups[itNewVoice->KeyGroup];  
                     if (*ppKeyGroup) { // if there's already an active key in that key group  
                         midi_key_info_t* pOtherKey = &pEngineChannel->pMIDIKeyInfo[**ppKeyGroup];  
                         // kill all voices on the (other) key  
                         RTList<Voice>::Iterator itVoiceToBeKilled = pOtherKey->pActiveVoices->first();  
                         RTList<Voice>::Iterator end               = pOtherKey->pActiveVoices->end();  
                         for (; itVoiceToBeKilled != end; ++itVoiceToBeKilled) {  
                             if (itVoiceToBeKilled->Type != Voice::type_release_trigger) itVoiceToBeKilled->Kill(itNoteOnEvent);  
                         }  
                     }  
                 }  
1088                  if (!pKey->Active) { // mark as active key                  if (!pKey->Active) { // mark as active key
1089                      pKey->Active = true;                      pKey->Active = true;
1090                      pKey->itSelf = pEngineChannel->pActiveKeys->allocAppend();                      pKey->itSelf = pEngineChannel->pActiveKeys->allocAppend();
1091                      *pKey->itSelf = itNoteOnEvent->Param.Note.Key;                      *pKey->itSelf = itNoteOnEvent->Param.Note.Key;
1092                  }                  }
1093                  if (itNewVoice->KeyGroup) {                  if (itNewVoice->KeyGroup) {
1094                        uint** ppKeyGroup = &pEngineChannel->ActiveKeyGroups[itNewVoice->KeyGroup];
1095                      *ppKeyGroup = &*pKey->itSelf; // put key as the (new) active key to its key group                      *ppKeyGroup = &*pKey->itSelf; // put key as the (new) active key to its key group
1096                  }                  }
1097                  if (itNewVoice->Type == Voice::type_release_trigger_required) pKey->ReleaseTrigger = true; // mark key for the need of release triggered voice(s)                  if (itNewVoice->Type == Voice::type_release_trigger_required) pKey->ReleaseTrigger = true; // mark key for the need of release triggered voice(s)
# Line 671  namespace LinuxSampler { namespace gig { Line 1099  namespace LinuxSampler { namespace gig {
1099              }              }
1100          }          }
1101          else if (VoiceStealing) {          else if (VoiceStealing) {
1102              // first, get total amount of required voices (dependant on amount of layers)              // try to steal one voice
1103              ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOnEvent->Param.Note.Key);              int result = StealVoice(pEngineChannel, itNoteOnEvent);
1104              if (!pRegion) return Pool<Voice>::Iterator(); // nothing defined for this MIDI key, so no voice needed              if (!result) { // voice stolen successfully
1105              int voicesRequired = pRegion->Layers;                  // put note-on event into voice-stealing queue, so it will be reprocessed after killed voice died
1106                    RTList<Event>::Iterator itStealEvent = pVoiceStealingQueue->allocAppend();
1107              // now steal the (remaining) amount of voices                  if (itStealEvent) {
1108              for (int i = iLayer; i < voicesRequired; i++)                      *itStealEvent = *itNoteOnEvent; // copy event
1109                  StealVoice(pEngineChannel, itNoteOnEvent);                      itStealEvent->Param.Note.Layer = iLayer;
1110                        itStealEvent->Param.Note.ReleaseTrigger = ReleaseTriggerVoice;
1111              // put note-on event into voice-stealing queue, so it will be reprocessed after killed voice died                      pKey->VoiceTheftsQueued++;
1112              RTList<Event>::Iterator itStealEvent = pVoiceStealingQueue->allocAppend();                  }
1113              if (itStealEvent) {                  else dmsg(1,("Voice stealing queue full!\n"));
                 *itStealEvent = *itNoteOnEvent; // copy event  
                 itStealEvent->Param.Note.Layer = iLayer;  
                 itStealEvent->Param.Note.ReleaseTrigger = ReleaseTriggerVoice;  
1114              }              }
             else dmsg(1,("Voice stealing queue full!\n"));  
1115          }          }
1116    
1117          return Pool<Voice>::Iterator(); // no free voice or error          return Pool<Voice>::Iterator(); // no free voice or error
# Line 701  namespace LinuxSampler { namespace gig { Line 1125  namespace LinuxSampler { namespace gig {
1125       *       *
1126       *  @param pEngineChannel - engine channel on which this event occured on       *  @param pEngineChannel - engine channel on which this event occured on
1127       *  @param itNoteOnEvent - key, velocity and time stamp of the event       *  @param itNoteOnEvent - key, velocity and time stamp of the event
1128         *  @returns 0 on success, a value < 0 if no active voice could be picked for voice stealing
1129       */       */
1130      void Engine::StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {      int Engine::StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
1131            if (VoiceSpawnsLeft <= 0) {
1132                dmsg(1,("Max. voice thefts per audio fragment reached (you may raise CONFIG_MAX_VOICES).\n"));
1133                return -1;
1134            }
1135          if (!pEventPool->poolIsEmpty()) {          if (!pEventPool->poolIsEmpty()) {
1136    
1137              RTList<uint>::Iterator  iuiOldestKey;              RTList<Voice>::Iterator itSelectedVoice;
             RTList<Voice>::Iterator itOldestVoice;  
1138    
1139              // Select one voice for voice stealing              // Select one voice for voice stealing
1140              switch (VOICE_STEAL_ALGORITHM) {              switch (CONFIG_VOICE_STEAL_ALGO) {
1141    
1142                  // try to pick the oldest voice on the key where the new                  // try to pick the oldest voice on the key where the new
1143                  // voice should be spawned, if there is no voice on that                  // voice should be spawned, if there is no voice on that
1144                  // key, or no voice left to kill there, then procceed with                  // key, or no voice left to kill, then procceed with
1145                  // 'oldestkey' algorithm                  // 'oldestkey' algorithm
1146                  case voice_steal_algo_keymask: {                  case voice_steal_algo_oldestvoiceonkey: {
1147                      midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];                      midi_key_info_t* pSelectedKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];
1148                      if (pEngineChannel->itLastStolenVoice) {                      itSelectedVoice = pSelectedKey->pActiveVoices->first();
1149                          itOldestVoice = pEngineChannel->itLastStolenVoice;                      // proceed iterating if voice was created in this fragment cycle
1150                          ++itOldestVoice;                      while (itSelectedVoice && !itSelectedVoice->IsStealable()) ++itSelectedVoice;
1151                      }                      // if we haven't found a voice then proceed with algorithm 'oldestkey'
1152                      else { // no voice stolen in this audio fragment cycle yet                      if (itSelectedVoice && itSelectedVoice->IsStealable()) break;
                         itOldestVoice = pOldestKey->pActiveVoices->first();  
                     }  
                     if (itOldestVoice) {  
                         iuiOldestKey = pOldestKey->itSelf;  
                         break; // selection succeeded  
                     }  
1153                  } // no break - intentional !                  } // no break - intentional !
1154    
1155                  // try to pick the oldest voice on the oldest active key                  // try to pick the oldest voice on the oldest active key
1156                  // (caution: must stay after 'keymask' algorithm !)                  // from the same engine channel
1157                    // (caution: must stay after 'oldestvoiceonkey' algorithm !)
1158                  case voice_steal_algo_oldestkey: {                  case voice_steal_algo_oldestkey: {
1159                      if (pEngineChannel->itLastStolenVoice) {                      // if we already stole in this fragment, try to proceed on same key
1160                          midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*pEngineChannel->iuiLastStolenKey];                      if (this->itLastStolenVoice) {
1161                          itOldestVoice = pEngineChannel->itLastStolenVoice;                          itSelectedVoice = this->itLastStolenVoice;
1162                          ++itOldestVoice;                          do {
1163                          if (!itOldestVoice) {                              ++itSelectedVoice;
1164                              iuiOldestKey = pEngineChannel->iuiLastStolenKey;                          } while (itSelectedVoice && !itSelectedVoice->IsStealable()); // proceed iterating if voice was created in this fragment cycle
1165                              ++iuiOldestKey;                          // found a "stealable" voice ?
1166                              if (iuiOldestKey) {                          if (itSelectedVoice && itSelectedVoice->IsStealable()) {
1167                                  midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*iuiOldestKey];                              // remember which voice we stole, so we can simply proceed on next voice stealing
1168                                  itOldestVoice = pOldestKey->pActiveVoices->first();                              this->itLastStolenVoice = itSelectedVoice;
1169                              }                              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;  
                             }  
1170                          }                          }
                         else iuiOldestKey = pEngineChannel->iuiLastStolenKey;  
1171                      }                      }
1172                      else { // no voice stolen in this audio fragment cycle yet                      // get (next) oldest key
1173                          iuiOldestKey = pEngineChannel->pActiveKeys->first();                      RTList<uint>::Iterator iuiSelectedKey = (this->iuiLastStolenKey) ? ++this->iuiLastStolenKey : pEngineChannel->pActiveKeys->first();
1174                          midi_key_info_t* pOldestKey = &pEngineChannel->pMIDIKeyInfo[*iuiOldestKey];                      while (iuiSelectedKey) {
1175                          itOldestVoice = pOldestKey->pActiveVoices->first();                          midi_key_info_t* pSelectedKey = &pEngineChannel->pMIDIKeyInfo[*iuiSelectedKey];
1176                            itSelectedVoice = pSelectedKey->pActiveVoices->first();
1177                            // proceed iterating if voice was created in this fragment cycle
1178                            while (itSelectedVoice && !itSelectedVoice->IsStealable()) ++itSelectedVoice;
1179                            // found a "stealable" voice ?
1180                            if (itSelectedVoice && itSelectedVoice->IsStealable()) {
1181                                // remember which voice on which key we stole, so we can simply proceed on next voice stealing
1182                                this->iuiLastStolenKey  = iuiSelectedKey;
1183                                this->itLastStolenVoice = itSelectedVoice;
1184                                break; // selection succeeded
1185                            }
1186                            ++iuiSelectedKey; // get next oldest key
1187                      }                      }
1188                      break;                      break;
1189                  }                  }
# Line 763  namespace LinuxSampler { namespace gig { Line 1192  namespace LinuxSampler { namespace gig {
1192                  case voice_steal_algo_none:                  case voice_steal_algo_none:
1193                  default: {                  default: {
1194                      dmsg(1,("No free voice (voice stealing disabled)!\n"));                      dmsg(1,("No free voice (voice stealing disabled)!\n"));
1195                      return;                      return -1;
1196                    }
1197                }
1198    
1199                // if we couldn't steal a voice from the same engine channel then
1200                // steal oldest voice on the oldest key from any other engine channel
1201                // (the smaller engine channel number, the higher priority)
1202                if (!itSelectedVoice || !itSelectedVoice->IsStealable()) {
1203                    EngineChannel* pSelectedChannel;
1204                    int            iChannelIndex;
1205                    // select engine channel
1206                    if (pLastStolenChannel) {
1207                        pSelectedChannel = pLastStolenChannel;
1208                        iChannelIndex    = pSelectedChannel->iEngineIndexSelf;
1209                    } else { // pick the engine channel followed by this engine channel
1210                        iChannelIndex    = (pEngineChannel->iEngineIndexSelf + 1) % engineChannels.size();
1211                        pSelectedChannel = engineChannels[iChannelIndex];
1212                    }
1213    
1214                    // if we already stole in this fragment, try to proceed on same key
1215                    if (this->itLastStolenVoiceGlobally) {
1216                        itSelectedVoice = this->itLastStolenVoiceGlobally;
1217                        do {
1218                            ++itSelectedVoice;
1219                        } while (itSelectedVoice && !itSelectedVoice->IsStealable()); // proceed iterating if voice was created in this fragment cycle
1220                    }
1221    
1222                    #if CONFIG_DEVMODE
1223                    EngineChannel* pBegin = pSelectedChannel; // to detect endless loop
1224                    #endif // CONFIG_DEVMODE
1225    
1226                    // did we find a 'stealable' voice?
1227                    if (itSelectedVoice && itSelectedVoice->IsStealable()) {
1228                        // remember which voice we stole, so we can simply proceed on next voice stealing
1229                        this->itLastStolenVoiceGlobally = itSelectedVoice;
1230                    } else while (true) { // iterate through engine channels
1231                        // get (next) oldest key
1232                        RTList<uint>::Iterator iuiSelectedKey = (this->iuiLastStolenKeyGlobally) ? ++this->iuiLastStolenKeyGlobally : pSelectedChannel->pActiveKeys->first();
1233                        this->iuiLastStolenKeyGlobally = RTList<uint>::Iterator(); // to prevent endless loop (see line above)
1234                        while (iuiSelectedKey) {
1235                            midi_key_info_t* pSelectedKey = &pSelectedChannel->pMIDIKeyInfo[*iuiSelectedKey];
1236                            itSelectedVoice = pSelectedKey->pActiveVoices->first();
1237                            // proceed iterating if voice was created in this fragment cycle
1238                            while (itSelectedVoice && !itSelectedVoice->IsStealable()) ++itSelectedVoice;
1239                            // found a "stealable" voice ?
1240                            if (itSelectedVoice && itSelectedVoice->IsStealable()) {
1241                                // remember which voice on which key on which engine channel we stole, so we can simply proceed on next voice stealing
1242                                this->iuiLastStolenKeyGlobally  = iuiSelectedKey;
1243                                this->itLastStolenVoiceGlobally = itSelectedVoice;
1244                                this->pLastStolenChannel        = pSelectedChannel;
1245                                goto stealable_voice_found; // selection succeeded
1246                            }
1247                            ++iuiSelectedKey; // get next key on current engine channel
1248                        }
1249                        // get next engine channel
1250                        iChannelIndex    = (iChannelIndex + 1) % engineChannels.size();
1251                        pSelectedChannel = engineChannels[iChannelIndex];
1252    
1253                        #if CONFIG_DEVMODE
1254                        if (pSelectedChannel == pBegin) {
1255                            dmsg(1,("FATAL ERROR: voice stealing endless loop!\n"));
1256                            dmsg(1,("VoiceSpawnsLeft=%d.\n", VoiceSpawnsLeft));
1257                            dmsg(1,("Exiting.\n"));
1258                            exit(-1);
1259                        }
1260                        #endif // CONFIG_DEVMODE
1261                  }                  }
1262              }              }
1263    
1264              //FIXME: can be removed, just a sanity check for debugging              // jump point if a 'stealable' voice was found
1265              if (!itOldestVoice->IsActive()) dmsg(1,("gig::Engine: ERROR, tried to steal a voice which was not active !!!\n"));              stealable_voice_found:
1266    
1267                #if CONFIG_DEVMODE
1268                if (!itSelectedVoice->IsActive()) {
1269                    dmsg(1,("gig::Engine: ERROR, tried to steal a voice which was not active !!!\n"));
1270                    return -1;
1271                }
1272                #endif // CONFIG_DEVMODE
1273    
1274              // now kill the selected voice              // now kill the selected voice
1275              itOldestVoice->Kill(itNoteOnEvent);              itSelectedVoice->Kill(itNoteOnEvent);
1276              // remember which voice on which key we stole, so we can simply proceed for the next voice stealing  
1277              pEngineChannel->itLastStolenVoice = itOldestVoice;              --VoiceSpawnsLeft;
1278              pEngineChannel->iuiLastStolenKey = iuiOldestKey;  
1279                return 0; // success
1280            }
1281            else {
1282                dmsg(1,("Event pool emtpy!\n"));
1283                return -1;
1284          }          }
         else dmsg(1,("Event pool emtpy!\n"));  
1285      }      }
1286    
1287      /**      /**
# Line 794  namespace LinuxSampler { namespace gig { Line 1299  namespace LinuxSampler { namespace gig {
1299    
1300              uint keygroup = itVoice->KeyGroup;              uint keygroup = itVoice->KeyGroup;
1301    
1302                // if the sample and dimension region belong to an
1303                // instrument that is unloaded, tell the disk thread to
1304                // release them
1305                if (itVoice->Orphan) {
1306                    pDiskThread->OrderDeletionOfDimreg(itVoice->pDimRgn);
1307                }
1308    
1309              // free the voice object              // free the voice object
1310              pVoicePool->free(itVoice);              pVoicePool->free(itVoice);
1311    
# Line 835  namespace LinuxSampler { namespace gig { Line 1347  namespace LinuxSampler { namespace gig {
1347      void Engine::ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlChangeEvent) {      void Engine::ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlChangeEvent) {
1348          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));
1349    
1350            // update controller value in the engine channel's controller table
1351            pEngineChannel->ControllerTable[itControlChangeEvent->Param.CC.Controller] = itControlChangeEvent->Param.CC.Value;
1352    
1353            // handle hard coded MIDI controllers
1354          switch (itControlChangeEvent->Param.CC.Controller) {          switch (itControlChangeEvent->Param.CC.Controller) {
1355                case 5: { // portamento time
1356                    pEngineChannel->PortamentoTime = (float) itControlChangeEvent->Param.CC.Value / 127.0f * (float) CONFIG_PORTAMENTO_TIME_MAX + (float) CONFIG_PORTAMENTO_TIME_MIN;
1357                    break;
1358                }
1359              case 7: { // volume              case 7: { // volume
1360                  //TODO: not sample accurate yet                  //TODO: not sample accurate yet
1361                  pEngineChannel->GlobalVolume = (float) itControlChangeEvent->Param.CC.Value / 127.0f;                  pEngineChannel->MidiVolume = VolumeCurve[itControlChangeEvent->Param.CC.Value];
1362                    pEngineChannel->bStatusChanged = true; // engine channel status has changed, so set notify flag
1363                  break;                  break;
1364              }              }
1365              case 10: { // panpot              case 10: { // panpot
1366                  //TODO: not sample accurate yet                  //TODO: not sample accurate yet
1367                  const int pan = (int) itControlChangeEvent->Param.CC.Value - 64;                  pEngineChannel->GlobalPanLeft  = PanCurve[128 - itControlChangeEvent->Param.CC.Value];
1368                  pEngineChannel->GlobalPanLeft  = 1.0f - float(RTMath::Max(pan, 0)) /  63.0f;                  pEngineChannel->GlobalPanRight = PanCurve[itControlChangeEvent->Param.CC.Value];
                 pEngineChannel->GlobalPanRight = 1.0f - float(RTMath::Min(pan, 0)) / -64.0f;  
1369                  break;                  break;
1370              }              }
1371              case 64: { // sustain              case 64: { // sustain
1372                  if (itControlChangeEvent->Param.CC.Value >= 64 && !pEngineChannel->SustainPedal) {                  if (itControlChangeEvent->Param.CC.Value >= 64 && !pEngineChannel->SustainPedal) {
1373                      dmsg(4,("PEDAL DOWN\n"));                      dmsg(4,("DAMPER (RIGHT) PEDAL DOWN\n"));
1374                      pEngineChannel->SustainPedal = true;                      pEngineChannel->SustainPedal = true;
1375    
1376                        #if !CONFIG_PROCESS_MUTED_CHANNELS
1377                        if (pEngineChannel->GetMute()) return; // skip if sampler channel is muted
1378                        #endif
1379    
1380                      // cancel release process of voices if necessary                      // cancel release process of voices if necessary
1381                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1382                      if (iuiKey) {                      for (; iuiKey; ++iuiKey) {
1383                          itControlChangeEvent->Type = Event::type_cancel_release; // transform event type                          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1384                          while (iuiKey) {                          if (!pKey->KeyPressed) {
1385                              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];                              RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
1386                              ++iuiKey;                              if (itNewEvent) {
1387                              if (!pKey->KeyPressed) {                                  *itNewEvent = *itControlChangeEvent; // copy event to the key's own event list
1388                                  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"));  
1389                              }                              }
1390                                else dmsg(1,("Event pool emtpy!\n"));
1391                          }                          }
1392                      }                      }
1393                  }                  }
1394                  if (itControlChangeEvent->Param.CC.Value < 64 && pEngineChannel->SustainPedal) {                  if (itControlChangeEvent->Param.CC.Value < 64 && pEngineChannel->SustainPedal) {
1395                      dmsg(4,("PEDAL UP\n"));                      dmsg(4,("DAMPER (RIGHT) PEDAL UP\n"));
1396                      pEngineChannel->SustainPedal = false;                      pEngineChannel->SustainPedal = false;
1397    
1398                        #if !CONFIG_PROCESS_MUTED_CHANNELS
1399                        if (pEngineChannel->GetMute()) return; // skip if sampler channel is muted
1400                        #endif
1401    
1402                      // release voices if their respective key is not pressed                      // release voices if their respective key is not pressed
1403                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();                      RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1404                      if (iuiKey) {                      for (; iuiKey; ++iuiKey) {
1405                          itControlChangeEvent->Type = Event::type_release; // transform event type                          midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1406                          while (iuiKey) {                          if (!pKey->KeyPressed && ShouldReleaseVoice(pEngineChannel, *iuiKey)) {
1407                              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];                              RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
1408                              ++iuiKey;                              if (itNewEvent) {
1409                              if (!pKey->KeyPressed) {                                  *itNewEvent = *itControlChangeEvent; // copy event to the key's own event list
1410                                  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"));  
1411                              }                              }
1412                                else dmsg(1,("Event pool emtpy!\n"));
1413                          }                          }
1414                      }                      }
1415                  }                  }
1416                  break;                  break;
1417              }              }
1418          }              case 65: { // portamento on / off
1419                    KillAllVoices(pEngineChannel, itControlChangeEvent);
1420                    pEngineChannel->PortamentoMode = itControlChangeEvent->Param.CC.Value >= 64;
1421                    break;
1422                }
1423                case 66: { // sostenuto
1424                    if (itControlChangeEvent->Param.CC.Value >= 64 && !pEngineChannel->SostenutoPedal) {
1425                        dmsg(4,("SOSTENUTO (CENTER) PEDAL DOWN\n"));
1426                        pEngineChannel->SostenutoPedal = true;
1427    
1428                        #if !CONFIG_PROCESS_MUTED_CHANNELS
1429                        if (pEngineChannel->GetMute()) return; // skip if sampler channel is muted
1430                        #endif
1431    
1432          // update controller value in the engine's controller table                      SostenutoKeyCount = 0;
1433          pEngineChannel->ControllerTable[itControlChangeEvent->Param.CC.Controller] = itControlChangeEvent->Param.CC.Value;                      // Remeber the pressed keys
1434                        RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1435                        for (; iuiKey; ++iuiKey) {
1436                            midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1437                            if (pKey->KeyPressed && SostenutoKeyCount < 128) SostenutoKeys[SostenutoKeyCount++] = *iuiKey;
1438                        }
1439                    }
1440                    if (itControlChangeEvent->Param.CC.Value < 64 && pEngineChannel->SostenutoPedal) {
1441                        dmsg(4,("SOSTENUTO (CENTER) PEDAL UP\n"));
1442                        pEngineChannel->SostenutoPedal = false;
1443    
1444                        #if !CONFIG_PROCESS_MUTED_CHANNELS
1445                        if (pEngineChannel->GetMute()) return; // skip if sampler channel is muted
1446                        #endif
1447    
1448                        // release voices if the damper pedal is up and their respective key is not pressed
1449                        for (int i = 0; i < SostenutoKeyCount; i++) {
1450                            midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[SostenutoKeys[i]];
1451                            if (!pKey->KeyPressed && !pEngineChannel->SustainPedal) {
1452                                RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
1453                                if (itNewEvent) {
1454                                    *itNewEvent = *itControlChangeEvent; // copy event to the key's own event list
1455                                    itNewEvent->Type = Event::type_release; // transform event type
1456                                }
1457                                else dmsg(1,("Event pool emtpy!\n"));
1458                            }
1459                        }
1460                    }
1461                    break;
1462                }
1463    
1464    
1465                // Channel Mode Messages
1466    
1467          // move event from the unsorted event list to the control change event list              case 120: { // all sound off
1468          itControlChangeEvent.moveToEndOf(pCCEvents);                  KillAllVoices(pEngineChannel, itControlChangeEvent);
1469                    break;
1470                }
1471                case 121: { // reset all controllers
1472                    pEngineChannel->ResetControllers();
1473                    break;
1474                }
1475                case 123: { // all notes off
1476                    #if CONFIG_PROCESS_ALL_NOTES_OFF
1477                    ReleaseAllVoices(pEngineChannel, itControlChangeEvent);
1478                    #endif // CONFIG_PROCESS_ALL_NOTES_OFF
1479                    break;
1480                }
1481                case 126: { // mono mode on
1482                    KillAllVoices(pEngineChannel, itControlChangeEvent);
1483                    pEngineChannel->SoloMode = true;
1484                    break;
1485                }
1486                case 127: { // poly mode on
1487                    KillAllVoices(pEngineChannel, itControlChangeEvent);
1488                    pEngineChannel->SoloMode = false;
1489                    break;
1490                }
1491            }
1492    
1493            // handle FX send controllers
1494            if (!pEngineChannel->fxSends.empty()) {
1495                for (int iFxSend = 0; iFxSend < pEngineChannel->GetFxSendCount(); iFxSend++) {
1496                    FxSend* pFxSend = pEngineChannel->GetFxSend(iFxSend);
1497                    if (pFxSend->MidiController() == itControlChangeEvent->Param.CC.Controller)
1498                        pFxSend->SetLevel(itControlChangeEvent->Param.CC.Value);
1499                }
1500            }
1501      }      }
1502    
1503      /**      /**
# Line 904  namespace LinuxSampler { namespace gig { Line 1506  namespace LinuxSampler { namespace gig {
1506       *  @param itSysexEvent - sysex data size and time stamp of the sysex event       *  @param itSysexEvent - sysex data size and time stamp of the sysex event
1507       */       */
1508      void Engine::ProcessSysex(Pool<Event>::Iterator& itSysexEvent) {      void Engine::ProcessSysex(Pool<Event>::Iterator& itSysexEvent) {
1509          RingBuffer<uint8_t>::NonVolatileReader reader = pSysexBuffer->get_non_volatile_reader();          RingBuffer<uint8_t,false>::NonVolatileReader reader = pSysexBuffer->get_non_volatile_reader();
1510    
1511          uint8_t exclusive_status, id;          uint8_t exclusive_status, id;
1512          if (!reader.pop(&exclusive_status)) goto free_sysex_data;          if (!reader.pop(&exclusive_status)) goto free_sysex_data;
# Line 913  namespace LinuxSampler { namespace gig { Line 1515  namespace LinuxSampler { namespace gig {
1515    
1516          switch (id) {          switch (id) {
1517              case 0x41: { // Roland              case 0x41: { // Roland
1518                    dmsg(3,("Roland Sysex\n"));
1519                  uint8_t device_id, model_id, cmd_id;                  uint8_t device_id, model_id, cmd_id;
1520                  if (!reader.pop(&device_id)) goto free_sysex_data;                  if (!reader.pop(&device_id)) goto free_sysex_data;
1521                  if (!reader.pop(&model_id))  goto free_sysex_data;                  if (!reader.pop(&model_id))  goto free_sysex_data;
# Line 922  namespace LinuxSampler { namespace gig { Line 1525  namespace LinuxSampler { namespace gig {
1525    
1526                  // command address                  // command address
1527                  uint8_t addr[3]; // 2 byte addr MSB, followed by 1 byte addr LSB)                  uint8_t addr[3]; // 2 byte addr MSB, followed by 1 byte addr LSB)
1528                  const RingBuffer<uint8_t>::NonVolatileReader checksum_reader = reader; // so we can calculate the check sum later                  const RingBuffer<uint8_t,false>::NonVolatileReader checksum_reader = reader; // so we can calculate the check sum later
1529                  if (reader.read(&addr[0], 3) != 3) goto free_sysex_data;                  if (reader.read(&addr[0], 3) != 3) goto free_sysex_data;
1530                  if (addr[0] == 0x40 && addr[1] == 0x00) { // System Parameters                  if (addr[0] == 0x40 && addr[1] == 0x00) { // System Parameters
1531                        dmsg(3,("\tSystem Parameter\n"));
1532                  }                  }
1533                  else if (addr[0] == 0x40 && addr[1] == 0x01) { // Common Parameters                  else if (addr[0] == 0x40 && addr[1] == 0x01) { // Common Parameters
1534                        dmsg(3,("\tCommon Parameter\n"));
1535                  }                  }
1536                  else if (addr[0] == 0x40 && (addr[1] & 0xf0) == 0x10) { // Part Parameters (1)                  else if (addr[0] == 0x40 && (addr[1] & 0xf0) == 0x10) { // Part Parameters (1)
1537                      switch (addr[3]) {                      dmsg(3,("\tPart Parameter\n"));
1538                        switch (addr[2]) {
1539                          case 0x40: { // scale tuning                          case 0x40: { // scale tuning
1540                                dmsg(3,("\t\tScale Tuning\n"));
1541                              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
1542                              if (reader.read(&scale_tunes[0], 12) != 12) goto free_sysex_data;                              if (reader.read(&scale_tunes[0], 12) != 12) goto free_sysex_data;
1543                              uint8_t checksum;                              uint8_t checksum;
1544                              if (!reader.pop(&checksum))                      goto free_sysex_data;                              if (!reader.pop(&checksum)) goto free_sysex_data;
1545                              if (GSCheckSum(checksum_reader, 12) != checksum) goto free_sysex_data;                              #if CONFIG_ASSERT_GS_SYSEX_CHECKSUM
1546                                if (GSCheckSum(checksum_reader, 12)) goto free_sysex_data;
1547                                #endif // CONFIG_ASSERT_GS_SYSEX_CHECKSUM
1548                              for (int i = 0; i < 12; i++) scale_tunes[i] -= 64;                              for (int i = 0; i < 12; i++) scale_tunes[i] -= 64;
1549                              AdjustScale((int8_t*) scale_tunes);                              AdjustScale((int8_t*) scale_tunes);
1550                                dmsg(3,("\t\t\tNew scale applied.\n"));
1551                              break;                              break;
1552                          }                          }
1553                      }                      }
# Line 962  namespace LinuxSampler { namespace gig { Line 1572  namespace LinuxSampler { namespace gig {
1572       *                     question       *                     question
1573       * @param DataSize   - size of the GS message data (in bytes)       * @param DataSize   - size of the GS message data (in bytes)
1574       */       */
1575      uint8_t Engine::GSCheckSum(const RingBuffer<uint8_t>::NonVolatileReader AddrReader, uint DataSize) {      uint8_t Engine::GSCheckSum(const RingBuffer<uint8_t,false>::NonVolatileReader AddrReader, uint DataSize) {
1576          RingBuffer<uint8_t>::NonVolatileReader reader = AddrReader;          RingBuffer<uint8_t,false>::NonVolatileReader reader = AddrReader;
1577          uint bytes = 3 /*addr*/ + DataSize;          uint bytes = 3 /*addr*/ + DataSize;
1578          uint8_t addr_and_data[bytes];          uint8_t addr_and_data[bytes];
1579          reader.read(&addr_and_data[0], bytes);          reader.read(&addr_and_data[0], bytes);
# Line 982  namespace LinuxSampler { namespace gig { Line 1592  namespace LinuxSampler { namespace gig {
1592      }      }
1593    
1594      /**      /**
1595       * Initialize the parameter sequence for the modulation destination given by       * Releases all voices on an engine channel. All voices will go into
1596       * by 'dst' with the constant value given by val.       * the release stage and thus it might take some time (e.g. dependant to
1597         * their envelope release time) until they actually die.
1598         *
1599         * @param pEngineChannel - engine channel on which all voices should be released
1600         * @param itReleaseEvent - event which caused this releasing of all voices
1601         */
1602        void Engine::ReleaseAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itReleaseEvent) {
1603            RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1604            while (iuiKey) {
1605                midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1606                ++iuiKey;
1607                // append a 'release' event to the key's own event list
1608                RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
1609                if (itNewEvent) {
1610                    *itNewEvent = *itReleaseEvent; // copy original event (to the key's event list)
1611                    itNewEvent->Type = Event::type_release; // transform event type
1612                }
1613                else dmsg(1,("Event pool emtpy!\n"));
1614            }
1615        }
1616    
1617        /**
1618         * Kills all voices on an engine channel as soon as possible. Voices
1619         * won't get into release state, their volume level will be ramped down
1620         * as fast as possible.
1621         *
1622         * @param pEngineChannel - engine channel on which all voices should be killed
1623         * @param itKillEvent    - event which caused this killing of all voices
1624       */       */
1625      void Engine::ResetSynthesisParameters(Event::destination_t dst, float val) {      void Engine::KillAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itKillEvent) {
1626          int maxsamples = pAudioOutputDevice->MaxSamplesPerCycle();          RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1627          float* m = &pSynthesisParameters[dst][0];          RTList<uint>::Iterator end    = pEngineChannel->pActiveKeys->end();
1628          for (int i = 0; i < maxsamples; i += 4) {          while (iuiKey != end) { // iterate through all active keys
1629             m[i]   = val;              midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1630             m[i+1] = val;              ++iuiKey;
1631             m[i+2] = val;              RTList<Voice>::Iterator itVoice     = pKey->pActiveVoices->first();
1632             m[i+3] = val;              RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
1633                for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
1634                    itVoice->Kill(itKillEvent);
1635                    --VoiceSpawnsLeft; //FIXME: just a temporary workaround, we should check the cause in StealVoice() instead
1636                }
1637          }          }
1638      }      }
1639    
1640        /**
1641         * Determines whether the specified voice should be released.
1642         *
1643         * @param pEngineChannel - The engine channel on which the voice should be checked
1644         * @param Key - The key number
1645         * @returns true if the specified should be released, false otherwise.
1646         */
1647        bool Engine::ShouldReleaseVoice(EngineChannel* pEngineChannel, int Key) {
1648            if (pEngineChannel->SustainPedal) return false;
1649    
1650            if (pEngineChannel->SostenutoPedal) {
1651                for (int i = 0; i < SostenutoKeyCount; i++)
1652                    if (Key == SostenutoKeys[i]) return false;
1653            }
1654    
1655            return true;
1656        }
1657    
1658      uint Engine::VoiceCount() {      uint Engine::VoiceCount() {
1659          return ActiveVoiceCount;          return ActiveVoiceCount;
1660      }      }
# Line 1025  namespace LinuxSampler { namespace gig { Line 1684  namespace LinuxSampler { namespace gig {
1684      }      }
1685    
1686      String Engine::EngineName() {      String Engine::EngineName() {
1687          return "GigEngine";          return LS_GIG_ENGINE_NAME;
1688      }      }
1689    
1690      String Engine::Description() {      String Engine::Description() {
# Line 1033  namespace LinuxSampler { namespace gig { Line 1692  namespace LinuxSampler { namespace gig {
1692      }      }
1693    
1694      String Engine::Version() {      String Engine::Version() {
1695          String s = "$Revision: 1.30 $";          String s = "$Revision: 1.72 $";
1696          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
1697      }      }
1698    
1699        InstrumentManager* Engine::GetInstrumentManager() {
1700            return &instruments;
1701        }
1702    
1703        // static constant initializers
1704        const float* Engine::VolumeCurve(InitVolumeCurve());
1705        const float* Engine::PanCurve(InitPanCurve());
1706        const float* Engine::CrossfadeCurve(InitCrossfadeCurve());
1707    
1708        float* Engine::InitVolumeCurve() {
1709            // line-segment approximation
1710            const float segments[] = {
1711                0, 0, 2, 0.0046, 16, 0.016, 31, 0.051, 45, 0.115, 54.5, 0.2,
1712                64.5, 0.39, 74, 0.74, 92, 1.03, 114, 1.94, 119.2, 2.2, 127, 2.2
1713            };
1714            return InitCurve(segments);
1715        }
1716    
1717        float* Engine::InitPanCurve() {
1718            // line-segment approximation
1719            const float segments[] = {
1720                0, 0, 1, 0,
1721                2, 0.05, 31.5, 0.7, 51, 0.851, 74.5, 1.12,
1722                127, 1.41, 128, 1.41
1723            };
1724            return InitCurve(segments, 129);
1725        }
1726    
1727        float* Engine::InitCrossfadeCurve() {
1728            // line-segment approximation
1729            const float segments[] = {
1730                0, 0, 1, 0.03, 10, 0.1, 51, 0.58, 127, 1
1731            };
1732            return InitCurve(segments);
1733        }
1734    
1735        float* Engine::InitCurve(const float* segments, int size) {
1736            float* y = new float[size];
1737            for (int x = 0 ; x < size ; x++) {
1738                if (x > segments[2]) segments += 2;
1739                y[x] = segments[1] + (x - segments[0]) *
1740                    (segments[3] - segments[1]) / (segments[2] - segments[0]);
1741            }
1742            return y;
1743        }
1744    
1745        /**
1746         * Changes the instrument for an engine channel.
1747         *
1748         * @param pEngineChannel - engine channel on which the instrument
1749         *                         should be changed
1750         * @param pInstrument - new instrument
1751         * @returns a list of dimension regions from the old instrument
1752         *          that are still in use
1753         */
1754        ::gig::DimensionRegion** Engine::ChangeInstrument(EngineChannel* pEngineChannel, ::gig::Instrument* pInstrument) {
1755            instrument_change_command_t command;
1756            command.pEngineChannel = pEngineChannel;
1757            command.pInstrument = pInstrument;
1758            InstrumentChangeQueue->push(&command);
1759    
1760            // wait for the audio thread to confirm that the instrument
1761            // change has been done
1762            instrument_change_reply_t reply;
1763            while (InstrumentChangeReplyQueue->pop(&reply) == 0) {
1764                usleep(10000);
1765            }
1766            return pDimRegionsInUse;
1767        }
1768    
1769  }} // namespace LinuxSampler::gig  }} // namespace LinuxSampler::gig

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

  ViewVC Help
Powered by ViewVC