Oxygen Engine
Modern C++ 3D Engine using OpenGL
|
Those tutorials will help learning how to use Oxygen Engine to create games or any 3D applications
Readers are assumed to be fairly comfortable with the C++ language and with CMake (or at least C++ compilation in general)
No knowledge of OpenGL or any rendering API are required, but understanding of basic concepts of 3D is recommended
This first tutorial will explain how to build and install Oxygen Engine
In a hurry? See at bottom for a complete list of commands used to install Oxygen Engine and all dependencies in one shot
We will heavily use CMake for building things. This will let you use any toolchain/IDE/compiler you want to build it
Oxygen Engine relies on several libraries to work properly. Although some of them are already embedded in the engine, you will need to also have those installed (ie CMake ready):
Some of those might be already available in your OS repositories. However as they are often too old versions, it is recommended building them from source
Don't worry, it is not difficult 😉
In general it boils down to downloading the library (git clone
) and running some flavor of cmake --build
and cmake --install
commands
See each library install instructions for the set of commands to use or see at bottom for a complete list of commands
Once the dependencies are built and installed, now it is time to prepare the Oxygen Engine for compilation
Assuming you already downloaded / cloned the source code, here are the CMake options:
Name | Default | Description |
---|---|---|
OE_BUILD_TESTS | false | Build unit tests and render tests |
OE_BUILD_EXAMPLES | false | Build examples applications |
OE_CODE_COVERAGE | false | Enable code coverage metrics from tests |
OE_CODE_COVERAGE_RENDER_TESTS | false | Include render tests in coverage metrics |
OE_USE_ASAN | false | Compile with address sanitizer to debug and catch some memory errors |
OE_BUILD_DOCUMENTATION | false | Build Documentation (ie. what you are currently looking at) |
OE_DOCUMENTATION_ONLY | false | Only build documentation and not the engine (mainly used for CI/CD to build and deploy the website without needing dependencies) |
Options with DOCUMENTATION
requires Doxygen and Graphviz installed
Example for a compilation in Release (no debug symbols) in the specified <build-dir>
directory (assuming you already downloaded the code in the OxygenEngine
folder)
Once its built, you need to install it to let your compiler know where the files are stored when including / linking library files
Actual steps heavily depends of your OS/Distribution. For example, in GNU/Linux you need to run sudo cmake --install <build-dir>
So now that you have built the engine, it's time to make your first application
(AKA, please just give me all the commands)
Here are all commands used to build and install the engine (assuming you already downloaded the code in the OxygenEngine
folder)
Feel free to modify according to your existing setup (e.g. no need to build/install libraries you already have installed by other means)