NovaMods / nova-renderer

Nova Renderer, a custom cross platform render engine written in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ova Renderer

Github Actions Discord Chat

This project is in the early stages of development, it is not working in Minecraft yet.

Purpose

We set out to make a completely new renderer for Minecraft aimed at giving more control and vastly better tooling to shaderpack developers.

QuikFAQ

  • Nova is a replacement for Minecraft's renderer built for shaderpack support and more shaderpack features. It is not:
    • Something to make Minecraft run faster
    • For older computers
    • A rewrite of the tick system
    • A rewrite of the audio system
    • Anything to do with the MC server

Development Status

Nova Renderer is a passion project by the developers and as such does not have any set deadlines or release dates. We are still in early development of the multi-backend rewrite and things may change at any moment. That all being said, it is still in quite active development.

Developer Setup

Contributing.

Dependencies

One dependency needs to be installed system wide. The LunarG Vulkan SDK version v1.1.126.0. Installation instructions can be found on the website. When installed in the default location, we can detect it and use it.

Nova is built the same way most cmake projects are built. However, git submodules need to be cloned:

git submodule update --init --recursive

From there, standard cmake build:

Windows

# Generate Visual Studio Project
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -G "Visual Studio 16 2019" -Wno-dev
# Build from command line, or open into Visual Studio
cmake --build build

Unix

If you have the ninja build tool, it is the recommended way of building.

# Generate build.ninja
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -GNinja -Wno-dev
# Build from command line, or open into Visual Studio
ninja -C build

If you don't have ninja, use regular make.

# Generate makefile
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -Wno-dev
# Build from command line
make -C build -j$(nproc)

Please read the following to help get a feel for the project:

Please contact us on Discord if you want to help! We're very friendly 😄

About

Nova Renderer, a custom cross platform render engine written in C++

License:Mozilla Public License 2.0


Languages

Language:C++ 91.6%Language:CMake 8.4%Language:Shell 0.0%