]> icculus.org git repositories - divverent/darkplaces.git/blob - snd_modplug.c
748d9e45ee009c30f15ed057cf918ba19aa45a61
[divverent/darkplaces.git] / snd_modplug.c
1 /*
2         Copyright (C) 2003-2005  Mathieu Olivier
3
4         This program is free software; you can redistribute it and/or
5         modify it under the terms of the GNU General Public License
6         as published by the Free Software Foundation; either version 2
7         of the License, or (at your option) any later version.
8
9         This program is distributed in the hope that it will be useful,
10         but WITHOUT ANY WARRANTY; without even the implied warranty of
11         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13         See the GNU General Public License for more details.
14
15         You should have received a copy of the GNU General Public License
16         along with this program; if not, write to:
17
18                 Free Software Foundation, Inc.
19                 59 Temple Place - Suite 330
20                 Boston, MA  02111-1307, USA
21
22 */
23
24
25 #include "quakedef.h"
26 #include "snd_main.h"
27 #include "snd_modplug.h"
28
29 #ifdef SND_MODPLUG_STATIC
30
31 #include <libmodplug/modplug.h>
32 qboolean ModPlug_OpenLibrary (void)
33 {
34         return true; // statically linked
35 }
36 void ModPlug_CloseLibrary (void)
37 {
38 }
39 #define modplug_dll 1
40
41 #else
42 // BEGIN SECTION FROM modplug.h
43
44         /*
45          * This source code is public domain.
46          *
47          * Authors: Kenton Varda <temporal@gauge3d.org> (C interface wrapper)
48          */
49
50         enum _ModPlug_Flags
51         {
52                         MODPLUG_ENABLE_OVERSAMPLING     = 1 << 0,  /* Enable oversampling (*highly* recommended) */
53                         MODPLUG_ENABLE_NOISE_REDUCTION  = 1 << 1,  /* Enable noise reduction */
54                         MODPLUG_ENABLE_REVERB           = 1 << 2,  /* Enable reverb */
55                         MODPLUG_ENABLE_MEGABASS         = 1 << 3,  /* Enable megabass */
56                         MODPLUG_ENABLE_SURROUND         = 1 << 4   /* Enable surround sound. */
57         };
58
59         enum _ModPlug_ResamplingMode
60         {
61                         MODPLUG_RESAMPLE_NEAREST = 0,  /* No interpolation (very fast, extremely bad sound quality) */
62                         MODPLUG_RESAMPLE_LINEAR  = 1,  /* Linear interpolation (fast, good quality) */
63                         MODPLUG_RESAMPLE_SPLINE  = 2,  /* Cubic spline interpolation (high quality) */
64                         MODPLUG_RESAMPLE_FIR     = 3   /* 8-tap fir filter (extremely high quality) */
65         };
66
67         typedef struct _ModPlug_Settings
68         {
69                         int mFlags;  /* One or more of the MODPLUG_ENABLE_* flags above, bitwise-OR'ed */
70                         
71                         /* Note that ModPlug always decodes sound at 44100kHz, 32 bit, stereo and then
72                          * down-mixes to the settings you choose. */
73                         int mChannels;       /* Number of channels - 1 for mono or 2 for stereo */
74                         int mBits;           /* Bits per sample - 8, 16, or 32 */
75                         int mFrequency;      /* Sampling rate - 11025, 22050, or 44100 */
76                         int mResamplingMode; /* One of MODPLUG_RESAMPLE_*, above */
77                         
78                         int mReverbDepth;    /* Reverb level 0(quiet)-100(loud)      */
79                         int mReverbDelay;    /* Reverb delay in ms, usually 40-200ms */
80                         int mBassAmount;     /* XBass level 0(quiet)-100(loud)       */
81                         int mBassRange;      /* XBass cutoff in Hz 10-100            */
82                         int mSurroundDepth;  /* Surround level 0(quiet)-100(heavy)   */
83                         int mSurroundDelay;  /* Surround delay in ms, usually 5-40ms */
84                         int mLoopCount;      /* Number of times to loop.  Zero prevents looping.
85                                                                         -1 loops forever. */
86         } ModPlug_Settings;
87
88         struct _ModPlugFile;
89         typedef struct _ModPlugFile ModPlugFile;
90
91 // END SECTION FROM modplug.h
92
93 static ModPlugFile* (*ModPlug_Load) (const void* data, int size);
94 static void (*ModPlug_Unload) (ModPlugFile* file);
95 static int (*ModPlug_Read) (ModPlugFile* file, void* buffer, int size);
96 static void (*ModPlug_Seek) (ModPlugFile* file, int millisecond);
97 static void (*ModPlug_GetSettings) (ModPlug_Settings* settings);
98 static void (*ModPlug_SetSettings) (const ModPlug_Settings* settings);
99 typedef void (ModPlug_SetMasterVolume_t) (ModPlugFile* file,unsigned int cvol) ;
100 ModPlug_SetMasterVolume_t *ModPlug_SetMasterVolume;
101
102
103 static dllfunction_t modplugfuncs[] =
104 {
105         {"ModPlug_Load",                        (void **) &ModPlug_Load},
106         {"ModPlug_Unload",                      (void **) &ModPlug_Unload},
107         {"ModPlug_Read",                        (void **) &ModPlug_Read},
108         {"ModPlug_Seek",                        (void **) &ModPlug_Seek},
109         {"ModPlug_GetSettings",         (void **) &ModPlug_GetSettings},
110         {"ModPlug_SetSettings",         (void **) &ModPlug_SetSettings},
111         {NULL, NULL}
112 };
113
114 // Handles for the modplug and modplugfile DLLs
115 static dllhandle_t modplug_dll = NULL;
116
117 /*
118 =================================================================
119
120   DLL load & unload
121
122 =================================================================
123 */
124
125 /*
126 ====================
127 ModPlug_OpenLibrary
128
129 Try to load the modplugFile DLL
130 ====================
131 */
132 qboolean ModPlug_OpenLibrary (void)
133 {
134         const char* dllnames_modplug [] =
135         {
136 #if defined(WIN64)
137                 "libmodplug64.dll",
138 #elif defined(WIN32)
139                 "libmodplug-0.dll",
140                 "modplug.dll",
141 #elif defined(MACOSX)
142                 "libmodplug.dylib",
143 #else
144                 "libmodplug.so.0",
145                 "libmodplug.so",
146 #endif
147                 NULL
148         };
149
150         // Already loaded?
151         if (modplug_dll)
152                 return true;
153
154 // COMMANDLINEOPTION: Sound: -nomodplug disables modplug sound support
155         if (COM_CheckParm("-nomodplug"))
156                 return false;
157
158         // Load the DLLs
159         // We need to load both by hand because some OSes seem to not load
160         // the modplug DLL automatically when loading the modplugFile DLL
161         if(Sys_LoadLibrary (dllnames_modplug, &modplug_dll, modplugfuncs))
162         {
163                 ModPlug_SetMasterVolume = (ModPlug_SetMasterVolume_t *) Sys_GetProcAddress(modplug_dll, "ModPlug_SetMasterVolume");
164                 if(!ModPlug_SetMasterVolume)
165                         Con_Print("Warning: modplug volume control not supported. Try getting a newer version of libmodplug.\n");
166                 return true;
167         }
168         else
169                 return false;
170 }
171
172
173 /*
174 ====================
175 ModPlug_CloseLibrary
176
177 Unload the modplugFile DLL
178 ====================
179 */
180 void ModPlug_CloseLibrary (void)
181 {
182         Sys_UnloadLibrary (&modplug_dll);
183 }
184 #endif
185
186
187 /*
188 =================================================================
189
190         modplug decoding
191
192 =================================================================
193 */
194
195 // Per-sfx data structure
196 typedef struct
197 {
198         unsigned char   *file;
199         size_t                  filesize;
200         snd_format_t    format;
201         unsigned int    total_length;
202         char                    name[128];
203         sfx_t           *sfx;
204 } modplug_stream_persfx_t;
205
206 // Per-channel data structure
207 typedef struct
208 {
209         ModPlugFile     *mf;
210         unsigned int    sb_offset;
211         int                             bs;
212         snd_buffer_t    sb;             // must be at the end due to its dynamically allocated size
213 } modplug_stream_perchannel_t;
214
215
216 /*
217 ====================
218 ModPlug_FetchSound
219 ====================
220 */
221 static const snd_buffer_t* ModPlug_FetchSound (void *sfxfetcher, void **chfetcherpointer, unsigned int *start, unsigned int nbsampleframes)
222 {
223         modplug_stream_perchannel_t* per_ch = (modplug_stream_perchannel_t *)*chfetcherpointer;
224         modplug_stream_persfx_t* per_sfx = (modplug_stream_persfx_t *)sfxfetcher;
225         snd_buffer_t* sb;
226         int newlength, done, ret;
227         unsigned int real_start;
228         unsigned int factor;
229
230         // If there's no fetcher structure attached to the channel yet
231         if (per_ch == NULL)
232         {
233                 size_t buff_len, memsize;
234                 snd_format_t sb_format;
235
236                 sb_format.speed = snd_renderbuffer->format.speed;
237                 sb_format.width = per_sfx->format.width;
238                 sb_format.channels = per_sfx->format.channels;
239
240                 buff_len = STREAM_BUFFER_SIZE(&sb_format);
241                 memsize = sizeof (*per_ch) - sizeof (per_ch->sb.samples) + buff_len;
242                 per_ch = (modplug_stream_perchannel_t *)Mem_Alloc (snd_mempool, memsize);
243
244                 // Open it with the modplugFile API
245                 per_ch->mf = ModPlug_Load(per_sfx->file, per_sfx->filesize);
246                 if (!per_ch->mf)
247                 {
248                         Con_Printf("error while reading ModPlug stream \"%s\"\n", per_sfx->name);
249                         Mem_Free (per_ch);
250                         return NULL;
251                 }
252
253 #ifndef SND_MODPLUG_STATIC
254                 if(ModPlug_SetMasterVolume)
255 #endif
256                         ModPlug_SetMasterVolume(per_ch->mf, 512); // max volume, DP scales down!
257
258                 per_ch->bs = 0;
259
260                 per_ch->sb_offset = 0;
261                 per_ch->sb.format = sb_format;
262                 per_ch->sb.nbframes = 0;
263                 per_ch->sb.maxframes = buff_len / (per_ch->sb.format.channels * per_ch->sb.format.width);
264
265                 *chfetcherpointer = per_ch;
266         }
267
268         real_start = *start;
269
270         sb = &per_ch->sb;
271         factor = per_sfx->format.width * per_sfx->format.channels;
272
273         // If the stream buffer can't contain that much samples anyway
274         if (nbsampleframes > sb->maxframes)
275         {
276                 Con_Printf ("ModPlug_FetchSound: stream buffer too small (%u sample frames required)\n", nbsampleframes);
277                 return NULL;
278         }
279
280         // If the data we need has already been decompressed in the sfxbuffer, just return it
281         if (per_ch->sb_offset <= real_start && per_ch->sb_offset + sb->nbframes >= real_start + nbsampleframes)
282         {
283                 *start = per_ch->sb_offset;
284                 return sb;
285         }
286
287         newlength = (int)(per_ch->sb_offset + sb->nbframes) - real_start;
288
289         // If we need to skip some data before decompressing the rest, or if the stream has looped
290         if (newlength < 0 || per_ch->sb_offset > real_start)
291         {
292                 unsigned int time_start;
293                 unsigned int modplug_start;
294
295                 /*
296                 MODs loop on their own, so any position is valid!
297                 if (real_start > (unsigned int)per_sfx->total_length)
298                 {
299                         Con_Printf ("ModPlug_FetchSound: asked for a start position after the end of the sfx! (%u > %u)\n",
300                                                 real_start, per_sfx->total_length);
301                         return NULL;
302                 }
303                 */
304
305                 // We work with 200ms (1/5 sec) steps to avoid rounding errors
306                 time_start = real_start * 5 / snd_renderbuffer->format.speed;
307                 modplug_start = time_start * (1000 / 5);
308
309                 Con_DPrintf("warning: mod file needed to seek (to %d)\n", modplug_start);
310
311                 ModPlug_Seek(per_ch->mf, modplug_start);
312                 sb->nbframes = 0;
313
314                 real_start = (unsigned int) ((float)modplug_start / 1000 * snd_renderbuffer->format.speed);
315                 if (*start - real_start + nbsampleframes > sb->maxframes)
316                 {
317                         Con_Printf ("ModPlug_FetchSound: stream buffer too small after seek (%u sample frames required)\n",
318                                                 *start - real_start + nbsampleframes);
319                         per_ch->sb_offset = real_start;
320                         return NULL;
321                 }
322         }
323         // Else, move forward the samples we need to keep in the sound buffer
324         else
325         {
326                 memmove (sb->samples, sb->samples + (real_start - per_ch->sb_offset) * factor, newlength * factor);
327                 sb->nbframes = newlength;
328         }
329
330         per_ch->sb_offset = real_start;
331
332         // We add exactly 1 sec of sound to the buffer:
333         // 1- to ensure we won't lose any sample during the resampling process
334         // 2- to force one call to ModPlug_FetchSound per second to regulate the workload
335         if ((int)(sb->format.speed * STREAM_BUFFER_FILL) + sb->nbframes > sb->maxframes)
336         {
337                 Con_Printf ("ModPlug_FetchSound: stream buffer overflow (%u sample frames / %u)\n",
338                                         sb->format.speed + sb->nbframes, sb->maxframes);
339                 return NULL;
340         }
341         newlength = (int)(per_sfx->format.speed*STREAM_BUFFER_FILL) * factor;  // -> 1 sec of sound before resampling
342         if(newlength > (int)sizeof(resampling_buffer))
343                 newlength = sizeof(resampling_buffer);
344
345         // Decompress in the resampling_buffer
346         done = 0;
347         while ((ret = ModPlug_Read (per_ch->mf, (char *)&resampling_buffer[done], (int)(newlength - done))) > 0)
348                 done += ret;
349         if(done < newlength)
350         {
351                 // Argh. We didn't get as many samples as we wanted. Probably
352                 // libmodplug forgot what mLoopCount==-1 means... basically, this means
353                 // we can't loop like this. Try to let DP fix it later...
354                 per_sfx->sfx->total_length = (real_start + ((size_t)done / (size_t)factor));
355                 per_sfx->sfx->loopstart = 0;
356
357                 if(newlength != done)
358                         Con_DPrintf("ModPlug_Fetch: wanted: %d, got: %d\n", newlength, done);
359         }
360
361         Snd_AppendToSndBuffer (sb, resampling_buffer, (size_t)done / (size_t)factor, &per_sfx->format);
362
363         *start = per_ch->sb_offset;
364         return sb;
365 }
366
367
368 /*
369 ====================
370 ModPlug_FetchEnd
371 ====================
372 */
373 static void ModPlug_FetchEnd (void *chfetcherdata)
374 {
375         modplug_stream_perchannel_t* per_ch = (modplug_stream_perchannel_t *)chfetcherdata;
376
377         if (per_ch != NULL)
378         {
379                 // Free the modplug decoder
380                 ModPlug_Unload (per_ch->mf);
381
382                 Mem_Free (per_ch);
383         }
384 }
385
386
387 /*
388 ====================
389 ModPlug_FreeSfx
390 ====================
391 */
392 static void ModPlug_FreeSfx (void *sfxfetcherdata)
393 {
394         modplug_stream_persfx_t* per_sfx = (modplug_stream_persfx_t *)sfxfetcherdata;
395
396         // Free the modplug file
397         Mem_Free(per_sfx->file);
398
399         // Free the stream structure
400         Mem_Free(per_sfx);
401 }
402
403
404 /*
405 ====================
406 ModPlug_GetFormat
407 ====================
408 */
409 static const snd_format_t* ModPlug_GetFormat (sfx_t* sfx)
410 {
411         modplug_stream_persfx_t* per_sfx = (modplug_stream_persfx_t *)sfx->fetcher_data;
412         return &per_sfx->format;
413 }
414
415 static const snd_fetcher_t modplug_fetcher = { ModPlug_FetchSound, ModPlug_FetchEnd, ModPlug_FreeSfx, ModPlug_GetFormat };
416
417
418 /*
419 ====================
420 ModPlug_LoadmodplugFile
421
422 Load an modplug file into memory
423 ====================
424 */
425 qboolean ModPlug_LoadModPlugFile (const char *filename, sfx_t *sfx)
426 {
427         unsigned char *data;
428         fs_offset_t filesize;
429         ModPlugFile *mf;
430         modplug_stream_persfx_t* per_sfx;
431         ModPlug_Settings s;
432
433         if (!modplug_dll)
434                 return false;
435
436         // Already loaded?
437         if (sfx->fetcher != NULL)
438                 return true;
439
440         // Load the file
441         data = FS_LoadFile (filename, snd_mempool, false, &filesize);
442         if (data == NULL)
443                 return false;
444
445         if (developer_loading.integer >= 2)
446                 Con_Printf ("Loading ModPlug file \"%s\"\n", filename);
447
448         ModPlug_GetSettings(&s);
449         s.mFlags = MODPLUG_ENABLE_OVERSAMPLING | MODPLUG_ENABLE_NOISE_REDUCTION | MODPLUG_ENABLE_REVERB;
450         s.mChannels = 2;
451         s.mBits = 16;
452         s.mFrequency = 44100;
453         s.mResamplingMode = MODPLUG_RESAMPLE_SPLINE;
454         s.mLoopCount = -1;
455         ModPlug_SetSettings(&s);
456
457         // Open it with the modplugFile API
458         if (!(mf = ModPlug_Load (data, filesize)))
459         {
460                 Con_Printf ("error while opening ModPlug file \"%s\"\n", filename);
461                 Mem_Free(data);
462                 return false;
463         }
464
465 #ifndef SND_MODPLUG_STATIC
466         if(ModPlug_SetMasterVolume)
467 #endif
468                 ModPlug_SetMasterVolume(mf, 512); // max volume, DP scales down!
469
470         if (developer_loading.integer >= 2)
471                 Con_Printf ("\"%s\" will be streamed\n", filename);
472         per_sfx = (modplug_stream_persfx_t *)Mem_Alloc (snd_mempool, sizeof (*per_sfx));
473         strlcpy(per_sfx->name, sfx->name, sizeof(per_sfx->name));
474         sfx->memsize += sizeof (*per_sfx);
475         per_sfx->file = data;
476         per_sfx->filesize = filesize;
477         sfx->memsize += filesize;
478
479         per_sfx->format.speed = 44100; // modplug always works at that rate
480         per_sfx->format.width = 2;  // We always work with 16 bits samples
481         per_sfx->format.channels = 2; // stereo rulez ;) (MAYBE default to mono because Amiga MODs sound better then?)
482         per_sfx->sfx = sfx;
483
484         sfx->fetcher_data = per_sfx;
485         sfx->fetcher = &modplug_fetcher;
486         sfx->flags |= SFXFLAG_STREAMED;
487         sfx->total_length = 2147384647; // they always loop
488         sfx->loopstart = sfx->total_length; // modplug does it
489
490         return true;
491 }