|
Golias Engine
A C++ 20 'game engine' built with SDL3 with wide platform support.
|
Golias Engine is a lightweight and modular 2D/3D game engine/framework written in C/C++, designed to be * *simple yet powerful**.
⚠️ Note: Currently there is no
Editorand one is unlikely to exist in the future.
Golias focuses on code-driven development, cross-platform compatibility, and learning.
| Renderer Backend | Status |
|---|---|
| OpenGL 3.3 / OpenGLES 3.0 | ✅ Fully supported |
| Metal | 🚫 No ETA |
| Vulkan | 🚫 No ETA |
| Direct3D 12 | 🚫 No ETA |
| Proprietary APIs | 🚫 No ETA |
| Platform | Category | Notes | Status |
|---|---|---|---|
| Windows | Desktop | ✅ | |
| Linux | Desktop | ✅ | |
| macOS | Desktop | ✅ | |
| Android | Mobile | ✅ | |
| iOS | Mobile | ✅ | |
| Web | Web | WebAssembly / WebGL | ✅ |
| Xbox | Console | This platform requires NDA | 🚫 |
| PlayStation | Console | This platform requires NDA | 🚫 |
| Nintendo | Console | This platform requires NDA | 🚫 |
⚠️ Note: Proprietary APIs for consoles are not publicly available and thus cannot be implemented or tested.
SIMPLIFIEDGLSL| Asset Type | Supported Formats |
|---|---|
| 3D Models | See Assimp Supported Formats |
| Images | PNG, JPEG, BMP, TGA, DDS, ETC. |
| Fonts | TTF & OTF. |
| Audio | OGG, WAV, FLAC, MP3, ETC. |
| Scenes | JSON |
⚠️ Note: This diagram is a work in progress and may not reflect the current state of the engine.

Please refer to the BUILDING.md file for detailed instructions on how to build Golias Engine from source on various platforms.
| Library | Description | License |
|---|---|---|
| SDL3 | Windowing, input/events handling, and cross-platform abstraction | Zlib License |
| GLM | Header-only mathematics library for graphics (vectors, matrices, quaternions) | MIT License |
| Bullet Physics | Real-time 3D physics simulation | Zlib License |
| Assimp | Open Asset Import Library for 3D model loading | BSD License |
| stb_image | Header-only image loading (PNG, JPG, TGA, etc.) | Public Domain / MIT |
| miniaudio | Header-only audio playback and capture library | Public Domain / MIT |
| FreeType | Font rasterization engine | FreeType License (BSD-style) |
| nlohmann/json | Modern C++ JSON serialization/deserialization | MIT License |
| glad | OpenGL / OpenGL ES function loader | MIT License |
All third-party libraries are vendored as git submodules or included directly in the
thirdparty/directory.
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.