ZDoom is an actively developed project based off GPL release of sources for id software's Doom engine. It can run pretty much all doom1/2-based games ( doom, doom2, heretix, hexen, strife, doom1 and doom2 from doom3 BFG edition ) and some unofficial doom based games ( chex quest, freedoom, action doom, etc).
http://zdoom.org/AboutZDoom does not require openGL - it's a software based engine, only utilizing 2d acceleration. I'm planning to package the openGL variant (GZdoom) as well in a couple of days.
Current problems / things i am unsure about :
- dependencies in .dep are for GTK2 build for now. gtk is only used to display a visual dialog if you have multiple valid game data files and haven't explictly selected which one to play through command line parameters. Doesn't seem really worth making a gtk2 build because of it. making two builds for gtk and non-gtk zdoom atm.
- it's not possible to build non-SSE variant of zdoom at the moment. something is broken in upstream svn, and i've reported it. i probably will have to wait until it's resolved to submit the extension.
- game can statically link against fluidsynth (a midi playback engine) or use system one. i've opted to use system one.
- game uses FMOD library version 4.26 (not packaged yet). so i've included it into the package. it's not yet compatible with newer FMOD releases, so it will most likely have to stay bundled into the package ( should i do an SCM then ? )
- path to fluidsynth's soundfont *.sf2 file is hardcoded in the executable and will have to be altered (it looks under /usr/share/ at the moment ). lack of such file will not prevent zdoom from working.fluidsynth soundfont path can be specified through variable.
- fluidsynth soundfont file has to be yet provided. i found a way to build public-domain sf2 that the game expects to find, but the resulting soundfont file is ~150MB (unpacked), and probably could go into a different package.packaged a generic soundfont
( reference :
https://aur.archlinux.org/packages/fluidr3/ )
Build scripts for zdoom that i used (building straight off svn) :
http://dl.dropbox.com/u/3873935/zdoom-src.tar.gz for people who want to play around with it.
The problem is - should i link statically against fluidsynth and include the soundfont file and make it all into scm, or is a classical extension more reasonable?