This is an enhanced fork of DosBox. It is currently in sync with revision 4006.
A full-featured build will need the following dependencies:
- SDL2 (required)
- SDL2_net
- FluidSynth (soundfont support)
There are new configuration options, and some existing options have new defaults. If you have a configuration file from a different version of DosBox, then I recommend removing it and letting this version generate a replacement.
Games that use General MIDI can use the new FluidSynth backend to play BGM using a soundfont. Specify that in your configuration file:
[midi]
mididevice=fluidsynth
fluid.driver=alsa # set as appropriate
fluid.soundfont=/path/to/soundfont.sf2
On OS X and Linux, DosBox will perform shell-expansion on the fluid.soundfont paths. That means that it's allowed to have dollar signs (environment variables) and tildes (home directories).
If you've built FluidSynth into DosBox and you want to stop FluidSynth from loading, set the following:
mididevice=none
The default video output method, "texturenb", is equivalent to "openglnb" in vanilla DosBox. Now, "openglnb" and "opengl" use OpenGL 3 and can take advantage of external shaders.
The shaders are stored in a separate project. Download them from here:
Then create a "shaders" directory in the same parent directory that has your DosBox configuration file. Put the *.vert and *.frag files from the dosbox_shaders project into the "shaders" directory.
On Linux, you should have:
~/.dosbox/shaders/*.vert
~/.dosbox/shaders/*.frag
On OS X, you should have:
~/Library/Preferences/shaders/*.vert
~/Library/Preferences/shaders/*.frag
Each shader is two files. For example:
- crt-lottes.vert
- crt-lottes.frag
To use one, specify its name, without the path or the file extension, as the gl.shader:
[sdl]
output=openglnb
gl.shader=crt-lottes
EGA games tend to work well with the jinc2-sharp shader, which removes dithering.
Please note that the new defaults (scaler=none, aspect=on) are needed for the shaders to work as designed.
- physical CD-ROMs are no longer supported (use IMGMOUNT and ISOs instead)
- "aspect"'s default value is now true
- "output"'s default value is now "texturenb"
- "scaler's" default value is now none
- Pixel Buffer Objects are no longer used for rendering (I've found them to be the cause of a screen corruption bug)
- --enable-retinafix option is available to fix fullscreen support on OS X
- game resolution is printed to the console (so you can set your DosBox window resolution to a multiple of it)
This fork uses, either directly or by building on, the following community contributions: