This file should assist you in compiling and running the game.
openage currently consists of a pure C++ binary and the
openage.convert
python package which in turn includes C++ extension
modules. openage.convert
is used to generate parts of the C++
binary code.
To actually run openage, it needs original game assets that need to
be extracted by the openage.convert
python module from an
Microsoft Age of Empires 2 installation directory (Support for
setup CDs is almost finished).
We use the cmake
system for all our building needs. The configure
script is a cmake wrapper that will create a build directory and
invoke cmake with the appropriate flags. The Makefile in the project
root acts as a wrapper around several useful features.
For more build system internals, see doc/buildsystem.md.
Dependencies are needed for:
- C = compiling
- R = running
- T = media convert script
Dependency list:
CRT python >=3.3
T python imaging library (PIL) -> pillow
T numpy
CR opengl >=2.1
CR glew
CR ftgl
R dejavu font
CR freetype2
CR fontconfig
C cmake >=2.8.10
CR sdl2
CR sdl2_image
CR opusfile
T opus-tools
C gcc >=4.8 or clang >=3.3
T age of empires II conquerors expansion patch 1.0c
optionally: with userpatch/forgotten empires
expansion installed: with wine OR as the program
directory we will support more patchlevels in the
future. due to fundamental technical differences,
age of empires II HD does _not_ work yet.
sudo apt-get update
sudo apt-get install cmake libfreetype6-dev python3-dev libglew-dev libsdl2-dev ftgl-dev libsdl2-image-dev libopusfile-dev libfontconfig1-dev opus-tools
If you already have python3 or one of packman/games repositories then no need to run the first two lines. If unsure then just run last line and see if all packages can be installed. Also feel free to drop --no-recommends
from last line.
zypper addrepo http://download.opensuse.org/repositories/devel:languages:python3/openSUSE_13.1/devel:languages:python3.repo
zypper addrepo http://packman.inode.at/suse/openSUSE_13.1/ packman
zypper refresh
zypper install --no-recommends cmake fontconfig-devel ftgl-devel gcc-c++ glew-devel libfreetype6 libogg-devel libopus-devel libSDL2-devel libSDL2_image-devel opusfile-devel opus-tools python3-devel python3-numpy python3-Pillow
- (obviously) clone this repo or acquire the sources some other way
- make sure you have everything from the dependency list below
./configure --mode=debug --compiler=clang++
will prepare buildingmake
will do code generation, build all python modules and the openage executablemake media AGE2DIR="~/.wine/drive_c/age2"
will convert all media files from the given age2 install folder, storing them in./userassets
make run
or./openage
will run the game. try./openage --help
make test
will run the unit tests
./configure --mode=release --compiler=g++ --prefix=/usr
make
to compile the projectmake install
will install the binary to /usr/bin/openage, python packages to/usr/lib/python...
, static assets to/usr/share
etc.- after installing, the user will still need to run the convert
script using
python3 -m openage.convert
, to store the convert original assets to~/.openage
. This does not work yet, and the convert invocation will later be integrated into the main binary.
- Don't use
./configure
; instead, handle openage like a regularcmake
project. In doubt, have a look at./configure
's cmake invocation. - For
make install
useDESTDIR=/tmp/your_temporary_packaging_dir
, which will then be packed/installed by your package manager.
- I wanna see compiler invocations
make VERBOSE=1
- My SDL2_Image/PythonInterp/whatever is installed somewhere, but
cmake
can't find it! - You can manually tell
cmake
where to look. Try something along the lines of./configure --raw-cmake-args -DSDL2IMAGE_INCLUDE_DIRS=/whereever/sdl2_image/include/
- I get nonsensical cmake errors like
unable to execute /home/user/git/openage/clang++
- This is an issue with
cmake
, or rather, your usage of it. You probably invokedcmake
directly, and defined a compiler even though the build directory has already been initialized. cmake is a bit "special" in this regard. Simply omit the compiler definitions, or clean the build directory. - I get compiler errors about missing header files
- Make sure to install the developer version (including header files) of the library in question.
- I'm trying to build on OSX
- See this discussion
Q
Help, it does't work!
A
Have a look at Troubleshooting
above. Maybe you've found a bug...
irc.freenode.net/#sfttech
Q
Why did you make the simple task of invoking a compiler so incredibly complicated? Seriously. I've been trying to get this pile of utter crap you call a 'build system' to simply do it's job for half an hour now, but all it does is sputter unreadable error messages. I hate CMake. I'm fed up with you. Why are you doing this to me? I thought we were friends. I'm the most massive collection of wisdom that has ever existed, and now I HATE YOU. It can't be for no reason. You MUST deserve it.
A
- Coincidentially, the exact same question crosses my mind whenever I
have to build an
automake
project, so I can sympathize. - Unfortunately, it's not as simple as invoking an compiler. Building
openage
involves code generation and the building of Python C++ extension modules. - See buildsystem/simple, which does exactly these three things, manually.