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
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.
- Run
git submodule update --init --recursive
to download and update all submodules required. - Modify the
imconfig.h
file inlibs/imgui
by adding the line#define VK_NO_PROTOTYPES
at the end of the file. - Compile all shaders in
/shaders
folder usingcompileShaders.bat
. You need to first modifyvulkan_version.txt
and state which vulkan version that is in your machine, e.g. '1.3.250.1' - Run premake5 with the command
./premake5.exe vs2022
to generate a Visual Studio solution and you should be good to go.
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.
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:
- Real Shading in Unreal Engine 4 by Brian Karis, Epic Game
- Specular BRDF Reference by Brian Karis
- Moving Frostbite to PBR
Game Engine Layout and Rendering Pipeline:
- Behind the Pretty Frames: Resident Evil by Muhammad
- DOOM Eternal - Graphics Study by Simon Coenen
- DOOM (2016) - Graphics Study by Adrian Courrèges
- Metal Gear Solid V - Graphics Study by Adrian Courrèges
Animation:
Post Processing:
Others:
- Stop Using Normal Matrix by Eric Zhang
- https://learnopengl.com/
- https://ogldev.org/
- Reddit and StackOverFlow of course