/Will-Engine

The engine that is created with the will to make a change.

Primary LanguageC++

Will-Engine

This is a hobby game engine created as a personal project with the WILL to make a change (heavily inspired by Xenoblade Chronicles btw). It includes features such as :

  • A Vulkan Physically Based Renderer
  • A Physically Based Rendering (PBR) Material System
  • Unreal Engine inspired BRDF Shading Model
  • Deferred Rendering
  • Shadow Mapping (Only point light at the moment)
  • Call of Duty's Compute Shader Bloom Post-Processing
  • Entity Component System (ECS)
  • Skeletal Mesh/Animation
  • Normal Mapping
  • Asset Loading

Getting Started

Visual Studio 2019 or 2022 is recommended. This build works with Windows ONLY and is not fully tested.

1. Download the repository

Start by cloning the repository with git clone --recursive https://github.com/stevenwhatever123/Will-Engine.

2.Setting up the project

This project requires premake5 for setting up visual studio project and its submodules. If you do not have premake5 installed you could download here: https://premake.github.io/.

cmake is also required as some submodules' solution are generated using cmake.

glslc is also required to compile shaders. This project assumes you have Vulkan SDK installed in the default directory.

  1. Run git submodule update --init --recursive to download and update all submodules required.
  2. Modify the imconfig.h file in libs/imgui by adding the line #define VK_NO_PROTOTYPES at the end of the file.
  3. Compile all shaders in /shaders folder using compileShaders.bat. You need to first modify vulkan_version.txt and state which vulkan version that is in your machine, e.g. '1.3.250.1'
  4. Run premake5 with the command ./premake5.exe vs2022 to generate a Visual Studio solution and you should be good to go.

Project Status

This project is still work in progress in a slow pace. Planning to work on sky light(skybox) and skeletal animation next.

Since I recently got a job, any progress in this project will stop and halt.

References

These are some of the articles/paper that I have been referenced throughout the engine's development if you are curious:

PBR and BRDF shading:

Game Engine Layout and Rendering Pipeline:

Animation:

Post Processing:

Others:

Screenshots

UI Editor and BRDF Shading

Normal Mapping

Shadow Mapping

Bloom

Skeletal Mesh/Animation and Node Hierarchy

Entity Component System

Deferred Rendering

PBR Material System