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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1642 - (show annotations) (download)
Sun Jan 13 16:36:14 2008 UTC (16 years, 3 months ago) by nagata
File size: 7059 byte(s)
* OSX: Definition of ATOMIC_INIT is added
* OSX: "~" in DB/plugin names are expanded to "$HOME"
* OSX: MIDI device name are now "linuxsampler_in_%d" where %d=0,1,etc.

1 /***************************************************************************
2 * *
3 * Copyright (C) 2004, 2005 Grame *
4 * Copyright (C) 2005 - 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 #include "MidiInputDeviceCoreMidi.h"
23 #include "MidiInputDeviceFactory.h"
24
25 namespace LinuxSampler {
26
27 int MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::pPortID = 0;
28
29 MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::ParameterName::ParameterName(MidiInputPort* pPort) throw (Exception) : MidiInputPort::ParameterName(pPort, "Port " + ToString(pPort->GetPortNumber())) {
30 OnSetValue(ValueAsString()); // initialize port name
31 }
32
33 void MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::ParameterName::OnSetValue(String s) throw (Exception) {
34
35 }
36
37 // *************** ParameterCoreMidiBindings ***************
38 // *
39
40 MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::ParameterCoreMidiBindings::ParameterCoreMidiBindings(MidiInputPortCoreMidi* pPort) : DeviceRuntimeParameterStrings( std::vector<String>() ) {
41 this->pPort = pPort;
42 }
43
44 String MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::ParameterCoreMidiBindings::Description() {
45 return "Bindings to other CoreMidi clients";
46 }
47 bool MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::ParameterCoreMidiBindings::Fix() {
48 return false;
49 }
50
51 std::vector<String> MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::ParameterCoreMidiBindings::PossibilitiesAsString() {
52 std::vector<String> res;
53 // Connections
54 return res;
55 }
56
57 void MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::ParameterCoreMidiBindings::OnSetValue(std::vector<String> vS) throw (Exception) {
58 // to finish
59 }
60
61
62 // *************** MidiInputPortCoreMidi ***************
63 // *
64
65 MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::MidiInputPortCoreMidi(MidiInputDeviceCoreMidi* pDevice) throw (MidiInputException) : MidiInputPort(pDevice, -1) {
66 // create CoreMidi virtual destination
67
68 /* 20080105 Toshi Nagata */
69 char buf[32];
70 CFStringRef str;
71 snprintf(buf, sizeof buf, "LinuxSampler_in_%d", pPortID);
72 str = CFStringCreateWithCString(NULL, buf, kCFStringEncodingUTF8);
73 MIDIDestinationCreate(pDevice->hCoreMidiClient, str, ReadProc, this, &pDestination);
74 /* */
75
76 if (!pDestination) throw MidiInputException("Error creating CoreMidi virtual destination");
77 this->portNumber = pPortID++;
78
79 Parameters["NAME"] = new ParameterName(this);
80 Parameters["CORE_MIDI_BINDINGS"] = new ParameterCoreMidiBindings(this);
81 }
82
83 MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::~MidiInputPortCoreMidi() {
84 MIDIEndpointDispose(pDestination);
85 }
86
87 void MidiInputDeviceCoreMidi::MidiInputPortCoreMidi::ReadProc(const MIDIPacketList* pktlist, void* refCon, void* connRefCon)
88 {
89 MidiInputPortCoreMidi* port = (MidiInputPortCoreMidi*)refCon;
90 MIDIPacket *packet = (MIDIPacket *)pktlist->packet;
91
92 for (unsigned int i = 0; i < pktlist->numPackets; ++i) {
93
94 int cin = packet->data[0] & 0xF0;
95
96 // To be checked : several events per packet
97
98 switch(cin) { // status byte
99
100 case 0xB0:
101 if (packet->data[1] == 0)
102 port->DispatchBankSelectMsb(packet->data[2],packet->data[0]&0x0F);
103 else if (packet->data[1] == 32)
104 port->DispatchBankSelectLsb(packet->data[2],packet->data[0]&0x0F);
105 else
106 port->DispatchControlChange(packet->data[1],packet->data[2],packet->data[0]&0x0F);
107 break;
108
109 case 0xD0:
110 port->DispatchControlChange(128,packet->data[1],packet->data[0]&0x0F);
111 break;
112
113 case 0xE0:
114 port->DispatchPitchbend(packet->data[1],packet->data[0]&0x0F);
115 break;
116
117 case 0x90:
118 if (packet->data[1] < 0x80) {
119 if (packet->data[2] > 0){
120 port->DispatchNoteOn(packet->data[1],packet->data[2], packet->data[0]&0x0F);
121 }else{
122 port->DispatchNoteOff(packet->data[1],packet->data[2],packet->data[0]&0x0F);
123 }
124 }
125 break;
126
127 case 0x80:
128 if (packet->data[1] < 0x80) {
129 port->DispatchNoteOff(packet->data[1],packet->data[2],packet->data[0]&0x0F);
130 }
131 break;
132
133 case 0xC0:
134 if (packet->data[1] < 0x80) {
135 port->DispatchProgramChange(packet->data[1], packet->data[0] & 0x0F);
136 }
137 break;
138 }
139
140 packet = MIDIPacketNext(packet);
141 }
142 }
143
144
145 // *************** MidiInputDeviceCoreMidi ***************
146 // *
147
148 MidiInputDeviceCoreMidi::MidiInputDeviceCoreMidi(std::map<String,DeviceCreationParameter*> Parameters, void* pSampler) : MidiInputDevice(Parameters, pSampler)
149 {
150 MIDIClientCreate(CFSTR("LinuxSampler"), NotifyProc, NULL, &hCoreMidiClient);
151 if (!hCoreMidiClient) throw MidiInputException("Error opening CoreMidi client");
152 AcquirePorts(((DeviceCreationParameterInt*)Parameters["PORTS"])->ValueAsInt());
153 }
154
155 MidiInputDeviceCoreMidi::~MidiInputDeviceCoreMidi()
156 {
157 if (hCoreMidiClient) {
158 MIDIClientDispose(hCoreMidiClient);
159 }
160 }
161
162 MidiInputDeviceCoreMidi::MidiInputPortCoreMidi* MidiInputDeviceCoreMidi::CreateMidiPort() {
163 return new MidiInputPortCoreMidi(this);
164 }
165
166 String MidiInputDeviceCoreMidi::Name() {
167 return "COREMIDI";
168 }
169
170 String MidiInputDeviceCoreMidi::Driver() {
171 return Name();
172 }
173
174 String MidiInputDeviceCoreMidi::Description() {
175 return "Apple CoreMidi";
176 }
177
178 String MidiInputDeviceCoreMidi::Version() {
179 String s = "$Revision: 1.10 $";
180 return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
181 }
182
183 void MidiInputDeviceCoreMidi::NotifyProc(const MIDINotification* message, void* refCon)
184 {
185 // to be finished
186 if (message->messageID == kMIDIMsgSetupChanged) {
187 printf("kMIDIMsgSetupChanged\n");
188 }
189 }
190
191
192 } // namespace LinuxSampler

  ViewVC Help
Powered by ViewVC