Skip to content

Latest commit

 

History

History
322 lines (255 loc) · 8.16 KB

native_midi_macosx.c

File metadata and controls

322 lines (255 loc) · 8.16 KB
 
Dec 31, 2011
Dec 31, 2011
2
3
native_midi_macosx: Native Midi support on Mac OS X for the SDL_mixer library
Copyright (C) 2009 Ryan C. Gordon <icculus@icculus.org>
Dec 31, 2011
Dec 31, 2011
5
6
7
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Dec 31, 2011
Dec 31, 2011
9
10
11
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
Dec 31, 2011
Dec 31, 2011
13
14
15
16
17
18
19
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
20
21
22
23
24
25
26
27
28
*/
/* This is Mac OS X only, using Core MIDI.
Mac OS 9 support via QuickTime is in native_midi_mac.c */
#include "SDL_config.h"
#if __MACOSX__
Oct 19, 2009
Oct 19, 2009
29
#include <Carbon/Carbon.h>
30
#include <AudioToolbox/AudioToolbox.h>
Nov 2, 2009
Nov 2, 2009
31
#include <AvailabilityMacros.h>
Oct 19, 2009
Oct 19, 2009
33
#include "../SDL_mixer.h"
34
35
36
37
38
39
40
41
42
#include "SDL_endian.h"
#include "native_midi.h"
/* Native Midi song */
struct _NativeMidiSong
{
MusicPlayer player;
MusicSequence sequence;
MusicTimeStamp endTime;
Oct 19, 2009
Oct 19, 2009
43
AudioUnit audiounit;
Jan 1, 2012
Jan 1, 2012
44
int loops;
45
46
47
};
static NativeMidiSong *currentsong = NULL;
Oct 19, 2009
Oct 19, 2009
48
static int latched_volume = MIX_MAX_VOLUME;
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
static OSStatus
GetSequenceLength(MusicSequence sequence, MusicTimeStamp *_sequenceLength)
{
// http://lists.apple.com/archives/Coreaudio-api/2003/Jul/msg00370.html
// figure out sequence length
UInt32 ntracks, i;
MusicTimeStamp sequenceLength = 0;
OSStatus err;
err = MusicSequenceGetTrackCount(sequence, &ntracks);
if (err != noErr)
return err;
for (i = 0; i < ntracks; ++i)
{
MusicTrack track;
MusicTimeStamp tracklen = 0;
UInt32 tracklenlen = sizeof (tracklen);
err = MusicSequenceGetIndTrack(sequence, i, &track);
if (err != noErr)
return err;
err = MusicTrackGetProperty(track, kSequenceTrackProperty_TrackLength,
&tracklen, &tracklenlen);
if (err != noErr)
return err;
if (sequenceLength < tracklen)
sequenceLength = tracklen;
}
*_sequenceLength = sequenceLength;
return noErr;
}
Oct 19, 2009
Oct 19, 2009
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* we're looking for the sequence output audiounit. */
static OSStatus
GetSequenceAudioUnit(MusicSequence sequence, AudioUnit *aunit)
{
AUGraph graph;
UInt32 nodecount, i;
OSStatus err;
err = MusicSequenceGetAUGraph(sequence, &graph);
if (err != noErr)
return err;
err = AUGraphGetNodeCount(graph, &nodecount);
if (err != noErr)
return err;
for (i = 0; i < nodecount; i++) {
AUNode node;
if (AUGraphGetIndNode(graph, i, &node) != noErr)
continue; /* better luck next time. */
Nov 10, 2009
Nov 10, 2009
110
#if MAC_OS_X_VERSION_MIN_REQUIRED < 1060 /* this is deprecated, but works back to 10.0 */
Oct 19, 2009
Oct 19, 2009
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
struct ComponentDescription desc;
UInt32 classdatasize = 0;
void *classdata = NULL;
err = AUGraphGetNodeInfo(graph, node, &desc, &classdatasize,
&classdata, aunit);
if (err != noErr)
continue;
else if (desc.componentType != kAudioUnitType_Output)
continue;
else if (desc.componentSubType != kAudioUnitSubType_DefaultOutput)
continue;
}
#else /* not deprecated, but requires 10.5 or later */
{
AudioComponentDescription desc;
if (AUGraphNodeInfo(graph, node, &desc, aunit) != noErr)
continue;
else if (desc.componentType != kAudioUnitType_Output)
continue;
else if (desc.componentSubType != kAudioUnitSubType_DefaultOutput)
continue;
}
#endif
return noErr; /* found it! */
}
return kAUGraphErr_NodeNotFound;
}
143
144
145
146
147
int native_midi_detect()
{
return 1; /* always available. */
}
Dec 31, 2011
Dec 31, 2011
148
NativeMidiSong *native_midi_loadsong_RW(SDL_RWops *rw, int freerw)
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
NativeMidiSong *retval = NULL;
void *buf = NULL;
int len = 0;
CFDataRef data = NULL;
if (SDL_RWseek(rw, 0, RW_SEEK_END) < 0)
goto fail;
len = SDL_RWtell(rw);
if (len < 0)
goto fail;
if (SDL_RWseek(rw, 0, RW_SEEK_SET) < 0)
goto fail;
buf = malloc(len);
if (buf == NULL)
goto fail;
if (SDL_RWread(rw, buf, len, 1) != 1)
goto fail;
retval = malloc(sizeof(NativeMidiSong));
if (retval == NULL)
goto fail;
memset(retval, '\0', sizeof (*retval));
if (NewMusicPlayer(&retval->player) != noErr)
goto fail;
if (NewMusicSequence(&retval->sequence) != noErr)
goto fail;
data = CFDataCreate(NULL, (const UInt8 *) buf, len);
if (data == NULL)
goto fail;
free(buf);
buf = NULL;
Nov 2, 2009
Nov 2, 2009
188
#if MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_4 /* this is deprecated, but works back to 10.3 */
189
190
191
if (MusicSequenceLoadSMFDataWithFlags(retval->sequence, data, 0) != noErr)
goto fail;
#else /* not deprecated, but requires 10.5 or later */
Nov 2, 2009
Nov 2, 2009
192
if (MusicSequenceFileLoadData(retval->sequence, data, 0, 0) != noErr)
193
194
195
196
197
198
199
200
201
202
203
204
goto fail;
#endif
CFRelease(data);
data = NULL;
if (GetSequenceLength(retval->sequence, &retval->endTime) != noErr)
goto fail;
if (MusicPlayerSetSequence(retval->player, retval->sequence) != noErr)
goto fail;
Dec 31, 2011
Dec 31, 2011
205
206
207
if (freerw)
SDL_RWclose(rw);
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
return retval;
fail:
if (retval) {
if (retval->sequence)
DisposeMusicSequence(retval->sequence);
if (retval->player)
DisposeMusicPlayer(retval->player);
free(retval);
}
if (data)
CFRelease(data);
if (buf)
free(buf);
Dec 31, 2011
Dec 31, 2011
225
226
227
if (freerw)
SDL_RWclose(rw);
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
return NULL;
}
void native_midi_freesong(NativeMidiSong *song)
{
if (song != NULL) {
if (currentsong == song)
currentsong = NULL;
MusicPlayerStop(song->player);
DisposeMusicSequence(song->sequence);
DisposeMusicPlayer(song->player);
free(song);
}
}
Jan 1, 2012
Jan 1, 2012
243
void native_midi_start(NativeMidiSong *song, int loops)
Oct 19, 2009
Oct 19, 2009
245
246
int vol;
247
248
249
if (song == NULL)
return;
Oct 19, 2009
Oct 19, 2009
250
251
SDL_PauseAudio(1);
SDL_UnlockAudio();
252
253
254
255
256
if (currentsong)
MusicPlayerStop(currentsong->player);
currentsong = song;
Jan 1, 2012
Jan 1, 2012
257
currentsong->loops = loops;
Jan 1, 2012
Jan 1, 2012
258
259
260
MusicPlayerPreroll(song->player);
MusicPlayerSetTime(song->player, 0);
261
262
MusicPlayerStart(song->player);
Oct 19, 2009
Oct 19, 2009
263
264
265
266
267
268
269
270
GetSequenceAudioUnit(song->sequence, &song->audiounit);
vol = latched_volume;
latched_volume++; /* just make this not match. */
native_midi_setvolume(vol);
SDL_LockAudio();
SDL_PauseAudio(0);
271
272
273
274
275
}
void native_midi_stop()
{
if (currentsong) {
Oct 19, 2009
Oct 19, 2009
276
277
SDL_PauseAudio(1);
SDL_UnlockAudio();
278
279
MusicPlayerStop(currentsong->player);
currentsong = NULL;
Oct 19, 2009
Oct 19, 2009
280
281
SDL_LockAudio();
SDL_PauseAudio(0);
282
283
284
285
286
287
288
289
290
291
}
}
int native_midi_active()
{
MusicTimeStamp currentTime = 0;
if (currentsong == NULL)
return 0;
MusicPlayerGetTime(currentsong->player, &currentTime);
Jan 1, 2012
Jan 1, 2012
292
293
294
295
296
297
298
299
300
if ((currentTime < currentsong->endTime) ||
(currentTime >= kMusicTimeStamp_EndOfTrack)) {
return 1;
} else if (currentsong->loops) {
--currentsong->loops;
MusicPlayerSetTime(currentsong->player, 0);
return 1;
}
return 0;
301
302
303
304
}
void native_midi_setvolume(int volume)
{
Oct 19, 2009
Oct 19, 2009
305
306
307
308
309
310
311
312
313
if (latched_volume == volume)
return;
latched_volume = volume;
if ((currentsong) && (currentsong->audiounit)) {
const float floatvol = ((float) volume) / ((float) MIX_MAX_VOLUME);
AudioUnitSetParameter(currentsong->audiounit, kHALOutputParam_Volume,
kAudioUnitScope_Global, 0, floatvol, 0);
}
314
315
316
317
318
319
320
321
}
const char *native_midi_error(void)
{
return ""; /* !!! FIXME */
}
#endif /* Mac OS X native MIDI support */