Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
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
2  
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

4 Answers

A solution would be to ship with a FluidSynth-enabled SDL_mixer. You would also need to ship a SoundFont2 file to go with it. Fortunately, there are free SF2's out there, and some are even optimized for Doom's MIDI files. Licenses shouldn't be a problem, since SoundFonts are assets, not code.

You then load the SF2 using Mix_SetSoundFonts().

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

For the longest time, the only solution we found was to use something like PortMIDI. However, Quasar of Eternity Engine fame has come across a neat solution:

http://www.doomworld.com/vb/showthread.php?s=&postid=1124981#post1124981

He essentially puts SDL_Mixer into its own process and controls it with RPC. Very clever.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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