[a Work In Progress fork, expect history overwriting]
Find a file
2017-01-28 16:35:13 +01:00
bgm Added background music subsystem. 2017-01-24 16:40:57 +03:00
gfx added loading screen 2012-08-18 09:44:38 +02:00
models Tower of Truth ~ Theory of Everything 2012-08-03 09:36:35 +02:00
sfx mild placeholder sound for grazing 2012-08-12 23:19:04 +03:00
shader multistage replays 2012-08-07 06:28:41 +03:00
src remove unnecessary EVENT_DEATH call 2017-01-28 16:35:13 +01:00
.gitignore removed stuff from .gitignore 2012-08-06 20:29:11 +02:00
cmake_uninstall.cmake.in power items. 2011-03-17 21:13:11 +01:00
CMakeLists.txt Added forgotten modified files 2017-01-17 22:00:52 +03:00
COPYING fixed uninitialized resources 2011-07-04 11:39:32 +02:00
FindALUT.cmake sound system added 2011-04-02 12:14:37 +02:00
FindOGG.cmake Added background music subsystem. 2017-01-24 16:40:57 +03:00
FindVorbis.cmake Added background music subsystem. 2017-01-24 16:40:57 +03:00
FindVorbisFile.cmake Added background music subsystem. 2017-01-24 16:40:57 +03:00
README Added background music subsystem. 2017-01-24 16:40:57 +03:00
story.txt Rewrote story.txt a bit 2012-08-10 15:05:08 +02:00
taisei.desktop desktop and story files added 2012-08-07 19:53:08 +02:00
taisei.png desktop and story files added 2012-08-07 19:53:08 +02:00

Taisei

1. Introduction

Taisei 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_ttf
	- libpng
	- OpenGL
	- OpenAL, ALUT
	- CMake (build system)

Optional:
	- libogg, libvorbis, libvorbisfile (to play .ogg BGMs)

To build and install Taisei just follow these steps.

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=$yourprefix ..
make
make install

This will install game data to $prefix/share/taisei/ and build this path
_statically_ into the executable. This might be a package maintainer's choice.
Alternatively you may want to add -DRELATIVE=TRUE to get a relative structure
like

$prefix/taisei
$prefix/data/
($prefix/config)

RELATIVE is always set when building for Windows.

3. NOTE ABOUT REPLAYS

As of version 1.0 replays are not guaranteed to work between different
operating systems or architectures (or compiler versions). Screen capture
your replays if you really want to publish them.

4. NOTE ABOUT BACKGROUND MUSIC

Currently Taisei does not include any background music. To use this feature,
you should have required audio files in bgm/ subdirectory.
BGM may either be in .wav format, or in .ogg (last one apply only if you have
compiled Taisei with libogg, libvorbis and libvorbisfile (automatically enabled
if cmake is able to find them).

Complete music pack consists of 16 bgm_*.ogg or bgm_*.wav files, where `*' mean:
	credits		BGM for credits screen
	ending		BGM for ending
	gameover	BGM for game over screen
	menu		BGM for menus, excluding in-game menu
	stageN		N=1..6, standard stage theme (also for in-game menu)
	stageNboss	N=1..6, boss theme for a stage (also for in-game menu)

If you want to specify stage/boss theme names to be shown during gameplay, you
may do it in bgm/bgm.conf file. This file consists of lines, each of which
consists of bgm filename (without extension), space of tab, and theme name.
No space/tab allowed either in beginning of line or BGM filenames listed in
this file; can not include spaces or tabs; theme names may do.

5. Contact

http://taisei-project.org/

#taisei-project on Freenode