I'm not actually well versed in C++ or SDL_Mixer, but I'm asking this question anyway on behalf on the Doom community. Put simply, nobody writing Doom source ports can seem to figure out how to control normal sound volume and MIDI sound volume independently using SDL_Mixer on Windows Vista or 7. I'll let James Haley, author of Eternity Engine, put it in his own words:

Seems the concept of independent volume for native MIDI doesn't exist under Windows Vista or 7, as using MIDI volume sliders in any application that has them (including most games that use SDL_mixer) also affects the volume of digital sound output. This makes attempting to adjust the relative volume of music for comfort impossible.

Has anybody found any workarounds for this? I'm guessing it's unlikely given how Microsoft seems to have skimped throughout the OS on any way to control the volume of individual sound devices separately.

I've heard of various workarounds all involving a Timidity driver, but this requires the user go above and beyond simply installing the game on his system. The only port that I know of that definitively fixes this issue is ZDoom, but it uses the GPL-incompatible FModEx and is thus not a suitable solution.

If you want some code to look at, Chocolate Doom is perhaps the easiest Doom source port to grok and you can grab its source here.

Any suggestions on other open-source sound and music libraries would be welcome as well.

link|improve this question

57% accept rate
1  
Why not just convert the existing MIDI files to WAV (or any file format that can uncompress to a PCM stream) and manage the music stream as if it was any other sound that you mix with? – selbie May 3 '11 at 4:16
1  
The MIDI files are embedded in .WAD data files, and there are tens of thousands of user-made .WAD data files, some of which date back to 1994. Doing a conversion beforehand is probably out of the question. There is Timidity++ and Fluidsynth for doing it in the program itself, but I've heard complaints about less-than-satisfactory conversions in both cases. – AlexMax May 3 '11 at 5:21
feedback

2 Answers

You may want to look at different MIDI libraries outside of SDL.

http://wildmidi.sourceforge.net/

http://sourceforge.net/apps/trac/fluidsynth/

http://timidity.sourceforge.net

link|improve this answer
feedback

I am maintaining a similar game port (Descent 2), and I have come across the same problem. Afaik there is no solution for it when using SDL_mixer. A cure to avoid sound being muted when turning off midi music I have found is to retrieve a handle to a temporary midi device, set the midi volume to max and then close the temporary device again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.