thatbakamono / Delusion

Delusion is a 2D game engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Delusion

CI

Delusion is a 2D game engine written in C++ 20.

Features

Graphics

  • Sprites

Currently the only supported image format for textures is .png but the underlying library supports many more formats and it's planned to enable them in the near future.

Physics

  • Rigidbody physics:

    • Density
    • Friction
    • Restitution
  • Collisions:

    • Box colliders

Audio

Delusion at the moment supports playback of one audio file at a time with no effects applied. It's planned to get rid of this limitation by implementing proper audio mixer and making an API for implementing custom DSP effects.

Currently the only supported audio format is .mp3 but the underlying library supports lots of different formats and it's planned to enable most of the reasonable ones in the future.

Scripting

Delusion supports scripting in C# (and F#, VB.Net too) via the legacy mono. This means that the latest supported target is .NET Framework 4.8. It's planned to upgrade to the latest mono to support .NET 8.

Editor

Delusion has a fully functional editor, supporting all features supported by the engine.

Build requirements

  • CMake 3.26.0 or newer.
  • MSBuild, ninja or make.
  • Preferably the latest version of MSVC. While it might not be strictly necessary to use the latest version, delusion uses some features from C++ 20 and will use even more in the feature. Older versions might not support those features.
  • Rust v1.64.0 or newer.
  • MSBuild and C# compiler able to compile code written for .NET Framework 4.8.

Build instructions

Before proceeding, make sure you cloned delusion recursively via --recursive, delusion uses submodules and won't compile without them

Windows

Using MSBuild

Delusion> mkdir build
Delusion> cd build
Delusion> cmake -G "Visual Studio 17 2022" ..
Delusion> cmake --build . --config Release

Using ninja

Delusion> mkdir build
Delusion> cd build
Delusion> cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
Delusion> cmake --build .

Using make

MSYS variant
Delusion> mkdir build
Delusion> cd build
Delusion> cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release ..
Delusion> cmake --build .
MinGW variant
Delusion> mkdir build
Delusion> cd build
Delusion> cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release ..
Delusion> cmake --build .

Other platforms

Other platforms are not officially supported at the moment.

About

Delusion is a 2D game engine

License:MIT License


Languages

Language:C++ 88.1%Language:C# 9.0%Language:CMake 1.7%Language:Rust 0.8%Language:WGSL 0.4%