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

Diff of /linuxsampler/trunk/src/Sampler.h

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

revision 212 by schoenebeck, Wed Jul 28 14:17:29 2004 UTC revision 1897 by persson, Sun May 10 09:31:51 2009 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6     *   Copyright (C) 2005 - 2009 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 25  Line 26 
26    
27  #include <vector>  #include <vector>
28  #include <map>  #include <map>
29    #include "EventListeners.h"
30  #include "common/global.h"  #include "common/global.h"
31  #include "common/LinuxSamplerException.h"  #include "common/Exception.h"
32  #include "engines/common/Engine.h"  #include "engines/EngineChannel.h"
33  #include "drivers/midi/MidiInputDevice.h"  #include "drivers/midi/MidiInputDevice.h"
34  #include "drivers/audio/AudioOutputDevice.h"  #include "drivers/audio/AudioOutputDevice.h"
35    
# Line 36  namespace LinuxSampler { Line 38  namespace LinuxSampler {
38      // just symbol prototyping      // just symbol prototyping
39      class Sampler;      class Sampler;
40    
41      /** LinuxSampler sampler channel      /** @brief LinuxSampler sampler channel
42       *       *
43       * Encapsulates one sampler engine, one connection to a MIDI input       * Encapsulates a channel of a specific sampler engine type, one
44       * device and one connection to an audio output device. You cannot       * connection to a MIDI input device and one connection to an audio
45       * create an instance of this class on your own, you have to use the       * output device. You cannot create an instance of this class on your
46       * AddSamplerChannel() method of the Sampler object to create a new       * own, you have to use the AddSamplerChannel() method of the Sampler
47       * sampler channel.       * object to create a new sampler channel.
48       */       */
49      class SamplerChannel {      class SamplerChannel {
50          public:          public:
51              /**              /**
52               * Deploy a sampler engine of the given type for this sampler               * Assign a sampler engine type to this sampler channel.
              * channnel. If there was already a sampler engine deployed on  
              * this sampler channel, then the old engine will automatically  
              * be destroyed.  
53               *               *
54               * @param EngineType - type of the engine to deploy               * @param EngineType - type of the engine to use
55                 * @throws Exception - if \a EngineType is invalid
56                 * @see Sampler::AvailableEngineTypes()
57               */               */
58              void LoadEngine(Engine::type_t EngineType); // TODO: to be changed to 'void LoadEngine(String EngineType) throws (LinuxSamplerException);'              void SetEngineType(String EngineType) throw (Exception);
59    
60              /**              /**
61               * Connect this sampler channel to an audio output device, that               * Connect this sampler channel to an audio output device, that
# Line 67  namespace LinuxSampler { Line 68  namespace LinuxSampler {
68              void SetAudioOutputDevice(AudioOutputDevice* pDevice);              void SetAudioOutputDevice(AudioOutputDevice* pDevice);
69    
70              /**              /**
71               * Connect this sampler channel to and MIDI input device.               * Connect this sampler channel to a MIDI input device.
72               *               *
73               * @param pDevice - MIDI input device to connect to               * @param pDevice - MIDI input device to connect to
74               */               */
75              void SetMidiInputDevice(MidiInputDevice *pDevice);              void SetMidiInputDevice(MidiInputDevice *pDevice);
76    
77              /**              /**
78               * Connect this sampler channel to and MIDI input port.               * Connect this sampler channel to a MIDI input port.
79               *               *
80               * @param MidiPort - MIDI port to connect to               * @param MidiPort - MIDI port to connect to
81               */               */
82              void SetMidiInputPort(int MidiPort);              void SetMidiInputPort(int MidiPort);
83    
84              /**              /**
85               * Connect this sampler channel to and MIDI input channel.               * Define on which MIDI channel(s) this sampler channel should
86                 * listen to. By default, that is after creation of a new
87                 * sampler channel, the sampler channel will listen to all MIDI
88                 * channels.
89               *               *
90               * @param MidiChannel - MIDI channel to connect to               * @param MidiChannel - MIDI channel to listen
91               */               */
92              void SetMidiInputChannel(MidiInputDevice::MidiInputPort::midi_chan_t MidiChannel);              void SetMidiInputChannel(midi_chan_t MidiChannel);
93    
94              /**              /**
95               * Connect this sampler channel to a MIDI input triplet.               * Connect this sampler channel to a MIDI input triplet.
96               *               *
97               * @param pDevice - MIDI input device to connect to               * @param pDevice - MIDI input device to connect to
98               * @param MidiPort - MIDI port to connect to               * @param iMidiPort - MIDI port to connect to
99               * @param MidiChannel - optional: MIDI channel on which the               * @param MidiChannel - optional: MIDI channel on which the
100               *                      sampler channel should listen to               *                      sampler channel should listen to
101               *                      (default: listen on all MIDI channels)               *                      (default: listen on all MIDI channels)
102               */               */
103              void SetMidiInput(MidiInputDevice* pDevice, int MidiPort, MidiInputDevice::MidiInputPort::midi_chan_t MidiChannel = MidiInputDevice::MidiInputPort::midi_chan_all);              void SetMidiInput(MidiInputDevice* pDevice, int iMidiPort, midi_chan_t MidiChannel = midi_chan_all);
104    
105              /**              /**
106               * Returns the engine that was deployed on this sampler channel.               * Returns the EngineChannel object that was deployed on this
107                 * sampler channel appropriate to the given sampler engine type.
108               *               *
109               * @returns  pointer to engine or NULL if no engine deployed               * @returns  pointer to engine or NULL if no engine deployed
110               */               */
111              Engine* GetEngine();              EngineChannel* GetEngineChannel();
112    
113              /**              /**
114               * Returns the MIDI input channel to which this sampler               * Returns the MIDI input channel to which this sampler
# Line 112  namespace LinuxSampler { Line 117  namespace LinuxSampler {
117               * @returns  The MIDI input channel on which the sampler               * @returns  The MIDI input channel on which the sampler
118               *           channel is listening to.               *           channel is listening to.
119               */               */
120              MidiInputDevice::MidiInputPort::midi_chan_t GetMidiInputChannel();              midi_chan_t GetMidiInputChannel();
121    
122              /**              /**
123               * Returns the MIDI input port number to which this sampler               * Returns the MIDI input port number to which this sampler
# Line 146  namespace LinuxSampler { Line 151  namespace LinuxSampler {
151               */               */
152              uint Index();              uint Index();
153    
154                /** Returns the sampler to which this channel belongs */
155                Sampler* GetSampler();
156                
157                /**
158                 * Registers the specified listener to be notified
159                 * when the engine type of this sampler channel is changed.
160                 */
161                void AddEngineChangeListener(EngineChangeListener* l);
162    
163                /**
164                 * Removes the specified listener.
165                 */
166                void RemoveEngineChangeListener(EngineChangeListener* l);
167    
168                /**
169                 * Removes the specified listener.
170                 */
171                void RemoveAllEngineChangeListeners();
172    
173                /**
174                 * Notifies listeners that the engine type of this sampler
175                 * channel is going to be changed soon.
176                 */
177                void fireEngineToBeChanged();
178    
179                /**
180                 * Notifies listeners that the engine
181                 * type of this sampler channel is changed.
182                 */
183                void fireEngineChanged();
184    
185    
186          protected:          protected:
187              SamplerChannel(Sampler* pS);              SamplerChannel(Sampler* pS);
188             ~SamplerChannel();              virtual ~SamplerChannel();
189    
190              /** Getting MIDI input device port given its index number. */              /** Getting MIDI input device port given its index number. */
191              MidiInputDevice::MidiInputPort* GetMidiInputDevicePort(int MidiPort);              MidiInputPort* __GetMidiInputDevicePort(int iMidiPort);
192    
193              Sampler*           pSampler;              Sampler*           pSampler;
194              Engine*            pEngine;              EngineChannel*     pEngineChannel;
195              AudioOutputDevice* pAudioOutputDevice;              AudioOutputDevice* pAudioOutputDevice;
196              MidiInputDevice*   pMidiInputDevice;              MidiInputDevice*   pMidiInputDevice;
             int                midiPort;  
             MidiInputDevice::MidiInputPort::midi_chan_t midiChannel;  
197              int                iIndex;              int                iIndex;
198    
199              friend class Sampler;              friend class Sampler;
200            private:
201                int                iMidiPort;   ///< Don't access directly, read GetMidiInputPort() instead !
202                midi_chan_t        midiChannel; ///< Don't access directly, read GetMidiInputChannel() instead !
203                ListenerList<EngineChangeListener*> llEngineChangeListeners;
204      };      };
205    
206      /** LinuxSampler main class      /** @brief LinuxSampler main class
207       *       *
208       * This is the toplevel class for a LinuxSampler instance.       * This is the toplevel class for a LinuxSampler instance.
209       *       *
# Line 172  namespace LinuxSampler { Line 211  namespace LinuxSampler {
211       * sampler channel can individually be deployed with it's own sampler       * sampler channel can individually be deployed with it's own sampler
212       * engine, connected to an arbitrary MIDI input device and connected to       * engine, connected to an arbitrary MIDI input device and connected to
213       * an arbitrary audio output device. Here an example setup:       * an arbitrary audio output device. Here an example setup:
214         * @code
215         * S.Channel    MIDI in    S.Engine         Audio out
216         * -------------------------------------------------------------------
217         *   0          Alsa   ->  gig::Engine  ->  Jack
218         *   1          VSTi   ->  Akai::Engine ->  VSTi
219         *   2          Jack   ->  DLS::Engine  ->  Jack
220         *   3          Jack   ->  SF::Engine   ->  Alsa
221       *       *
222       *  S.Channel.      MIDI in         S.Engine                Audio out       * ... (and so on) ...
223       *  -------------------------------------------------------------------       * @endcode
      *  0               Alsa    ->      gig::Engine     ->      Jack  
      *  1               VSTi    ->      Akai::Engine    ->      VSTi  
      *  2               Jack    ->      DLS::Engine     ->      Jack  
      *  3               Jack    ->      SF::Engine      ->      Alsa  
      *  
      *  ... (and so on) ...  
224       *       *
225       * Note that not all audio and MIDI backends and sampler engines listed       * Note that not all audio and MIDI backends and sampler engines listed
226       * in the example above are already implemented!       * in the example above might already been implemented!
227       *       *
228       * As you can see in the example setup, LinuxSampler is capable to use       * As you can see in the example setup, LinuxSampler is capable to use
229       * several, different audio output and MIDI input systems       * several, different audio output and MIDI input systems
230       * simultaniously at the same time. Here the example setup shown in the       * simultaniously at the same time. Here the example setup shown in the
231       * ascpect of MIDI input and audio output devices / drivers:       * aspect of MIDI input and audio output devices / drivers:
232       *       * @code
233       *                            ######################### #########################       *                      ######################### #########################
234       *                            # AudioOutputDeviceJack # # AudioOutputDeviceVSTi #       *                      # AudioOutputDeviceJack # # AudioOutputDeviceVSTi #
235       *                            ######################### #########################       *                      ######################### #########################
236       *                                          ^   ^           ^       *                                        ^   ^           ^
237       *    /------------>|Sampler Channel 0|-----/   |           |       *  /------------>|Sampler Channel 0|-----/   |           |
238       *    |  /--------->|Sampler Channel 1|---------------------/       *  |  /--------->|Sampler Channel 1|---------------------/
239       *    |  |    /---->|Sampler Channel 2|---------/       *  |  |  /------>|Sampler Channel 2|---------/
240       *    |  |    |  /->|Sampler Channel 3|------------>#########################       *  |  |  |  /--->|Sampler Channel 3|------------>#########################
241       *    |  |    |  |  ... (and so on) ...             # AudioOutputDeviceAlsa #       *  |  |  |  |    ... (and so on) ...             # AudioOutputDeviceAlsa #
242       *    |  |    |  |                                  #########################       *  |  |  |  |                                    #########################
243       *    |  |    |  \----------------------------------------------------\       *  |  |  |  \-----------------------------------------------------\
244       *    |  |    \-------------------------------------------\           |       *  |  |  \--------------------------------------------\           |
245       *    |  \--------------------\                           |           |       *  |  \--------------------\                          |           |
246       *    |                       |                           |           |       *  |                       |                          |           |
247       *  ####################### ####################### #######################       * ####################### ####################### #######################
248       *  # MidiInputDeviceAlsa # # MidiInputDeviceVSTi # # MidiInputDeviceJack #       * # MidiInputDeviceAlsa # # MidiInputDeviceVSTi # # MidiInputDeviceJack #
249       *  ####################### ####################### #######################       * ####################### ####################### #######################
250         * @endcode
251       *       *
252       * As you can see in this example setup, one device (that is midi input       * As you can see in this example setup, one device (that is midi input
253       * driver / audio output driver) can be connected multiple times to       * driver / audio output driver) can be connected multiple times to
254       * different sampler channels.       * different sampler channels.
255         *
256         * It's even possible to create multiple instances of the same driver, for
257         * example multiple instances of the Alsa output driver to use multiple
258         * sound cards at the same time, or multiple instances of the JACK audio
259         * output driver to leverage SMP systems or boxes with several hard discs.
260       */       */
261      class Sampler {      class Sampler {
262          public:          public:
# Line 222  namespace LinuxSampler { Line 268  namespace LinuxSampler {
268              /**              /**
269               * Destructor.               * Destructor.
270               */               */
271             ~Sampler();              virtual ~Sampler();
272    
273              /**              /**
274               * Returns the number of sampler channels currently allocated.               * Returns the number of sampler channels currently allocated.
# Line 271  namespace LinuxSampler { Line 317  namespace LinuxSampler {
317              void RemoveSamplerChannel(uint uiSamplerChannel);              void RemoveSamplerChannel(uint uiSamplerChannel);
318    
319              /**              /**
320                 * Destroy and remove all sampler channels from this
321                 * Sampler instance.
322                 */
323                void RemoveAllSamplerChannels();
324    
325                /**
326                 * Registers the specified listener to be notified
327                 * when the number of sampler chanels is changed.
328                 */
329                void AddChannelCountListener(ChannelCountListener* l);
330    
331                /**
332                 * Removes the specified listener.
333                 */
334                void RemoveChannelCountListener(ChannelCountListener* l);
335    
336                /**
337                 * Registers the specified listener to be notified
338                 * when the number of audio output devices is changed.
339                 */
340                void AddAudioDeviceCountListener(AudioDeviceCountListener* l);
341    
342                /**
343                 * Removes the specified listener.
344                 */
345                void RemoveAudioDeviceCountListener(AudioDeviceCountListener* l);
346    
347                
348                /**
349                 * Registers the specified listener to be notified
350                 * when the number of MIDI input devices is changed.
351                 */
352                void AddMidiDeviceCountListener(MidiDeviceCountListener* l);
353    
354                /**
355                 * Removes the specified listener.
356                 */
357                void RemoveMidiDeviceCountListener(MidiDeviceCountListener* l);
358    
359                /**
360                 * Registers the specified listener to be notified when the number
361                 * of active voices in a particular sampler channel is changed.
362                 */
363                void AddVoiceCountListener(VoiceCountListener* l);
364    
365                /**
366                 * Removes the specified listener.
367                 */
368                void RemoveVoiceCountListener(VoiceCountListener* l);
369    
370                /**
371                 * Notifies listeners that the number of active voices
372                 * on the specified sampler channel is changed.
373                 * @param ChannelId The numerical ID of the sampler channel.
374                 * @param NewCount The new number of active voices.
375                 */
376                void fireVoiceCountChanged(int ChannelId, int NewCount);
377    
378                /**
379                 * Registers the specified listener to be notified when the number
380                 * of active disk streams in a particular sampler channel is changed.
381                 */
382                void AddStreamCountListener(StreamCountListener* l);
383    
384                /**
385                 * Removes the specified listener.
386                 */
387                void RemoveStreamCountListener(StreamCountListener* l);
388    
389                /**
390                 * Notifies listeners that the number of active disk streams
391                 * on the specified sampler channel is changed.
392                 * @param ChannelId The numerical ID of the sampler channel.
393                 * @param NewCount The new number of active disk streams.
394                 */
395                void fireStreamCountChanged(int ChannelId, int NewCount);
396    
397                /**
398                 * Registers the specified listener to be
399                 * notified when the fill state of the disk stream
400                 * buffers on a specific sampler channel is changed.
401                 */
402                void AddBufferFillListener(BufferFillListener* l);
403    
404                /**
405                 * Removes the specified listener.
406                 */
407                void RemoveBufferFillListener(BufferFillListener* l);
408    
409                /**
410                 * Notifies listeners that the fill state of the disk stream
411                 * buffers on the specified sampler channel is changed.
412                 * @param ChannelId The numerical ID of the sampler channel.
413                 * @param FillData The buffer fill data for the specified sampler channel.
414                 */
415                void fireBufferFillChanged(int ChannelId, String FillData);
416    
417                /**
418                 * Registers the specified listener to be notified
419                 * when total number of active voices is changed.
420                 */
421                void AddTotalVoiceCountListener(TotalVoiceCountListener* l);
422    
423                /**
424                 * Removes the specified listener.
425                 */
426                void RemoveTotalVoiceCountListener(TotalVoiceCountListener* l);
427    
428                /**
429                 * Notifies listeners that the total number of active voices is changed.
430                 * @param NewCount The new number of active voices.
431                 */
432                void fireTotalVoiceCountChanged(int NewCount);
433                
434                void AddTotalStreamCountListener(TotalStreamCountListener* l);
435                void RemoveTotalStreamCountListener(TotalStreamCountListener* l);
436                void fireTotalStreamCountChanged(int NewCount);
437    
438                /**
439                 * Registers the specified listener to be notified when the number
440                 * of effect sends on a particular sampler channel is changed.
441                 */
442                void AddFxSendCountListener(FxSendCountListener* l);
443    
444                /**
445                 * Removes the specified listener.
446                 */
447                void RemoveFxSendCountListener(FxSendCountListener* l);
448    
449                /**
450               * Returns the names of all available audio output drivers.               * Returns the names of all available audio output drivers.
451               */               */
452              std::vector<String> AvailableAudioOutputDrivers();              std::vector<String> AvailableAudioOutputDrivers();
453    
454              /**              /**
455                 * Returns the names of all available MIDI input drivers.
456                 */
457                std::vector<String> AvailableMidiInputDrivers();
458    
459                /**
460                 * Returns the names of all available sampler engine types.
461                 * @see SamplerChannel::SetEngineType()
462                 */
463                std::vector<String> AvailableEngineTypes();
464    
465                /**
466               * Create an audio output device.               * Create an audio output device.
467               *               *
468               * @param AudioDriver - name of the audio driver               * @param AudioDriver - name of the audio driver
469               * @param Parameters - eventually needed driver parameters to               * @param Parameters - eventually needed driver parameters to
470               *                     create the device               *                     create the device
471               * @returns  pointer to created audio output device               * @returns  pointer to created audio output device
472               * @throws LinuxSamplerException  if device could not be created               * @throws Exception  if device could not be created
473               */               */
474              AudioOutputDevice* CreateAudioOutputDevice(String AudioDriver, std::map<String,String> Parameters) throw (LinuxSamplerException);              AudioOutputDevice* CreateAudioOutputDevice(String AudioDriver, std::map<String,String> Parameters) throw (Exception);
475    
476              /**              /**
477               * Create a midi input device.               * Create a midi input device.
# Line 293  namespace LinuxSampler { Line 480  namespace LinuxSampler {
480               * @param Parameters - eventually needed driver parameters to               * @param Parameters - eventually needed driver parameters to
481               *                     create the device               *                     create the device
482               * @returns  pointer to created midi input device               * @returns  pointer to created midi input device
483               * @throws LinuxSamplerException  if device could not be created               * @throws Exception  if device could not be created
484               */               */
485              MidiInputDevice* CreateMidiInputDevice(String MidiDriver, std::map<String,String> Parameters) throw (LinuxSamplerException);              MidiInputDevice* CreateMidiInputDevice(String MidiDriver, std::map<String,String> Parameters) throw (Exception);
486    
487              /**              /**
488               * Returns the number of all created audio output devices.               * Returns the number of all created audio output devices.
# Line 319  namespace LinuxSampler { Line 506  namespace LinuxSampler {
506    
507              /**              /**
508               * Destroy the given audio output device and takes care if there               * Destroy the given audio output device and takes care if there
509               * are still sampler angines connected to this device, etc.               * are still sampler engines connected to this device, etc.
510               *               *
511               * @throws LinuxSamplerException  if sampler channels are still               * @throws Exception  if sampler channels are still
512               *                                connected to the device               *                    connected to the device
513               */               */
514              void DestroyAudioOutputDevice(AudioOutputDevice* pDevice) throw (LinuxSamplerException);              void DestroyAudioOutputDevice(AudioOutputDevice* pDevice) throw (Exception);
515    
516                /**
517                 * Destroy all audio output devices and takes care if there
518                 * are still sampler engines connected to devices, etc.
519                 *
520                 * @throws Exception  if sampler channels are still
521                 *                    connected to device
522                 */
523                void DestroyAllAudioOutputDevices() throw (Exception);
524    
525              /**              /**
526               * Destroy the given MIDI input device and takes care if there               * Destroy the given MIDI input device and takes care if there
527               * are still sampler angines connected to this device, etc.               * are still sampler engines connected to this device, etc.
528               *               *
529               * @throws LinuxSamplerException  if sampler channels are still               * @throws Exception  if sampler channels are still
530               *                                connected to the device               *                    connected to the device
531               */               */
532              void DestroyMidiInputDevice(MidiInputDevice* pDevice) throw (LinuxSamplerException);              void DestroyMidiInputDevice(MidiInputDevice* pDevice) throw (Exception);
533    
534                /**
535                 * Destroy all MIDI input devices and take care if there
536                 * are still sampler engines connected to device, etc.
537                 *
538                 * @throws Exception  if sampler channels are still
539                 *                    connected to device
540                 */
541                void DestroyAllMidiInputDevices() throw (Exception);
542    
543                 /**
544                 * Gets the current number of all active streams.
545                 * @returns The current number of all active streams.
546                 */
547                int GetDiskStreamCount();
548    
549                /**
550                 * Gets the current number of all active voices.
551                 * @returns The current number of all active voices.
552                 */
553                int GetVoiceCount();
554    
555              /**              /**
556               * Reset the whole sampler. Destroy all engines, sampler               * Reset the whole sampler. Destroy all engines, sampler
# Line 341  namespace LinuxSampler { Line 558  namespace LinuxSampler {
558               */               */
559              void Reset();              void Reset();
560    
561                /**
562                 * Advise the FPU to treat denormal floating point numbers as
563                 * zero, to avoid severe performance penalty when dealing with
564                 * such extreme floating point values.
565                 *
566                 * @returns @c true if FPU supports it, @c false otherwise
567                 */
568                static bool EnableDenormalsAreZeroMode();
569    
570                /**
571                 * Notifies listeners about the current number of voices,
572                 * streams and total voices, and the current fill state of
573                 * the disk stream buffers.
574                 */
575                void fireStatistics();
576    
577    #if defined(WIN32)
578                /**
579                 * Gets the directory where the liblinuxsampler dll is
580                 * located.
581                 * @returns installation directory
582                 */
583                static String GetInstallDir();
584    #endif
585          protected:          protected:
586                /**
587                 * Notifies listeners that the number of sampler channels has been changed.
588                 * @param NewCount The new number of sampler channels.
589                 */
590                void fireChannelCountChanged(int NewCount);
591    
592                /**
593                 * Notifies listeners that the specified sampler channel has just
594                 * been added.
595                 * @param pChannel The new sampler channel.
596                 */
597                void fireChannelAdded(SamplerChannel* pChannel);
598    
599                /**
600                 * Notifies listeners that the specified sampler channel is
601                 * going to be removed soon.
602                 * @param pChannel sampler channel to be removed.
603                 */
604                void fireChannelToBeRemoved(SamplerChannel* pChannel);
605    
606                /**
607                 * Notifies listeners that the number of audio output devices has been changed.
608                 * @param NewCount The new number of audio output devices.
609                 */
610                void fireAudioDeviceCountChanged(int NewCount);
611    
612                /**
613                 * Notifies listeners that the number of MIDI input devices has been changed.
614                 * @param NewCount The new number of MIDI input devices.
615                 */
616                void fireMidiDeviceCountChanged(int NewCount);
617    
618                /**
619                 * Notifies listeners that the supplied MIDI input device is
620                 * going to be destroyed soon.
621                 * @param pDevice MIDI input device to be destroyed
622                 */
623                void fireMidiDeviceToBeDestroyed(MidiInputDevice* pDevice);
624    
625                /**
626                 * Notifies listeners that the supplied MIDI input device was
627                 * just created.
628                 * @param pDevice new MIDI input device
629                 */
630                void fireMidiDeviceCreated(MidiInputDevice* pDevice);
631    
632                /**
633                 * Notifies listeners that the number of effect sends
634                 * on a particular sampler channel is changed.
635                 * @param ChannelId The numerical ID of the sampler channel.
636                 * @param NewCount The new number of sampler channels.
637                 */
638                void fireFxSendCountChanged(int ChannelId, int NewCount);
639    
640              typedef std::map<uint, AudioOutputDevice*> AudioOutputDeviceMap;              typedef std::map<uint, AudioOutputDevice*> AudioOutputDeviceMap;
641              typedef std::map<uint, MidiInputDevice*> MidiInputDeviceMap;              typedef std::map<uint, MidiInputDevice*> MidiInputDeviceMap;
642              typedef std::map<uint, SamplerChannel*> SamplerChannelMap;              typedef std::map<uint, SamplerChannel*> SamplerChannelMap;
# Line 350  namespace LinuxSampler { Line 645  namespace LinuxSampler {
645              AudioOutputDeviceMap  mAudioOutputDevices; ///< contains all created audio output devices              AudioOutputDeviceMap  mAudioOutputDevices; ///< contains all created audio output devices
646              MidiInputDeviceMap    mMidiInputDevices;   ///< contains all created MIDI input devices              MidiInputDeviceMap    mMidiInputDevices;   ///< contains all created MIDI input devices
647    
648                // statistics cache
649                uint uiOldTotalVoiceCount;
650                uint uiOldTotalStreamCount;
651                std::map<uint, uint> mOldVoiceCounts;
652                std::map<uint, uint> mOldStreamCounts;
653    
654              friend class SamplerChannel;              friend class SamplerChannel;
655    
656            private:
657                ListenerList<ChannelCountListener*> llChannelCountListeners;
658                ListenerList<AudioDeviceCountListener*> llAudioDeviceCountListeners;
659                ListenerList<MidiDeviceCountListener*> llMidiDeviceCountListeners;
660                ListenerList<VoiceCountListener*> llVoiceCountListeners;
661                ListenerList<StreamCountListener*> llStreamCountListeners;
662                ListenerList<BufferFillListener*> llBufferFillListeners;
663                ListenerList<TotalStreamCountListener*> llTotalStreamCountListeners;
664                ListenerList<TotalVoiceCountListener*> llTotalVoiceCountListeners;
665                ListenerList<FxSendCountListener*> llFxSendCountListeners;
666    
667                class EventHandler : public EngineChangeListener, public FxSendCountListener {
668                    public:
669                        void SetSampler(Sampler* pSampler) { this->pSampler = pSampler; }
670    
671                        /**
672                         * Invoked when the engine type of the specified sampler
673                         * channel is going to be changed soon.
674                         * @param ChannelId The numerical ID of the sampler channel
675                         */
676                        virtual void EngineToBeChanged(int ChannelId);
677    
678                        /**
679                         * Invoked when the engine type of the
680                         * specified sampler channel is changed.
681                         * @param ChannelId The numerical ID of the sampler
682                         * channel, which engine type has been changed.
683                         */
684                        virtual void EngineChanged(int ChannelId);
685    
686                        /**
687                         * Invoked when the number of effect sends
688                         * on the specified sampler channel has changed.
689                         * @param ChannelId The numerical ID of the sampler channel.
690                         * @param NewCount The new number of effect sends.
691                         */
692                        virtual void FxSendCountChanged(int ChannelId, int NewCount);
693    
694                    private:
695                        Sampler* pSampler;
696                } eventHandler;
697      };      };
698  }  }
699    

Legend:
Removed from v.212  
changed lines
  Added in v.1897

  ViewVC Help
Powered by ViewVC