Go to file
Vyom Fadia 46dec92cf5 Merge develop. 2020-05-08 22:04:54 +01:00
.github Change to resolves. 2020-02-15 22:04:05 +00:00
Documentation docs(link-resolution): Header tags don't work unless theres text before them. 2020-04-23 03:20:52 -07:00
Phoenix Merge develop. 2020-05-08 22:04:54 +01:00
.clang-format Merge branch 'develop' into feat-ingame-terminal 2020-01-07 14:49:43 -08:00
.gitignore What the shit happened???? 2020-05-05 21:39:28 +01:00
.gitmodules Merge develop. 2020-05-08 22:04:54 +01:00
CMakeLists.txt Tidy CMakes some more using sexy CMake stuff. 2020-01-14 17:38:44 +00:00
CODE_OF_CONDUCT.md docs(link-resolution): Header tags don't work unless theres text before them. 2020-04-23 03:20:52 -07:00
CONTRIBUTING.md Merge branch 'develop' into feat-enet 2020-04-27 20:20:05 -07:00
LICENSE Add generic information files (read me, etc) 2019-12-09 20:02:59 -08:00
README.md Add comment explaining doxy when in MD viewer 2020-04-23 16:49:58 -07:00
azure-pipelines.yml Create azure-pipelines.yml 2020-02-01 17:23:13 +00:00

README.md

GENTEN STUDIOS: PROJECT PHOENIX

Build Status

Introduction

Project Phoenix is an open world sandbox style voxel game with a twist. The program itself does not provide any content but gets that content entirely from modules written in Lua. An easy to use Lua API provides the capability to define all of the games content in addition to some functional features. This allows content to be quickly created by someone with little to no programming experience while still retaining the power of C++.

More information on this project and its mission can be found here.

Community

Here's a link to our public discord server, where we collaborate and discuss the development of the Phoenix.

Here's a link to our community guidelines

Dependencies

  • CMake (Version >= 3.0)
  • A C++17 compatible compiler. The following have been tested
    • Visual Studio 2017 & 2019 (MSVC >= 19.14)
    • Clang (>= 5.0.0)
    • GCC (>= 4.8.4)
  • OpenGL (Version >= 3.3)

Build Instructions

Clone with the --recursive flag to also clone all submodules If you already cloned you can run git submodule update --init to do the same thing on an existing clone

Once cloned, navigate to the projects root directory and execute the following commands in a terminal.

  1. cmake -H. -BBuild
  2. cmake --build Build

Now follow the platform specific instructions detailed below.

Visual Studio

  • Open the generated solution file in the Build/ folder in Visual Studio
  • Set the Startup Project to Phoenix.
  • At this point you should be able to run, since the project should have already been built in step 2. above. You can always build the traditional way with Visual Studio.
  • And voila, all done. Now you should be able to run the project!

Linux, Mac OS X, MSYS

  • Navigate to the Build/Phoenix folder and run ./Phoenix to run the executable.

Contributing

We encourage everyone to contribute, this is an open source project that will ultimately be powered by its community. If you are interested in contributing check out our contributing guidelines for information on how we work and our coding standards. Before you get started, reach out on #programming on discord to collaborate so you aren't duplicating any work. To get an understanding of how our project is designed, check out our architecture documentation. Finally check out Our issues on GitHub for a list of what we currently have planned/ need help with.

Links for Doxy:

conduct: @ref codeofconduct

architecture: @ref architecture

contributing: @ref contributing