Code Monkey home page Code Monkey logo

NovelRT

NovelRT is a cross-platform, flexible Visual Novel and 2D game engine. It is aimed at designers and developers alike, however many of the designer tools and features we have on our roadmap have yet to be implemented.

Latest Nightly Build

GitHub tag (latest by date)

Discord

Current Features

Currently, NovelRT supports the following in its base form:

  • Graphics LLAPI
  • Audio LLAPI

Future & Immediate Improvements

Current features in development include:

  • C++ HLAPI
  • Fabulist narrative scripting language support

For information on Fabulist, check it out from here.

Getting Started with NovelRT

Currently there are no binary distributions of the engine as of yet, and we are still in our early alpha for almost everything.

Dependencies

If you wish to attempt to build a basic visual novel with the existing C++ API, you must first install the following dependencies:

The dependencies that are handled by CMake that do not need to be manually installed are as follows:

  • Doxygen 1.8.17 (building docs)
  • GLFW 3.3.7
  • glm 0.9.9.9
  • gtest/gmock 1.11.0
  • libpng 1.6.35
  • libsndfile 1.1.0
  • Microsoft GSL 4.0.0
  • OneTBB 2021.5.0
  • OpenAL 1.21.1
  • spdlog 1.10.0

Build instructions

These instructions are based on the CMake build system generator. You can download the latest version here here.

If you are compiling on Linux, please note - we do not support GCC at this time. Please use Clang 10+ instead. We will gladly accept contributions towards making GCC compatible, but until support is guaranteed we will only officially support first-party compilers as described in our CI builds found here.

Linux

First, you must install the dependencies. On Ubuntu 20.04, it looks like this:

sudo apt install clang  libgl-dev xorg-dev libx11-xcb-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev \
libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev \
libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev libxcb-util-dev python \

If you are building from a command line terminal, clone NovelRT and set up the build folder like so:

git clone https://github.com/NovelRT/NovelRT.git
mkdir -p NovelRT/build
cd NovelRT/build

Then, you can configure and build using CMake, like so:

cmake ..
cmake --build . -j

Windows (x64 only)

Prerequisites:

  • Windows 10 x64
  • Either:
    • Visual Studio 2019 w/ "Desktop development with C++" Workload,
    • Visual Studio 2022 w/ "Desktop development with C++" Workload, OR
    • Build Tools for Visual Studio 2019/2022 w/ "Desktop development with C++" Workload
  • CMake 3.19 or above (note: Do not use the included one with Visual Studio at this time! It is outdated as of this time of writing and is considered incompatible.)
  • Python 3.11 or above

(32-bit builds will not be supported at this time.)

If you are building from a command line terminal, clone NovelRT and set up the build folder like so:

git clone https://github.com/NovelRT/NovelRT.git
cd NovelRT
mkdir build
cd build

Then, you can configure and build using CMake, like so:

cmake ..
cmake --build . -j
Visual studio 2019/2022 specific instructions

When you open the NovelRT folder in VS2019 or VS2022 for the first time the CMakeSettings.json file will contain incorrect values. Change the buildRoot value to ${projectDir}\\build and the installRoot to ${projectDir}\\install and restart Visual Studio this will make sure that it uses the same build path as the CLI commands. You can delete the out folder in the NovelRT root as well as we won't use it anymore. Then regenerate the cmake by clicking regenerate on the yellow warning ribbon on the top of Visual Studio.

macOS 10.15 (and above)

Prerequisites:

  • XCode 12
  • XCode Command Line Tools matching the installed version
  • CMake 3.19.8
  • Vulkan SDK 1.3.231.1
  • Python 3.11 or above

NOTE: Until native Metal support is introduced at a future time, it is required that you install Vulkan SDK version 1.3.231.1 as a prerequisite to configuring/building NovelRT. The instructions below will indicate directions assuming that the Vulkan SDK is already installed in a non-system path. If it is not installed, NovelRT's build system will fail to properly configure.

If you are building from a command line terminal, clone NovelRT and set up the build folder like so:

git clone https://github.com/NovelRT/NovelRT.git
mkdir -p NovelRT/build
cd NovelRT/build

Once you have cloned the repository, ensure that the terminal performing configuration of NovelRT runs the source setup-env.sh from within the Vulkan SDK directory.

If you have an Intel Mac you can configure the cmake files like so:

cmake ..

However, if you have Apple-Silicon Mac (M1, M2, etc), you must add an additional flag to the configuration command, like so:

cmake .. -DCMAKE_APPLE_SILICON_PROCESSOR="arm64"

If Vulkan SDK is not installed in a system path and the setup-env.sh file did not properly add the required environment variables, you can specify the VULKAN_SDK environment variable to your local Vulkan SDK location as such:

VULKAN_SDK=/Users/youruser/Vulkan SDK/1.3.231.1/macOS cmake .. 

Please ensure that the path includes the macOS folder, otherwise finding the proper libraries will fail.

Once NovelRT is configured, you can build it like so:

cmake --build . -j

To run the samples, you will need to navigate to the folder the executable resides in, and launch from there. This is due to how macOS and CMake handle's RPATHs.

Example

Examples will be placed here when we have created some. In the meantime, we advise asking us directly on our discord (invite URL above and below).

Contributing

First off, if you want to contribute, thanks!

If you would like to contribute to the development of NovelRT, please see our contribution guide here. If this doesn't answer any questions that you have, feel free to reach out to us on Discord to discuss what you can work on - we greatly appreciate it!

NovelRT and everyone contributing (this includes issues, pull requests, the wiki, Discord in all forms, etc.) must abide by our code of conduct, which can be found here. Instances of abuse, harrassment or otherwise unacceptable behaviour must either be reported to a NovelRT Developer via direct message on Discord or by contacting us via email.

Licence

Unless otherwise specified, all files are copyright © Matt Jones and Contributors. Licensed under the MIT Licence (MIT).

See LICENCE in the repository root for more information.

Questions?

You can reach us directly via our discord, or you can post your question as an issue on the appropriate repository (but honestly asking us directly might be easier).

NovelRT's Projects

crossguid icon crossguid

Lightweight cross platform C++ GUID/UUID library - Custom NovelRT-maintained fork for use in NovelRT repositories.

fabulist icon fabulist

A terse, flexible language and runtime for creating and executing visual novels.

fumocement icon fumocement

A java and JNI-focused framework library for generating high-performance bindings. Primarily designed for use with the NovelRT engine and ClangSharp.

glm icon glm

OpenGL Mathematics (GLM)

libsndfile icon libsndfile

A C library for reading and writing sound files containing sampled audio data.

novelrt icon novelrt

A cross-platform 2D game engine accompanied by a strong toolset for visual novels.

novelrt-infra-test icon novelrt-infra-test

This is a mirrored repo for testing CI infrastructure changes. Please do not clone or modify unless you know what you are doing.

novelrt.sdk icon novelrt.sdk

The NovelRT SDK software and framework, used for creating and deploying NovelRT projects.

setup-cpp icon setup-cpp

Sets up some common C/C++ problem matchers for C/C++ compilers

touhou-novelrt icon touhou-novelrt

A small touhou danmaku clone to give a "complete" demonstration of what the engine can do.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.