Mercurial > SDL_sound_CoreAudio
annotate decoders/mod.c @ 71:8ed194d014b4
Initial add.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Tue, 25 Sep 2001 15:57:44 +0000 |
parents | 40006625142a |
children | 6252979e2453 |
rev | line source |
---|---|
43 | 1 /* |
2 * SDL_sound -- An abstract sound format decoding API. | |
3 * Copyright (C) 2001 Ryan C. Gordon. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2.1 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
19 | |
20 /* | |
21 * Module player - through MikMod - for SDL_sound. | |
22 * | |
23 * This driver handles anything our subset of MikMod handles. It is based on | |
24 * SDL_mixer's MikMod music player. | |
25 * | |
26 * Please see the file LICENSE in the source's root directory, and the file | |
27 * COPYING.LESSER in the mikmod subdirectory. | |
28 * | |
29 * This file written by Torbjörn Andersson (d91tan@Update.UU.SE) | |
30 */ | |
31 | |
64
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
32 #ifdef SOUND_SUPPORTS_MOD |
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
33 |
43 | 34 #include <stdio.h> |
35 #include <stdlib.h> | |
36 #include <string.h> | |
37 #include <assert.h> | |
38 #include "SDL_sound.h" | |
39 #include "mikmod.h" | |
40 | |
41 #define __SDL_SOUND_INTERNAL__ | |
42 #include "SDL_sound_internal.h" | |
43 | |
44 static int MOD_init(void); | |
45 static void MOD_quit(void); | |
46 static int MOD_open(Sound_Sample *sample, const char *ext); | |
47 static void MOD_close(Sound_Sample *sample); | |
48 static Uint32 MOD_read(Sound_Sample *sample); | |
49 | |
50 const Sound_DecoderFunctions __Sound_DecoderFunctions_MOD = | |
51 { | |
52 { | |
53 "MOD", | |
54 "Play modules through MikMod", | |
55 "Torbjörn Andersson <d91tan@Update.UU.SE>", | |
56 "http://www.mikmod.org/" | |
57 }, | |
58 | |
59 MOD_init, /* init() method */ | |
60 MOD_quit, /* quit() method */ | |
61 MOD_open, /* open() method */ | |
62 MOD_close, /* close() method */ | |
63 MOD_read /* read() method */ | |
64 }; | |
65 | |
66 /* this is what we store in our internal->decoder_private field... */ | |
67 typedef struct { | |
68 MODULE *module; | |
69 } mod_t; | |
70 | |
71 | |
72 /* Make MikMod read from a RWops... */ | |
73 | |
74 typedef struct MRWOPSREADER { | |
75 MREADER core; | |
76 Sound_Sample *sample; | |
77 int end; | |
78 } MRWOPSREADER; | |
79 | |
80 static BOOL _mm_RWopsReader_eof(MREADER *reader) | |
81 { | |
82 MRWOPSREADER *rwops_reader = (MRWOPSREADER *) reader; | |
83 Sound_Sample *sample = rwops_reader->sample; | |
84 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
85 int pos = SDL_RWtell(internal->rw); | |
86 | |
87 if (rwops_reader->end == pos) | |
88 return(1); | |
89 | |
90 return(0); | |
91 } /* _mm_RWopsReader_eof */ | |
92 | |
93 | |
94 static BOOL _mm_RWopsReader_read(MREADER *reader, void *ptr, size_t size) | |
95 { | |
96 MRWOPSREADER *rwops_reader = (MRWOPSREADER *) reader; | |
97 Sound_Sample *sample = rwops_reader->sample; | |
98 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
99 return(SDL_RWread(internal->rw, ptr, size, 1)); | |
100 } /* _mm_RWopsReader_Read */ | |
101 | |
102 | |
103 static int _mm_RWopsReader_get(MREADER *reader) | |
104 { | |
105 char buf; | |
106 MRWOPSREADER *rwops_reader = (MRWOPSREADER *) reader; | |
107 Sound_Sample *sample = rwops_reader->sample; | |
108 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
109 | |
110 if (SDL_RWread(internal->rw, &buf, 1, 1) != 1) | |
111 return(EOF); | |
112 | |
113 return((int) buf); | |
114 } /* _mm_RWopsReader_get */ | |
115 | |
116 | |
117 static BOOL _mm_RWopsReader_seek(MREADER *reader, long offset, int whence) | |
118 { | |
119 MRWOPSREADER *rwops_reader = (MRWOPSREADER *) reader; | |
120 Sound_Sample *sample = rwops_reader->sample; | |
121 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
122 | |
123 return(SDL_RWseek(internal->rw, offset, whence)); | |
124 } /* _mm_RWopsReader_seek */ | |
125 | |
126 | |
127 static long _mm_RWopsReader_tell(MREADER *reader) | |
128 { | |
129 MRWOPSREADER *rwops_reader = (MRWOPSREADER *) reader; | |
130 Sound_Sample *sample = rwops_reader->sample; | |
131 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
132 | |
133 return(SDL_RWtell(internal->rw)); | |
134 } /* _mm_RWopsReader_tell */ | |
135 | |
136 | |
137 static MREADER *_mm_new_rwops_reader(Sound_Sample *sample) | |
138 { | |
139 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
140 | |
141 MRWOPSREADER *reader = (MRWOPSREADER *) malloc(sizeof (MRWOPSREADER)); | |
142 if (reader != NULL) | |
143 { | |
144 int here; | |
145 reader->core.Eof = _mm_RWopsReader_eof; | |
146 reader->core.Read = _mm_RWopsReader_read; | |
147 reader->core.Get = _mm_RWopsReader_get; | |
148 reader->core.Seek = _mm_RWopsReader_seek; | |
149 reader->core.Tell = _mm_RWopsReader_tell; | |
150 reader->sample = sample; | |
151 | |
152 /* RWops does not explicitly support an eof check, so we shall find | |
153 the end manually - this requires seek support for the RWop */ | |
154 here = SDL_RWtell(internal->rw); | |
155 reader->end = SDL_RWseek(internal->rw, 0, SEEK_END); | |
156 SDL_RWseek(internal->rw, here, SEEK_SET); /* Move back */ | |
157 /* !!! FIXME: What happens if the seek fails? */ | |
158 } /* if */ | |
159 | |
160 return((MREADER *) reader); | |
161 } /* _mm_new_rwops_reader */ | |
162 | |
163 | |
164 static void _mm_delete_rwops_reader(MREADER *reader) | |
165 { | |
166 /* SDL_sound will delete the RWops and sample at a higher level... */ | |
167 if (reader != NULL) | |
168 free(reader); | |
169 } /* _mm_delete_rwops_reader */ | |
170 | |
171 | |
172 | |
173 static int MOD_init(void) | |
174 { | |
52
69d56e196de7
going with MikMod defaults (adds more reverb) and only register the "no
Ryan C. Gordon <icculus@icculus.org>
parents:
43
diff
changeset
|
175 MikMod_RegisterDriver(&drv_nos); |
43 | 176 MikMod_RegisterAllLoaders(); |
177 | |
178 /* | |
179 * Both DMODE_SOFT_MUSIC and DMODE_16BITS should be set by default, | |
180 * so this is just for clarity. I haven't experimented with any of | |
181 * the other flags. There are a few which are said to give better | |
182 * sound quality. | |
183 */ | |
184 md_mode |= (DMODE_SOFT_MUSIC | DMODE_16BITS); | |
52
69d56e196de7
going with MikMod defaults (adds more reverb) and only register the "no
Ryan C. Gordon <icculus@icculus.org>
parents:
43
diff
changeset
|
185 |
69d56e196de7
going with MikMod defaults (adds more reverb) and only register the "no
Ryan C. Gordon <icculus@icculus.org>
parents:
43
diff
changeset
|
186 #if 0 |
43 | 187 /* |
188 * SDL_mixer used to set these, but I don't know... is there | |
189 * something wrong with the defaults? Actually, the only difference | |
190 * from the defaults is md_reverb, which is usually 6. | |
191 */ | |
192 md_device = 0; /* Selects sound driver. 0 = autodetect */ | |
193 md_volume = 96; /* Overall sound volume, 0 - 128 */ | |
194 md_musicvolume = 128; /* Module volume, 0 - 128 */ | |
195 md_sndfxvolume = 128; /* Sound effect volume, 0 - 128 */ | |
196 md_pansep = 128; /* Stereo channels separation, 0 - 128 */ | |
197 md_reverb = 0; /* Sound reverbation, 0 - 15 */ | |
198 #endif | |
199 | |
200 BAIL_IF_MACRO(MikMod_Init(""), MikMod_strerror(MikMod_errno), 0); | |
201 | |
202 return(1); /* success. */ | |
203 } /* MOD_init */ | |
204 | |
205 | |
206 static void MOD_quit(void) | |
207 { | |
208 MikMod_Exit(); | |
209 } /* MOD_quit */ | |
210 | |
211 | |
212 static int MOD_open(Sound_Sample *sample, const char *ext) | |
213 { | |
214 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
215 MREADER *reader; | |
216 mod_t *m; | |
217 | |
218 m = (mod_t *) malloc(sizeof(mod_t)); | |
219 BAIL_IF_MACRO(m == NULL, ERR_OUT_OF_MEMORY, 0); | |
220 reader = _mm_new_rwops_reader(sample); | |
221 BAIL_IF_MACRO(reader == NULL, ERR_OUT_OF_MEMORY, 0); | |
222 m->module = Player_LoadGeneric(reader, 64, 0); | |
223 _mm_delete_rwops_reader(reader); | |
224 BAIL_IF_MACRO(m->module == NULL, "MOD: Not a module file.", 0); | |
225 | |
226 md_mixfreq = sample->desired.rate; | |
227 sample->actual.channels = 2; | |
228 sample->actual.rate = md_mixfreq; | |
229 sample->actual.format = AUDIO_S16SYS; | |
230 internal->decoder_private = (void *) m; | |
231 | |
232 Player_Start(m->module); | |
233 Player_SetPosition(0); | |
234 | |
235 /* !!! FIXME: A little late to be giving this information... */ | |
236 sample->flags = SOUND_SAMPLEFLAG_NEEDSEEK; | |
237 | |
62
b13fafb976be
Changed _D macro to DBGSND.
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
238 SNDDBG(("MOD: Accepting data stream\n")); |
43 | 239 return(1); /* we'll handle this data. */ |
240 } /* MOD_open */ | |
241 | |
242 | |
243 static void MOD_close(Sound_Sample *sample) | |
244 { | |
245 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
246 mod_t *m = (mod_t *) internal->decoder_private; | |
247 | |
248 Player_Free(m->module); | |
249 } /* MOD_close */ | |
250 | |
251 | |
252 static Uint32 MOD_read(Sound_Sample *sample) | |
253 { | |
254 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
255 mod_t *m = (mod_t *) internal->decoder_private; | |
256 | |
257 /* Switch to the current module, stopping any previous one. */ | |
258 Player_Start(m->module); | |
259 if (!Player_Active()) | |
260 { | |
261 sample->flags |= SOUND_SAMPLEFLAG_EOF; | |
262 return(0); | |
263 } /* if */ | |
264 return((Uint32) VC_WriteBytes(internal->buffer, internal->buffer_size)); | |
265 } /* MOD_read */ | |
266 | |
64
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
267 #endif /* SOUND_SUPPORTS_MOD */ |
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
268 |
43 | 269 |
270 /* end of mod.c ... */ | |
271 |