Helion-Engine / Helion

A modern fast paced Doom FPS engine
GNU General Public License v3.0
86 stars 9 forks source link
csharp doom doom2

Helion

A modern Doom engine written from the ground up with a focus on performance.

Helion uses static rendering with a state management system to reconcile dynamic map changes in Doom. In contrast to the typical BSP tree rendering that requires significant CPU processing, Helion is able to manage dynamic changes and optimially utilize the GPU resulting in dramatic performance increases.

Content creators have created maps that struggle to render at high framerates with even the latest and most expensive hardware. With Helion, Doom's most complex maps are no longer stressful on modern GPUs and playable on old hardware that was previously impossible.

Minimum requirements are Windows 7 and an Open GL 3.3 capable GPU.

Images

Doom E1M1 - True Color Mode

image::https://i.imgur.com/YBQJAc2.png[Doom E1M1 - True Color Mode]

Doom E1M1 - Palette Color Mode

image::https://i.imgur.com/WfNu68M.png[Doom E1M1 - Palette Color Mode]

Eviternity MAP26 - Automap Overlay

image::https://i.imgur.com/lrksM1C.png[Eviternity MAP26 - Automap Overlay]

Knee-Deep in Knee-Deep in ZDoom Z1M1

image::https://i.imgur.com/iA4bVzs.png[Knee-Deep in Knee-Deep in ZDoom Z1M1]

PUSS X Summer of Slaughter MAP32 (SOS_BOOM.wad)

image::https://i.imgur.com/dVbYPg4.png[PUSSX Summer of Slaught MAP32]

Sunlust MAP28

image::https://i.imgur.com/XyD6UA2.png[Sunlust MAP28]

Eviternity II MAP32

image::https://i.imgur.com/1w9t5N1.png[Eviternity II MAP32]

Benchmarks

https://docs.google.com/spreadsheets/d/19INwMjrppDO-n90HOc-Hhrs1tcqphrItQ_LhzRgurZc[Full Benchmark Spreadsheet]

image::https://i.imgur.com/DbxGlNy.png[Sunder MAP15] image::https://i.imgur.com/QYXFuz4.png[Summer of Slaughter MAP32]

Build Instructions

Windows

If using Visual Studio 2022+ or Rider, press Run and it will do everything.

Linux

Install dependencies first:

Debian/Ubuntu

sudo apt install dotnet-sdk-8.0 libfluidsynth-dev libopenal-dev

Then go to the "Command Line Build" section below.

Fedora

sudo dnf install dotnet-sdk-8.0 fluidsynth-devel openal-devel

After installing dependencies, if you have an IDE that supports C# (like Rider), you can open Helion and build/run directly. You can also build from the command line, as described in the section below.

Mac

None of the developers have a Mac to test.

You likely can follow the Linux instructions to build.

Command Line Build

Once any platform-specific prerequisites are installed, you can build or publish using the dotnet commands available with the .NET SDK. By default, dotnet build will build an "any" binary that uses the installed version of the .NET runtime. However, you can also build versions with a prepackaged runtime for easy installation onto machines that do not have the .NET 8 runtime installed.

Note that it only makes sense to run the following from the Client subdirectory, as this is the only one that actually builds an executable (and can therefore be published).

.Common Build Parameters

Example (making a compressed, self-contained release build for Windows x64):

cd Client
dotnet publish -c Release -r win-x64 -p:SelfContainedRelease=true

In this example, the "published" output would end up in (repo root)\Publish\win-x64_SelfContained.