From 90b967d9d1b5970969f758c7993d244936fff324 Mon Sep 17 00:00:00 2001 From: zlago Date: Sun, 1 Sep 2024 18:14:38 +0200 Subject: libfluidsynth --- src/sdl.c | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'src/sdl.c') diff --git a/src/sdl.c b/src/sdl.c index 875cde5..8deb8ca 100644 --- a/src/sdl.c +++ b/src/sdl.c @@ -8,6 +8,7 @@ #include "include.h" int module_openmpt(struct blob *file, struct userdata *userdata); +int module_fluidsynth(struct blob *file, struct userdata *userdata); #define eprintf(...) fprintf(stderr, __VA_ARGS__) @@ -103,9 +104,22 @@ int main(void) { SDL_free(evt.drop.file); break; } - SDL_free(evt.drop.file); struct userdata newuser = {.callback = NULL, .freefunc = NULL}; - if (module_openmpt(&file, audio, &newuser)) { + int (*module_func)(struct blob *, struct userdata *) = NULL; + size_t len = strlen(evt.drop.file); + #define ext(extension) memcmp(evt.drop.file + len - sizeof (extension) + 1, extension, sizeof (extension)) + if ((ext(".mptm") && ext(".mod") && ext(".xm") && ext(".s3m") && ext(".it")) == 0) { + module_func = module_openmpt; + } else if ((ext(".mid") && ext(".midi")) == 0) { + module_func = module_fluidsynth; + } + if (module_func == NULL) { + eprintf("%s: unrecognized file extension\n", evt.drop.file); + free(file.data); + break; + } + SDL_free(evt.drop.file); + if (module_func(&file, &newuser)) { // error } else { SDL_LockAudioDevice(audio); @@ -126,6 +140,7 @@ int main(void) { if (userdata.freefunc != NULL) { SDL_LockAudioDevice(audio); userdata.freefunc(userdata.user); + SDL_PauseAudioDevice(audio, 1); SDL_UnlockAudioDevice(audio); } -- cgit 1.4.1-2-gfad0