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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 123 - (hide annotations) (download) (as text)
Mon Jun 14 19:33:16 2004 UTC (19 years, 10 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 12137 byte(s)
* src/common: added template class 'optional<>' which can be used e.g. as
  return type whenever a value might be returned, but don't has to; this
  template class pretty much acts like a pointer of the given type, but is
  much more safer than a simple pointer
* src/audiodriver: added static class AudioDeviceFactory to create audio
  devices at runtime by using a string and to obtain driver informations
  of drivers at runtime, driver classes should simply use the macro
  REGISTER_AUDIO_OUTPUT_DRIVER(DriverName,DriverClass) in their cpp file
  to register the driver to LinuxSampler (no changes needed anymore in the
  LS code to add a new audio output driver)
* src/drivers: added classes to dynamically manage driver parameters; there
  are two different kinds of parameters: parameters which are need to
  create a new device (DeviceCreationParameterX) used to e.g. create an
  audio output device or a MIDI input device and parameters which are only
  available at runtime, means when a device is already created
  (DeviceRuntimeParameterX) which will be e.g. used as audio channel
  parameters and MIDI port parameters
* src/linuxsampler.cpp: all registered audio output drivers will be shown
  on the console on startup
* src/network: implemented configuration of audio output devices via LSCP

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 53 * *
7     * This program is free software; you can redistribute it and/or modify *
8     * it under the terms of the GNU General Public License as published by *
9     * the Free Software Foundation; either version 2 of the License, or *
10     * (at your option) any later version. *
11     * *
12     * This program is distributed in the hope that it will be useful, *
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15     * GNU General Public License for more details. *
16     * *
17     * You should have received a copy of the GNU General Public License *
18     * along with this program; if not, write to the Free Software *
19     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
20     * MA 02111-1307 USA *
21     ***************************************************************************/
22    
23     #ifndef __LS_SAMPLER_H__
24     #define __LS_SAMPLER_H__
25    
26     #include <vector>
27     #include <map>
28     #include "common/global.h"
29     #include "common/LinuxSamplerException.h"
30     #include "engines/common/Engine.h"
31     #include "mididriver/MidiInputDevice.h"
32     #include "audiodriver/AudioOutputDevice.h"
33    
34     namespace LinuxSampler {
35    
36     // just symbol prototyping
37     class Sampler;
38    
39 schoenebeck 57 /** LinuxSampler sampler channel
40     *
41     * Encapsulates one sampler engine, one connection to a MIDI input
42     * device and one connection to an audio output device. You cannot
43 schoenebeck 123 * create an instance of this class on your own, you have to use the
44 schoenebeck 57 * AddSamplerChannel() method of the Sampler object to create a new
45     * sampler channel.
46     */
47 schoenebeck 53 class SamplerChannel {
48     public:
49 schoenebeck 57 /**
50     * Deploy a sampler engine of the given type for this sampler
51     * channnel. If there was already a sampler engine deployed on
52     * this sampler channel, then the old engine will automatically
53     * be destroyed.
54     *
55     * @param EngineType - type of the engine to deploy
56     */
57 schoenebeck 123 void LoadEngine(Engine::type_t EngineType); // TODO: to be changed to 'void LoadEngine(String EngineType) throws (LinuxSamplerException);'
58 schoenebeck 57
59     /**
60 schoenebeck 123 * Connect this sampler channel to an audio output device, that
61     * is an instance of an audio output driver. If this sampler
62     * channel was already connected to an audio output device, then
63     * the old connection will automatically be removed before.
64 schoenebeck 57 *
65 schoenebeck 123 * @param pDevice - audio output device to connect to
66 schoenebeck 57 */
67 schoenebeck 123 void SetAudioOutputDevice(AudioOutputDevice* pDevice);
68 schoenebeck 57
69     /**
70     * Connect this sampler channel to and MIDI input device (that
71     * is MIDI input driver) of the given type. If the MIDI input
72     * driver for the desired MIDI input system is not yet created,
73     * then it will be created automatically, but with default
74     * settings though. If this sampler channel was already
75     * connected to a MIDI input device, then the old connection
76     * will automatically be removed before.
77     *
78     * @param MidiType - MIDI input system to connect to
79     * @param MidiChannel - optional: MIDI channel on which the
80     * sampler channel should listen to
81     * (default: listen on all MIDI channels)
82     */
83 schoenebeck 123 void SetMidiInputDevice(MidiInputDevice::type_t MidiType, MidiInputDevice::midi_chan_t MidiChannel = MidiInputDevice::midi_chan_all); // TODO: 'MidiType' type to be changed to 'MidiInputDevice*'
84 schoenebeck 57
85     /**
86     * Returns the engine that was deployed on this sampler channel.
87     *
88     * @returns pointer to engine or NULL if no engine deployed
89     */
90     Engine* GetEngine();
91    
92     /**
93     * Returns the MIDI input device to which this sampler channel
94     * is currently connected to.
95     *
96     * @returns pointer to MIDI input device or NULL if not
97     * connected
98     */
99     MidiInputDevice* GetMidiInputDevice();
100    
101     /**
102     * Returns the audio output device to which this sampler channel
103     * is currently connected to.
104     *
105     * @returns pointer to audio output device or NULL if not
106     * connected
107     */
108     AudioOutputDevice* GetAudioOutputDevice();
109    
110     /**
111     * Returns the index number of this sampler channel within the
112     * Sampler instance.
113     */
114     uint Index();
115    
116     protected:
117 schoenebeck 53 SamplerChannel(Sampler* pS);
118     ~SamplerChannel();
119 schoenebeck 57
120 schoenebeck 53 Sampler* pSampler;
121     Engine* pEngine;
122     MidiInputDevice* pMidiInputDevice;
123     AudioOutputDevice* pAudioOutputDevice;
124     int iIndex;
125 schoenebeck 57
126     friend class Sampler;
127 schoenebeck 53 };
128    
129 schoenebeck 57 /** LinuxSampler main class
130     *
131     * This is the toplevel class for a LinuxSampler instance.
132     *
133     * LinuxSampler can have arbitrary numbers of sampler channels. Each
134     * sampler channel can individually be deployed with it's own sampler
135     * engine, connected to an arbitrary MIDI input device and connected to
136     * an arbitrary audio output device. Here an example setup:
137     *
138     * S.Channel. MIDI in S.Engine Audio out
139     * -------------------------------------------------------------------
140     * 0 Alsa -> gig::Engine -> Jack
141     * 1 VSTi -> Akai::Engine -> VSTi
142     * 2 Jack -> DLS::Engine -> Jack
143     * 3 Jack -> SF::Engine -> Alsa
144     *
145     * ... (and so on) ...
146     *
147     * Note that not all audio and MIDI backends and sampler engines listed
148     * in the example above are already implemented!
149     *
150     * As you can see in the example setup, LinuxSampler is capable to use
151     * several, different audio output and MIDI input systems
152     * simultaniously at the same time. Here the example setup shown in the
153     * ascpect of MIDI input and audio output devices / drivers:
154     *
155     * ######################### #########################
156     * # AudioOutputDeviceJack # # AudioOutputDeviceVSTi #
157     * ######################### #########################
158     * ^ ^ ^
159     * /------------>|Sampler Channel 0|-----/ | |
160     * | /--------->|Sampler Channel 1|---------------------/
161     * | | /---->|Sampler Channel 2|---------/
162     * | | | /->|Sampler Channel 3|------------>#########################
163     * | | | | ... (and so on) ... # AudioOutputDeviceAlsa #
164     * | | | | #########################
165     * | | | \----------------------------------------------------\
166     * | | \-------------------------------------------\ |
167     * | \--------------------\ | |
168     * | | | |
169     * ####################### ####################### #######################
170     * # MidiInputDeviceAlsa # # MidiInputDeviceVSTi # # MidiInputDeviceJack #
171     * ####################### ####################### #######################
172     *
173     * As you can see in this example setup, one device (that is midi input
174     * driver / audio output driver) can be connected multiple times to
175     * different sampler channels.
176     */
177 schoenebeck 53 class Sampler {
178     public:
179 schoenebeck 57 /**
180     * Constructor. Create a LinuxSampler instance.
181     */
182 schoenebeck 53 Sampler();
183 schoenebeck 57
184     /**
185     * Destructor.
186     */
187 schoenebeck 53 ~Sampler();
188 schoenebeck 57
189     /**
190     * Returns the number of sampler channels currently allocated.
191     */
192     uint SamplerChannels();
193    
194     /**
195     * Create and add a new sampler channel to this Sampler instance.
196     *
197     * @returns pointer to new sampler channel
198     */
199     SamplerChannel* AddSamplerChannel();
200    
201     /**
202     * Returns the sampler channel of the given sampler channel
203     * index.
204     *
205     * @returns pointer to sought sampler channel
206     */
207     SamplerChannel* GetSamplerChannel(uint uiSamplerChannel);
208    
209     /**
210     * Destroy and remove the given sampler channel from this
211     * Sampler instance.
212     *
213     * @param pSamplerChannel - pointer to sampler channel to remove
214     */
215     void RemoveSamplerChannel(SamplerChannel* pSamplerChannel);
216    
217     /**
218     * Destroy and remove the given sampler channel from this
219     * Sampler instance.
220     *
221     * @param uiSamplerChannel - index of the sampler channel to
222     * remove
223     */
224     void RemoveSamplerChannel(uint uiSamplerChannel);
225    
226 schoenebeck 123 std::vector<String> AvailableAudioOutputDrivers();
227    
228 schoenebeck 57 /**
229     * Create an audio output device of the given type.
230     *
231 schoenebeck 123 * @param AudioDriver - name of the audio driver
232     * @param Parameters - eventually needed driver parameters to
233     * create the device
234 schoenebeck 57 * @returns pointer to created audio output device
235 schoenebeck 123 * @throws LinuxSamplerException if device could not be created
236 schoenebeck 57 */
237 schoenebeck 123 AudioOutputDevice* CreateAudioOutputDevice(String AudioDriver, std::map<String,String> Parameters) throw (LinuxSamplerException);
238 schoenebeck 57
239 schoenebeck 123 uint AudioOutputDevices();
240 schoenebeck 57
241 schoenebeck 123 std::map<uint, AudioOutputDevice*> GetAudioOutputDevices();
242    
243     void DestroyAudioOutputDevice(AudioOutputDevice* pDevice) throw (LinuxSamplerException);
244    
245 schoenebeck 57 /**
246     * Create a MIDI input device of the given type.
247     *
248     * @param MidiType - desired MIDI input system to use
249     * @returns pointer to created MIDI input device
250     */
251 schoenebeck 123 MidiInputDevice* CreateMidiInputDevice(MidiInputDevice::type_t MidiType); //TODO: to be changed to 'MidiInputDevice* CreateMidiInputDevice(String MidiDriver, std::map<String,String> Parameters) throw (LinuxSamplerException);'
252 schoenebeck 57
253     /**
254     * Returns the MIDI input device of the given type.
255     *
256     * @param MidiType - desired MIDI input system to use
257     * @returns pointer to MIDI input device or NULL if device of
258     * desired type is not yet created
259     */
260 schoenebeck 64 MidiInputDevice* GetMidiInputDevice(MidiInputDevice::type_t MidiType);
261 schoenebeck 57
262 schoenebeck 53 protected:
263 schoenebeck 123 typedef std::map<uint, AudioOutputDevice*> AudioOutputDeviceMap;
264 schoenebeck 64 typedef std::map<MidiInputDevice::type_t, MidiInputDevice*> MidiInputDeviceMap;
265 schoenebeck 53
266     std::vector<SamplerChannel*> vSamplerChannels; ///< contains all created sampler channels
267 schoenebeck 123 AudioOutputDeviceMap mAudioOutputDevices; ///< contains all created audio output devices
268 schoenebeck 53 MidiInputDeviceMap MidiInputDevices;
269    
270 schoenebeck 123 template<class T> inline String ToString(T o) {
271     std::stringstream ss;
272     ss << o;
273     return ss.str();
274     }
275    
276 schoenebeck 53 friend class SamplerChannel;
277     };
278     }
279    
280     #endif // __LS_SAMPLER_H__

  ViewVC Help
Powered by ViewVC