<p><strong>dhewm3</strong> is a source port of the original Doom3 (<strong>not</strong><em>Doom3 BFG</em>, for that you may want to try <ahref="https://github.com/RobertBeckebans/RBDOOM-3-BFG/">RBDoom3BFG</a>). It’s known to work on Windows, Linux, macOS, <ahref="https://freebsd.org">FreeBSD</a>, <ahref="https://openbsd.org">OpenBSD</a> and <ahref="http://www.aros.org/">AROS</a>, but it should work on (or be easily portable to) any system that supports OpenGL 1.4 with <ahref="https://en.wikipedia.org/wiki/ARB_assembly_language">ARB shaders</a>, <ahref="http://libsdl.org">SDL</a> and <ahref="http://openal.org">OpenAL</a>.<br/>
Compared to the original version of Doom3, dhewm3 has many bugfixes, supports EAX-like sound effects on all operating systems and hardware (via <ahref="http://openal-soft.org/">OpenAL Softs</a> EFX support), has much better support for widescreen resolutions and has 64bit support.</p>
<p>It only supports <strong>old Mods</strong> if they <em>either</em> don’t require their own game DLL <em>or</em> have been ported to dhewm3 - see the <ahref="./mods.html">Mods page</a> for more information.</p>
<p>Note that while the Doom3 source code has been released under GPL, you still need to legally own the game and provide dhewm3 the game data to play. See the <ahref="#how-to-install">How to Install</a> section for more information.</p>
<p>To celebrate this, dhewm3 1.5.4 is released today!</p>
<p>The biggest new features since 1.5.3 are a new mod-independent <strong>Settings Menu</strong> that uses <ahref="https://github.com/ocornut/imgui">Dear ImGui</a> and <strong>Soft Particles</strong> (that don’t “cut” into geometry but fade smoothly).<br/>
The <em>Settings Menu</em> can be opened by pressing the <code>F10</code> key (unless some other action is already bound to that key) or by entering <code>dhewm3Settings</code> in the console and lets you configure many basic and advanced options, can be navigated with gamepad, keyboard or mouse and has an improved keybindings menu (compared to the original options menu).</p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.4">download it at Github</a></strong> (incl.builds for <strong>Windows</strong> and 64bit <strong>Linux</strong>).<br/>
An up-to-date version for <strong>macOS</strong> is available at <strong><ahref="http://www.macsourceports.com/sourceport/dhewm3">MacSourcePorts.com</a></strong>.</p>
<p><ahref="./dhewm3-soft-particles.jpg"title="Classic Particles vs Soft Particles"><imgsrc="./small-dhewm3-soft-particles.jpg"style="max-width:50%;margin-left:auto;margin-right:auto;display:block"></a></p>
<p><strong>NOTE:</strong> On some systems, Soft Particles noticeably <strong>slow down rendering</strong>! If the performance of dhewm3 1.5.4 is worse than you’d expect, try disabling them (<code>r_useSoftParticles 0</code> or in the new <em>Settings Menu</em> under<br/>
<li><ahref="https://www.moddb.com/mods/sikkmod/downloads/sikkmod-v12">Sikkmod v1.2</a> and <ahref="https://www.moddb.com/mods/sikkmod/downloads/sikkmod-v11-roe">Sikkmod RoE v1.1</a></li>
<li>See the <ahref="./mods.html">Mods section</a> for more details, and the <ahref="https://github.com/dhewm/dhewm3-sdk/">dhewm3-sdk repository</a> for source code</li>
</ul></li>
<li>A brand new <strong>settings menu</strong> that uses <ahref="https://github.com/ocornut/imgui">Dear ImGui</a>.<br/>
Can be opened with <code>F10</code> (unless that key is bound already) or by entering <code>dhewm3Settings</code> in the console. It has lots of settings that the original options menu doesn’t have and can be easily navigated with gamepad or keyboard (or the mouse, of course). It can also be opened while in the game, which then is paused (if Single Player) but still visible, so the effect of most graphics settings can be seen immediately. Needs SDL2 and C++11.</li>
<li><strong>“Soft” Particles</strong> (that don’t “cut” into geometry but fade smoothly), based on code from <ahref="https://www.thedarkmod.com/main/">The Dark Mod</a> 2.04. Can be enabled/disabled with <code>r_useSoftParticles</code>, is applied automatically for all appropriate particles (view-aligned, using additive or alpha blending and not too small)</li>
<li><code>r_enableDepthCapture</code>: Enable capturing depth buffer to texture, needed for the soft particles. Can be used in custom materials by using the <code>"_currentDepth"</code> texture</li>
<li>Replaced dependency on (external) zlib with integrated <ahref="https://github.com/richgel999/miniz">miniz</a></li>
<li><strong>HighDPI</strong>/Retina support</li>
<li>Allow inverted mouse look (horizontally, vertically or both) with <code>m_invertLook</code></li>
<li>CVar to allow always run in single player (still drains stamina though!): <code>in_allowAlwaysRunInSP</code></li>
<li>VSync can be enabled/disabled on the fly, without restarting the renderer (still with <code>r_swapInterval</code> or in the menu, of course; needs SDL2)</li>
<li>Allow enabling/disabling <ahref="https://en.wikipedia.org/wiki/Head-related_transfer_function">HRTF</a> with <code>s_alHRTF</code></li>
<li><code>s_alOutputLimiter</code>: Configure OpenAL’s output-limiter which temporarily reduces the overall volume when too many too loud sounds play at once, to avoid issues like clipping</li>
<li><code>s_scaleDownAndClamp</code>: Clamp and reduce volume of all sounds to prevent clipping or temporary downscaling by OpenAL’s output limiter</li>
<li>If <code>r_windowResizable</code> is set, the dhewm3 window (when in windowed mode..) can be freely resized. Needs SDL2; with 2.0.5 and newer it’s applied immediately, otherwise when creating the window.</li>
<li>If switching between fullscreen and windowed mode or similar changes causes issues (like <ahref="https://github.com/dhewm/dhewm3/issues/587#issuecomment-2205807989">here</a>), you can set <code>r_vidRestartAlwaysFull 1</code>, so (again) a full <code>vid_restart</code> is done, instead of the partial one which <em>usually</em> suffices for just changing the resolution or fullscreen state. If you run into that issue (probably a driver bug), you’ll probably also want to set <code>r_windowResizable 0</code>, because resizing the window that way also triggered the bug, and in that case no <code>vid_restart</code> is done at all</li>
<li>Fixed screenshots when using native Wayland (<code>SDL_VIDEODRIVER=wayland</code>)</li>
<li>If you enter the <code>map</code> command in the console, without any arguments, the current map name is printed</li>
<li>Support OpenGL debug contexts and messages (<code>GL_ARB_debug_output</code>). Can be enabled with <code>r_glDebugContext 1</code>. Changing that CVar requires a <code>vid_restart</code> (or set it as startup argument)</li>
<li>In the Win32 release, updated the bundled SDL2 to 2.30.5 and cURL to 8.9.0</li>
<li>In the dhewm3-mods archive for Linux, the librecoop libs have been rebuild (fix <ahref="https://github.com/dhewm/dhewm3/issues/589">#589</a>)</li>
</ul>
<p>Thank you very much to everyone who tested this, especially <spanclass="citation"data-cites="j4reporting">@j4reporting</span>, <spanclass="citation"data-cites="ALord7">@ALord7</span>, <spanclass="citation"data-cites="Eonfge">@Eonfge</span> and <spanclass="citation"data-cites="tomkidd">@tomkidd</span> (who also maintains MacSourcePorts)!</p>
<p>Special thanks to <strong>Valkyries733</strong> from the <em>idtech 4</em> Discord server for creating the awesome picture with the birthday cake!</p>
<p>It fixes an issue with the Soft Particles first noticed in Dentonmod, but the way I had to fix it was kinda intrusive so <strong>testing</strong> would be <strong>very welcome</strong>.</p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.4_RC3">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux).</p>
<p><em>(Note: The mod DLLs haven’t changed, so if you want to test the supported mods just use the dhewm3-mods archive from <ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.4_RC2">1.5.4 RC2</a>)</em></p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.4_RC2">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux).</p>
<li>Fixed mods menu to support Perfected Doom 3 ROE and Sikkmod RoE (so they automatically get fs_game_base set to d3xp when started from the menu)</li>
<li>Make entries for base game and Resurrection of Evil (d3xp) in mods menu clearer</li>
<li>Fixed the Perfected Doom 3 ROE mod (so it actually starts)</li>
<li>Applied fixes to Perfected Doom 3 and Sikkmod so the crosshair is round in widescreen resolutions</li>
<p>The biggest new features since 1.5.3 are a new mod-independent <strong>Settings Menu</strong> that uses <ahref="https://github.com/ocornut/imgui">Dear ImGui</a> and <strong>Soft Particles</strong> (that don’t “cut” into geometry but fade smoothly).<br/>
The <em>Settings Menu</em> can be opened by pressing the <code>F10</code> key (unless some other action is already bound to that key) or by entering <code>dhewm3Settings</code> in the console and lets you configure many basic and advanced options, can be navigated with gamepad, keyboard or mouse and has an improved keybindings menu (compared to the original options menu).</p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.4_RC1">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux).</p>
<p><ahref="./dhewm3-soft-particles.jpg"title="Classic Particles vs Soft Particles"><imgsrc="./small-dhewm3-soft-particles.jpg"style="max-width:50%;margin-left:auto;margin-right:auto;display:block"></a></p>
<p><strong>Changes since 1.5.3:</strong></p>
<ul>
<li>dhewm3-mods now contains game DLLs/libs for several new mods:
<ul>
<li><ahref="https://www.moddb.com/games/doom-iii/addons/blood-mod-v15-for-dhewm3-32-bit">Blood Mod v1.5</a></li>
<li><ahref="https://www.moddb.com/mods/sikkmod/downloads/sikkmod-v12">Sikkmod v1.2</a> and <ahref="https://www.moddb.com/mods/sikkmod/downloads/sikkmod-v11-roe">Sikkmod RoE v1.1</a></li>
<li>See the <ahref="./mods.html">Mods section</a> for more details, and the <ahref="https://github.com/dhewm/dhewm3-sdk/">dhewm3-sdk repository</a> for source code</li>
</ul></li>
<li>A brand new <strong>settings menu</strong> that uses <ahref="https://github.com/ocornut/imgui">Dear ImGui</a>.<br/>
Can be opened with <code>F10</code> (unless that key is bound already) or by entering <code>dhewm3Settings</code> in the console. It has lots of settings that the original options menu doesn’t have and can be easily navigated with gamepad or keyboard (or the mouse, of course). It can also be opened while in the game, which then is paused (if Single Player) but still visible, so the effect of most graphics settings can be seen immediately. Needs SDL2 and C++11.</li>
<li><strong>“Soft” Particles</strong> (that don’t “cut” into geometry but fade smoothly), based on code from <ahref="https://www.thedarkmod.com/main/">The Dark Mod</a> 2.04. Can be enabled/disabled with <code>r_useSoftParticles</code>, is applied automatically for all appropriate particles (view-aligned, using additive or alpha blending and not too small)</li>
<li><code>r_enableDepthCapture</code>: Enable capturing depth buffer to texture, needed for the soft particles. Can be used in custom materials by using the <code>"_currentDepth"</code> texture</li>
<li>Replaced dependency on (external) zlib with integrated <ahref="https://github.com/richgel999/miniz">miniz</a></li>
<li><strong>HighDPI</strong>/Retina support</li>
<li>Allow inverted mouse look (horizontally, vertically or both) with <code>m_invertLook</code></li>
<li>CVar to allow always run in single player (still drains stamina though!): <code>in_allowAlwaysRunInSP</code></li>
<li>VSync can be enabled/disabled on the fly, without restarting the renderer (still with <code>r_swapInterval</code> or in the menu, of course; needs SDL2)</li>
<li>Allow enabling/disabling <ahref="https://en.wikipedia.org/wiki/Head-related_transfer_function">HRTF</a> with <code>s_alHRTF</code></li>
<li><code>s_alOutputLimiter</code>: Configure OpenAL’s output-limiter which temporarily reduces the overall volume when too many too loud sounds play at once, to avoid issues like clipping</li>
<li><code>s_scaleDownAndClamp</code>: Clamp and reduce volume of all sounds to prevent clipping or temporary downscaling by OpenAL’s output limiter</li>
<li>If <code>r_windowResizable</code> is set, the dhewm3 window (when in windowed mode..) can be freely resized. Needs SDL2; with 2.0.5 and newer it’s applied immediately, otherwise when creating the window.</li>
<li>If switching between fullscreen and windowed mode or similar changes causes issues (like <ahref="https://github.com/dhewm/dhewm3/issues/587#issuecomment-2205807989">here</a>), you can set <code>r_vidRestartAlwaysFull 1</code>, so (again) a full <code>vid_restart</code> is done, instead of the partial one which <em>usually</em> suffices for just changing the resolution or fullscreen state. If you run into that issue (probably a driver bug), you’ll probably also want to set <code>r_windowResizable 0</code>, because resizing the window that way also triggered the bug, and in that case no <code>vid_restart</code> is done at all</li>
<li>Fixed screenshots when using native Wayland (<code>SDL_VIDEODRIVER=wayland</code>)</li>
<li>If you enter the <code>map</code> command in the console, without any arguments, the current map name is printed</li>
<li>Support OpenGL debug contexts and messages (<code>GL_ARB_debug_output</code>). Can be enabled with <code>r_glDebugContext 1</code>. Changing that CVar requires a <code>vid_restart</code> (or set it as startup argument)</li>
<li>In the Win32 release, updated the bundled SDL2 to 2.30.5 and cURL to 8.9.0</li>
<li>In the dhewm3-mods archive for Linux, the librecoop libs have been rebuild (fix <ahref="https://github.com/dhewm/dhewm3/issues/589">#589</a>)</li>
<p>This brings (the often-requested) support for <strong>gamepads</strong>, as long as they’re supported by SDL2. This includes XBox Controllers (and compatible ones), Playstation 3-5 controllers, Nintendo Switch Pro Controllers, many thirdparty controllers for those consoles, and lots of other gamepads for PC.<br/>
See the <ahref="https://github.com/dhewm/dhewm3/blob/master/Configuration.md#using-gamepads">Configuration documentation</a> for how to make make it work (well, basically you can just plug in your gamepad and configure bindings in the Controls menu, but I also provide configs with default bindings that you could use).<br/>
Furthermore, dhewm3 now supports taking <strong>screenshots in different formats</strong>: TGA (like before), BMP, JPEG and PNG.<br/>
Last but not least, there were several <strong>bugfixes</strong> and other small improvements, see the list below for details.</p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.3">download dhewm3 1.5.3 at Github</a></strong> (incl.builds for Windows and 64bit Linux for both dhewm3 <strong>and the <ahref="./mods.html">supported mods</a></strong>).</p>
<li>Support for gamepads (based on code from <ahref="https://github.com/blendogames/quadrilateralcowboy">Quadrilateral Cowboy</a>, but heavily expanded). See <ahref="https://github.com/dhewm/dhewm3/blob/master/Configuration.md#using-gamepads">Configuration.md</a> for more information.</li>
<li>Support different file formats for screenshots by setting the <code>r_screenshotFormat</code> CVar (0 = TGA, still the default, 1 = BMP, 2 = PNG, 3 = JPG). <code>r_screenshotJpgQuality</code> and <code>r_screenshotPngCompression</code> allow configuring how JPG/PNG are compressed. Thanks <em>eezstreet (Nick Whitlock)</em>!</li>
<li>Fixed problems with lights after loading a savegame (<ahref="https://github.com/dhewm/dhewm3/issues/495">#495</a>)</li>
<li>Fix volume of some weapon sounds, like chaingun being too quit (<ahref="https://github.com/dhewm/dhewm3/issues/326">#326</a>)</li>
<li>Increase stack size on Windows to 8MB (instead default of 1MB) to make loading huge models work</li>
<li>Fixed crash in Radiant Model Preview Dialog (<ahref="https://github.com/dhewm/dhewm3/issues/496">#496</a>)</li>
<li>Fix MD3 model support</li>
<li>Several new CMake options:
<ul>
<li>To enable Clang/GCC Address Sanitizer and Undefined Behavior Sanitizer</li>
<li>Hardlink the game code into the executable (instead of using game DLLs, only supports base <em>or</em> d3xp then; needed for Undefined Behavior Sanitizer)</li>
<li>Force colored diagnostic output from GCC or Clang (esp.useful when building with ninja)</li>
</ul></li>
<li>Fix several compiler warnings</li>
<li>Added build instructions for Linux (and similar systems) to <ahref="https://github.com/dhewm/dhewm3?tab=readme-ov-file#compiling-example-using-ubuntu">README.md</a></li>
<li>Updated minizip (from zlib/contrib) to latest upstream code</li>
<li>Added <code>in_namePressed</code> CVar to print currently pressed key/button (useful for binding keys in the console or configs). Thanks <em>Biel Bestué de Luna</em>!</li>
<li>Probably more bugfixes I forgot to list here..</li>
<li>Updated bundled libs in build for Windows: OpenAL Soft 1.23.1, SDL 2.30.0, cURL 8.6.0, zlib 1.3.1</li>
<li>Linux binary build now requires SDL 2.0.12 or newer (I provide an updated <code>libSDL2-2.0.so.0</code> though).<br/>
If you compile dhewm3 yourself, older SDL2 versions (and SDL1.2) are still supported (however, SDL1.2 doesn’t support gamepads)</li>
<p>The second release candidate for 1.5.3 fixes a bug with gamepad support (sometimes the gamepad buttons were mixed up after using ingame UI panels) and updates the integrated minizip library.</p>
<p>Furthermore, all the mods have been updated for gamepad support and the bugfixes since 1.5.2.</p>
<p>Download <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.3_RC2">dhewm3 1.5.3 RC2 at Github</a></strong> (incl.builds for Windows and 64bit Linux)!</p>
<p>This brings support for <strong>gamepads</strong>, as long as they’re supported by SDL2. This includes XBox Controllers (and compatible ones), Playstation 3-5 controllers, Nintendo Switch Pro Controllers, many thirdparty controllers for those consoles, and lots of other gamepads for PC.<br/>
Furthermore, dhewm3 now supports taking <strong>screenshots in different formats</strong>: TGA (like before), BMP, JPEG and PNG.<br/>
Last but not least, there were several <strong>bugfixes</strong> and other small improvements, see the list below for details.</p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.3_RC1">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux).</p>
<p><strong>Changes since 1.5.2:</strong></p>
<ul>
<li>Support for gamepads (based on code from <ahref="https://github.com/blendogames/quadrilateralcowboy">Quadrilateral Cowboy</a>, but heavily expanded). See <ahref="https://github.com/dhewm/dhewm3/blob/master/Configuration.md#using-gamepads">Configuration.md</a> for more information.</li>
<li>Support different file formats for screenshots by setting the <code>r_screenshotFormat</code> CVar (0 = TGA, still the default, 1 = BMP, 2 = PNG, 3 = JPG). <code>r_screenshotJpgQuality</code> and <code>r_screenshotPngCompression</code> allow configuring how JPG/PNG are compressed. Thanks <em>eezstreet (Nick Whitlock)</em>!</li>
<li>Fixed problems with lights after loading a savegame (<ahref="https://github.com/dhewm/dhewm3/issues/495">#495</a>)</li>
<li>Fix volume of some weapon sounds, like chaingun being too quit (<ahref="https://github.com/dhewm/dhewm3/issues/326">#326</a>)</li>
<li>Increase stack size on Windows to 8MB (instead default of 1MB) to make loading huge models work</li>
<li>Fixed crash in Radiant Model Preview Dialog (<ahref="https://github.com/dhewm/dhewm3/issues/496">#496</a>)</li>
<li>Fix MD3 model support</li>
<li>Several new CMake options:
<ul>
<li>To enable Clang/GCC Address Sanitizer and Undefined Behavior Sanitizer</li>
<li>Hardlink the game code into the executable (instead of using game DLLs, only supports base <em>or</em> d3xp then; needed for Undefined Behavior Sanitizer)</li>
<li>Force colored diagnostic output from GCC or Clang (esp.useful when building with ninja)</li>
</ul></li>
<li>Fix several compiler warnings</li>
<li>Probably more bugfixes I forgot to list here..</li>
<li>Added build instructions for Linux (and similar systems) to <ahref="https://github.com/dhewm/dhewm3?tab=readme-ov-file#compiling-example-using-ubuntu">README.md</a></li>
<li>Updated stb_image and stb_vorbis</li>
<li>Updated bundled libs in build for Windows: OpenAL Soft 1.23.1, SDL 2.30.0, cURL 8.6.0, zlib 1.3.1</li>
<li>Linux binary build now requires SDL 2.0.12 or newer (I provide an updated <code>libSDL2-2.0.so.0</code> though).<br/>
If you compile dhewm3 yourself, older SDL2 versions (and SDL1.2) are still supported (however, SDL1.2 doesn’t support gamepads)</li>
<p><ahref="./dhewm3-1.5.2.jpg"title="dhewm3 1.5.2 with ridiculously high gamma and brightness"><imgsrc="./small-dhewm3-1.5.2.jpg"style="max-width:50%;margin-left:auto;margin-right:auto;display:block"></a></p>
<p>dhewm3 1.5.2 is done.</p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.2">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux for both dhewm3 <strong>and the supported mods</strong>)</p>
<p>Since dhewm3 1.5.1, there have been a lot of enhancements, like better compatibility with Wayland, or applying gamma and brightness in shaders, which means that those settings work better on all platforms and are visible in screenshots (to demonstrate this, the screenshot above has been taken with <code>r_gamma 2.0</code> and <code>r_brightness 1.9</code>).<br/>
Furthermore, both keyboard- and mouse-input have been improved and now there are multiple Quicksave slots (that are cycled through), so if you accidentally saved in a bad situation, you can still load the previous Quicksave.<br/>
Last but not least, there were lots of bugfixes and the (sadly still Windows-only) tools have been improved again with nice new features like High-DPI support, 64bit-compatibility and <strong>the Script Debugger you might remember from Quake4</strong>!</p>
<li>Gamma and Brightness are now applied in the shaders instead of by setting hardware gamma.<br/>
Can be disabled (so hardware gamma is used again) with <code>r_gammaInShaders 0</code></li>
<li>Improvements for (Windows-only) MFC-based tools:
<ul>
<li>Added the script debugger! (thanks <em>HarrievG</em>!)<br/>
Original Doom3 didn’t have it (Quake4 did), but the Doom3 GPL source contained most of it. <em>HarrievG</em> implemented the missing parts and we added some new features. It can even be used over the network and while the client part (the debugger GUI) is Windows-only, the server can run on all supported platforms, so you can debug a game running on Linux or macOS, for example.<br/>
Relevant CVars for network debugging are: <code>com_enableDebuggerServer</code> and <code>com_dbgClientAdr</code> and <code>com_dbgServerAdr</code>.<br/>
To debug the running game on the same PC, just enter <code>debugger</code> in the console.</li>
<li>All tools can now be built in 64bit (thanks <em>raynorpat</em>!)</li>
<li>HighDPI support (thanks <em>HarrievG</em>!)</li>
<li>PDAEditor works now</li>
<li>Additional bugfixes</li>
</ul></li>
<li>Cycle through multiple Quicksave slots instead of immediately overwriting the last Quicksave. The <code>com_numQuicksaves</code> CVar allows setting the number of QuickSaves (<ahref="https://github.com/dhewm/dhewm3/issues/392">#392</a>)</li>
<li>Make r_locksurfaces work (<ahref="https://github.com/dhewm/dhewm3/issues/357">#357</a>)<br/>
It doesn’t do exactly what its description and name suggests: it renders everything that is <em>currently</em> visible from the position/view the player had when setting <code>r_locksurfaces 1</code>. Originally it was supposed to render exactly the surfaces that <em>were</em> visible then, but I couldn’t get that to work.<br/>
This is pretty similar, but there may be differences with opened doors and such.</li>
<li>Support (hopefully) all keyboard keys on all kinds of keyboard layouts by using scancodes for otherwise unknown keys</li>
<li>Support typing in non-ASCII characters, if supported by Doom3 (it supports ISO-8859-1)</li>
<li>Support the clipboard also on non-Windows platforms<br/>
You can paste text from the clipboard into the console or other edit fields with <code>Shift+Insert</code></li>
<li>Explicit support for Right Ctrl, Alt and Shift keys<br/>
(can be bound to different actions than their left counterparts)</li>
<li>Added <code>in_grabKeyboard</code> CVar to make sure dhewm3 gets <em>all</em> keyboard input<br/>
Prevents the Windows-key or Alt-Tab or whatever from taking focus from the game</li>
<li>Added <code>in_ignoreConsoleKey</code> - if set to <code>1</code>, the console is only opened with Shift+Esc, and the “console key” (that key between Esc, 1 and Tab) can be freely bound to an action (and its char can be typed in the console without closing it).</li>
<li>Added (SDL2-only) “auto” option for <code>in_kbd</code>: When not disabling the console key, dhewm3 will try to automatically detect it if <code>in_kbd</code> is set to “auto” (now default)</li>
</ul></li>
<li>Reworked mouse-input and -grabbing code, using absolute mouse mode in fullscreen GUIs (except for the PDA, because it’s implemented weirdly).<br/>
This made releasing the mouse in the main menu possible, as now the ingame cursor is at the same position as the system cursor.</li>
<li><code>s_alReverbGain</code> CVar to reduce EFX reverb effect intensity (<ahref="https://github.com/dhewm/dhewm3/issues/365">#365</a>)</li>
<li>Pause (looped) sounds when entering menu (<ahref="https://github.com/dhewm/dhewm3/issues/330">#330</a>)</li>
<li>Fixes for looped sounds (<ahref="https://github.com/dhewm/dhewm3/issues/390">#390</a>)</li>
<li>Replace libjpeg with stb_image and libogg/libvorbis(file) with stb_vorbis
<ul>
<li>Now the only required external dependencies should be OpenAL, SDL, zlib and optionally libCURL (and of course the C and C++ runtimes)</li>
</ul></li>
<li>(Optionally) use libbacktrace on non-Windows platforms for more useful backtraces in case of crashes (usually linked statically)</li>
<li>Fixed a deadlock (freeze) on Windows when printing messages from another thread</li>
<li>Fixed endless loop (game locking up at startup) if graphics settings couldn’t be applied (<ahref="https://github.com/dhewm/dhewm3/issues/386">#386</a>)</li>
<li>Fixed some warnings and uninitialized variables (thanks <em>turol</em>!)</li>
<li>Work around dmap bug caused by GCC using FMA “optimizations” (<ahref="https://github.com/dhewm/dhewm3/issues/147">#147</a>)</li>
<li>Prevent dhewm3 from being run as root on Unix-like systems to improve security</li>
<li>Replaced most usages of <code>strncpy()</code> with something safer to prevent buffer overflows (remaining cases should be safe).
<ul>
<li>Just a precaution, I don’t know if any of them could actually be exploited, but there were some compiler warnings in newer GCC versions.</li>
</ul></li>
<li>Console output is now logged to <code>dhewm3log.txt</code> (last log is renamed to <code>dhewm3log-old.txt</code>)
<ul>
<li>On Windows it’s in <code>My Documents/My Games/dhewm3/</code></li>
<li>On Mac it’s in <code>$HOME/Library/Application Support/dhewm3/</code></li>
<li>On other Unix-like systems like Linux it’s in <code>$XDG_DATA_HOME/dhewm3/</code> (usually <code>$HOME/.local/share/dhewm3/</code>)</li>
</ul></li>
<li>Improved compatibility with Wayland (<ahref="https://github.com/dhewm/dhewm3/issues/426">#426</a>)</li>
<li>Work around assertion in AlphaLabs4 due to “ride_of_death” yeeting the dead “monster_zsec_shotgun_12” into the void (<ahref="https://github.com/dhewm/dhewm3/issues/409">#409</a>)</li>
<li>Support loading some mods known to need <code>fs_game_base d3xp</code> via Mods menu (currently, <em>The Lost Mission</em> and <em>LibreCoop d3xp</em> are supported)</li>
<li>Disable assertion in idSampleDecoderLocal::DecodeOGG() that triggered when starting a new Classic Doom3 game (<ahref="https://github.com/dhewm/dhewm3/issues/461">#461</a>)</li>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.2_RC2">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux for both dhewm3 <strong>and the supported mods</strong>)</p>
<p><strong>Changes since 1.5.2 Release Candidate 1:</strong></p>
<ul>
<li>Updated the code of all mods hosted in <ahref="https://github.com/dhewm/dhewm3-sdk">dhewm3-sdk repository</a> with relevant changes from dhewm3.</li>
<li>The SDL2.dll in the Windows download has been downgraded to 2.0.20 to avoid a regression in SDL 2.0.22 (<ahref="https://github.com/dhewm/dhewm3/issues/460">#460</a>)</li>
<li>Support loading some mods known to need <code>fs_game_base d3xp</code> via Mods menu (currently, <em>The Lost Mission</em> and <em>LibreCoop d3xp</em> are supported)</li>
<li>Disable assertion in idSampleDecoderLocal::DecodeOGG() that triggered when starting a new Classic Doom3 game (<ahref="https://github.com/dhewm/dhewm3/issues/461">#461</a>)</li>
<li>Fix assertion when loading a mod via menu (<ahref="https://github.com/dhewm/dhewm3/issues/458">#458</a>)<br/>
(this was a regression introduced with the keyboard improvements after 1.5.1)</li>
<li>Fix mouse remaining ungrabbed when running map from Radiant (this was a regression introduced with the reworked mouse grabbing code after 1.5.1)</li>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.2_RC1">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux)</p>
<p><strong>Changes since 1.5.1:</strong></p>
<ul>
<li>Gamma and Brightness are now applied in the shaders instead of by setting hardware gamma.<br/>
Can be disabled (so hardware gamma is used again) with <code>r_gammaInShaders 0</code></li>
<li>Improvements for (Windows-only) MFC-based tools:
<ul>
<li>Added the script debugger! (thanks <em>HarrievG</em>!)<br/>
Original Doom3 didn’t have it (Quake4 did), but the Doom3 GPL source contained most of it. <em>HarrievG</em> implemented the missing parts and we added some new features. It can even be used over the network and while the client part (the debugger GUI) is Windows-only, the server can run on all supported platforms, so you can debug a game running on Linux or macOS, for example.<br/>
Relevant CVars for network debugging are: <code>com_enableDebuggerServer</code> and <code>com_dbgClientAdr</code> and <code>com_dbgServerAdr</code>.<br/>
To debug the running game on the same PC, just enter <code>debugger</code> in the console.</li>
<li>All tools can now be built in 64bit (thanks <em>raynorpat</em>!)</li>
<li>HighDPI support (thanks <em>HarrievG</em>!)</li>
<li>PDAEditor works now</li>
<li>Additional bugfixes</li>
</ul></li>
<li>Cycle through multiple Quicksave slots instead of immediately overwriting the last Quicksave. The <code>com_numQuicksaves</code> CVar allows setting the number of QuickSaves (<ahref="https://github.com/dhewm/dhewm3/issues/392">#392</a>)</li>
<li>Make r_locksurfaces work (<ahref="https://github.com/dhewm/dhewm3/issues/357">#357</a>)<br/>
It doesn’t do exactly what its description and name suggests: it renders everything that is <em>currently</em> visible from the position/view the player had when setting <code>r_locksurfaces 1</code>. Originally it was supposed to render exactly the surfaces that <em>were</em> visible then, but I couldn’t get that to work.<br/>
This is pretty similar, but there may be differences with opened doors and such.</li>
<li>Explicit support for Right Ctrl, Alt and Shift keys<br/>
(can be bound to different actions than their left counterparts)</li>
<li>Added <code>in_grabKeyboard</code> CVar to make sure dhewm3 gets <em>all</em> keyboard input<br/>
Prevents the Windows-key or Alt-Tab or whatever from taking focus from the game</li>
<li>Added <code>in_ignoreConsoleKey</code> - if set to <code>1</code>, the console is only opened with Shift+Esc, and the “console key” (that key between Esc, 1 and Tab) can be freely bound to an action (and its char can be typed in the console without closing it).</li>
<li>Added (SDL2-only) “auto” option for <code>in_kbd</code>: When not disabling the console key, dhewm3 will try to automatically detect it if <code>in_kbd</code> is set to “auto” (now default)</li>
<li><code>s_alReverbGain</code> CVar to reduce EFX reverb effect intensity (<ahref="https://github.com/dhewm/dhewm3/issues/365">#365</a>)</li>
<li>Pause (looped) sounds when entering menu (<ahref="https://github.com/dhewm/dhewm3/issues/330">#330</a>)</li>
<li>Fixes for looped sounds (<ahref="https://github.com/dhewm/dhewm3/issues/390">#390</a>)</li>
<li>Replace libjpeg with stb_image and libogg/libvorbis(file) with stb_vorbis
<ul>
<li>Now the only required external dependencies should be OpenAL, SDL, zlib and optionally libCURL (and of course the C and C++ runtimes)</li>
</ul></li>
<li>(Optionally) use libbacktrace on non-Windows platforms for more useful backtraces in case of crashes (usually linked statically)</li>
<li>Fixed a deadlock (freeze) on Windows when printing messages from another thread</li>
<li>Fixed endless loop (game locking up at startup) if graphics settings couldn’t be applied (<ahref="https://github.com/dhewm/dhewm3/issues/386">#386</a>)</li>
<li>Fixed some warnings and uninitialized variables (thanks <em>turol</em>!)</li>
<li>Work around dmap bug caused by GCC using FMA “optimizations” (<ahref="https://github.com/dhewm/dhewm3/issues/147">#147</a>)</li>
<li>Prevent dhewm3 from being run as root on Unix-like systems to improve security</li>
<li>Replaced most usages of <code>strncpy()</code> with something safer to prevent buffer overflows (remaining cases should be safe).
<ul>
<li>Just a precaution, I don’t know if any of them could actually be exploited, but there were some compiler warnings in newer GCC versions.</li>
</ul></li>
<li>Console output is now logged to <code>dhewm3log.txt</code> (last log is renamed to <code>dhewm3log-old.txt</code>)
<ul>
<li>On Windows it’s in <code>My Documents/My Games/dhewm3/</code></li>
<li>On Mac it’s in <code>$HOME/Library/Application Support/dhewm3/</code></li>
<li>On other Unix-like systems like Linux it’s in <code>$XDG_DATA_HOME/dhewm3/</code> (usually <code>$HOME/.local/share/dhewm3/</code>)</li>
</ul></li>
<li>Improved compatibility with Wayland (<ahref="https://github.com/dhewm/dhewm3/issues/426">#426</a>)</li>
<li>Work around assertion in AlphaLabs4 due to “ride_of_death” yeeting the dead “monster_zsec_shotgun_12” into the void (<ahref="https://github.com/dhewm/dhewm3/issues/409">#409</a>)</li>
<p>It’s still a very valuable resource for modding Doom3/Quake4/idTech4.</p>
<p>It was reconstructed from archive.org and private backups that several people luckily made while the original page was still up. This mirror is (<ahref="https://github.com/dhewm/iddevnet#missing-files-not-available-on-archiveorg-either">as good as</a>) complete, <em>even including downloads!</em><br/>
To make sure it doesn’t get lost again (and for offline viewing), the whole page source is <ahref="https://github.com/dhewm/iddevnet">available on Github</a>.</p>
<p><strong>Hard Corps</strong></p>
<p><ahref="mods/hc1.jpg"title="Screenshot of Hard Corps"><imgsrc="mods/small-hc1.jpg"style="max-width:50%;margin-left:auto;margin-right:auto;display:block"></a></p>
<p>The <strong>Doom 3: Hard Corps</strong> mod, which supports dhewm3 exclusively, has been released. It’s an updated/remastered version of the well-known <em>HardQore2</em> mod and turns Doom3 into a side-scroller.</p>
<p>You can get it at <ahref="https://www.moddb.com/mods/hardcorps">ModDB</a>; our <ahref="./mods.html#hard-corps">Mods page</a> also has some information and screenshots.</p>
<p>There have been a lot of improvements to dhewm3 since 1.5.1.<br/>
Several concern the (sadly still Windows-only) tools, like full 64bit support, High-DPI support and the Script Debugger you might remember from Quake4!<br/>
Furthermore, dhewm3 now applies brightness and gamma in shaders, which means that those settings work better on all platforms (no more changing gamma of the whole screen) and are visible in screenshots (so those now look the same as the game itself). Other improvements include multiple Quicksave slots (that are cycled through), improved keyboard support, fewer external dependencies and of course bugfixes.<br/>
<p><ahref="./dhewm3-1.5.1-demo.jpg"title="Doom3 Demo in dhewm3 1.5.1"><imgsrc="./medium-dhewm3-1.5.1-demo.jpg"style="max-width:50%;margin-left:auto;margin-right:auto;display:block"></a></p>
<p>dhewm3 1.5.1 is done.</p>
<p>Apart from lots of bugfixes, the biggest changes since 1.5.0 are support for the (Windows-only) editing tools and for the <ahref="#using-the-doom3-demo-gamedata">Doom3 Demo gamedata</a>.<br/>
<p>Furthermore, there now is a coop mode for dhewm3: <ahref="https://www.moddb.com/mods/librecoop-dhewm3-coop">LibreCoop</a>, see the <ahref="./mods.html#librecoop">dhewm3 mods page</a> for more details. Thanks a lot to <em>Stradex</em> for creating it!<br/>
Another Mod that is now supported is <ahref="https://www.moddb.com/mods/the-lost-mission">The Lost Mission</a>, see also <ahref="./mods.html#the-lost-mission">here</a> - thanks to <em>Arl90</em> for making this possible!</p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.1">download dhewm3 1.5.1 at Github</a></strong> (incl.builds for Windows and 64bit Linux)</p>
<p><ahref="./dhewm3-edit.jpg"title="DOOMEdit running in dhewm3"><imgsrc="./medium-dhewm3-edit.jpg"style="max-width:50%;margin-left:auto;margin-right:auto;display:block"></a></p>
<p><strong>Changes since 1.5.0:</strong></p>
<ul>
<li>The (Windows-only) integrated <strong>editing tools</strong> of Doom3 are back!
<ul>
<li>They can only be built with non-Express versions of Visual Studio (tested Community Editions of VS2013 and VS2017) and can be disabled via CMake</li>
<li>Official dhewm3 Windows binaries are built with tools enabled, of course.</li>
<li>Has some bugfixes over the state in Doom3 1.3.1, like selecting a material in the Particle Editor doesn’t break the viewport of the game any more.</li>
<li>While prior dhewm3 releases for Windows have been built with Visual Studio 2010, this is built with Visual Studio 2017, so if it doesn’t start on your system make sure you have <ahref="https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads">the Visual C++ 2017 Redistributable</a> installed - but chances are good you already have it.
<li>Update savegame format (see <ahref="https://github.com/dhewm/dhewm3/issues/303">#303</a> and <ahref="https://github.com/dhewm/dhewm3/issues/344">#344</a>)
Added Mod DLLs of <ahref="https://www.moddb.com/mods/librecoop-dhewm3-coop">LibreCoop</a> and <ahref="https://www.moddb.com/mods/the-lost-mission">The Lost Mission</a>.<br/>
See <ahref="./mods.html">the Mods page</a> for more details.</li>
<li>This is based on <em>Gabriel Cuvillier’s</em> code for <ahref="http://www.continuation-labs.com/projects/d3wasm/">D3Wasm</a>, which ports dhewm3 to web browsers, thanks!</li>
<li>Added <code>r_fullscreenDesktop</code> CVar to set if fullscreen mode should be “classic” or “Desktop” which means a borderless window at desktop resolution</li>
<li>Fullscreen modes that are not at the current desktop resolution should work better now
<ul>
<li>including nvidia DSR / AMD VSR; for that you might have to use the supplied <code>dhewm3_notools.exe</code>, as DSR/VSR seem to be incompatible with applications that use MFC (the GUI framework used for the Doom3 tools like the D3Radiant)</li>
</ul></li>
<li>Several sound-related bugfixes:
<ul>
<li>Lags in starting to play a sound which for example caused the machinegun or plasmagun sounds to stutter have been eliminated (<ahref="https://github.com/dhewm/dhewm3/issues/141">#141</a>)</li>
<li>Trying to reset disconnected OpenAL devices, this esp.helps with display audio on Intel GPUs on Windows, when switching to fullscreen (<ahref="https://github.com/dhewm/dhewm3/issues/209">#209</a>)</li>
<li>Make “idSoundCache: error unloading data from OpenAL hardware buffer” a Warning instead of an Error so it doesn’t terminate game (by <em>Corey O’Connor</em>, <ahref="https://github.com/dhewm/dhewm3/pull/235">#235</a>)</li>
<li>This neither seems to make a visual nor performance difference on any hardware I tried (including Raspberry Pi 4), so this is mostly out of principle</li>
<li>Based on Code by <ahref="https://github.com/ljbade/doom3.gpl/commit/d4de024341e79e0ac1dfb54fb528859f8ccea605"><em>Leith Bade</em></a> and <ahref="https://github.com/raynorpat/Doom3/blob/2933cb554587aea546c2df1fdf086204d4ca363d/neo/renderer/draw_stencilshadow.cpp#L147-L182"><em>Pat Raynor</em></a>.</li>
<li>The <code>r_useCarmacksReverse</code> and <code>r_useStencilOpSeparate</code> CVars allow switching both things on/off for comparison</li>
</ul></li>
<li>New CVar <code>g_hitEffect</code>: If set to <code>0</code>, the player camera damage effects (like double-vision and extreme tilt) when being hit are disabled (by <em>dobosken</em>, <ahref="https://github.com/dhewm/dhewm3/pull/279">#279</a>).</li>
<li>(On Windows) stdout.txt and stderr.txt are not saved next to the binary anymore, but in <code>My Documents/My Games/dhewm3/</code>, like save games, because the binary dir might not be writable and dhewm3 wouldn’t start properly then</li>
<li>Fixed clipping bug in delta1 which sometimes occured and made climbing some ladders impossible (see <ahref="https://github.com/dhewm/dhewm3/issues/328">#328</a>)</li>
<li>Improve compatibility with some custom scripts (“t->c->value.argSize == func->parmTotal” Assertion; see <ahref="https://github.com/dhewm/dhewm3/issues/303">#303</a>)</li>
<li>Registering multiplayer servers at id’s master-server fixed, so they can be found in the multiplayer menu (by <em>Stradex</em>, <ahref="https://github.com/dhewm/dhewm3/pull/293">#293</a>)</li>
<li>Support for <ahref="https://en.wikipedia.org/wiki/Reproducible_builds">reproducible builds</a> by setting the CMake option <code>REPRODUCIBLE_BUILD</code>.</li>
<li>Should build on recent versions of macOS, also on Apple Silicon (thanks <em>Dave Nicolson</em> and <em>Petter Uvesten</em>).</li>
<li>Proper handling of paths with dots in directory names (<ahref="https://github.com/dhewm/dhewm3/issues/299">#299</a>, <ahref="https://github.com/dhewm/dhewm3/issues/301">#301</a>)
<li><code>idFileSystemLocal::ListMods()</code> doesn’t search <code>/</code> or <code>C:\</code> anymore (it did so if one of the paths, like <code>fs_cdpath</code>, was empty)</li>
<li>Don’t use translation in Autosave filenames (see <ahref="https://github.com/dhewm/dhewm3/issues/305">#305</a>)
<li>In the Spanish translation all the Alpha Lab autosaves got the same name, now the autosave name is based on the mapename instead which is distinct</li>
<p><summary>Click to see the rest of this (outdated) newspost</summary></p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.1_RC3">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux)</p>
<li>Uploaded updated builds of Mod DLLs, now also supporting <ahref="https://www.moddb.com/mods/librecoop-dhewm3-coop">LibreCoop</a> and <ahref="https://www.moddb.com/mods/the-lost-mission">The Lost Mission</a></li>
<li>In the Spanish translation all the Alpha Lab autosaves got the same name, now the autosave name is based on the mapename instead which is distinct</li>
</ul></li>
<li>Create the game window on the display the cursor is currently on (when using more than one display)</li>
<li>Added <code>r_fullscreenDesktop</code> CVar to set if fullscreen mode should be “classic” or “Desktop” which means a borderless window at desktop resolution</li>
<li>Fullscreen modes that are not at the current desktop resolution should work better now
<ul>
<li>including nvidia DSR / AMD VSR; for that you might have to use the supplied <code>dhewm3_notools.exe</code>, as DSR/VSR seem to be incompatible with applications that use MFC (the GUI framework used for the Doom3 tools like the D3Radiant)</li>
</ul></li>
<li>Fixed clipping bug in delta1 (see <ahref="https://github.com/dhewm/dhewm3/issues/328">#328</a>)</li>
<li>Improve compatibility with some custom scripts (“t->c->value.argSize == func->parmTotal” Assertion; see <ahref="https://github.com/dhewm/dhewm3/issues/303">#303</a>)</li>
<li>Update savegame format (see <ahref="https://github.com/dhewm/dhewm3/issues/303">#303</a> and <ahref="https://github.com/dhewm/dhewm3/issues/344">#344</a>)
<p><summary>Click to see the rest of this (outdated) newspost</summary></p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.1_RC2">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux)</p>
<li>When switching from an editor to the game, the game shouldn’t get rendered in a tiny rectangle in the lower left corner anymore (<ahref="https://github.com/dhewm/dhewm3/issues/300">#300</a>)</li>
<li>When switching from Radiant into the Engine (e.g.with <code>F2</code>), the game isn’t frozen anymore</li>
<li>Proper handling of paths with dots in directory names (<ahref="https://github.com/dhewm/dhewm3/issues/299">#299</a>, <ahref="https://github.com/dhewm/dhewm3/issues/301">#301</a>)
<li><code>idFileSystemLocal::ListMods()</code> doesn’t search <code>/</code> or <code>C:\</code> anymore (it did so when one of the paths, like <code>fs_cdpath</code>, was empty)</li>
<p><summary>Click to see the rest of this (outdated) newspost</summary></p>
<p>You can <strong><ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.1_RC1">download it at Github</a></strong> (incl.builds for Windows and 64bit Linux)</p>
<p><ahref="./dhewm3-edit.jpg"title="DOOMEdit running in dhewm3"><imgsrc="./medium-dhewm3-edit.jpg"style="max-width:90%;margin-left:auto;margin-right:auto;display:block"></a></p>
<p><strong>Changes since 1.5.0:</strong></p>
<ul>
<li>The (Windows-only) integrated <strong>editing tools</strong> of Doom3 are back!
<ul>
<li>They can only be built with non-Express versions of Visual Studio (tested Community Editions of VS2013 and VS2017) and can be disabled via CMake</li>
<li>Official dhewm3 Windows binaries are built with tools enabled, of course.</li>
<li>Has some bugfixes over the state in Doom3 1.3.1, like selecting a material in the Particle Editor doesn’t break the viewport of the game any more.</li>
<li>While prior dhewm3 releases for Windows have been built with Visual Studio 2010, this is built with Visual Studio 2017, so if it doesn’t start on your system make sure you have <ahref="https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads">the Visual C++ 2017 Redistributable</a> installed - but chances are good you already have it.
<li>This is based on <em>Gabriel Cuvillier’s</em> code for <ahref="http://www.continuation-labs.com/projects/d3wasm/">D3Wasm</a>, which ports dhewm3 to web browsers, thanks!</li>
<li>Lags in starting to play a sound which for example caused the machinegun or plasmagun sounds to stutter have been eliminated (<ahref="https://github.com/dhewm/dhewm3/issues/141">#141</a>)</li>
<li>Trying to reset disconnected OpenAL devices, this esp.helps with display audio on Intel GPUs on Windows, when switching to fullscreen (<ahref="https://github.com/dhewm/dhewm3/issues/209">#209</a>)</li>
<li>Make “idSoundCache: error unloading data from OpenAL hardware buffer” a Warning instead of an Error so it doesn’t terminate game (by <em>Corey O’Connor</em>, <ahref="https://github.com/dhewm/dhewm3/pull/235">#235</a>)</li>
<li>This neither seems to make a visual nor performance difference on any hardware I tried (including Raspberry Pi 4), so this is mostly out of principle</li>
<li>Based on Code by <ahref="https://github.com/ljbade/doom3.gpl/commit/d4de024341e79e0ac1dfb54fb528859f8ccea605"><em>Leith Bade</em></a> and <ahref="https://github.com/raynorpat/Doom3/blob/2933cb554587aea546c2df1fdf086204d4ca363d/neo/renderer/draw_stencilshadow.cpp#L147-L182"><em>Pat Raynor</em></a>.</li>
<li>The <code>r_useCarmacksReverse</code> and <code>r_useStencilOpSeparate</code> CVars allow switching both things on/off for comparison</li>
</ul></li>
<li>New CVar <code>g_hitEffect</code>: If set to <code>0</code>, the player camera damage effects (like double-vision and extreme tilt) when being hit are disabled (by <em>dobosken</em>, <ahref="https://github.com/dhewm/dhewm3/pull/279">#279</a>).</li>
<li>(On Windows) stdout.txt and stderr.txt are not saved next to the binary anymore, but in <code>My Documents/My Games/dhewm3/</code>, like save games, because the binary dir might not be writable and dhewm3 wouldn’t start properly then</li>
<li>Registering multiplayer servers at id’s master-server fixed, so they can be found in the multiplayer menu (by <em>Stradex</em>, <ahref="https://github.com/dhewm/dhewm3/pull/293">#293</a>)</li>
<li>Support for <ahref="https://en.wikipedia.org/wiki/Reproducible_builds">reproducible builds</a> by setting the CMake option <code>REPRODUCIBLE_BUILD</code>.</li>
<p><summary>Click to see the rest of this (outdated) newspost</summary><ahref="./dhewm3-edit.jpg"title="DOOMEdit running in dhewm3"><imgsrc="./medium-dhewm3-edit.jpg"style="max-width:90%;margin-left:auto;margin-right:auto;display:block"></a></p>
<li>The (Windows-only) integrated <strong>editing tools</strong> of Doom3 are back!
<ul>
<li>They can only be built with non-Express versions of Visual Studio (tested Community Editions of VS2013 and VS2017) and can be disabled via CMake</li>
<li>The <ahref="https://github.com/dhewm/dhewm3/releases/tag/1.5.1_PRE1">dhewm3_1.5.1pre1_win32.zip available on Github</a> has them enabled, of course
<li>While prior dhewm3 releases have been built with Visual Studio 2010, this is built with Visual Studio 2013, so if it doesn’t start on your system make sure you have <ahref="https://www.microsoft.com/en-us/download/details.aspx?id=40784">the Visual C++ 2013 Redistributable</a> installed - but chances are good you already have it.</li>
<li>Has some bugfixes over the state in Doom3 1.3.1, like selecting a material in the Particle Editor doesn’t break the viewport of the game any more.</li>
<li>dhewm3 now supports the <strong>Doom3 Demo</strong> gamedata (<ahref="https://www.fileplanet.com/archive/p-15998/DOOM-3-Demo">D3Demo.exe</a> or <ahref="http://files.holarse-linuxgaming.de/native/Spiele/Doom%203/Demo/doom3-linux-1.1.1286-demo.x86.run">doom3-linux-1.1.1286-demo.x86.run</a>)
<ul>
<li>On Windows, just run D3Demo.exe to install the demo, on Linux (and probably others) you can extract the relevant file from the .run installer with <code>sh doom3-linux-1.1.1286-demo.x86.run --tar xf demo/</code></li>
<li>This is based on Gabriel Cuvillier’s code for <ahref="http://www.continuation-labs.com/projects/d3wasm/">D3Wasm</a>, which ports dhewm3 to web browsers, thanks!</li>
<li>(On Windows) stdout.txt and stderr.txt are not saved next to the binary anymore, but in <code>My Documents/My Games/dhewm3/</code>, like save games, because the binary dir might not be writable and dhewm3 wouldn’t start properly then</li>
<li>Support for <ahref="./mods.html">some Mods</a> via <ahref="https://github.com/dhewm/dhewm3-sdk">custom SDK</a>: Classic Doom3, Fitz Packerton, HardQore2, Denton’s Enhanced Doom3 and Rivensin (formerly known as Ruiner).
<li><ahref="https://github.com/dhewm/dhewm3/releases/download/1.5.0/dhewm3_1.5.0_win32.zip">dhewm3-mods_1.5.0_win32.zip</a> contains prebuild Windows game DLLs for those Mods (except Rivensin) and a README that tells you where to get the game data</li>
<li>See <ahref="./mods.html">the Mods page</a> for more information.</li>
<li>Scale menus, fullscreen videos and the PDA to 4:3 (with black bars left/right) on widescreen displays so they don’t look stretched/distorted. Can be disabled with <code>r_scaleMenusTo43 0</code>.<br/>
No, this unfortunately can’t be done for the HUD (except for the crosshair), because it also handles fullscreen effects (for example when receiving damage), and those would look bad with black/empty bars on left/right.</li>
<li>Commandline option to display some help on supported commandline arguments: <code>-h</code> or <code>--help</code> or <code>-help</code> or <code>/?</code></li>
<li><del>(Experimental) uncapped framerate, enable by entering <code>com_fixedTic -1</code> in the console (can be set back with <code>com_fixedTic 0</code>).</del> (<ahref="https://github.com/dhewm/dhewm3/issues/261">this turned out to be broken</a>)</li>
<li>Providing binaries for Linux amd64 (x86_64) now
<ul>
<li>Should work on any halfway-recent distro, needs <code>libSDL2-2.0.so.0</code>, <code>libopenal.so.1</code> and <code>libcurl.so.4</code> installed</li>
<li>Updated some libraries bundled in the Win32 build: <ahref="https://libsdl.org">SDL2 2.0.9</a>, <ahref="https://openal-soft.org/">OpenAL-soft 1.19.1</a> and <ahref="https://curl.haxx.se">curl 7.62.0</a></li>
<p>I guess it makes sense to be a bit less dependent on Github (especially as it has been bought by Microsoft, but also in general), so I decided to create this homepage with a domain I control.<br/>
Another advantage is that it has some screenshots and more user-centric documentation than the <ahref="https://github.com/dhewm/dhewm3/blob/master/README.md">README.md</a>.<br/>
We’ll continue to use Github for hosting the code and issues (and indeed this page via github pages), but if we need to migrate to another hoster some day, <ahref="http://dhewm3.org">dhewm3.org</a> will still be reachable and will link to the new code repo and issue tracker instead.</p>
<li>Fixed some (kinda rare) crashes due to assertion errors, especially observed in the last boss fights of both doom3 and the Resurrection of Evil Addon.</li>
<p>.. or alternatively you can use the <code>demo00.pk4</code> from the free Demo version, <ahref="#using-the-doom3-demo-gamedata">see below</a> for more information.</p>
<p>If you’re using an official binary release of dhewm3 (for Win32 or Linux amd64), you just put the .pk4 files into the corresponding directories (<code>base/</code> and <code>d3xp/</code>) in <code>dhewm3/</code>.</p>
<p>There are also platform-specific places where dhewm3 looks for the game data, see <ahref="https://github.com/dhewm/dhewm3/wiki/FAQ#where-do-i-need-to-put-the-game-data-files">the FAQ</a> for more details.</p>
<p>Alternatively you can just tell dhewm3 where to find the directory that contains base/ and d3xp/ with the .pk4s, with the following commandline argument:</p>
<p>If you bought the game on CDs/DVD, base/pak000.pk4 - pak004.pk4 and d3xp/pak000.pk4 can be copied from the disks, the other files are from the patch.</p>
<p>On <strong>Linux</strong> (and probably other <strong>Unix-like</strong> systems and maybe even Windows with a mingw shell) you can extract the needed files from <ahref="https://files.holarse-linuxgaming.de/native/Spiele/Doom%203/doom3-linux-1.3.1.1304.x86.run">the official 1.3.1 patch for Linux</a> with:</p>
<p>On <strong>Windows</strong> you can just install the game and <ahref="https://archive.org/details/Doom_3_1.3.1">the official 1.3.1 patch for Windows</a> and then get the files from the installation directory (or copy dhewm3 in there).</p>
<p>First you need to buy <ahref="https://store.steampowered.com/app/208200/DOOM_3/">Doom3</a> of course - it also includes the Resurrection of Evil Addon (and the BFG Edition re-release of the game, <em>which is <strong>not</strong> supported by dhewm3</em>).</p>
<p>On <strong>macOS</strong> unfortunately you can’t just install the game (unless you run Windows Steam in Wine), because it’s Windows-only on Steam and Steam (currently?) doesn’t use Proton on Mac.</p>
See <ahref="https://developer.valvesoftware.com/wiki/SteamCMD#macOS">this description for macOS</a> or <ahref="https://developer.valvesoftware.com/wiki/SteamCMD#Linux">here for Linux</a> on how to install SteamCMD on your system. You won’t have to create a new user.</p>
When it’s done you should have the normal windows installation of doom3 in <code>./doom3/</code> and the needed files in <code>./doom3/base/</code><br/>
It should be possible to get the <em>Resurection of Evil</em> data in the same way, by replacing <code>9050</code> with <code>9070</code>; the files should be in <code>./doom3/d3xp/</code> then.</p>
<p>By the way, that number is the “AppID” of Doom3/RoE; if you wanna use this to get the data of other games you own, you can look up the AppID at <ahref="https://steamdb.info/">SteamDB</a>.</p>
<p>GOG.com offers the same bundle as Steam (Doom3 + Resurrection of Evil + BFG Edition): <ahref="https://www.gog.com/game/doom_3"class="uri">https://www.gog.com/game/doom_3</a></p>
<p>I haven’t tried the GOG version yet, but you should be able to download it without installing any launcher. At GOG you usually get Windows Installers that use <ahref="https://jrsoftware.org/isinfo.php">Inno Setup</a> and can be extracted with <ahref="https://constexpr.org/innoextract/">innoextract</a> on all relevant operating systems.<br/>
See also <ahref="https://constexpr.org/innoextract/#gog"class="uri">https://constexpr.org/innoextract/#gog</a></p>
<p>I assume that the GOG version of the game is also fully patched to 1.3.1.</p>
<h3id="using-the-doom3-demo-gamedata">Using the Doom3 Demo gamedata</h3>
<p>First you need to download the Doom3 Demo, of course.</p>
<p>For <strong>Windows</strong>, you can get <ahref="https://www.fileplanet.com/archive/p-15998/DOOM-3-Demo">D3Demo.exe at Fileplanet</a> and just run the installer.</p>
<p>For <strong>Linux</strong> (and <strong>other operating systems</strong> that have a POSIX-compatible shell and <code>tar</code>) you can download <ahref="https://files.holarse-linuxgaming.de/native/Spiele/Doom%203/Demo/doom3-linux-1.1.1286-demo.x86.run">doom3-linux-1.1.1286-demo.x86.run from Holarse</a> or some other page that has that file.<br/>
Then you can extract the relevant file from the .run installer with</p>
<p><code>demo00.pk4</code> has a size of 462MB but there are minimal differences between the one for Linux and Windows, so they have different md5sums:<br/>
<p>Both work on all platforms though, but the Linux demo had been released two months after the Demo for Windows and contains at least one tiny bugfix: A missing string for <code>" or "</code> which is used when binding multiple keys to the same action - the Windows Demo shows a nonsense string instead.</p>
<p>On <strong>Windows</strong> you can just download the Win32 binaries from the <ahref="https://github.com/dhewm/dhewm3/releases/latest">Download page</a>.<br/>
You can either extract them into your Doom3 installation directory, or into a fresh directory and copy the needed game data (<ahref="#getting-the-doom3-game-data">see above</a>) in there.<br/>
The official Windows binaries are built with Visual Studio 2017, so if it doesn’t start on your system make sure you have <ahref="https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads">the Visual C++ 2017 Redistributable <strong>for X86</strong></a> installed.</p>
<p>Similarly, you can find x86_64 (amd64) <strong>Linux</strong> binaries on the <ahref="https://github.com/dhewm/dhewm3/releases/latest">Download page</a> - these expect that your system has <code>libSDL2-2.0.so.0</code>,<code>libopenal.so.1</code>, <code>libz.so.1</code> and <code>libcurl.so.4</code> installed (on debian, Ubuntu and similar distros the corresponding packages are called <code>libsdl2-2.0-0</code>, <code>libopenal1</code>, <code>zlib1g</code> and <code>libcurl4</code>).</p>
<p>If you’re using <strong>macOS</strong>, <ahref="https://macsourceports.com">MacSourcePorts.com</a> provides signed and notarized <ahref="https://macsourceports.com/game/doom3">dhewm3 binaries</a> for 64bit Intel and Apple Silicon.</p>
<p>On Linux and *BSD it might be that your package manager provides a dhewm3 package/port that you can install; please refer to that packages documentation on where to put the game data.<br/>
You could also try telling dhewm3 where to find the game data with:</p>
<p>If your package manager does not provide dhewm3, or you want to use the very latest code, you’ll have to compile it yourself. It’s not super hard, see <ahref="https://github.com/dhewm/dhewm3/blob/master/README.md#compiling">the README</a> for details on compiling and <ahref="https://github.com/dhewm/dhewm3/wiki/FAQ#where-do-i-need-to-put-the-game-data-files">the FAQ</a> on where to put the game data.</p>