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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 630 - (hide annotations) (download)
Sat Jun 11 14:51:49 2005 UTC (18 years, 10 months ago) by persson
File size: 55620 byte(s)
* volume of release triggered samples now depends on note-on velocity,
  note length and gig parameter "release trigger decay" instead of
  note-off velocity.

1 schoenebeck 53 /***************************************************************************
2     * *
3     * LinuxSampler - modular, streaming capable sampler *
4     * *
5 schoenebeck 56 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 schoenebeck 411 * Copyright (C) 2005 Christian Schoenebeck *
7 schoenebeck 53 * *
8     * 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 *
10     * the Free Software Foundation; either version 2 of the License, or *
11     * (at your option) any later version. *
12     * *
13     * This program is distributed in the hope that it will be useful, *
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16     * GNU General Public License for more details. *
17     * *
18     * You should have received a copy of the GNU General Public License *
19     * along with this program; if not, write to the Free Software *
20     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21     * MA 02111-1307 USA *
22     ***************************************************************************/
23    
24     #include <sstream>
25     #include "DiskThread.h"
26     #include "Voice.h"
27 schoenebeck 285 #include "EGADSR.h"
28 schoenebeck 420 #include "../EngineFactory.h"
29 schoenebeck 53
30     #include "Engine.h"
31    
32 schoenebeck 361 #if defined(__APPLE__)
33     # include <stdlib.h>
34     #else
35     # include <malloc.h>
36     #endif
37    
38 schoenebeck 53 namespace LinuxSampler { namespace gig {
39    
40 schoenebeck 411 InstrumentResourceManager Engine::instruments;
41 schoenebeck 53
42 schoenebeck 411 std::map<AudioOutputDevice*,Engine*> Engine::engines;
43    
44 schoenebeck 412 /**
45     * Get a gig::Engine object for the given gig::EngineChannel and the
46     * given AudioOutputDevice. All engine channels which are connected to
47     * the same audio output device will use the same engine instance. This
48     * method will be called by a gig::EngineChannel whenever it's
49     * connecting to a audio output device.
50     *
51     * @param pChannel - engine channel which acquires an engine object
52     * @param pDevice - the audio output device \a pChannel is connected to
53     */
54 schoenebeck 411 Engine* Engine::AcquireEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice) {
55 schoenebeck 412 Engine* pEngine = NULL;
56     // check if there's already an engine for the given audio output device
57 schoenebeck 411 if (engines.count(pDevice)) {
58 schoenebeck 412 dmsg(4,("Using existing gig::Engine.\n"));
59 persson 438 pEngine = engines[pDevice];
60 schoenebeck 412 } else { // create a new engine (and disk thread) instance for the given audio output device
61     dmsg(4,("Creating new gig::Engine.\n"));
62 schoenebeck 420 pEngine = (Engine*) EngineFactory::Create("gig");
63 schoenebeck 411 pEngine->Connect(pDevice);
64 persson 438 engines[pDevice] = pEngine;
65 schoenebeck 411 }
66 schoenebeck 412 // register engine channel to the engine instance
67 schoenebeck 460 pEngine->engineChannels.add(pChannel);
68     // remember index in the ArrayList
69     pChannel->iEngineIndexSelf = pEngine->engineChannels.size() - 1;
70 schoenebeck 412 dmsg(4,("This gig::Engine has now %d EngineChannels.\n",pEngine->engineChannels.size()));
71 schoenebeck 411 return pEngine;
72     }
73    
74 schoenebeck 412 /**
75     * Once an engine channel is disconnected from an audio output device,
76     * it wil immediately call this method to unregister itself from the
77     * engine instance and if that engine instance is not used by any other
78     * engine channel anymore, then that engine instance will be destroyed.
79     *
80     * @param pChannel - engine channel which wants to disconnect from it's
81     * engine instance
82     * @param pDevice - audio output device \a pChannel was connected to
83     */
84 schoenebeck 411 void Engine::FreeEngine(LinuxSampler::gig::EngineChannel* pChannel, AudioOutputDevice* pDevice) {
85 schoenebeck 412 dmsg(4,("Disconnecting EngineChannel from gig::Engine.\n"));
86 schoenebeck 411 Engine* pEngine = engines[pDevice];
87 schoenebeck 412 // unregister EngineChannel from the Engine instance
88     pEngine->engineChannels.remove(pChannel);
89     // if the used Engine instance is not used anymore, then destroy it
90     if (pEngine->engineChannels.empty()) {
91     pDevice->Disconnect(pEngine);
92     engines.erase(pDevice);
93     delete pEngine;
94     dmsg(4,("Destroying gig::Engine.\n"));
95     }
96     else dmsg(4,("This gig::Engine has now %d EngineChannels.\n",pEngine->engineChannels.size()));
97 schoenebeck 411 }
98    
99 schoenebeck 473 /**
100     * Constructor
101     */
102 schoenebeck 53 Engine::Engine() {
103     pAudioOutputDevice = NULL;
104     pDiskThread = NULL;
105     pEventGenerator = NULL;
106 schoenebeck 554 pSysexBuffer = new RingBuffer<uint8_t>(CONFIG_SYSEX_BUFFER_SIZE, 0);
107     pEventQueue = new RingBuffer<Event>(CONFIG_MAX_EVENTS_PER_FRAGMENT, 0);
108     pEventPool = new Pool<Event>(CONFIG_MAX_EVENTS_PER_FRAGMENT);
109     pVoicePool = new Pool<Voice>(CONFIG_MAX_VOICES);
110 schoenebeck 271 pVoiceStealingQueue = new RTList<Event>(pEventPool);
111 schoenebeck 460 pGlobalEvents = new RTList<Event>(pEventPool);
112 schoenebeck 271 for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {
113     iterVoice->SetEngine(this);
114 schoenebeck 53 }
115     pVoicePool->clear();
116    
117     pSynthesisParameters[0] = NULL; // we allocate when an audio device is connected
118 schoenebeck 80 pBasicFilterParameters = NULL;
119     pMainFilterParameters = NULL;
120 schoenebeck 123
121 schoenebeck 53 ResetInternal();
122     }
123    
124 schoenebeck 473 /**
125     * Destructor
126     */
127 schoenebeck 53 Engine::~Engine() {
128     if (pDiskThread) {
129 senkov 329 dmsg(1,("Stopping disk thread..."));
130 schoenebeck 53 pDiskThread->StopThread();
131     delete pDiskThread;
132 senkov 329 dmsg(1,("OK\n"));
133 schoenebeck 53 }
134     if (pEventQueue) delete pEventQueue;
135     if (pEventPool) delete pEventPool;
136 schoenebeck 411 if (pVoicePool) {
137     pVoicePool->clear();
138     delete pVoicePool;
139     }
140 schoenebeck 53 if (pEventGenerator) delete pEventGenerator;
141 schoenebeck 80 if (pMainFilterParameters) delete[] pMainFilterParameters;
142     if (pBasicFilterParameters) delete[] pBasicFilterParameters;
143 schoenebeck 319 if (pSynthesisParameters[0]) free(pSynthesisParameters[0]);
144 schoenebeck 250 if (pVoiceStealingQueue) delete pVoiceStealingQueue;
145 schoenebeck 411 if (pSysexBuffer) delete pSysexBuffer;
146 schoenebeck 420 EngineFactory::Destroy(this);
147 schoenebeck 53 }
148    
149     void Engine::Enable() {
150     dmsg(3,("gig::Engine: enabling\n"));
151     EngineDisabled.PushAndUnlock(false, 2); // set condition object 'EngineDisabled' to false (wait max. 2s)
152 schoenebeck 64 dmsg(3,("gig::Engine: enabled (val=%d)\n", EngineDisabled.GetUnsafe()));
153 schoenebeck 53 }
154    
155     void Engine::Disable() {
156     dmsg(3,("gig::Engine: disabling\n"));
157     bool* pWasDisabled = EngineDisabled.PushAndUnlock(true, 2); // wait max. 2s
158     if (!pWasDisabled) dmsg(3,("gig::Engine warning: Timeout waiting to disable engine.\n"));
159     }
160    
161     void Engine::DisableAndLock() {
162     dmsg(3,("gig::Engine: disabling\n"));
163     bool* pWasDisabled = EngineDisabled.Push(true, 2); // wait max. 2s
164     if (!pWasDisabled) dmsg(3,("gig::Engine warning: Timeout waiting to disable engine.\n"));
165     }
166    
167     /**
168     * Reset all voices and disk thread and clear input event queue and all
169     * control and status variables.
170     */
171     void Engine::Reset() {
172     DisableAndLock();
173     ResetInternal();
174     Enable();
175     }
176    
177     /**
178     * Reset all voices and disk thread and clear input event queue and all
179     * control and status variables. This method is not thread safe!
180     */
181     void Engine::ResetInternal() {
182     ActiveVoiceCount = 0;
183     ActiveVoiceCountMax = 0;
184    
185 schoenebeck 250 // reset voice stealing parameters
186     pVoiceStealingQueue->clear();
187 schoenebeck 460 itLastStolenVoice = RTList<Voice>::Iterator();
188     iuiLastStolenKey = RTList<uint>::Iterator();
189     pLastStolenChannel = NULL;
190 schoenebeck 250
191 schoenebeck 244 // reset to normal chromatic scale (means equal temper)
192     memset(&ScaleTuning[0], 0x00, 12);
193    
194 schoenebeck 53 // reset all voices
195 schoenebeck 271 for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {
196     iterVoice->Reset();
197 schoenebeck 53 }
198     pVoicePool->clear();
199    
200     // reset disk thread
201     if (pDiskThread) pDiskThread->Reset();
202    
203     // delete all input events
204     pEventQueue->init();
205 persson 438 }
206 schoenebeck 53
207 schoenebeck 473 /**
208     * Connect this engine instance with the given audio output device.
209     * This method will be called when an Engine instance is created.
210     * All of the engine's data structures which are dependant to the used
211     * audio output device / driver will be (re)allocated and / or
212     * adjusted appropriately.
213     *
214     * @param pAudioOut - audio output device to connect to
215     */
216 schoenebeck 53 void Engine::Connect(AudioOutputDevice* pAudioOut) {
217     pAudioOutputDevice = pAudioOut;
218    
219     ResetInternal();
220    
221     // inform audio driver for the need of two channels
222     try {
223     pAudioOutputDevice->AcquireChannels(2); // gig engine only stereo
224     }
225     catch (AudioOutputException e) {
226     String msg = "Audio output device unable to provide 2 audio channels, cause: " + e.Message();
227     throw LinuxSamplerException(msg);
228     }
229 persson 438
230 schoenebeck 460 this->MaxSamplesPerCycle = pAudioOutputDevice->MaxSamplesPerCycle();
231     this->SampleRate = pAudioOutputDevice->SampleRate();
232 schoenebeck 225
233 schoenebeck 285 // FIXME: audio drivers with varying fragment sizes might be a problem here
234 schoenebeck 554 MaxFadeOutPos = MaxSamplesPerCycle - int(double(SampleRate) * CONFIG_EG_MIN_RELEASE_TIME) - 1;
235 schoenebeck 285 if (MaxFadeOutPos < 0)
236 schoenebeck 554 throw LinuxSamplerException("CONFIG_EG_MIN_RELEASE_TIME too big for current audio fragment size / sampling rate!");
237 schoenebeck 285
238 schoenebeck 53 // (re)create disk thread
239     if (this->pDiskThread) {
240 senkov 329 dmsg(1,("Stopping disk thread..."));
241 schoenebeck 53 this->pDiskThread->StopThread();
242     delete this->pDiskThread;
243 senkov 329 dmsg(1,("OK\n"));
244 schoenebeck 53 }
245 schoenebeck 554 this->pDiskThread = new DiskThread(((pAudioOut->MaxSamplesPerCycle() << CONFIG_MAX_PITCH) << 1) + 6); //FIXME: assuming stereo
246 schoenebeck 53 if (!pDiskThread) {
247     dmsg(0,("gig::Engine new diskthread = NULL\n"));
248     exit(EXIT_FAILURE);
249     }
250    
251 schoenebeck 271 for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {
252     iterVoice->pDiskThread = this->pDiskThread;
253 schoenebeck 53 dmsg(3,("d"));
254     }
255     pVoicePool->clear();
256    
257     // (re)create event generator
258     if (pEventGenerator) delete pEventGenerator;
259     pEventGenerator = new EventGenerator(pAudioOut->SampleRate());
260    
261     // (re)allocate synthesis parameter matrix
262 schoenebeck 319 if (pSynthesisParameters[0]) free(pSynthesisParameters[0]);
263 schoenebeck 361
264     #if defined(__APPLE__)
265     pSynthesisParameters[0] = (float *) malloc(Event::destination_count * sizeof(float) * pAudioOut->MaxSamplesPerCycle());
266     #else
267 schoenebeck 319 pSynthesisParameters[0] = (float *) memalign(16,(Event::destination_count * sizeof(float) * pAudioOut->MaxSamplesPerCycle()));
268 schoenebeck 361 #endif
269 schoenebeck 53 for (int dst = 1; dst < Event::destination_count; dst++)
270     pSynthesisParameters[dst] = pSynthesisParameters[dst - 1] + pAudioOut->MaxSamplesPerCycle();
271    
272 schoenebeck 80 // (re)allocate biquad filter parameter sequence
273     if (pBasicFilterParameters) delete[] pBasicFilterParameters;
274     if (pMainFilterParameters) delete[] pMainFilterParameters;
275     pBasicFilterParameters = new biquad_param_t[pAudioOut->MaxSamplesPerCycle()];
276     pMainFilterParameters = new biquad_param_t[pAudioOut->MaxSamplesPerCycle()];
277    
278 schoenebeck 53 dmsg(1,("Starting disk thread..."));
279     pDiskThread->StartThread();
280     dmsg(1,("OK\n"));
281    
282 schoenebeck 271 for (RTList<Voice>::Iterator iterVoice = pVoicePool->allocAppend(); iterVoice == pVoicePool->last(); iterVoice = pVoicePool->allocAppend()) {
283     if (!iterVoice->pDiskThread) {
284 schoenebeck 53 dmsg(0,("Engine -> voice::trigger: !pDiskThread\n"));
285     exit(EXIT_FAILURE);
286     }
287     }
288     }
289    
290 schoenebeck 473 /**
291     * Clear all engine global event lists.
292     */
293 schoenebeck 412 void Engine::ClearEventLists() {
294 schoenebeck 460 pGlobalEvents->clear();
295 schoenebeck 412 }
296    
297 schoenebeck 53 /**
298 schoenebeck 460 * Copy all events from the engine's global input queue buffer to the
299     * engine's internal event list. This will be done at the beginning of
300     * each audio cycle (that is each RenderAudio() call) to distinguish
301     * all global events which have to be processed in the current audio
302     * cycle. These events are usually just SysEx messages. Every
303     * EngineChannel has it's own input event queue buffer and event list
304     * to handle common events like NoteOn, NoteOff and ControlChange
305     * events.
306 schoenebeck 412 *
307 schoenebeck 460 * @param Samples - number of sample points to be processed in the
308     * current audio cycle
309 schoenebeck 412 */
310 schoenebeck 460 void Engine::ImportEvents(uint Samples) {
311 schoenebeck 412 RingBuffer<Event>::NonVolatileReader eventQueueReader = pEventQueue->get_non_volatile_reader();
312     Event* pEvent;
313     while (true) {
314     // get next event from input event queue
315     if (!(pEvent = eventQueueReader.pop())) break;
316     // if younger event reached, ignore that and all subsequent ones for now
317     if (pEvent->FragmentPos() >= Samples) {
318     eventQueueReader--;
319     dmsg(2,("Younger Event, pos=%d ,Samples=%d!\n",pEvent->FragmentPos(),Samples));
320     pEvent->ResetFragmentPos();
321     break;
322     }
323     // copy event to internal event list
324 schoenebeck 460 if (pGlobalEvents->poolIsEmpty()) {
325 schoenebeck 412 dmsg(1,("Event pool emtpy!\n"));
326     break;
327     }
328 schoenebeck 460 *pGlobalEvents->allocAppend() = *pEvent;
329 schoenebeck 412 }
330     eventQueueReader.free(); // free all copied events from input queue
331 persson 438 }
332 schoenebeck 412
333     /**
334 schoenebeck 53 * Let this engine proceed to render the given amount of sample points. The
335     * calculated audio data of all voices of this engine will be placed into
336     * the engine's audio sum buffer which has to be copied and eventually be
337     * converted to the appropriate value range by the audio output class (e.g.
338     * AlsaIO or JackIO) right after.
339     *
340     * @param Samples - number of sample points to be rendered
341     * @returns 0 on success
342     */
343 schoenebeck 412 int Engine::RenderAudio(uint Samples) {
344 schoenebeck 53 dmsg(5,("RenderAudio(Samples=%d)\n", Samples));
345    
346 schoenebeck 412 // return if engine disabled
347 schoenebeck 53 if (EngineDisabled.Pop()) {
348     dmsg(5,("gig::Engine: engine disabled (val=%d)\n",EngineDisabled.GetUnsafe()));
349     return 0;
350     }
351    
352 schoenebeck 293 // update time of start and end of this audio fragment (as events' time stamps relate to this)
353     pEventGenerator->UpdateFragmentTime(Samples);
354    
355 schoenebeck 412 // get all events from the engine's global input event queue which belong to the current fragment
356     // (these are usually just SysEx messages)
357 schoenebeck 460 ImportEvents(Samples);
358 schoenebeck 412
359     // process engine global events (these are currently only MIDI System Exclusive messages)
360     {
361 schoenebeck 460 RTList<Event>::Iterator itEvent = pGlobalEvents->first();
362     RTList<Event>::Iterator end = pGlobalEvents->end();
363 schoenebeck 412 for (; itEvent != end; ++itEvent) {
364     switch (itEvent->Type) {
365     case Event::type_sysex:
366     dmsg(5,("Engine: Sysex received\n"));
367     ProcessSysex(itEvent);
368     break;
369     }
370     }
371 schoenebeck 53 }
372 schoenebeck 412
373 schoenebeck 554 // We only allow a maximum of CONFIG_MAX_VOICES voices to be stolen
374 schoenebeck 460 // in each audio fragment. All subsequent request for spawning new
375     // voices in the same audio fragment will be ignored.
376 schoenebeck 554 VoiceTheftsLeft = CONFIG_MAX_VOICES;
377 schoenebeck 460
378 schoenebeck 412 // reset internal voice counter (just for statistic of active voices)
379     ActiveVoiceCountTemp = 0;
380    
381 schoenebeck 460
382 schoenebeck 466 // handle events on all engine channels
383 schoenebeck 460 for (int i = 0; i < engineChannels.size(); i++) {
384     if (!engineChannels[i]->pInstrument) continue; // ignore if no instrument loaded
385     ProcessEvents(engineChannels[i], Samples);
386 schoenebeck 466 }
387    
388     // render all 'normal', active voices on all engine channels
389     for (int i = 0; i < engineChannels.size(); i++) {
390     if (!engineChannels[i]->pInstrument) continue; // ignore if no instrument loaded
391 schoenebeck 460 RenderActiveVoices(engineChannels[i], Samples);
392 schoenebeck 412 }
393    
394 schoenebeck 460 // now that all ordinary voices on ALL engine channels are rendered, render new stolen voices
395     RenderStolenVoices(Samples);
396    
397     // handle cleanup on all engine channels for the next audio fragment
398     for (int i = 0; i < engineChannels.size(); i++) {
399     if (!engineChannels[i]->pInstrument) continue; // ignore if no instrument loaded
400     PostProcess(engineChannels[i]);
401     }
402    
403    
404     // empty the engine's event list for the next audio fragment
405     ClearEventLists();
406    
407     // reset voice stealing for the next audio fragment
408     pVoiceStealingQueue->clear();
409     itLastStolenVoice = RTList<Voice>::Iterator();
410     iuiLastStolenKey = RTList<uint>::Iterator();
411     pLastStolenChannel = NULL;
412    
413 schoenebeck 412 // just some statistics about this engine instance
414     ActiveVoiceCount = ActiveVoiceCountTemp;
415     if (ActiveVoiceCount > ActiveVoiceCountMax) ActiveVoiceCountMax = ActiveVoiceCount;
416    
417 persson 630 FrameTime += Samples;
418    
419 schoenebeck 412 return 0;
420     }
421    
422 schoenebeck 473 /**
423     * Dispatch and handle all events in this audio fragment for the given
424     * engine channel.
425     *
426     * @param pEngineChannel - engine channel on which events should be
427     * processed
428     * @param Samples - amount of sample points to be processed in
429     * this audio fragment cycle
430     */
431 schoenebeck 460 void Engine::ProcessEvents(EngineChannel* pEngineChannel, uint Samples) {
432 schoenebeck 412 // get all events from the engine channels's input event queue which belong to the current fragment
433     // (these are the common events like NoteOn, NoteOff, ControlChange, etc.)
434 schoenebeck 460 pEngineChannel->ImportEvents(Samples);
435 schoenebeck 53
436     // process events
437 schoenebeck 271 {
438 schoenebeck 460 RTList<Event>::Iterator itEvent = pEngineChannel->pEvents->first();
439     RTList<Event>::Iterator end = pEngineChannel->pEvents->end();
440 schoenebeck 271 for (; itEvent != end; ++itEvent) {
441     switch (itEvent->Type) {
442     case Event::type_note_on:
443     dmsg(5,("Engine: Note on received\n"));
444 schoenebeck 412 ProcessNoteOn((EngineChannel*)itEvent->pEngineChannel, itEvent);
445 schoenebeck 271 break;
446     case Event::type_note_off:
447     dmsg(5,("Engine: Note off received\n"));
448 schoenebeck 412 ProcessNoteOff((EngineChannel*)itEvent->pEngineChannel, itEvent);
449 schoenebeck 271 break;
450     case Event::type_control_change:
451     dmsg(5,("Engine: MIDI CC received\n"));
452 schoenebeck 412 ProcessControlChange((EngineChannel*)itEvent->pEngineChannel, itEvent);
453 schoenebeck 271 break;
454     case Event::type_pitchbend:
455     dmsg(5,("Engine: Pitchbend received\n"));
456 schoenebeck 412 ProcessPitchbend((EngineChannel*)itEvent->pEngineChannel, itEvent);
457 schoenebeck 271 break;
458     }
459 schoenebeck 53 }
460     }
461 schoenebeck 460 }
462 schoenebeck 53
463 schoenebeck 473 /**
464     * Render all 'normal' voices (that is voices which were not stolen in
465     * this fragment) on the given engine channel.
466     *
467     * @param pEngineChannel - engine channel on which audio should be
468     * rendered
469     * @param Samples - amount of sample points to be rendered in
470     * this audio fragment cycle
471     */
472 schoenebeck 460 void Engine::RenderActiveVoices(EngineChannel* pEngineChannel, uint Samples) {
473     RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
474     RTList<uint>::Iterator end = pEngineChannel->pActiveKeys->end();
475     while (iuiKey != end) { // iterate through all active keys
476     midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
477     ++iuiKey;
478 schoenebeck 53
479 schoenebeck 460 RTList<Voice>::Iterator itVoice = pKey->pActiveVoices->first();
480     RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
481     for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
482     // now render current voice
483     itVoice->Render(Samples);
484     if (itVoice->IsActive()) ActiveVoiceCountTemp++; // still active
485     else { // voice reached end, is now inactive
486     FreeVoice(pEngineChannel, itVoice); // remove voice from the list of active voices
487 schoenebeck 53 }
488     }
489     }
490 schoenebeck 460 }
491 schoenebeck 53
492 schoenebeck 473 /**
493     * Render all stolen voices (only voices which were stolen in this
494     * fragment) on the given engine channel. Stolen voices are rendered
495     * after all normal voices have been rendered; this is needed to render
496     * audio of those voices which were selected for voice stealing until
497     * the point were the stealing (that is the take over of the voice)
498     * actually happened.
499     *
500     * @param pEngineChannel - engine channel on which audio should be
501     * rendered
502     * @param Samples - amount of sample points to be rendered in
503     * this audio fragment cycle
504     */
505 schoenebeck 460 void Engine::RenderStolenVoices(uint Samples) {
506     RTList<Event>::Iterator itVoiceStealEvent = pVoiceStealingQueue->first();
507     RTList<Event>::Iterator end = pVoiceStealingQueue->end();
508     for (; itVoiceStealEvent != end; ++itVoiceStealEvent) {
509     EngineChannel* pEngineChannel = (EngineChannel*) itVoiceStealEvent->pEngineChannel;
510     Pool<Voice>::Iterator itNewVoice =
511     LaunchVoice(pEngineChannel, itVoiceStealEvent, itVoiceStealEvent->Param.Note.Layer, itVoiceStealEvent->Param.Note.ReleaseTrigger, false);
512     if (itNewVoice) {
513     itNewVoice->Render(Samples);
514     if (itNewVoice->IsActive()) ActiveVoiceCountTemp++; // still active
515     else { // voice reached end, is now inactive
516     FreeVoice(pEngineChannel, itNewVoice); // remove voice from the list of active voices
517 schoenebeck 250 }
518     }
519 schoenebeck 460 else dmsg(1,("gig::Engine: ERROR, voice stealing didn't work out!\n"));
520 schoenebeck 473
521     // we need to clear the key's event list explicitly here in case key was never active
522     midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itVoiceStealEvent->Param.Note.Key];
523     pKey->VoiceTheftsQueued--;
524     if (!pKey->Active && !pKey->VoiceTheftsQueued) pKey->pEvents->clear();
525 schoenebeck 250 }
526 schoenebeck 460 }
527 schoenebeck 250
528 schoenebeck 473 /**
529     * Free all keys which have turned inactive in this audio fragment, from
530     * the list of active keys and clear all event lists on that engine
531     * channel.
532     *
533     * @param pEngineChannel - engine channel to cleanup
534     */
535 schoenebeck 460 void Engine::PostProcess(EngineChannel* pEngineChannel) {
536 schoenebeck 287 // free all keys which have no active voices left
537     {
538 schoenebeck 411 RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
539     RTList<uint>::Iterator end = pEngineChannel->pActiveKeys->end();
540 schoenebeck 287 while (iuiKey != end) { // iterate through all active keys
541 schoenebeck 411 midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
542 schoenebeck 287 ++iuiKey;
543 schoenebeck 411 if (pKey->pActiveVoices->isEmpty()) FreeKey(pEngineChannel, pKey);
544 schoenebeck 554 #if CONFIG_DEVMODE
545 schoenebeck 563 else { // just a sanity check for debugging
546 schoenebeck 287 RTList<Voice>::Iterator itVoice = pKey->pActiveVoices->first();
547     RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
548     for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
549     if (itVoice->itKillEvent) {
550     dmsg(1,("gig::Engine: ERROR, killed voice survived !!!\n"));
551     }
552     }
553     }
554 schoenebeck 554 #endif // CONFIG_DEVMODE
555 schoenebeck 287 }
556     }
557 schoenebeck 460
558     // empty the engine channel's own event lists
559     pEngineChannel->ClearEventLists();
560 schoenebeck 412 }
561 schoenebeck 287
562 schoenebeck 53 /**
563 schoenebeck 244 * Will be called by the MIDI input device whenever a MIDI system
564     * exclusive message has arrived.
565     *
566     * @param pData - pointer to sysex data
567     * @param Size - lenght of sysex data (in bytes)
568     */
569     void Engine::SendSysex(void* pData, uint Size) {
570 schoenebeck 246 Event event = pEventGenerator->CreateEvent();
571     event.Type = Event::type_sysex;
572     event.Param.Sysex.Size = Size;
573 schoenebeck 412 event.pEngineChannel = NULL; // as Engine global event
574 schoenebeck 244 if (pEventQueue->write_space() > 0) {
575     if (pSysexBuffer->write_space() >= Size) {
576     // copy sysex data to input buffer
577     uint toWrite = Size;
578     uint8_t* pPos = (uint8_t*) pData;
579     while (toWrite) {
580     const uint writeNow = RTMath::Min(toWrite, pSysexBuffer->write_space_to_end());
581     pSysexBuffer->write(pPos, writeNow);
582     toWrite -= writeNow;
583     pPos += writeNow;
584    
585     }
586     // finally place sysex event into input event queue
587     pEventQueue->push(&event);
588     }
589 schoenebeck 554 else dmsg(1,("Engine: Sysex message too large (%d byte) for input buffer (%d byte)!",Size,CONFIG_SYSEX_BUFFER_SIZE));
590 schoenebeck 244 }
591     else dmsg(1,("Engine: Input event queue full!"));
592     }
593    
594     /**
595 schoenebeck 53 * Assigns and triggers a new voice for the respective MIDI key.
596     *
597 schoenebeck 411 * @param pEngineChannel - engine channel on which this event occured on
598 schoenebeck 271 * @param itNoteOnEvent - key, velocity and time stamp of the event
599 schoenebeck 53 */
600 schoenebeck 411 void Engine::ProcessNoteOn(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
601 persson 438
602 schoenebeck 354 const int key = itNoteOnEvent->Param.Note.Key;
603    
604     // Change key dimension value if key is in keyswitching area
605 schoenebeck 411 {
606     const ::gig::Instrument* pInstrument = pEngineChannel->pInstrument;
607     if (key >= pInstrument->DimensionKeyRange.low && key <= pInstrument->DimensionKeyRange.high)
608     pEngineChannel->CurrentKeyDimension = ((key - pInstrument->DimensionKeyRange.low) * 128) /
609     (pInstrument->DimensionKeyRange.high - pInstrument->DimensionKeyRange.low + 1);
610     }
611 schoenebeck 354
612 schoenebeck 411 midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[key];
613 schoenebeck 354
614 schoenebeck 53 pKey->KeyPressed = true; // the MIDI key was now pressed down
615 persson 630 pKey->Velocity = itNoteOnEvent->Param.Note.Velocity;
616     pKey->NoteOnTime = FrameTime + itNoteOnEvent->FragmentPos(); // will be used to calculate note length
617 schoenebeck 53
618     // cancel release process of voices on this key if needed
619 schoenebeck 411 if (pKey->Active && !pEngineChannel->SustainPedal) {
620 schoenebeck 271 RTList<Event>::Iterator itCancelReleaseEvent = pKey->pEvents->allocAppend();
621     if (itCancelReleaseEvent) {
622     *itCancelReleaseEvent = *itNoteOnEvent; // copy event
623     itCancelReleaseEvent->Type = Event::type_cancel_release; // transform event type
624 schoenebeck 239 }
625     else dmsg(1,("Event pool emtpy!\n"));
626 schoenebeck 53 }
627    
628 schoenebeck 271 // move note on event to the key's own event list
629     RTList<Event>::Iterator itNoteOnEventOnKeyList = itNoteOnEvent.moveToEndOf(pKey->pEvents);
630    
631 schoenebeck 460 // allocate and trigger new voice(s) for the key
632     {
633     // first, get total amount of required voices (dependant on amount of layers)
634     ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOnEventOnKeyList->Param.Note.Key);
635     if (pRegion) {
636     int voicesRequired = pRegion->Layers;
637     // now launch the required amount of voices
638     for (int i = 0; i < voicesRequired; i++)
639     LaunchVoice(pEngineChannel, itNoteOnEventOnKeyList, i, false, true);
640     }
641     }
642 persson 438
643 schoenebeck 473 // if neither a voice was spawned or postponed then remove note on event from key again
644     if (!pKey->Active && !pKey->VoiceTheftsQueued)
645     pKey->pEvents->free(itNoteOnEventOnKeyList);
646    
647 persson 438 pKey->RoundRobinIndex++;
648 schoenebeck 53 }
649    
650     /**
651     * Releases the voices on the given key if sustain pedal is not pressed.
652     * If sustain is pressed, the release of the note will be postponed until
653     * sustain pedal will be released or voice turned inactive by itself (e.g.
654     * due to completion of sample playback).
655     *
656 schoenebeck 411 * @param pEngineChannel - engine channel on which this event occured on
657 schoenebeck 271 * @param itNoteOffEvent - key, velocity and time stamp of the event
658 schoenebeck 53 */
659 schoenebeck 411 void Engine::ProcessNoteOff(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOffEvent) {
660     midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itNoteOffEvent->Param.Note.Key];
661 schoenebeck 53
662     pKey->KeyPressed = false; // the MIDI key was now released
663    
664     // release voices on this key if needed
665 schoenebeck 411 if (pKey->Active && !pEngineChannel->SustainPedal) {
666 schoenebeck 271 itNoteOffEvent->Type = Event::type_release; // transform event type
667 schoenebeck 242
668 persson 497 // move event to the key's own event list
669     RTList<Event>::Iterator itNoteOffEventOnKeyList = itNoteOffEvent.moveToEndOf(pKey->pEvents);
670 schoenebeck 271
671 persson 497 // spawn release triggered voice(s) if needed
672 persson 630 if (pKey->ReleaseTrigger) {
673 persson 497 // first, get total amount of required voices (dependant on amount of layers)
674     ::gig::Region* pRegion = pEngineChannel->pInstrument->GetRegion(itNoteOffEventOnKeyList->Param.Note.Key);
675     if (pRegion) {
676     int voicesRequired = pRegion->Layers;
677 persson 630
678     // MIDI note-on velocity is used instead of note-off velocity
679     itNoteOffEventOnKeyList->Param.Note.Velocity = pKey->Velocity;
680    
681 persson 497 // now launch the required amount of voices
682     for (int i = 0; i < voicesRequired; i++)
683     LaunchVoice(pEngineChannel, itNoteOffEventOnKeyList, i, true, false); //FIXME: for the moment we don't perform voice stealing for release triggered samples
684     }
685     pKey->ReleaseTrigger = false;
686 schoenebeck 460 }
687 persson 497
688     // if neither a voice was spawned or postponed then remove note off event from key again
689     if (!pKey->Active && !pKey->VoiceTheftsQueued)
690     pKey->pEvents->free(itNoteOffEventOnKeyList);
691 schoenebeck 242 }
692 schoenebeck 53 }
693    
694     /**
695     * Moves pitchbend event from the general (input) event list to the pitch
696     * event list.
697     *
698 schoenebeck 411 * @param pEngineChannel - engine channel on which this event occured on
699 schoenebeck 271 * @param itPitchbendEvent - absolute pitch value and time stamp of the event
700 schoenebeck 53 */
701 schoenebeck 411 void Engine::ProcessPitchbend(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itPitchbendEvent) {
702     pEngineChannel->Pitch = itPitchbendEvent->Param.Pitch.Pitch; // store current pitch value
703 schoenebeck 460 itPitchbendEvent.moveToEndOf(pEngineChannel->pSynthesisEvents[Event::destination_vco]);
704 schoenebeck 53 }
705    
706     /**
707 schoenebeck 233 * Allocates and triggers a new voice. This method will usually be
708     * called by the ProcessNoteOn() method and by the voices itself
709     * (e.g. to spawn further voices on the same key for layered sounds).
710     *
711 schoenebeck 411 * @param pEngineChannel - engine channel on which this event occured on
712 schoenebeck 271 * @param itNoteOnEvent - key, velocity and time stamp of the event
713 schoenebeck 242 * @param iLayer - layer index for the new voice (optional - only
714     * in case of layered sounds of course)
715     * @param ReleaseTriggerVoice - if new voice is a release triggered voice
716     * (optional, default = false)
717 schoenebeck 250 * @param VoiceStealing - if voice stealing should be performed
718     * when there is no free voice
719     * (optional, default = true)
720     * @returns pointer to new voice or NULL if there was no free voice or
721 schoenebeck 354 * if the voice wasn't triggered (for example when no region is
722     * defined for the given key).
723 schoenebeck 233 */
724 schoenebeck 411 Pool<Voice>::Iterator Engine::LaunchVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent, int iLayer, bool ReleaseTriggerVoice, bool VoiceStealing) {
725     midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];
726 schoenebeck 233
727     // allocate a new voice for the key
728 schoenebeck 271 Pool<Voice>::Iterator itNewVoice = pKey->pActiveVoices->allocAppend();
729     if (itNewVoice) {
730 schoenebeck 233 // launch the new voice
731 schoenebeck 411 if (itNewVoice->Trigger(pEngineChannel, itNoteOnEvent, pEngineChannel->Pitch, pEngineChannel->pInstrument, iLayer, ReleaseTriggerVoice, VoiceStealing) < 0) {
732 schoenebeck 354 dmsg(4,("Voice not triggered\n"));
733 schoenebeck 271 pKey->pActiveVoices->free(itNewVoice);
734 schoenebeck 233 }
735 schoenebeck 239 else { // on success
736     uint** ppKeyGroup = NULL;
737 schoenebeck 271 if (itNewVoice->KeyGroup) { // if this voice / key belongs to a key group
738 schoenebeck 411 ppKeyGroup = &pEngineChannel->ActiveKeyGroups[itNewVoice->KeyGroup];
739 schoenebeck 239 if (*ppKeyGroup) { // if there's already an active key in that key group
740 schoenebeck 411 midi_key_info_t* pOtherKey = &pEngineChannel->pMIDIKeyInfo[**ppKeyGroup];
741 schoenebeck 239 // kill all voices on the (other) key
742 schoenebeck 271 RTList<Voice>::Iterator itVoiceToBeKilled = pOtherKey->pActiveVoices->first();
743     RTList<Voice>::Iterator end = pOtherKey->pActiveVoices->end();
744     for (; itVoiceToBeKilled != end; ++itVoiceToBeKilled) {
745     if (itVoiceToBeKilled->Type != Voice::type_release_trigger) itVoiceToBeKilled->Kill(itNoteOnEvent);
746 schoenebeck 242 }
747 schoenebeck 239 }
748     }
749     if (!pKey->Active) { // mark as active key
750     pKey->Active = true;
751 schoenebeck 411 pKey->itSelf = pEngineChannel->pActiveKeys->allocAppend();
752 schoenebeck 271 *pKey->itSelf = itNoteOnEvent->Param.Note.Key;
753 schoenebeck 239 }
754 schoenebeck 271 if (itNewVoice->KeyGroup) {
755     *ppKeyGroup = &*pKey->itSelf; // put key as the (new) active key to its key group
756 schoenebeck 239 }
757 schoenebeck 271 if (itNewVoice->Type == Voice::type_release_trigger_required) pKey->ReleaseTrigger = true; // mark key for the need of release triggered voice(s)
758     return itNewVoice; // success
759 schoenebeck 233 }
760     }
761 schoenebeck 285 else if (VoiceStealing) {
762 schoenebeck 460 // try to steal one voice
763 schoenebeck 473 int result = StealVoice(pEngineChannel, itNoteOnEvent);
764     if (!result) { // voice stolen successfully
765     // put note-on event into voice-stealing queue, so it will be reprocessed after killed voice died
766     RTList<Event>::Iterator itStealEvent = pVoiceStealingQueue->allocAppend();
767     if (itStealEvent) {
768     *itStealEvent = *itNoteOnEvent; // copy event
769     itStealEvent->Param.Note.Layer = iLayer;
770     itStealEvent->Param.Note.ReleaseTrigger = ReleaseTriggerVoice;
771     pKey->VoiceTheftsQueued++;
772     }
773     else dmsg(1,("Voice stealing queue full!\n"));
774 schoenebeck 285 }
775     }
776    
777 schoenebeck 271 return Pool<Voice>::Iterator(); // no free voice or error
778 schoenebeck 233 }
779    
780     /**
781 schoenebeck 250 * Will be called by LaunchVoice() method in case there are no free
782     * voices left. This method will select and kill one old voice for
783     * voice stealing and postpone the note-on event until the selected
784     * voice actually died.
785     *
786 schoenebeck 411 * @param pEngineChannel - engine channel on which this event occured on
787 schoenebeck 285 * @param itNoteOnEvent - key, velocity and time stamp of the event
788 schoenebeck 473 * @returns 0 on success, a value < 0 if no active voice could be picked for voice stealing
789 schoenebeck 250 */
790 schoenebeck 473 int Engine::StealVoice(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) {
791 schoenebeck 460 if (!VoiceTheftsLeft) {
792 schoenebeck 554 dmsg(1,("Max. voice thefts per audio fragment reached (you may raise CONFIG_MAX_VOICES).\n"));
793 schoenebeck 473 return -1;
794 schoenebeck 460 }
795 schoenebeck 271 if (!pEventPool->poolIsEmpty()) {
796 schoenebeck 250
797 schoenebeck 460 RTList<Voice>::Iterator itSelectedVoice;
798 schoenebeck 250
799     // Select one voice for voice stealing
800 schoenebeck 554 switch (CONFIG_VOICE_STEAL_ALGO) {
801 schoenebeck 250
802     // try to pick the oldest voice on the key where the new
803     // voice should be spawned, if there is no voice on that
804 schoenebeck 563 // key, or no voice left to kill, then procceed with
805 schoenebeck 250 // 'oldestkey' algorithm
806 schoenebeck 460 case voice_steal_algo_oldestvoiceonkey: {
807     midi_key_info_t* pSelectedKey = &pEngineChannel->pMIDIKeyInfo[itNoteOnEvent->Param.Note.Key];
808 schoenebeck 563 itSelectedVoice = pSelectedKey->pActiveVoices->first();
809     // proceed iterating if voice was created in this fragment cycle
810     while (itSelectedVoice && !itSelectedVoice->hasRendered()) ++itSelectedVoice;
811     // if we haven't found a voice then proceed with algorithm 'oldestkey'
812     if (itSelectedVoice && itSelectedVoice->hasRendered()) break;
813 schoenebeck 250 } // no break - intentional !
814    
815     // try to pick the oldest voice on the oldest active key
816 schoenebeck 563 // from the same engine channel
817 schoenebeck 460 // (caution: must stay after 'oldestvoiceonkey' algorithm !)
818 schoenebeck 250 case voice_steal_algo_oldestkey: {
819 schoenebeck 460 if (this->itLastStolenVoice) {
820     itSelectedVoice = this->itLastStolenVoice;
821     ++itSelectedVoice;
822     if (itSelectedVoice) break; // selection succeeded
823     RTList<uint>::Iterator iuiSelectedKey = this->iuiLastStolenKey;
824     ++iuiSelectedKey;
825     if (iuiSelectedKey) {
826     this->iuiLastStolenKey = iuiSelectedKey;
827     midi_key_info_t* pSelectedKey = &pEngineChannel->pMIDIKeyInfo[*iuiSelectedKey];
828     itSelectedVoice = pSelectedKey->pActiveVoices->first();
829     break; // selection succeeded
830 schoenebeck 250 }
831     }
832     break;
833     }
834    
835     // don't steal anything
836     case voice_steal_algo_none:
837     default: {
838     dmsg(1,("No free voice (voice stealing disabled)!\n"));
839 schoenebeck 473 return -1;
840 schoenebeck 250 }
841     }
842    
843 schoenebeck 563 // if we couldn't steal a voice from the same engine channel then
844     // steal oldest voice on the oldest key from any other engine channel
845 schoenebeck 460 if (!itSelectedVoice) {
846     EngineChannel* pSelectedChannel = (pLastStolenChannel) ? pLastStolenChannel : pEngineChannel;
847     int iChannelIndex = pSelectedChannel->iEngineIndexSelf;
848     while (true) {
849     RTList<uint>::Iterator iuiSelectedKey = pSelectedChannel->pActiveKeys->first();
850     if (iuiSelectedKey) {
851     midi_key_info_t* pSelectedKey = &pSelectedChannel->pMIDIKeyInfo[*iuiSelectedKey];
852     itSelectedVoice = pSelectedKey->pActiveVoices->first();
853     iuiLastStolenKey = iuiSelectedKey;
854     pLastStolenChannel = pSelectedChannel;
855     break; // selection succeeded
856     }
857     iChannelIndex = (iChannelIndex + 1) % engineChannels.size();
858     pSelectedChannel = engineChannels[iChannelIndex];
859     }
860     }
861    
862 schoenebeck 563 #if CONFIG_DEVMODE
863 schoenebeck 473 if (!itSelectedVoice->IsActive()) {
864     dmsg(1,("gig::Engine: ERROR, tried to steal a voice which was not active !!!\n"));
865     return -1;
866     }
867 schoenebeck 563 #endif // CONFIG_DEVMODE
868 schoenebeck 287
869 schoenebeck 250 // now kill the selected voice
870 schoenebeck 460 itSelectedVoice->Kill(itNoteOnEvent);
871    
872     // remember which voice we stole, so we can simply proceed for the next voice stealing
873     itLastStolenVoice = itSelectedVoice;
874    
875     --VoiceTheftsLeft;
876 schoenebeck 473
877     return 0; // success
878 schoenebeck 250 }
879 schoenebeck 473 else {
880     dmsg(1,("Event pool emtpy!\n"));
881     return -1;
882     }
883 schoenebeck 250 }
884    
885     /**
886 schoenebeck 285 * Removes the given voice from the MIDI key's list of active voices.
887     * This method will be called when a voice went inactive, e.g. because
888     * it finished to playback its sample, finished its release stage or
889     * just was killed.
890 schoenebeck 53 *
891 schoenebeck 411 * @param pEngineChannel - engine channel on which this event occured on
892 schoenebeck 285 * @param itVoice - points to the voice to be freed
893 schoenebeck 53 */
894 schoenebeck 411 void Engine::FreeVoice(EngineChannel* pEngineChannel, Pool<Voice>::Iterator& itVoice) {
895 schoenebeck 271 if (itVoice) {
896 schoenebeck 411 midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[itVoice->MIDIKey];
897 schoenebeck 53
898 schoenebeck 271 uint keygroup = itVoice->KeyGroup;
899    
900 schoenebeck 53 // free the voice object
901 schoenebeck 271 pVoicePool->free(itVoice);
902 schoenebeck 53
903 schoenebeck 287 // if no other voices left and member of a key group, remove from key group
904     if (pKey->pActiveVoices->isEmpty() && keygroup) {
905 schoenebeck 411 uint** ppKeyGroup = &pEngineChannel->ActiveKeyGroups[keygroup];
906 schoenebeck 287 if (*ppKeyGroup == &*pKey->itSelf) *ppKeyGroup = NULL; // remove key from key group
907 schoenebeck 53 }
908     }
909 schoenebeck 285 else std::cerr << "Couldn't release voice! (!itVoice)\n" << std::flush;
910 schoenebeck 53 }
911    
912     /**
913 schoenebeck 287 * Called when there's no more voice left on a key, this call will
914     * update the key info respectively.
915     *
916 schoenebeck 411 * @param pEngineChannel - engine channel on which this event occured on
917 schoenebeck 287 * @param pKey - key which is now inactive
918     */
919 schoenebeck 411 void Engine::FreeKey(EngineChannel* pEngineChannel, midi_key_info_t* pKey) {
920 schoenebeck 287 if (pKey->pActiveVoices->isEmpty()) {
921     pKey->Active = false;
922 schoenebeck 411 pEngineChannel->pActiveKeys->free(pKey->itSelf); // remove key from list of active keys
923 schoenebeck 287 pKey->itSelf = RTList<uint>::Iterator();
924     pKey->ReleaseTrigger = false;
925     pKey->pEvents->clear();
926     dmsg(3,("Key has no more voices now\n"));
927     }
928     else dmsg(1,("gig::Engine: Oops, tried to free a key which contains voices.\n"));
929     }
930    
931     /**
932 schoenebeck 53 * Reacts on supported control change commands (e.g. pitch bend wheel,
933     * modulation wheel, aftertouch).
934     *
935 schoenebeck 411 * @param pEngineChannel - engine channel on which this event occured on
936 schoenebeck 271 * @param itControlChangeEvent - controller, value and time stamp of the event
937 schoenebeck 53 */
938 schoenebeck 411 void Engine::ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlChangeEvent) {
939 schoenebeck 271 dmsg(4,("Engine::ContinuousController cc=%d v=%d\n", itControlChangeEvent->Param.CC.Controller, itControlChangeEvent->Param.CC.Value));
940 schoenebeck 53
941 schoenebeck 473 // update controller value in the engine channel's controller table
942     pEngineChannel->ControllerTable[itControlChangeEvent->Param.CC.Controller] = itControlChangeEvent->Param.CC.Value;
943    
944     // move event from the unsorted event list to the control change event list
945     Pool<Event>::Iterator itControlChangeEventOnCCList = itControlChangeEvent.moveToEndOf(pEngineChannel->pCCEvents);
946    
947     switch (itControlChangeEventOnCCList->Param.CC.Controller) {
948 schoenebeck 424 case 7: { // volume
949     //TODO: not sample accurate yet
950 schoenebeck 473 pEngineChannel->GlobalVolume = (float) itControlChangeEventOnCCList->Param.CC.Value / 127.0f;
951 schoenebeck 424 break;
952     }
953     case 10: { // panpot
954     //TODO: not sample accurate yet
955 schoenebeck 473 const int pan = (int) itControlChangeEventOnCCList->Param.CC.Value - 64;
956 schoenebeck 424 pEngineChannel->GlobalPanLeft = 1.0f - float(RTMath::Max(pan, 0)) / 63.0f;
957     pEngineChannel->GlobalPanRight = 1.0f - float(RTMath::Min(pan, 0)) / -64.0f;
958     break;
959     }
960     case 64: { // sustain
961 schoenebeck 473 if (itControlChangeEventOnCCList->Param.CC.Value >= 64 && !pEngineChannel->SustainPedal) {
962 schoenebeck 53 dmsg(4,("PEDAL DOWN\n"));
963 schoenebeck 411 pEngineChannel->SustainPedal = true;
964 schoenebeck 53
965     // cancel release process of voices if necessary
966 schoenebeck 411 RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
967 schoenebeck 473 for (; iuiKey; ++iuiKey) {
968     midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
969     if (!pKey->KeyPressed) {
970     RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
971     if (itNewEvent) {
972     *itNewEvent = *itControlChangeEventOnCCList; // copy event to the key's own event list
973     itNewEvent->Type = Event::type_cancel_release; // transform event type
974 schoenebeck 53 }
975 schoenebeck 473 else dmsg(1,("Event pool emtpy!\n"));
976 schoenebeck 53 }
977     }
978     }
979 schoenebeck 473 if (itControlChangeEventOnCCList->Param.CC.Value < 64 && pEngineChannel->SustainPedal) {
980 schoenebeck 53 dmsg(4,("PEDAL UP\n"));
981 schoenebeck 411 pEngineChannel->SustainPedal = false;
982 schoenebeck 53
983     // release voices if their respective key is not pressed
984 schoenebeck 411 RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
985 schoenebeck 473 for (; iuiKey; ++iuiKey) {
986     midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
987     if (!pKey->KeyPressed) {
988     RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
989     if (itNewEvent) {
990     *itNewEvent = *itControlChangeEventOnCCList; // copy event to the key's own event list
991     itNewEvent->Type = Event::type_release; // transform event type
992 schoenebeck 53 }
993 schoenebeck 473 else dmsg(1,("Event pool emtpy!\n"));
994 schoenebeck 53 }
995     }
996     }
997     break;
998     }
999    
1000    
1001 schoenebeck 473 // Channel Mode Messages
1002    
1003     case 120: { // all sound off
1004     KillAllVoices(pEngineChannel, itControlChangeEventOnCCList);
1005     break;
1006     }
1007     case 121: { // reset all controllers
1008     pEngineChannel->ResetControllers();
1009     break;
1010     }
1011     case 123: { // all notes off
1012     ReleaseAllVoices(pEngineChannel, itControlChangeEventOnCCList);
1013     break;
1014     }
1015     }
1016 schoenebeck 53 }
1017    
1018     /**
1019 schoenebeck 244 * Reacts on MIDI system exclusive messages.
1020     *
1021 schoenebeck 271 * @param itSysexEvent - sysex data size and time stamp of the sysex event
1022 schoenebeck 244 */
1023 schoenebeck 271 void Engine::ProcessSysex(Pool<Event>::Iterator& itSysexEvent) {
1024 schoenebeck 244 RingBuffer<uint8_t>::NonVolatileReader reader = pSysexBuffer->get_non_volatile_reader();
1025    
1026     uint8_t exclusive_status, id;
1027     if (!reader.pop(&exclusive_status)) goto free_sysex_data;
1028     if (!reader.pop(&id)) goto free_sysex_data;
1029     if (exclusive_status != 0xF0) goto free_sysex_data;
1030    
1031     switch (id) {
1032     case 0x41: { // Roland
1033 schoenebeck 493 dmsg(3,("Roland Sysex\n"));
1034 schoenebeck 244 uint8_t device_id, model_id, cmd_id;
1035     if (!reader.pop(&device_id)) goto free_sysex_data;
1036     if (!reader.pop(&model_id)) goto free_sysex_data;
1037     if (!reader.pop(&cmd_id)) goto free_sysex_data;
1038     if (model_id != 0x42 /*GS*/) goto free_sysex_data;
1039     if (cmd_id != 0x12 /*DT1*/) goto free_sysex_data;
1040    
1041     // command address
1042     uint8_t addr[3]; // 2 byte addr MSB, followed by 1 byte addr LSB)
1043     const RingBuffer<uint8_t>::NonVolatileReader checksum_reader = reader; // so we can calculate the check sum later
1044     if (reader.read(&addr[0], 3) != 3) goto free_sysex_data;
1045     if (addr[0] == 0x40 && addr[1] == 0x00) { // System Parameters
1046 schoenebeck 493 dmsg(3,("\tSystem Parameter\n"));
1047 schoenebeck 244 }
1048     else if (addr[0] == 0x40 && addr[1] == 0x01) { // Common Parameters
1049 schoenebeck 493 dmsg(3,("\tCommon Parameter\n"));
1050 schoenebeck 244 }
1051     else if (addr[0] == 0x40 && (addr[1] & 0xf0) == 0x10) { // Part Parameters (1)
1052 schoenebeck 493 dmsg(3,("\tPart Parameter\n"));
1053     switch (addr[2]) {
1054 schoenebeck 244 case 0x40: { // scale tuning
1055 schoenebeck 493 dmsg(3,("\t\tScale Tuning\n"));
1056 schoenebeck 244 uint8_t scale_tunes[12]; // detuning of all 12 semitones of an octave
1057     if (reader.read(&scale_tunes[0], 12) != 12) goto free_sysex_data;
1058     uint8_t checksum;
1059 schoenebeck 493 if (!reader.pop(&checksum)) goto free_sysex_data;
1060 schoenebeck 563 #if CONFIG_ASSERT_GS_SYSEX_CHECKSUM
1061     if (GSCheckSum(checksum_reader, 12)) goto free_sysex_data;
1062     #endif // CONFIG_ASSERT_GS_SYSEX_CHECKSUM
1063 schoenebeck 244 for (int i = 0; i < 12; i++) scale_tunes[i] -= 64;
1064     AdjustScale((int8_t*) scale_tunes);
1065 schoenebeck 493 dmsg(3,("\t\t\tNew scale applied.\n"));
1066 schoenebeck 244 break;
1067     }
1068     }
1069     }
1070     else if (addr[0] == 0x40 && (addr[1] & 0xf0) == 0x20) { // Part Parameters (2)
1071     }
1072     else if (addr[0] == 0x41) { // Drum Setup Parameters
1073     }
1074     break;
1075     }
1076     }
1077    
1078     free_sysex_data: // finally free sysex data
1079 schoenebeck 271 pSysexBuffer->increment_read_ptr(itSysexEvent->Param.Sysex.Size);
1080 schoenebeck 244 }
1081    
1082     /**
1083     * Calculates the Roland GS sysex check sum.
1084     *
1085     * @param AddrReader - reader which currently points to the first GS
1086     * command address byte of the GS sysex message in
1087     * question
1088     * @param DataSize - size of the GS message data (in bytes)
1089     */
1090     uint8_t Engine::GSCheckSum(const RingBuffer<uint8_t>::NonVolatileReader AddrReader, uint DataSize) {
1091     RingBuffer<uint8_t>::NonVolatileReader reader = AddrReader;
1092     uint bytes = 3 /*addr*/ + DataSize;
1093     uint8_t addr_and_data[bytes];
1094     reader.read(&addr_and_data[0], bytes);
1095     uint8_t sum = 0;
1096     for (uint i = 0; i < bytes; i++) sum += addr_and_data[i];
1097     return 128 - sum % 128;
1098     }
1099    
1100     /**
1101     * Allows to tune each of the twelve semitones of an octave.
1102     *
1103     * @param ScaleTunes - detuning of all twelve semitones (in cents)
1104     */
1105     void Engine::AdjustScale(int8_t ScaleTunes[12]) {
1106     memcpy(&this->ScaleTuning[0], &ScaleTunes[0], 12); //TODO: currently not sample accurate
1107     }
1108    
1109     /**
1110 schoenebeck 473 * Releases all voices on an engine channel. All voices will go into
1111     * the release stage and thus it might take some time (e.g. dependant to
1112     * their envelope release time) until they actually die.
1113     *
1114     * @param pEngineChannel - engine channel on which all voices should be released
1115     * @param itReleaseEvent - event which caused this releasing of all voices
1116     */
1117     void Engine::ReleaseAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itReleaseEvent) {
1118     RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1119     while (iuiKey) {
1120     midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1121     ++iuiKey;
1122     // append a 'release' event to the key's own event list
1123     RTList<Event>::Iterator itNewEvent = pKey->pEvents->allocAppend();
1124     if (itNewEvent) {
1125     *itNewEvent = *itReleaseEvent; // copy original event (to the key's event list)
1126     itNewEvent->Type = Event::type_release; // transform event type
1127     }
1128     else dmsg(1,("Event pool emtpy!\n"));
1129     }
1130     }
1131    
1132     /**
1133     * Kills all voices on an engine channel as soon as possible. Voices
1134     * won't get into release state, their volume level will be ramped down
1135     * as fast as possible.
1136     *
1137     * @param pEngineChannel - engine channel on which all voices should be killed
1138     * @param itKillEvent - event which caused this killing of all voices
1139     */
1140     void Engine::KillAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itKillEvent) {
1141     RTList<uint>::Iterator iuiKey = pEngineChannel->pActiveKeys->first();
1142     RTList<uint>::Iterator end = pEngineChannel->pActiveKeys->end();
1143     while (iuiKey != end) { // iterate through all active keys
1144     midi_key_info_t* pKey = &pEngineChannel->pMIDIKeyInfo[*iuiKey];
1145     ++iuiKey;
1146     RTList<Voice>::Iterator itVoice = pKey->pActiveVoices->first();
1147     RTList<Voice>::Iterator itVoicesEnd = pKey->pActiveVoices->end();
1148     for (; itVoice != itVoicesEnd; ++itVoice) { // iterate through all voices on this key
1149     itVoice->Kill(itKillEvent);
1150     }
1151     }
1152     }
1153    
1154     /**
1155 schoenebeck 53 * Initialize the parameter sequence for the modulation destination given by
1156     * by 'dst' with the constant value given by val.
1157     */
1158     void Engine::ResetSynthesisParameters(Event::destination_t dst, float val) {
1159     int maxsamples = pAudioOutputDevice->MaxSamplesPerCycle();
1160 schoenebeck 80 float* m = &pSynthesisParameters[dst][0];
1161     for (int i = 0; i < maxsamples; i += 4) {
1162     m[i] = val;
1163     m[i+1] = val;
1164     m[i+2] = val;
1165     m[i+3] = val;
1166     }
1167 persson 438 }
1168 schoenebeck 53
1169     uint Engine::VoiceCount() {
1170     return ActiveVoiceCount;
1171     }
1172    
1173     uint Engine::VoiceCountMax() {
1174     return ActiveVoiceCountMax;
1175     }
1176    
1177     bool Engine::DiskStreamSupported() {
1178     return true;
1179     }
1180    
1181     uint Engine::DiskStreamCount() {
1182     return (pDiskThread) ? pDiskThread->ActiveStreamCount : 0;
1183     }
1184    
1185     uint Engine::DiskStreamCountMax() {
1186     return (pDiskThread) ? pDiskThread->ActiveStreamCountMax : 0;
1187     }
1188    
1189     String Engine::DiskStreamBufferFillBytes() {
1190     return pDiskThread->GetBufferFillBytes();
1191     }
1192    
1193     String Engine::DiskStreamBufferFillPercentage() {
1194     return pDiskThread->GetBufferFillPercentage();
1195     }
1196    
1197 senkov 112 String Engine::EngineName() {
1198 schoenebeck 475 return LS_GIG_ENGINE_NAME;
1199 senkov 112 }
1200    
1201 schoenebeck 53 String Engine::Description() {
1202     return "Gigasampler Engine";
1203     }
1204    
1205     String Engine::Version() {
1206 persson 630 String s = "$Revision: 1.40 $";
1207 schoenebeck 123 return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
1208 schoenebeck 53 }
1209    
1210     }} // namespace LinuxSampler::gig

  ViewVC Help
Powered by ViewVC