A complete and cross-platform game engine designed for flexibility, performance, and fast-iterations.
url: www.crownengine.org
Topics:
#windows #linux #gamedev #lua #game-engine #data-oriented-design #data-driven #game-development #3d #2d
|
|
11 年 前 | |
|---|---|---|
| bin | 11 年 前 | |
| engine | 11 年 前 | |
| exporters | 12 年 前 | |
| premake | 11 年 前 | |
| samples | 11 年 前 | |
| third | 11 年 前 | |
| tools | 11 年 前 | |
| utils | 11 年 前 | |
| .gitattributes | 11 年 前 | |
| .gitignore | 11 年 前 | |
| .gitmodules | 11 年 前 | |
| COPYING.txt | 11 年 前 | |
| Doxyfile.doxygen | 11 年 前 | |
| README.md | 11 年 前 | |
| makefile | 11 年 前 |
##What is it?
Lightweight cross-platform game engine. You can write games in Lua and/or C++ for Linux, Android and Windows with it.
##Y u do dis, there's UE4 for 19$ a month.
Because it's fun.
##Dependencies
Crown Engine depends on a number of third-party libraries. Some of them, like luajit, are included in this SDK, so you do not need to worry too much. However, some other libraries are not included due to their excessive size or for some other particular reasons. In order to be able to successfully build the engine, you have to install and/or properly configure the following packages:
Linux:
Windows:
Android:
##Building
The steps required for building the engine in a default and pretty safe manner are summarized below for each supported platform. All the commands and/or operations must be performed in the root directory of the project (i.e. the same as this file):
Linux:
$ export CROWN_INSTALL_DIR=/path/to/install/dir
$ export PHYSX_SDK_LINUX=/path/to/physx/sdk
$ make <CROWN_LINUX_BUILD>
'CROWN_LINUX_BUILD' valid values are:
Windows:
export CROWN_INSTALL_DIR=/path/to/install/dir
export PHYSX_SDK_WINDOWS=/path/to/physx/sdk
make.exe <CROWN_WINDOWS_BUILD>
Open the generated Visual Studio solution and build/install from there
'CROWN_WINDOWS_BUILD' valid values are:
Android:
$ export CROWN_INSTALL_DIR=/path/to/install/dir
$ export ANDROID_NDK_ROOT=/path/to/android/ndk
$ export ANDROID_NDK_ARM=/path/to/android/ndk/arm
$ export PHYSX_SDK_ANDROID=/path/to/physx/sdk
$ make <CROWN_ANDROID_BUILD>
'CROWN_ANDROID_BUILD' valid values are:
##System requirements
In order to be able to run the engine, no particular configurations are needed:
Linux:
Windows:
Android:
##Examples
When running a sample you current directory has to be <install-path>/bin.
To run a sample:
$ ./crown-linux-debug-64 --source-dir <full-sample-path> --bundle-dir <full-destination-path> --compile --continue
Engine initialization and shutdown.