/[svn]/linuxsampler/trunk/src/Sampler.cpp
ViewVC logotype

Annotation of /linuxsampler/trunk/src/Sampler.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1686 - (hide annotations) (download)
Thu Feb 14 14:58:50 2008 UTC (16 years, 2 months ago) by schoenebeck
File size: 25508 byte(s)
* added new LSCP event "CHANNEL_MIDI" which can be used by frontends to
  react on MIDI data arriving on certain sampler channels (so far only
  Note-On and Note-Off events are sent via this LSCP event)
* bumped LSCP compliance version to 1.4
* bumped LS version to 0.5.1.3cvs

1 schoenebeck 53 /***************************************************************************
2     * *
3     * LinuxSampler - modular, streaming capable sampler *
4     * *
5 schoenebeck 61 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 schoenebeck 1686 * Copyright (C) 2005 - 2008 Christian Schoenebeck *
7 schoenebeck 53 * *
8 schoenebeck 1008 * This library is free software; you can redistribute it and/or modify *
9 schoenebeck 53 * 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 schoenebeck 1008 * This library is distributed in the hope that it will be useful, *
14 schoenebeck 53 * 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 schoenebeck 1008 * along with this library; if not, write to the Free Software *
20 schoenebeck 53 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21     * MA 02111-1307 USA *
22     ***************************************************************************/
23    
24 schoenebeck 123 #include <sstream>
25    
26 schoenebeck 53 #include "Sampler.h"
27    
28 schoenebeck 1424 #include "common/global_private.h"
29 iliev 778 #include "engines/EngineFactory.h"
30 schoenebeck 411 #include "engines/EngineChannelFactory.h"
31 schoenebeck 1375 #include "plugins/InstrumentEditorFactory.h"
32 schoenebeck 203 #include "drivers/audio/AudioOutputDeviceFactory.h"
33     #include "drivers/midi/MidiInputDeviceFactory.h"
34 schoenebeck 1008 #include "drivers/midi/MidiInstrumentMapper.h"
35 schoenebeck 53
36     namespace LinuxSampler {
37    
38     // ******************************************************************
39     // * SamplerChannel
40    
41     SamplerChannel::SamplerChannel(Sampler* pS) {
42     pSampler = pS;
43 schoenebeck 411 pEngineChannel = NULL;
44 schoenebeck 675 pAudioOutputDevice = NULL;
45 capela 159 pMidiInputDevice = NULL;
46 schoenebeck 675 iMidiPort = 0;
47     midiChannel = midi_chan_all;
48 schoenebeck 53 iIndex = -1;
49     }
50    
51     SamplerChannel::~SamplerChannel() {
52 schoenebeck 411 if (pEngineChannel) {
53 persson 840 Engine* engine = pEngineChannel->GetEngine();
54     if (pAudioOutputDevice) pAudioOutputDevice->Disconnect(engine);
55    
56 schoenebeck 675 MidiInputPort* pMidiInputPort = (pEngineChannel) ? pEngineChannel->GetMidiInputPort() : __GetMidiInputDevicePort(GetMidiInputChannel());
57 schoenebeck 411 if (pMidiInputPort) pMidiInputPort->Disconnect(pEngineChannel);
58 schoenebeck 420 if (pEngineChannel) {
59     if (pAudioOutputDevice) pEngineChannel->DisconnectAudioOutputDevice();
60 schoenebeck 660 EngineChannelFactory::Destroy(pEngineChannel);
61 persson 840
62     // reconnect engine if it still exists
63     const std::set<Engine*>& engines = EngineFactory::EngineInstances();
64     if (engines.find(engine) != engines.end()) pAudioOutputDevice->Connect(engine);
65 schoenebeck 420 }
66 schoenebeck 53 }
67     }
68    
69 schoenebeck 880 void SamplerChannel::SetEngineType(String EngineType) throw (Exception) {
70 schoenebeck 411 dmsg(2,("SamplerChannel: Assigning engine type..."));
71 iliev 1283
72     if (pEngineChannel) {
73     if (!strcasecmp(pEngineChannel->EngineName().c_str(), EngineType.c_str())) {
74     dmsg(2,("OK\n"));
75     return;
76     }
77     }
78 schoenebeck 53
79 schoenebeck 1686 fireEngineToBeChanged();
80    
81 schoenebeck 411 // create new engine channel
82     EngineChannel* pNewEngineChannel = EngineChannelFactory::Create(EngineType);
83 schoenebeck 880 if (!pNewEngineChannel) throw Exception("Unknown engine type");
84 schoenebeck 53
85 schoenebeck 660 //FIXME: hack to allow fast retrieval of engine channel's sampler channel index
86     pNewEngineChannel->iSamplerChannelIndex = Index();
87    
88 capela 159 // dereference midi input port.
89 schoenebeck 675 MidiInputPort* pMidiInputPort = __GetMidiInputDevicePort(GetMidiInputPort());
90     // disconnect old engine channel
91 schoenebeck 411 if (pEngineChannel) {
92 persson 840 Engine* engine = pEngineChannel->GetEngine();
93     if (pAudioOutputDevice) pAudioOutputDevice->Disconnect(engine);
94    
95 schoenebeck 411 if (pMidiInputPort) pMidiInputPort->Disconnect(pEngineChannel);
96 schoenebeck 412 if (pAudioOutputDevice) pEngineChannel->DisconnectAudioOutputDevice();
97 schoenebeck 660 EngineChannelFactory::Destroy(pEngineChannel);
98 persson 840
99     // reconnect engine if it still exists
100     const std::set<Engine*>& engines = EngineFactory::EngineInstances();
101     if (engines.find(engine) != engines.end()) pAudioOutputDevice->Connect(engine);
102 schoenebeck 53 }
103    
104 schoenebeck 411 // connect new engine channel
105 schoenebeck 412 if (pAudioOutputDevice) {
106     pNewEngineChannel->Connect(pAudioOutputDevice);
107     pAudioOutputDevice->Connect(pNewEngineChannel->GetEngine());
108     }
109 persson 846 if (pMidiInputPort) pMidiInputPort->Connect(pNewEngineChannel, GetMidiInputChannel());
110 schoenebeck 675 pEngineChannel = pNewEngineChannel;
111    
112     // from now on get MIDI device and port from EngineChannel object
113     this->pMidiInputDevice = NULL;
114     this->iMidiPort = 0;
115    
116 iliev 730 pEngineChannel->StatusChanged(true);
117 iliev 1130 fireEngineChanged();
118 schoenebeck 64 dmsg(2,("OK\n"));
119 schoenebeck 53 }
120    
121 schoenebeck 123 void SamplerChannel::SetAudioOutputDevice(AudioOutputDevice* pDevice) {
122 iliev 960 if(pAudioOutputDevice == pDevice) return;
123    
124 schoenebeck 53 // disconnect old device
125 persson 840 if (pAudioOutputDevice && pEngineChannel) {
126     Engine* engine = pEngineChannel->GetEngine();
127     pAudioOutputDevice->Disconnect(engine);
128    
129     pEngineChannel->DisconnectAudioOutputDevice();
130    
131     // reconnect engine if it still exists
132     const std::set<Engine*>& engines = EngineFactory::EngineInstances();
133     if (engines.find(engine) != engines.end()) pAudioOutputDevice->Connect(engine);
134     }
135    
136 schoenebeck 53 // connect new device
137     pAudioOutputDevice = pDevice;
138 schoenebeck 412 if (pEngineChannel) {
139     pEngineChannel->Connect(pAudioOutputDevice);
140     pAudioOutputDevice->Connect(pEngineChannel->GetEngine());
141     }
142 schoenebeck 53 }
143    
144 capela 159 void SamplerChannel::SetMidiInputDevice(MidiInputDevice* pDevice) {
145 schoenebeck 675 SetMidiInput(pDevice, 0, GetMidiInputChannel());
146 capela 159 }
147 schoenebeck 203
148 capela 159 void SamplerChannel::SetMidiInputPort(int MidiPort) {
149 schoenebeck 675 SetMidiInput(GetMidiInputDevice(), MidiPort, GetMidiInputChannel());
150 capela 159 }
151 schoenebeck 203
152 schoenebeck 675 void SamplerChannel::SetMidiInputChannel(midi_chan_t MidiChannel) {
153     SetMidiInput(GetMidiInputDevice(), GetMidiInputPort(), MidiChannel);
154 capela 159 }
155 schoenebeck 203
156 schoenebeck 675 void SamplerChannel::SetMidiInput(MidiInputDevice* pDevice, int iMidiPort, midi_chan_t MidiChannel) {
157 schoenebeck 880 if (!pDevice) throw Exception("No MIDI input device assigned.");
158 schoenebeck 675
159     // get old and new midi input port
160     MidiInputPort* pOldMidiInputPort = __GetMidiInputDevicePort(GetMidiInputPort());
161     MidiInputPort* pNewMidiInputPort = pDevice->GetPort(iMidiPort);
162    
163 capela 159 // disconnect old device port
164 schoenebeck 675 if (pOldMidiInputPort && pEngineChannel) pOldMidiInputPort->Disconnect(pEngineChannel);
165     // remember new device, port and channel if not engine channel yet created
166     if (!pEngineChannel) {
167     this->pMidiInputDevice = pDevice;
168     this->iMidiPort = iMidiPort;
169     this->midiChannel = MidiChannel;
170     }
171    
172 capela 159 // connect new device port
173 schoenebeck 675 if (pNewMidiInputPort && pEngineChannel) pNewMidiInputPort->Connect(pEngineChannel, MidiChannel);
174 capela 159 // Ooops.
175 schoenebeck 675 if (pNewMidiInputPort == NULL)
176 schoenebeck 880 throw Exception("There is no MIDI input port with index " + ToString(iMidiPort) + ".");
177 schoenebeck 53 }
178    
179 schoenebeck 411 EngineChannel* SamplerChannel::GetEngineChannel() {
180     return pEngineChannel;
181 schoenebeck 53 }
182    
183 schoenebeck 675 midi_chan_t SamplerChannel::GetMidiInputChannel() {
184     if (pEngineChannel) this->midiChannel = pEngineChannel->MidiChannel();
185 capela 159 return this->midiChannel;
186 schoenebeck 53 }
187    
188 capela 159 int SamplerChannel::GetMidiInputPort() {
189 schoenebeck 675 MidiInputPort* pMidiInputPort = (pEngineChannel) ? pEngineChannel->GetMidiInputPort() : NULL;
190     if (pMidiInputPort) this->iMidiPort = (int) pMidiInputPort->GetPortNumber();
191     return iMidiPort;
192 capela 159 }
193    
194 schoenebeck 53 AudioOutputDevice* SamplerChannel::GetAudioOutputDevice() {
195     return pAudioOutputDevice;
196     }
197    
198 senkov 155 MidiInputDevice* SamplerChannel::GetMidiInputDevice() {
199 schoenebeck 675 if (pEngineChannel)
200     pMidiInputDevice = (pEngineChannel->GetMidiInputPort()) ? pEngineChannel->GetMidiInputPort()->GetDevice() : NULL;
201 capela 159 return pMidiInputDevice;
202 senkov 155 }
203    
204 schoenebeck 53 uint SamplerChannel::Index() {
205     if (iIndex >= 0) return iIndex;
206    
207 schoenebeck 209 Sampler::SamplerChannelMap::iterator iter = pSampler->mSamplerChannels.begin();
208     for (; iter != pSampler->mSamplerChannels.end(); iter++) {
209     if (iter->second == this) {
210     iIndex = iter->first;
211     return iIndex;
212 schoenebeck 53 }
213     }
214    
215 schoenebeck 880 throw Exception("Internal error: SamplerChannel index not found");
216 schoenebeck 53 }
217    
218 iliev 1130 void SamplerChannel::AddEngineChangeListener(EngineChangeListener* l) {
219     llEngineChangeListeners.AddListener(l);
220     }
221    
222     void SamplerChannel::RemoveEngineChangeListener(EngineChangeListener* l) {
223     llEngineChangeListeners.RemoveListener(l);
224     }
225    
226     void SamplerChannel::RemoveAllEngineChangeListeners() {
227     llEngineChangeListeners.RemoveAllListeners();
228     }
229    
230 schoenebeck 1686 void SamplerChannel::fireEngineToBeChanged() {
231     for (int i = 0; i < llEngineChangeListeners.GetListenerCount(); i++) {
232     llEngineChangeListeners.GetListener(i)->EngineToBeChanged(Index());
233     }
234     }
235    
236 iliev 1130 void SamplerChannel::fireEngineChanged() {
237     for (int i = 0; i < llEngineChangeListeners.GetListenerCount(); i++) {
238     llEngineChangeListeners.GetListener(i)->EngineChanged(Index());
239     }
240     }
241    
242 schoenebeck 675 MidiInputPort* SamplerChannel::__GetMidiInputDevicePort(int iMidiPort) {
243 schoenebeck 221 MidiInputPort* pMidiInputPort = NULL;
244 schoenebeck 675 MidiInputDevice* pMidiInputDevice = GetMidiInputDevice();
245 capela 159 if (pMidiInputDevice)
246 schoenebeck 221 pMidiInputPort = pMidiInputDevice->GetPort(iMidiPort);
247 capela 159 return pMidiInputPort;
248     }
249 schoenebeck 53
250 schoenebeck 212
251    
252 schoenebeck 53 // ******************************************************************
253     // * Sampler
254    
255     Sampler::Sampler() {
256 iliev 1130 eventHandler.SetSampler(this);
257 schoenebeck 53 }
258    
259     Sampler::~Sampler() {
260 schoenebeck 212 Reset();
261 schoenebeck 53 }
262    
263     uint Sampler::SamplerChannels() {
264 schoenebeck 209 return mSamplerChannels.size();
265 schoenebeck 53 }
266    
267 iliev 1130 void Sampler::AddChannelCountListener(ChannelCountListener* l) {
268     llChannelCountListeners.AddListener(l);
269     }
270    
271     void Sampler::RemoveChannelCountListener(ChannelCountListener* l) {
272     llChannelCountListeners.RemoveListener(l);
273     }
274    
275     void Sampler::fireChannelCountChanged(int NewCount) {
276     for (int i = 0; i < llChannelCountListeners.GetListenerCount(); i++) {
277     llChannelCountListeners.GetListener(i)->ChannelCountChanged(NewCount);
278     }
279     }
280    
281 schoenebeck 1686 void Sampler::fireChannelAdded(SamplerChannel* pChannel) {
282     for (int i = 0; i < llChannelCountListeners.GetListenerCount(); i++) {
283     llChannelCountListeners.GetListener(i)->ChannelAdded(pChannel);
284     }
285     }
286    
287     void Sampler::fireChannelToBeRemoved(SamplerChannel* pChannel) {
288     for (int i = 0; i < llChannelCountListeners.GetListenerCount(); i++) {
289     llChannelCountListeners.GetListener(i)->ChannelToBeRemoved(pChannel);
290     }
291     }
292    
293 iliev 1130 void Sampler::AddAudioDeviceCountListener(AudioDeviceCountListener* l) {
294     llAudioDeviceCountListeners.AddListener(l);
295     }
296    
297     void Sampler::RemoveAudioDeviceCountListener(AudioDeviceCountListener* l) {
298     llAudioDeviceCountListeners.RemoveListener(l);
299     }
300    
301     void Sampler::fireAudioDeviceCountChanged(int NewCount) {
302     for (int i = 0; i < llAudioDeviceCountListeners.GetListenerCount(); i++) {
303     llAudioDeviceCountListeners.GetListener(i)->AudioDeviceCountChanged(NewCount);
304     }
305     }
306    
307     void Sampler::AddMidiDeviceCountListener(MidiDeviceCountListener* l) {
308     llMidiDeviceCountListeners.AddListener(l);
309     }
310    
311     void Sampler::RemoveMidiDeviceCountListener(MidiDeviceCountListener* l) {
312     llMidiDeviceCountListeners.RemoveListener(l);
313     }
314    
315     void Sampler::fireMidiDeviceCountChanged(int NewCount) {
316     for (int i = 0; i < llMidiDeviceCountListeners.GetListenerCount(); i++) {
317     llMidiDeviceCountListeners.GetListener(i)->MidiDeviceCountChanged(NewCount);
318     }
319     }
320    
321     void Sampler::AddVoiceCountListener(VoiceCountListener* l) {
322     llVoiceCountListeners.AddListener(l);
323     }
324    
325     void Sampler::RemoveVoiceCountListener(VoiceCountListener* l) {
326     llVoiceCountListeners.RemoveListener(l);
327     }
328    
329     void Sampler::fireVoiceCountChanged(int ChannelId, int NewCount) {
330     for (int i = 0; i < llVoiceCountListeners.GetListenerCount(); i++) {
331     llVoiceCountListeners.GetListener(i)->VoiceCountChanged(ChannelId, NewCount);
332     }
333     }
334    
335     void Sampler::AddStreamCountListener(StreamCountListener* l) {
336     llStreamCountListeners.AddListener(l);
337     }
338    
339     void Sampler::RemoveStreamCountListener(StreamCountListener* l) {
340     llStreamCountListeners.RemoveListener(l);
341     }
342    
343     void Sampler::fireStreamCountChanged(int ChannelId, int NewCount) {
344     for (int i = 0; i < llStreamCountListeners.GetListenerCount(); i++) {
345     llStreamCountListeners.GetListener(i)->StreamCountChanged(ChannelId, NewCount);
346     }
347     }
348    
349     void Sampler::AddBufferFillListener(BufferFillListener* l) {
350     llBufferFillListeners.AddListener(l);
351     }
352    
353     void Sampler::RemoveBufferFillListener(BufferFillListener* l) {
354     llBufferFillListeners.RemoveListener(l);
355     }
356    
357     void Sampler::fireBufferFillChanged(int ChannelId, String FillData) {
358     for (int i = 0; i < llBufferFillListeners.GetListenerCount(); i++) {
359     llBufferFillListeners.GetListener(i)->BufferFillChanged(ChannelId, FillData);
360     }
361     }
362    
363 iliev 1541 void Sampler::AddTotalStreamCountListener(TotalStreamCountListener* l) {
364     llTotalStreamCountListeners.AddListener(l);
365     }
366    
367     void Sampler::RemoveTotalStreamCountListener(TotalStreamCountListener* l) {
368     llTotalStreamCountListeners.RemoveListener(l);
369     }
370    
371     void Sampler::fireTotalStreamCountChanged(int NewCount) {
372     for (int i = 0; i < llTotalStreamCountListeners.GetListenerCount(); i++) {
373     llTotalStreamCountListeners.GetListener(i)->TotalStreamCountChanged(NewCount);
374     }
375     }
376    
377 iliev 1130 void Sampler::AddTotalVoiceCountListener(TotalVoiceCountListener* l) {
378     llTotalVoiceCountListeners.AddListener(l);
379     }
380    
381     void Sampler::RemoveTotalVoiceCountListener(TotalVoiceCountListener* l) {
382     llTotalVoiceCountListeners.RemoveListener(l);
383     }
384    
385     void Sampler::fireTotalVoiceCountChanged(int NewCount) {
386     for (int i = 0; i < llTotalVoiceCountListeners.GetListenerCount(); i++) {
387     llTotalVoiceCountListeners.GetListener(i)->TotalVoiceCountChanged(NewCount);
388     }
389     }
390    
391     void Sampler::AddFxSendCountListener(FxSendCountListener* l) {
392     llFxSendCountListeners.AddListener(l);
393     }
394    
395     void Sampler::RemoveFxSendCountListener(FxSendCountListener* l) {
396     llFxSendCountListeners.RemoveListener(l);
397     }
398    
399     void Sampler::fireFxSendCountChanged(int ChannelId, int NewCount) {
400     for (int i = 0; i < llFxSendCountListeners.GetListenerCount(); i++) {
401     llFxSendCountListeners.GetListener(i)->FxSendCountChanged(ChannelId, NewCount);
402     }
403     }
404    
405 schoenebeck 1686 void Sampler::EventHandler::EngineToBeChanged(int ChannelId) {
406     // nothing to do here
407     }
408    
409 iliev 1130 void Sampler::EventHandler::EngineChanged(int ChannelId) {
410     EngineChannel* engineChannel = pSampler->GetSamplerChannel(ChannelId)->GetEngineChannel();
411     if(engineChannel == NULL) return;
412     engineChannel->AddFxSendCountListener(this);
413     }
414    
415     void Sampler::EventHandler::FxSendCountChanged(int ChannelId, int NewCount) {
416     pSampler->fireFxSendCountChanged(ChannelId, NewCount);
417     }
418    
419    
420 schoenebeck 53 SamplerChannel* Sampler::AddSamplerChannel() {
421 schoenebeck 209 // if there's no sampler channel yet
422     if (!mSamplerChannels.size()) {
423     SamplerChannel* pChannel = new SamplerChannel(this);
424     mSamplerChannels[0] = pChannel;
425 schoenebeck 1686 fireChannelAdded(pChannel);
426 iliev 1130 fireChannelCountChanged(1);
427     pChannel->AddEngineChangeListener(&eventHandler);
428 schoenebeck 209 return pChannel;
429     }
430    
431     // get the highest used sampler channel index
432     uint lastIndex = (--(mSamplerChannels.end()))->first;
433    
434     // check if we reached the index limit
435     if (lastIndex + 1 < lastIndex) {
436     // search for an unoccupied sampler channel index starting from 0
437     for (uint i = 0; i < lastIndex; i++) {
438     if (mSamplerChannels.find(i) != mSamplerChannels.end()) continue;
439     // we found an unused index, so insert the new channel there
440     SamplerChannel* pChannel = new SamplerChannel(this);
441     mSamplerChannels[i] = pChannel;
442 schoenebeck 1686 fireChannelAdded(pChannel);
443 iliev 1130 fireChannelCountChanged(SamplerChannels());
444     pChannel->AddEngineChangeListener(&eventHandler);
445 schoenebeck 209 return pChannel;
446     }
447 schoenebeck 880 throw Exception("Internal error: could not find unoccupied sampler channel index.");
448 schoenebeck 209 }
449    
450     // we have not reached the index limit so we just add the channel past the highest index
451 schoenebeck 53 SamplerChannel* pChannel = new SamplerChannel(this);
452 schoenebeck 209 mSamplerChannels[lastIndex + 1] = pChannel;
453 schoenebeck 1686 fireChannelAdded(pChannel);
454 iliev 1130 fireChannelCountChanged(SamplerChannels());
455     pChannel->AddEngineChangeListener(&eventHandler);
456 schoenebeck 53 return pChannel;
457     }
458    
459     SamplerChannel* Sampler::GetSamplerChannel(uint uiSamplerChannel) {
460 schoenebeck 209 return (mSamplerChannels.find(uiSamplerChannel) != mSamplerChannels.end()) ? mSamplerChannels[uiSamplerChannel] : NULL;
461 schoenebeck 53 }
462    
463 schoenebeck 209 std::map<uint, SamplerChannel*> Sampler::GetSamplerChannels() {
464     return mSamplerChannels;
465     }
466    
467 schoenebeck 53 void Sampler::RemoveSamplerChannel(SamplerChannel* pSamplerChannel) {
468 schoenebeck 209 SamplerChannelMap::iterator iterChan = mSamplerChannels.begin();
469     for (; iterChan != mSamplerChannels.end(); iterChan++) {
470     if (iterChan->second == pSamplerChannel) {
471 schoenebeck 1686 fireChannelToBeRemoved(pSamplerChannel);
472 iliev 1130 pSamplerChannel->RemoveAllEngineChangeListeners();
473 schoenebeck 209 mSamplerChannels.erase(iterChan);
474 schoenebeck 53 delete pSamplerChannel;
475 iliev 1130 fireChannelCountChanged(SamplerChannels());
476 schoenebeck 53 return;
477     }
478     }
479     }
480    
481     void Sampler::RemoveSamplerChannel(uint uiSamplerChannel) {
482     SamplerChannel* pChannel = GetSamplerChannel(uiSamplerChannel);
483     if (!pChannel) return;
484     RemoveSamplerChannel(pChannel);
485     }
486    
487 schoenebeck 123 std::vector<String> Sampler::AvailableAudioOutputDrivers() {
488     return AudioOutputDeviceFactory::AvailableDrivers();
489     }
490 schoenebeck 53
491 schoenebeck 900 std::vector<String> Sampler::AvailableMidiInputDrivers() {
492     return MidiInputDeviceFactory::AvailableDrivers();
493     }
494    
495     std::vector<String> Sampler::AvailableEngineTypes() {
496     return EngineFactory::AvailableEngineTypes();
497     }
498    
499 schoenebeck 880 AudioOutputDevice* Sampler::CreateAudioOutputDevice(String AudioDriver, std::map<String,String> Parameters) throw (Exception) {
500 schoenebeck 53 // create new device
501 schoenebeck 123 AudioOutputDevice* pDevice = AudioOutputDeviceFactory::Create(AudioDriver, Parameters);
502 schoenebeck 53
503 schoenebeck 64 // add new audio device to the audio device list
504 schoenebeck 123 for (uint i = 0; ; i++) { // seek for a free place starting from the beginning
505     if (!mAudioOutputDevices[i]) {
506     mAudioOutputDevices[i] = pDevice;
507     break;
508     }
509     }
510 schoenebeck 64
511 iliev 1130 fireAudioDeviceCountChanged(AudioOutputDevices());
512 schoenebeck 53 return pDevice;
513     }
514    
515 schoenebeck 123 uint Sampler::AudioOutputDevices() {
516     return mAudioOutputDevices.size();
517 schoenebeck 53 }
518    
519 senkov 155 uint Sampler::MidiInputDevices() {
520     return mMidiInputDevices.size();
521     }
522    
523 schoenebeck 123 std::map<uint, AudioOutputDevice*> Sampler::GetAudioOutputDevices() {
524     return mAudioOutputDevices;
525     }
526    
527 senkov 155 std::map<uint, MidiInputDevice*> Sampler::GetMidiInputDevices() {
528     return mMidiInputDevices;
529     }
530    
531 schoenebeck 880 void Sampler::DestroyAudioOutputDevice(AudioOutputDevice* pDevice) throw (Exception) {
532 schoenebeck 123 AudioOutputDeviceMap::iterator iter = mAudioOutputDevices.begin();
533     for (; iter != mAudioOutputDevices.end(); iter++) {
534     if (iter->second == pDevice) {
535     // check if there are still sampler engines connected to this device
536     for (uint i = 0; i < SamplerChannels(); i++)
537 schoenebeck 880 if (GetSamplerChannel(i)->GetAudioOutputDevice() == pDevice) throw Exception("Sampler channel " + ToString(i) + " is still connected to the audio output device.");
538 schoenebeck 123
539     // disable device
540     pDevice->Stop();
541    
542 persson 837 // remove device from the device list
543     mAudioOutputDevices.erase(iter);
544    
545 schoenebeck 123 // destroy and free device from memory
546     delete pDevice;
547 persson 837
548 iliev 1130 fireAudioDeviceCountChanged(AudioOutputDevices());
549 persson 837 break;
550 schoenebeck 123 }
551     }
552     }
553    
554 schoenebeck 880 void Sampler::DestroyMidiInputDevice(MidiInputDevice* pDevice) throw (Exception) {
555 senkov 155 MidiInputDeviceMap::iterator iter = mMidiInputDevices.begin();
556     for (; iter != mMidiInputDevices.end(); iter++) {
557     if (iter->second == pDevice) {
558     // check if there are still sampler engines connected to this device
559     for (uint i = 0; i < SamplerChannels(); i++)
560 schoenebeck 880 if (GetSamplerChannel(i)->GetMidiInputDevice() == pDevice) throw Exception("Sampler channel " + ToString(i) + " is still connected to the midi input device.");
561 schoenebeck 53
562 senkov 155 // disable device
563     pDevice->StopListen();
564    
565 persson 837 // remove device from the device list
566     mMidiInputDevices.erase(iter);
567    
568 senkov 155 // destroy and free device from memory
569     delete pDevice;
570 persson 837
571 iliev 1130 fireMidiDeviceCountChanged(MidiInputDevices());
572 persson 837 break;
573 senkov 155 }
574 schoenebeck 53 }
575 senkov 155 }
576 schoenebeck 53
577 schoenebeck 880 MidiInputDevice* Sampler::CreateMidiInputDevice(String MidiDriver, std::map<String,String> Parameters) throw (Exception) {
578 senkov 155 // create new device
579 schoenebeck 551 MidiInputDevice* pDevice = MidiInputDeviceFactory::Create(MidiDriver, Parameters, this);
580 senkov 155
581     // add new device to the midi device list
582     for (uint i = 0; ; i++) { // seek for a free place starting from the beginning
583     if (!mMidiInputDevices[i]) {
584     mMidiInputDevices[i] = pDevice;
585     break;
586     }
587     }
588 schoenebeck 64
589 iliev 1130 fireMidiDeviceCountChanged(MidiInputDevices());
590 schoenebeck 53 return pDevice;
591     }
592    
593 iliev 1541 int Sampler::GetDiskStreamCount() {
594     int count = 0;
595     std::set<Engine*>::iterator it = EngineFactory::EngineInstances().begin();
596    
597     for(; it != EngineFactory::EngineInstances().end(); it++) {
598     count += (*it)->DiskStreamCount();
599     }
600    
601     return count;
602     }
603    
604 iliev 778 int Sampler::GetVoiceCount() {
605     int count = 0;
606     std::set<Engine*>::iterator it = EngineFactory::EngineInstances().begin();
607    
608     for(; it != EngineFactory::EngineInstances().end(); it++) {
609     count += (*it)->VoiceCount();
610     }
611    
612     return count;
613     }
614    
615 schoenebeck 212 void Sampler::Reset() {
616     // delete sampler channels
617     try {
618 senkov 329 while (true) {
619     SamplerChannelMap::iterator iter = mSamplerChannels.begin();
620     if (iter == mSamplerChannels.end()) break;
621     RemoveSamplerChannel(iter->second);
622 schoenebeck 212 }
623     }
624     catch(...) {
625     std::cerr << "Sampler::Reset(): Exception occured while trying to delete all sampler channels, exiting.\n" << std::flush;
626     exit(EXIT_FAILURE);
627     }
628    
629     // delete midi input devices
630     try {
631 senkov 329 while (true) {
632     MidiInputDeviceMap::iterator iter = mMidiInputDevices.begin();
633     if (iter == mMidiInputDevices.end()) break;
634     DestroyMidiInputDevice(iter->second);
635 schoenebeck 212 }
636     }
637     catch(...) {
638     std::cerr << "Sampler::Reset(): Exception occured while trying to delete all MIDI input devices, exiting.\n" << std::flush;
639     exit(EXIT_FAILURE);
640     }
641    
642     // delete audio output devices
643     try {
644 senkov 329 while (true) {
645     AudioOutputDeviceMap::iterator iter = mAudioOutputDevices.begin();
646     if (iter == mAudioOutputDevices.end()) break;
647     DestroyAudioOutputDevice(iter->second);
648 schoenebeck 212 }
649     }
650     catch(...) {
651     std::cerr << "Sampler::Reset(): Exception occured while trying to delete all audio output devices, exiting.\n" << std::flush;
652     exit(EXIT_FAILURE);
653     }
654 schoenebeck 1008
655     // delete MIDI instrument maps
656     try {
657     MidiInstrumentMapper::RemoveAllMaps();
658     }
659     catch(...) {
660     std::cerr << "Sampler::Reset(): Exception occured while trying to delete all MIDI instrument maps, exiting.\n" << std::flush;
661     exit(EXIT_FAILURE);
662     }
663 schoenebeck 1212
664     // unload all instrument editor DLLs
665     InstrumentEditorFactory::ClosePlugins();
666 schoenebeck 212 }
667    
668 schoenebeck 53 } // namespace LinuxSampler

  ViewVC Help
Powered by ViewVC