Home

Awesome

<img src="./doc/doc_resources/header.jpg"/>
<img align="right" src="https://img.shields.io/github/license/illation/etengine"/> <img style="padding-right:10px;" align="right" src="https://img.shields.io/github/commits-since/illation/etengine/v0.7.0?label=%2B"/> <img style="padding-right:5px;" align="right" src="https://img.shields.io/github/v/tag/illation/etengine?include_prereleases&label=version&sort=semver"/> <a href="https://discord.gg/PZc37qPwVC"><img align="right" alt="Discord" src="https://img.shields.io/discord/809026517249294366"></a>

Realtime 3D Graphics/Simulation/Game-Engine written in C++ 14.


Focus is on ease of use, extensibility, performance and providing rendering features for planet scale environments, enabling space games and simulations.

E.T. stands for "extra terrestial" due to the goal for this technology to go to space one day.

This project is under active development, and while a wide range of features are implemented and the overall architecture is approaching a cohesive state, many of the planned improvements are likely to touch a large crossection of the codebase. Therefore, while breaking changes are usually implemented in separate branches, the interface on the master branch changes relatively frequently.

</br> <img align="left" style="padding-right:10px; " src="./doc/etengine_logo.png" alt="PBR" width="8%"/>

Discuss it on Discord!

</br>

Features:

Rendering

<img align="right" src="./screenshots/Lighting.jpg" alt="PBR" width="48%"/> <img src="./screenshots/FamiliarView.jpg" alt="from space" width="48%"/>

Rendering is based on modern principals including Physically based Rendering. The data driven material system allows for custom shaders and parameter inheritance through material instances (similar to UE4). A variety of rendering features aimed at space simulation have been implemented, such as planet terrain generation, atmospheric scattering and Starfields based on real sky data.

Modular Architecture

<img align="right" width="450" src="./doc/doc_resources/architectureDiagram.png"/>

The project is split into multiple libraries. Low level libraries such as core or rendering can be used independently from high level ones such as the framework. Many features have interfaces and implementations, allowing overriding of functionality. If you want to implement your own renderer or support a different file system, you can do that.

Data oriented design

Many performance critical sections have been programmed with aspects such as cache locality in mind. The renderer uses an optimized scene structure and can operate independently from the gameplay side scene. Gameplay features are implemented using an Archetype based Entity Component System.

Data Driven

Anything that is not a behavior can be described with data. The Resource manager allows for custom asset types. Reflection of data structures allows for automated serialization and deserialization of content. The work in progress editor will allow for easy editing, and control the workflow from Content creation tools to optimized engine formats.

<br/> <br/>

How to build

For visual studio 2017:

git clone https://github.com/Illation/ETEngine
cd ETEngine/Projects/Demo
cmake -G "Visual Studio 15 2017 Win64" -S . -B build
cmake --build build --target all --config Develop
cmake --build build --target install
cmake --build build --target cook-installed-resources-EtEngineDemo

For more information (including unit tests and content cooking) check the build documentation.

Continuous Integration

Due to an issue with library dependencies CI is currently not working. However the project has been built outside of automated build scripts and works just fine.

Background

This project started off in 2016 as an OpenGL graphics framework based on the "Overlord Engine" (Dx11) from the Graphics Programming course at Howest University

In parallel I was writing my graduation work on realtime planet rendering, and in 2017 I merged the two projects into this engine.

Since then I added a variety of graphics and gameplay features, however due to the design at the time this was getting increasingly difficult.

Therefore, starting in 2019, the main focus has been on improving the Architecture and focusing on useability and extensibility, and the codebase has been nearly completely rewritten since.

Approximate Changelog

0.0 :

0.1 :

0.2 :

0.3 :

0.4 :

0.5 :

0.6 :

0.7 :

Third Party

For a list of third party libraries and licenses check HERE.

Screenshots

Atmosphere and Planets

<img align="right" src="./screenshots/UpperAtmosphere.jpg" alt="upper atmosphere" width="48%"/> <img src="./screenshots/GroundAtmosphere.jpg" alt="atmospheric perspective" width="48%"/> <img align="right" src="./screenshots/MoarStars.jpg" alt="Stars" width="48%"/> <img src="./screenshots/Surface.jpg" alt="surface view" width="48%"/>

Render Pipeline; Physics

<img align="right" src="./screenshots/DeferredBloom.jpg" alt="Lights with deferred rendering and Bloom" width="48%"/> <img src="./screenshots/3DUI.jpg" alt="3D UI Rendering and PBR" width="48%"/>