I built some font support (new dependency: SDL_ttf). The Biolinum font of the Libertine project was included as the new ingame font. Shot at fairies and you will get power. The system is pretty dumb currently, i guess i'll improve it somwhen. If you get a power level >= 2 you get a better shot. anyway, just testing. the player projectiles are somewhat uncomfortable to look at. to do.
22 lines
566 B
Text
22 lines
566 B
Text
OpenTH
|
|
|
|
1. Introduction
|
|
|
|
OpenTH is an open clone of the Touhou series. Touhou is a one-man project of shoot-em-up games set in an isolated world full of Japanese folklore.
|
|
|
|
2. Installation
|
|
|
|
Dependencies:
|
|
- SDL, SDL_image, SDL_ttf
|
|
- OpenGL
|
|
- CMake (build system)
|
|
|
|
To build and install OpenTH just follow these steps.
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=$yourprefix ..
|
|
make
|
|
make install
|
|
|
|
Note: Installing is necessary as otherwise the game data would not be found in the right place. If you want to test set the installation prefix to "." or $(pwd).
|