A work in progress fighting and beat em up game engine for windows, linux, and macos with the core written in C11. To get an idea of what's planned and what's actively in development checkout the project page. There is also documentation (not complete) which can be found here.
Technically any game type will be able to be made with the engine. But these are the primary types the engine will target:
- Traditional 2D fighting games such as Street Fighter.
- Beat em up games such as Streets of Rage.
- 3D Fighters such as Tekken.
- Platform fighters such as Super Smash Bros.
- Engine
- Editor
- C++ (c++20) - Editor Core
- ImGui - GUI Library
- ImPlot - Plotting Library (Used with ImGui)
- nlohmann json - Used to read and write JSON files
- Font Awesome - For font icons
- Catch2 - Testing
Supports windows, linux, and macos builds at the moment. Crescent engine uses cmake to build. PVS-Studio is used as a static analyzer for C and C++ code and has it's own github workflow that is triggered automatically with every commit to main and pull request.
Crescent officially supports and is actively tested with the following compilers.
Windows:
- msvc
- mingw
Linux (Ubuntu):
- gcc
MacOS:
- clang
Example of running on command line in the project source directory:
cmake .
cmake --build .