Build | Status |
---|---|
Windows | |
Linux/OSX | |
Coverage | |
Coverity |
Open source implementation of ALIVE engine that powers Oddworld Abes Oddysee and Oddworld Abes Exoddus.
This engine will be designed to allow easier modding than the orignal engine and for more extensive and complex AI. For example it should be possible to allow Sligs to use lifts and have interaction between Scrabs and Paramites.
You can find the CI build outputs here: www.mlgthatsme.com/alive_builds
Youtube playlist here: https://www.youtube.com/playlist?list=PLZysgmpXqKgSCUuU9S2ccQq0Sdrai3UQY
You can become a patreon here (donations to support development): https://www.patreon.com/alive
IRC channel is #oddworld on irc.esper.net
Build instructions.
Supported compilers are clang, gcc and msvc 2015. The clang and gcc version must support at least C++14. Should be possible to build on Windows, OSX and most *nix OS'es.
- Install CMake 2.8 or newer.
- Clone down the repo with with --recursive option so that sub modules are also cloned.
- Create a build directory in the root of the repo. 3a. If on Windows set the SDL2DIR enviroment varaible to your extracted pre-built SDL2 dir.
- Cd into the build dir and run CMake .. to generate project files, pass -G "the generator you want" for example "cmake -G Visual Studio 14 2015 Win64".
- Now run make/msbuild or whatever the build command is for your generator. Or if using the Visual Studio generator you can just open the .sln solution file and build that way.