2020-05-01 13:30:54 +00:00
```
2015-02-25 10:30:03 +00:00
____ ____ ____ _____ ____ ______ ______
/ __ \ / __ ) / __ \ ____ ____ ____ ___ |__ / / __ ) / ____ // ____ /
/ /_/ // __ |/ / / // __ \ / __ \ / __ `__ \ /_ < / __ |/ /_ / / __
/ _, _ // /_/ // /_/ // /_/ // /_/ // / / / / /___/ // /_/ // __ / / /_/ /
/_/ |_|/_____//_____/ \____/ \____//_/ /_/ /_//____//_____//_/ \____/
_________________________________________
2020-05-01 13:30:54 +00:00
```
2015-02-25 10:30:03 +00:00
RBDOOM-3-BFG Release Notes - https://github.com/RobertBeckebans/RBDOOM-3-BFG
Thank you for downloading RBDOOM-3-BFG.
2015-12-24 13:18:05 +00:00
_______________________________________
2020-04-13 12:04:34 +00:00
TBD mid 2020 - Changes since RBDOOM-3-BFG 1.2.0
2018-06-05 10:17:43 +00:00
_______________________________
2020-04-28 23:19:53 +00:00
RBDOOM-3-BFG 1.3.0 is mainly a Phyiscally Based Rendering Update.
2019-10-14 18:03:42 +00:00
2020-04-28 23:19:53 +00:00
Implementing Phyiscally Based Rendering (PBR) in Doom 3 is a challenge and comes with a few compromises because the Doom 3 content was designed to work with the hardware constraints in 2004 and that even meant to run on a Geforce 3.
2019-10-14 18:03:42 +00:00
2020-04-28 23:19:53 +00:00
The light rigs aren't made for PBR but it is possible to achieve a good PBR lighting even with the old content by tweaking the light formulars with a few good magic constants. However I also want to support the modding scene to allow them to create brand new PBR materials made with Substance Designer/Painter or other modern tools so multiple rendering paths have been implemented.
2020-03-22 13:22:20 +00:00
2020-04-28 23:19:53 +00:00
From an artistic point of view PBR allows artists to create textures that are based on real world measured color values and they look more or less the same in any renderer that follows the PBR guidelines and formulars.
RBDOOM-3-BFG only supports the PBR roughness/metal workflow.
2020-03-22 13:22:20 +00:00
2020-04-28 23:19:53 +00:00
The main goal is that the new content looks the same in RBDOOM-3-BFG as in Blender 2.8 with Cycles or Eevee.
2020-03-22 13:22:20 +00:00
2020-04-28 23:19:53 +00:00
[PBR]
2020-03-22 13:22:20 +00:00
2020-04-28 23:19:53 +00:00
* Changed light interaction shaders to use PBR GGX Cook-Torrance specular contribution. The material roughness is estimated by the old school Doom 3 glossmap if no PBR texture is provided
2020-03-22 13:22:20 +00:00
2020-04-28 23:19:53 +00:00
* PBR texture support ground work is done. Only a few bits are left to be enabled.
2020-03-22 13:22:20 +00:00
2020-04-28 23:19:53 +00:00
* Extended ambient pass to support Image Based Lighting using a single fixed cubemap at the moment (r_usePBR)
2019-10-14 18:03:42 +00:00
2020-04-28 23:19:53 +00:00
* Turned off Half-Lambert lighting hack in favor of Image Based Lighting
2019-10-14 18:03:42 +00:00
2020-04-28 23:19:53 +00:00
* Improved r_hdrDebug which shows F-stops like in Filament
* Turned off r_hdrAutomaticExposure by default because it caused too much flickering and needs further work. The new default values work well with all Doom 3 content
* r_lightScale (default 3) can be changed when HDR is enabled
* Light shaders were tweaked with magic constants that r_useHDR 1, r_forceAmbient 0.3, r_exposure 0.5 look as bright as in Doom 2016 or any other PBR renderer
* SSAO only affects the ambient pass and not the direct lighting and the ambient occlusion affects the specular indirect contribution depending on the roughness of a material. See moving Frostbite to PBR (Lagarde2014)
* Added HACK to look for PBR reflection maps with the suffix _rmao if a specular map was specified and ends with _s.tga. This allows to override the materials with PBR textures without touching the material .mtr files.
2020-05-01 14:52:48 +00:00
* Fixed ambient lights being too bright in HDR mode
2020-04-28 23:19:53 +00:00
[VULKAN]
* Fixed GPU Skinning with Vulkan
* Fixed the lighting with stencil shadows with Vulkan and added Carmarck's Rerverse optimization
* Added anisotropic filtering to Vulkan
* Added Git submodule glslang 7.10.2984 -> stable release Nov 15, 2018
* Vulkan version builds on Linux. Big thanks to Eric Womer for helping out with the SDL 2 part
2020-05-01 13:30:54 +00:00
* Fixed Bink video playback with Vulkan
2020-04-28 23:19:53 +00:00
[MISCELLANEOUS]
* com_showFPS 1 uses ImGui to show more detailed renderer stats like the console prints with r_speeds
* Removed 32bit support: FFmpeg and OpenAL libraries are only distributed as Win64 versions, 32bit CMakes files are gone
* Added Blue Noise based Filmic Dithering by Timothy Lottes and Chromatic Aberration
2020-05-01 14:52:48 +00:00
* Improved Shadow Mapping performance by reducing the number of taps from 12 to 6 and keeping a good quality using dithering the result with Blue Noise magic by Alan Wolfe
2020-05-03 11:39:38 +00:00
* Updated idRenderLog to support RenderDoc and Nvidia's Nsight and only issue OpenGL or Vulkan debug commands if the debug extensions are detected. Reference: https://devblogs.nvidia.com/best-practices-gpu-performance-events/
2020-04-28 23:19:53 +00:00
* Artistic Style C++ beautifier configuration has slightly changed to work closer to Clang Format's behaviour
* Updated documentation regarding modding support in the README
2020-04-13 12:04:34 +00:00
2019-10-14 18:03:42 +00:00
_______________________________________
October 2019 - RBDOOM-3-BFG 1.2.0
_______________________________
This is a maintenance release without Vulkan support even though it contains a lot Vulkan specific code.
2020-04-28 23:19:53 +00:00
* Experimental Work in Progress Vulkan renderer backend based on Dustin Land's Doom 3 BFG Vulkan port
2019-10-14 18:03:42 +00:00
This renderer backend only supports ambient lighting and no light interactions but it also comes with a big renderer code cleanup.
The changes also fixed several rendering bugs that occured in OpenGL:
2020-04-28 23:19:53 +00:00
* Fixed black dots when HDR and SSAO is enabled
2019-10-14 18:03:42 +00:00
2020-04-28 23:19:53 +00:00
* Hit/damage markers show a white background #422
2019-01-20 12:32:22 +00:00
2020-04-28 23:19:53 +00:00
* Refactored and simplified OpenGL renderer backend to match Vulkan backend
2019-01-20 12:32:22 +00:00
2020-04-28 23:19:53 +00:00
* Renamed the .vertex and .pixel shader files to .hlsl
2019-10-14 18:03:42 +00:00
This allows better editing of the shaders within Visual Studio including Intellisense support.
2018-09-30 14:50:44 +00:00
2020-04-28 23:19:53 +00:00
* Integrated libbinkdec for video playback as a slim alternative to FFmpeg (thanks to Daniel Gibson)
2018-09-30 14:50:44 +00:00
2020-04-28 23:19:53 +00:00
* Added in-engine Flash debugging tools and new console variables.
2018-06-05 10:17:43 +00:00
These tools help to analyse the id Tech view of Flash and what SWF tags are supported and how they are interpreted
by id Tech's own ActionScript 2 interpreter
2020-05-01 14:52:48 +00:00
- postLoadExportAtlas
- postLoadExportSWF
- postLoadExportJSON
2018-06-05 10:17:43 +00:00
- swf_show : Draws the bounding box of instanced Flash sprites in red and their names
2020-04-28 23:19:53 +00:00
* Added Steel Storm 2 Engine render demo fixes
2018-06-05 10:17:43 +00:00
2020-04-28 23:19:53 +00:00
* Merged LordHavoc's image compression progress bar which shows up in the map loading screen
2019-10-04 09:56:37 +00:00
when loading and compressing new images from mods
2018-06-05 10:17:43 +00:00
2020-04-28 23:19:53 +00:00
* Added instructions how to use these Doom 3 port with the GOG installer
2018-06-05 10:17:43 +00:00
2020-04-28 23:19:53 +00:00
* Many smaller compiler related fixes like VS 2017 and VS 2019 support.
2019-10-14 18:03:42 +00:00
If it fails to compile with GCC then it should at least build with Clang on Linux
2018-06-05 10:17:43 +00:00
_______________________________________
11 April 2016 - RBDOOM-3-BFG 1.1.0 preview 3
2015-12-24 13:18:05 +00:00
_______________________________
2020-04-28 23:19:53 +00:00
* True 64 bit HDR lighting with adaptive filmic tone mapping and gamma-correct rendering in linear RGB space
2015-12-30 12:09:15 +00:00
2020-04-28 23:19:53 +00:00
* Enhanced Subpixel Morphological Antialiasing
2015-12-30 12:09:15 +00:00
For more information see "Anti-Aliasing Methods in CryENGINE 3" and the docs at http://www.iryoku.com/smaa/
2020-04-28 23:19:53 +00:00
* Filmic post process effects like Technicolor color grading and film grain
2015-12-24 13:18:05 +00:00
2020-04-28 23:19:53 +00:00
* Fixed issues with Mesa drivers and allowed them to use shadow mapping
2015-12-24 13:18:05 +00:00
2020-04-28 23:19:53 +00:00
* Defaulted fs_resourceLoadPriority to 0 so it is not necessary anymore to specify when running a modification
2015-12-24 13:18:05 +00:00
2020-04-28 23:19:53 +00:00
* Additional ambient render pass to make the game less dark similar to the Quake 4 r_forceAmbient technique
2015-12-30 12:09:15 +00:00
2020-04-28 23:19:53 +00:00
* Screen Space Ambient Occlusion http://graphics.cs.williams.edu/papers/SAOHPG12/
2016-01-18 23:04:13 +00:00
2020-04-28 23:19:53 +00:00
* Did some fine tuning to the Half-Lambert lighting curve so bump mapping doesn't loose too much details
2015-12-30 12:09:15 +00:00
2015-12-24 13:18:05 +00:00
2015-02-25 10:30:03 +00:00
_______________________________________
2015-03-07 13:46:38 +00:00
7 March 2015 - RBDOOM-3-BFG 1.0.3
2015-02-25 10:30:03 +00:00
_______________________________
2020-04-28 23:19:53 +00:00
* SDL 2 is the default for Linux
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* CMake options like -DUSE_SYSTEM_LIBJPEG to aid Linux distribution package maintainers
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* SDL gamepad support and other SDL input improvements like support for more mouse buttons
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Mac OS X support (experimental)
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* XAudio 2, Windows 8 SDK fixes
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Better Mesa support (not including advanced shadow mapping)
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Added back dmap and aas compilers (mapping tools)
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Cinematic sequences can be skipped
2015-02-25 14:45:16 +00:00
2020-04-28 23:19:53 +00:00
* Localization support for other languages than English
2015-02-25 14:45:16 +00:00
2020-04-28 23:19:53 +00:00
* Improved modding support through loading of custom models and animations (see section 12 MODIFICATIONS in the README)
2015-02-25 14:54:54 +00:00
2015-02-25 10:30:03 +00:00
_______________________________________
17 May 2014 - RBDOOM-3-BFG 1.0.2
RBDOOM-3-BFG-1.0.2-ATI-hotfix1-win32-20140517-git-952907f.7z
_______________________________
This release doubles the shadow mapping performance and allows the game to be played at solid 120 fps in 1080p with a Nvidia GTX 660 Ti.
It also adds a graphics option to enable/disable shadow mapping and fixes a few problems with FFmpeg playing Bink videos.
_______________________________________
11 May 2014 - RBDOOM-3-BFG 1.0.1
RBDOOM-3-BFG-win32-20140511-git-f950769.7z
_______________________________
This release improves the performance drastically and adds shadow mapping support for translucent surfaces like grates.
_______________________________________
10 May 2014 - RBDOOM-3-BFG 1.0
RBDOOM-3-BFG-win32-20140510-git-14f87fe.7z
_______________________________
2020-04-28 23:19:53 +00:00
* Added soft shadow mapping
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Added PNG image support
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Replaced QGL with GLEW
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* base/renderprogs/ can be baked into the executable using Premake/Lua
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Replaced Visual Studio solution with CMake
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Linux port using SDL/SDL2 and OpenAL
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* 64 bit support for Windows and Linux
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Sourcecode cleanup using Artistic Style 2.03 C++ beautifier and by fixing tons of warnings using Clang compiler
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Fast compile times using precompiled header support
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Tons of renderer bugfixes and Cg -> GLSL converter that supports ES 2.00, ES 3.30 additional to GLSL 1.50
2015-02-25 10:30:03 +00:00
2020-04-28 23:19:53 +00:00
* Netcode fixes to allow multiplayer sessions to friends with +connect < ip of friend > (manual port forwarding required)
2015-02-25 10:30:03 +00:00