/[svn]/linuxsampler/trunk/src/drivers/midi/MidiInputDeviceCoreMidi.h
ViewVC logotype

Contents of /linuxsampler/trunk/src/drivers/midi/MidiInputDeviceCoreMidi.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1149 - (show annotations) (download) (as text)
Sat Apr 7 22:32:47 2007 UTC (17 years ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 4625 byte(s)
* minor fix of EGDecay
* fixed compilation errors regarding OSX
(patch by Toshi Nagata)

1 /***************************************************************************
2 * *
3 * Copyright (C) 2004, 2005 Grame *
4 * Copyright (C) 2007 Christian Schoenebeck *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
19 * MA 02111-1307 USA *
20 ***************************************************************************/
21
22 #ifndef __LS_MIDIINPUTDEVICECOREMIDI_H__
23 #define __LS_MIDIINPUTDEVICECOREMIDI_H__
24
25 #include <CoreMIDI/MIDIServices.h>
26
27 #include "../../common/global.h"
28 #include "MidiInputDevice.h"
29
30 namespace LinuxSampler {
31
32 /** CoreMidi input driver
33 *
34 * Implements MIDI input for MacOSX CoreMidi architecture
35 */
36 class MidiInputDeviceCoreMidi : public MidiInputDevice {
37
38 public:
39 /**
40 * MIDI Port implementation for the CoreMidi input driver.
41 */
42 class MidiInputPortCoreMidi : public MidiInputPort {
43 public:
44 /** MIDI Port Parameter 'NAME'
45 *
46 * Used to assign an arbitrary name to the MIDI port.
47 */
48 class ParameterName : public MidiInputPort::ParameterName {
49 public:
50 ParameterName(MidiInputPort* pPort) throw (Exception);
51 virtual void OnSetValue(String s) throw (Exception);
52 };
53
54 /** MIDI Port Parameter 'CORE_MIDI_BINDINGS'
55 *
56 * Used to connect to other Alsa sequencer clients.
57 */
58
59 class ParameterCoreMidiBindings : public DeviceRuntimeParameterStrings {
60 public:
61 ParameterCoreMidiBindings(MidiInputPortCoreMidi* pPort);
62 virtual String Description();
63 virtual bool Fix();
64 virtual std::vector<String> PossibilitiesAsString();
65 virtual void OnSetValue(std::vector<String> vS) throw (Exception);
66 protected:
67 MidiInputPortCoreMidi* pPort;
68 };
69
70 static void ReadProc(const MIDIPacketList *pktlist, void *refCon, void *connRefCon);
71 static int pPortID;
72
73 protected:
74 MidiInputPortCoreMidi(MidiInputDeviceCoreMidi* pDevice) throw (MidiInputException);
75 ~MidiInputPortCoreMidi();
76 friend class MidiInputDeviceCoreMidi;
77 private:
78 MidiInputPortCoreMidi* pDevice;
79 MIDIEndpointRef pDestination;
80
81 friend class ParameterName;
82 friend class ParameterCoreMidiBindings;
83 };
84
85 MidiInputDeviceCoreMidi(std::map<String,DeviceCreationParameter*> Parameters, void* pSampler);
86 virtual ~MidiInputDeviceCoreMidi();
87
88 // derived abstract methods from class 'MidiInputDevice'
89 void Listen(){}
90 void StopListen(){}
91 virtual String Driver();
92 static String Name();
93 static String Description();
94 static String Version();
95
96 MidiInputPortCoreMidi* CreateMidiPort();
97
98 // CoreMidi callback
99 static void NotifyProc(const MIDINotification* message, void* refCon);
100
101 private:
102 MIDIClientRef hCoreMidiClient;
103 };
104 }
105
106 #endif // __LS_MIDIINPUTDEVICECOREMIDI_H__

  ViewVC Help
Powered by ViewVC