Skip to content
/ woof Public
forked from fabiangreffrath/woof

Woof! is a continuation of Lee Killough's Doom source port MBF targeted at modern systems

License

Notifications You must be signed in to change notification settings

Firesth/woof

 
 

Repository files navigation

This is Woof!

Woof! Icon

Top Language Code Size License Release Release Date Downloads Commits Last Commit Build Status

Woof! is a continuation of Lee Killough's Doom source port MBF targeted at modern systems.

Synopsis

MBF stands for "Marine's Best Friend" and is regarded by many as the successor of the Boom source port by TeamTNT. It serves as the code base for many of today's successful Doom source ports such as PrBoom+/DSDA-Doom or The Eternity Engine. As the original engine was limited to run only under MS-DOS, it has been ported to Windows by Team Eternity under the name WinMBF in 2004. Woof! is developed based on the WinMBF code with the aim to make MBF more widely available and convenient to use on modern systems.

To achieve this goal, this source port is less strict regarding its faithfulness to the original MBF. It is focused on quality-of-life enhancements, bug fixes and compatibility improvements. However, all changes have been introduced in good faith that they are in line with the original author's intentions and even for the trained eye, this source port should be hard to distinguish from the original MBF.

In summary, this project's goal is to forward-port MBF.EXE from DOS to 21st century and remove all the stumbling blocks on the way. Furthermore, just as MBF was ahead of its time, this project dedicates itself to early adoption of new modding features such as DEHEXTRA, UMAPINFO and MBF21.

What's with the name?

If you turn the Doom logo upside down it reads "Wood" - which would be a pretty stupid name for a source port. "Woof" is just as stupid a name for a source port, but at least it contains a reference to dogs - and dogs are the Marine's Best Friend. 😉

Code changes

The following code changes have been introduced in Woof! relative to MBF or WinMBF, respectively.

General improvements

  • The code has been made 64-bit compatible.
  • The code has been ported to SDL-2, the game scene is now rendered to screen using hardware acceleration (if available).
  • The build system has been ported to CMake with support for building on Linux and Windows, using either MSVC or MinGW and the latter either in a cross-compiling or a native MSYS2 environment (@AlexMax).
  • Support for rendering with uncapped frame rate and frame interpolation has been added (since Woof! 2.0.0).
  • A widescreen rendering mode has been added with proper support for the widescreen assets found e.g. in the Unity version of Doom (since Woof! 4.0.0).
  • Fullscreen mode can be toggled in the General menu section or by pressing Alt+Enter, and it is now saved in the config file.
  • The complete SDL input and event handling system has been overhauled based on code from Chocolate Doom 3.0 (mouse acceleration is disabled since Woof! 1.1.0).
  • The search path for IWADs has been adapted to modern requirements, taking the install locations for common download packages into account.
  • On non-Windows systems, volatile data such as config files and savegames are stored in a user writable directory.
  • On Windows systems, support for dragging and dropping WAD and DEH files onto the executable has been added (fixed in Woof! 1.0.1).
  • The window geometry and display index settings are now saved across restarts (since Woof! 4.0.0).
  • Screnshots are saved in PNG format using the SDL2_Image library (since Woof! 1.1.0, optional since Woof! 1.0.0, actual representations of the game screen since Woof! 4.0.0).
  • The sound system has been completely overhauled, letting SDL_Mixer do the actual sound mixing and getting rid of the fragile sound channel locking mechanism.
  • The original Spectre/Invisibility fuzz effect has been brought back.
  • The flashing disk icon has been brought back.
  • Error messages now appear in a pop-up window.
  • All non-free embedded lumps have been either removed or replaced.
  • Support for helper dogs and beta emulation is now unconditionally enabled.
  • 64 MiB are now allocated by default for zone memory (64 MiB since Woof! 5.1.0, 32 MiB before).
  • The rendering of flats has been improved (visplanes with the same flats now match up far better than before and the distortion of flats towards the right of the screen has been fixed, since Woof! 1.1.0).
  • The "long wall wobble" glitch has been fixed (since Woof! 1.1.0).
  • Sectors with the same visplane for ceiling and sky are now rendered correctly (e.g. eviternity.wad MAP30).
  • The automap now updates while playing (since Woof! 1.2.0).
  • A "demowarp" feature has been added allowing to fast-forward to the desired map in a demo (since Woof! 1.2.0).
  • Level stats and level time widgets have been added to the automap (since Woof! 2.2.0).
  • The weapon sprites can now be centered during attacks (since Woof! 2.2.0).
  • The player coordinates widget on the Automap is now optional (since Woof! 3.0.0).
  • Sounds may now be played in their full length (since Woof! 3.0.0). However, this only applies to sounds originating from (removed) map objects, not to those that emerge "in the player's head".
  • All textures are now always composed, whether they are multi-patched or not. Furthermore, two separate composites are created, one for opaque and one for translucent mid-textures on 2S walls. Additionally, textures may now be arbitrarily tall (since Woof! 3.0.0).
  • A new wrapping column getter function has been introduced to allow for non-power-of-two wide mid-textures on 2S walls (since Woof! 3.0.0).
  • A woof-midiproc.exe process has been added, allowing to set SFX and music volume separately on Windows (since Woof! 4.0.0).
  • The option to show the centered "A secret is revealed!" message has been added (since Woof! 4.0.0).
  • The -pistolstart command line option has been added (since Woof! 4.0.0).
  • The concept of compatibility levels has been added, currently offering "Vanilla", "Boom" and "MBF" (default). The default compatibility level may be changed through the menu and overridden with the -complevel parameter, allowing for both numeric and named arguments as in PrBoom+ (since Woof! 5.0.0). Menu items in the Setup menu that don't apply to the current compatibility level are disabled and grayed out (since Woof! 5.1.0).
  • Support for "autoload" directories has been added, both for common ("doom-all") and per IWAD files. WAD files in these directories are loaded before those passed to the -file parameter, DEHACKED files in these directories are processed after those passed to the -deh parameter and before those embedded into WAD files (since Woof! 5.0.0). Additionally, autoload directories for PWADs are also supported in a similar manner, but these directories will not get created automatically (since Woof! 6.0.0).
  • The order of the demo sequence has been changed to show the CREDIT graphic screen after the first demo and the port's own demo screen after the second (since Woof! 5.0.0).
  • Support for the MBF21 complevel has been added, originally spearheaded by DSDA-Doom (since Woof! 6.0.0).
  • The colored blood feature has been ported over from PrBoom+ (since Woof! 6.0.0).
  • The Automap overlay and rotate modes have been ported over from Crispy Doom (since Woof! 6.0.0).

Input

  • Support for up to 5 mouse buttons and up to 12 joystick buttons has been added.
  • Keyboard and mouse bindings for prev/next weapon have been added (bound to buttons 4 and 5, resp. the mouse wheel), joystick bindings for strafe left/right have been added (bound to buttons 5 and 6), joystick bindings for prev/next weapon have been added (prev weapon bound to button 3), joystick bindings for the automap and the main menu have been added.
  • Key and button bindings may be cleared in the respective menu by using the DEL key.
  • Movement keys are bound to the WASD scheme by default.
  • Menu control by mouse has been disabled.
  • The "Run" key inverts "Always Run" behaviour (since Woof! 2.1.0).
  • Key bindings have been added to restart a level or go to the next level (since Woof! 2.1.0).
  • A mouse button binding for the "Use" action has been added. Double click acting as "Use" has been made optional (since Woof! 2.3.0).
  • Mouse button bindings for backward motion and turning right/left have been added (since Woof! 5.0.0).
  • Support for recording and playing back Vanilla demos without reduced turning resolution has been added through the -longtics parameter (since Woof! 5.0.0).
  • The limit for the values set by the mouse sensitivity thermometers in the menu has been removed (since Woof! 5.0.0).

Bug fixes

  • The famous "3-key door opens with only two keys" bug has been fixed in the Boom compatibility level (since Woof! 5.0.0).
  • A crash when returning from the menu before a map was loaded has been fixed.
  • A crash when loading a trivial single subsector map has been fixed.
  • A crash when playing back too short demo lumps (e.g. sunlust.wad) has been fixed.
  • A crash when the attack sound for the Lost Soul is missing has been fixed (e.g. ludicrm.wad MAP05).
  • A bug in the translucency table caching has been fixed which would lead to garbled translucency effects for WAD files with custom PLAYPAL lumps.
  • Playback compatility with Vanilla Doom and Boom 2.02 demos has been vastly improved (Boom 2.02 demos should be perfectly supported as of Woof! 4.0.0, PrBoom+ complevel 11 demos as of Woof! 4.0.1).
  • A crash when a Dehacked patch attempts to assign a non-existent code pointer has been fixed (since Woof! 2.2.0).
  • The "Ouch Face" and the "Picked up a Medikit that you really need" message are now shown as intended (since Woof! 2.3.0).
  • The -fast and -respawn options are now properly reloaded from savegames (since Woof! 4.0.0).
  • Framebuffer overflows are now prevented in V_DrawPatchGeneral() and V_CopyRect() (e.g. Pathogen or Rush 2, since Woof! 4.0.0).
  • The SPECHITS (since Woof! 4.0.0) and REJECT (since Woof! 5.1.0) table overflow emulations have been ported over from Chocolate Doom / PrBoom+, allowing for some more obscure Vanilla demos to keep sync.
  • The "IDKFA" cheat string has been externalized, allowing it to be replaced by DEHACKED (since Woof! 4.0.0).
  • Sprite lumps smaller than 8 bytes are now ignored (e.g. triplex.wad, since Woof! 4.0.0).
  • Empty music lumps (i.e. with zero length) are now properly handled (e.g. Nihility.wad, since Woof! 4.0.0).
  • The "no fog on spawn west" Vanilla Doom bug is now properly emulated (e.g. av.wad DEMO1, since Woof! 4.0.0).
  • Switches definitions referencing unknown texture names are now ignored instead of exiting (since Woof! 4.0.0).
  • Some endianess issues have been fixed, allowing the engine to run properly on big-endian systems.
  • Texture offsets are always recalculated (since Woof! 5.1.0).
  • MIDI controller values are now clamped into the [0..127] range, fixing MUS music for e.g. TNT MAP02 (since Woof! 5.1.0).

Support for more WAD files

  • The IWAD files shipped with the "Doom 3: BFG Edition" and the ones published by the Freedoom project are now supported.
  • In general, IWADs are not required to carry an IWAD header anymore, preparing support for many more IWADs such as HACX and REKKR (with specific support for HACX added in Woof! 6.1.0).
  • The level building code has been upgraded to use unsigned data types internally, which allows for loading maps that have been built in "extended nodes" format.
  • Furthermore, maps using nodes in DeePBSP and (compressed or uncompressed) ZDBSP formats can now be loaded.
  • The renderer has been upgraded to use 32-bit integer types internally (64-bit integer types in parts since Woof! 3.0.0), which fixes crashes in levels with extreme heights or height differences (e.g. ludicrm.wad MAP03 or Eviternity.wad MAP27).
  • A crash when loading maps with too short REJECT matrices has been fixed.
  • A crash when loading maps with too short BLOCKMAP lumps has been fixed (since Woof! 1.2.0).
  • The port is now more forgiving when composing textures with missing patches (which will be substituted by a dummy patch) or empty columns (which will be treated as transparent areas).
  • The port is now more forgiving when a flat lump cannot be found and renders the sky texture instead (since Woof! 1.1.0).
  • The port is now more forgiving when a texture lump cannot be found and renders no texture instead (since Woof! 1.2.2).
  • The port is now more forgiving when a sprite rotation is missing (since Woof! 1.2.0).
  • Some nasty rendering and automap glitches have been fixed which became apparent especially in extremely huge levels (e.g. planisf2.wad, since Woof! 1.1.0).
  • Maps without level name graphics do not crash during the intermission screen anymore.
  • Extra states, sprites and mobjtypes have been added for use in Dehacked patches (since Woof! 1.2.0, extra sounds since Woof! 6.1.0).
  • Support for tall textures and sprites in DeePsea format has been added (since Woof! 1.2.2).
  • A crash is fixed when loading a PWAD which contains empty DEHACKED lumps (e.g. ElevenZero.wad, since Woof! 3.0.0).
  • The "HI_START"/"HI_END" namespace has been introduced to avoid conflicts with high-resolution textures (e.g. Hell Ground, since Woof! 4.0.0).
  • Support for 16-bit WAV sound lumps has been added (since Woof! 4.0.0).
  • Support for the "MUSINFO" lump has been added (since Woof! 4.0.0, fixed in Woof! 4.0.1).
  • Support for the "UMAPINFO" lump has been added, compliant to Rev 2.0 of the spec (since Woof! 6.0.0, Rev 1.2 since Woof! 5.0.0). Additionally, the UMAPINFO demo extension has been implemented (since Woof! 6.0.0).
  • Extended HELP screens have been fixed and HELP screens are now loaded from PWADs, if available (since Woof! 5.1.0).
  • UMAPINFO lumps for MASTERLEVELS.WAD, NERVE.WAD, E1M4B.WAD and E1M8B.WAD have been added which are meant to be autoloaded with the corresponding PWAD and change map title, level transitions, par times, music and skies accordingly (since Woof! 6.0.0).

Known issues

  • Savegame compatibility across different platforms and releases has only been added in Woof! 6.0.0. This version is able to read (but not save) savegames from the previous version and even MBF.exe, but may be incompatible with intermediate Woof! releases.
  • IWAD files of Doom version 1.1 and earlier are not supported anymore, as they are missing lumps that are not embedded into the executable anymore (full support for Doom 1.2 since Woof! 1.2.0).

Download

The Woof! source code is available at GitHub: https://github.com/fabiangreffrath/woof.

It can cloned via

 git clone https://github.com/fabiangreffrath/woof.git

Linux

You will need to install the SDL2, SDL2_image, SDL2_mixer and SDL2_net libraries. Usually your distribution has these libraries in its repositories, and if your distribution has "dev" versions of those libraries, those are the ones you'll need.

Once installed, compilation should be as simple as:

 cd woof
 mkdir build; cd build
 cmake -DCMAKE_BUILD_TYPE=Debug ..
 make

If you want a release build, use Release for the build type instead of Debug. Also, if you happen to have Ninja installed, you can add -G Ninja to the cmake invocation for faster build times.

After successful compilation the resulting binary can be found in the Source/ directory.

Windows

Visual Studio 2019 comes with built-in support for CMake by opening the source tree as a folder. Otherwise, you should probably use the GUI tool included with CMake to set up the project and generate build files for your tool or IDE of choice.

It's worth noting that you do not need to download any dependencies. The build system will automatically download them for you.

Cross-compiling

You can cross-compile from Linux to Windows. First, make sure you have a reasonably recent version of mingw-w64 installed. From there, cross-compiling should be as easy as:

 cd woof
 mkdir build; cd build
 cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=../CrossToWin64.cmake ..
 make

Much like a native Windows build, you do not need to download any dependencies.

Version History

  • 0.9.0 (Jan 21, 2020)
    First test build under the moniker Woof!.
  • 1.0.0 (Feb 28, 2020)
    Initial release, introducing support for extended nodes in DeePBSP and ZDBSP formats.
  • 1.0.1 (Mar 03, 2020)
    Hot-fix release, fixing drag-n-drop and adding back support for the Doom 1.2 IWAD.
  • 1.1.0 (Mar 13, 2020)
    Major release, fixing rendering glitches in huge levels.
  • 1.2.0 (Apr 14, 2020)
    Major release, introducing precaching of sound effects.
  • 1.2.1 (May 05, 2020)
    Bug-fix release, fixing drag-n-drop for IWAD files and endianess for extended nodes.
  • 1.2.2 (Jun 09, 2020)
    Minor release, adding support for tall patches and sprites.
  • 2.0.0 (Jul 03, 2020)
    Major release, introducing rendering with uncapped frame rate and frame interpolation.
  • 2.0.1 (Jul 10, 2020)
    Bug-fix release, fixing rendering of linedef type 242 fake floors and ceilings.
  • 2.0.2 (Jul 20, 2020)
    Bug-fix release, more fixes to linedef type 242 fake floors and ceilings rendering.
  • 2.1.0 (Aug 17, 2020)
    Minor release, adding support for inverting "Always Run" with the "Run" key and new key bindings to restart a level or go to the next level.
  • 2.1.1 (Sep 03, 2020)
    Bug-fix release, fixing linedef type 242 rendering with moving control sectors and SDL2_Mixer opening a different number of audio channels than requested.
  • 2.2.0 (Sep 11, 2020)
    Feature release, adding level stats and level time widgets to the automap and optional weapon sprite centering during attacks.
  • 2.3.0 (Sep 21, 2020)
    Feature release, adding a mouse button binding for the "Use" action.
  • 2.3.1 (Sep 30, 2020)
    Bug-fix release, fixing the vertical position of the level stats widgets and finale text lines exceeding screen width.
  • 2.3.2 (Oct 19, 2020)
    Bug-fix release, fixing a crash when the second finale text screen is shown.
  • 3.0.0 (Nov 30, 2020)
    Major release, attempting to fix all known texture rendering bugs. Also adding support for sounds played at full length and optional player coordinates on the Automap.
  • 3.1.0 (Jan 08, 2021)
    Feature release, adding a choice of centered or bobbing weapon sprite during attack, a default save slot name when the user saves to an empty slot and total time for all completed levels.
  • 4.0.0 (Mar 08, 2021)
    Major feature release, introducing a separate MIDI process for Windows, widescreen rendering, the "A secret is revealed!" message, the -pistolstart parameter and support for the MUSINFO lump.
  • 4.0.1 (Mar 15, 2021)
    Bug-fix release, fixing a crash when changing music from a MUSINFO track and improving demo compatibility with PrBoom+ complevel 11.
  • 4.0.2 (Mar 23, 2021)
    Bug-fix release, fixing a music bug when loading a savegame.
  • 5.0.0 (Apr 26, 2021)
    Major feature release, introducing support for UMAPINFO, compatibility levels and "autoload" directories.
  • 5.1.0 (May 14, 2021)
    Minor release, fixing Vanilla demo recording compatibility and some other issues.
  • 6.0.0 (Jun 25, 2021)
    Major feature release, adding support for the MBF21 complevel, autoload directories for PWAD files, backward compatible savegames and colored blood.
  • 6.1.0 (Jun 30, 2021)
    Feature release, enhancing and completing the DEHEXTRA implementation and fixing a severe bug in savegame restoring code.

Contact

The canonical homepage for Woof! is https://github.com/fabiangreffrath/woof

Woof! is maintained by Fabian Greffrath.

Please report any bugs, glitches or crashes that you encounter to the GitHub Issue Tracker.

Acknowledgement

MBF has always been a special Doom source port for me, as it tought me how to implement 640x400 resolution rendering which was the base for my own source port project Crispy Doom. As the original MBF was limited to run only under MS-DOS, I used its pure port WinMBF by Team Eternity to study and debug the code. Over time, I got increasingly frustrated that the code would only compile and run on 32-bit systems and still use the meanwhile outdated SDL-1 libraries. This is how this project was born.

Many additions and improvements to this source port were taken from fraggle's Chocolate Doom, taking advantage of its exceptional portability, accuracy and compatibility.

Legalese

Files: *
Copyright: © 1993-1996 Id Software, Inc.;
© 1993-2008 Raven Software;
© 1999 by id Software, Chi Hoang, Lee Killough, Jim Flynn, Rand Phares, Ty Halderman;
© 2004 James Haley;
© 2005-2014 Simon Howard;
© 2020-2021 Fabian Greffrath;
© 2020 Alex Mayfield;
© 2020-2021 Roman Fomin.
License: GPL-2.0+

Files: Source/beta.h
Copyright: © 2001-2019 Contributors to the Freedoom project.
License: BSD-3-Clause

Files: Source/dogs.h
Copyright: © 2017 Nash Muhandes;
© apolloaiello;
© TobiasKosmos.
License: CC-BY-3.0 and CC0-1.0

Files: data/woof.ico, data/woof.png, data/woof8.ico, Source/icon.c
Copyright: © 2020 Julia Nechaevskaya.
License: CC-BY-3.0

Files: cmake/FindSDL2.cmake, cmake/FindSDL2_image.cmake, cmake/FindSDL2_mixer.cmake, cmake/FindSDL2_net.cmake
Copyright: © 2018 Alex Mayfield.
License: BSD-3-Clause

About

Woof! is a continuation of Lee Killough's Doom source port MBF targeted at modern systems

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 74.3%
  • C 24.2%
  • CMake 1.3%
  • Other 0.2%