Game engine proj
Go to file
2023-05-28 19:12:07 +01:00
core Adjustment to warnings 2023-05-28 00:14:27 +01:00
include Fix my stupidity (WARNING and ERROR pragmas now work as intended) 2023-05-28 00:15:03 +01:00
renderer/rsdl Add .clang-format, adjust variable names 2023-05-27 20:47:34 +01:00
test Add .clang-format, adjust variable names 2023-05-27 20:47:34 +01:00
.clang-format Add .clang-format, adjust variable names 2023-05-27 20:47:34 +01:00
.gitignore Rename Image to Texture, add PRAGMA macros to pragmautil.hpp, add some TODO() and WARNING() calls 2023-05-27 18:11:46 +01:00
CODINGSTYLE.md Introduce CODINGSTYLE.md (complain to me on discord if it sucks) 2023-05-28 19:12:07 +01:00
compile.sh
LICENSE
meson.build
README.md Add .clang-format, adjust variable names 2023-05-27 20:47:34 +01:00
TODO.md Rename Image to Texture, add PRAGMA macros to pragmautil.hpp, add some TODO() and WARNING() calls 2023-05-27 18:11:46 +01:00

Hibis Game Engine

Hibis (short for Hibiscus (named after the genus of flowering plants)) is a work in progress game engine written in C++.
The goal of this game engine is to provide each module of the engine (renderer, audio, physics etc.) in seperate libraries so you can easily make your own system if need be.

Install

Pre-compiled libraries

lmao they don't exist yet chill

Compiling

Note: MSVC

MSVC (Microsoft Visual C++ Compiler) is unsupported and I cannot guarentee that Hibis will compile/run properly using it. Please use another compiler like G++ or Ninja instead.

Dependencies

To compile Hibis, you will need:

  • Meson
  • Meson-compatible compiler (recommended: Ninja or ccache + G++)
  • A few minutes of your time Each non-core library also has specific dependencies, including:
  • (RSDL) SDL2
  • (RSDL) SDL2_ttf Linux users should be able to get all of these (except time) from their package manager.
    Windows users will need to use vcpkg or similar to easily get these dependencies.

Actually Compiling

No Customising

Run compile.sh in the folder you cloned Hibis into.

Customising

In the folder you cloned Hibis into, run meson build to create a folder where the magic happens.
Move into the build directory using CD and you can now use meson configure to adjust compile options.
Once you have configured everything, run meson compile in the build directory and it should finish successfully.