Converted EditorDetail.
[UnsignedByte.git] / README
bloba871769fa7581d09b75d531a22a1d57ebeea0d10
1 Build instructions:
2 * Install Sqlite3:
3 This can be done either through the official website (http://sqlite3.org), your distribution's package manager, or by using the Sqlite3 makefile in the UnsignedByte/Sqlite3 subdirectory. If you do, you'll need to rename the resulting libMySqlite3.a (which can then be found in UnsignedByte/lib) to libsqlite3.a, since all projects use that name.
5 * Compile the Resources
6 This can be done by typing the following:
7 make -f makefile.resource
8 This is the makefile exported by CodeLite (see http://codelite.sf.net) and will compile the Resources, the Generator (although you won't need it) and the Initializer, which can be used to generate the sqlite3 database with the appropriate structure and some initial values.
10 * Compile the Core
11 This can be done by typing the following:
12 make
13 This is also a makefile exported by CodeLite and will compile the core, that is, the game itself.
15 * Run the Initializer
16 You can find the Initializer in the UnsignedByte/bin subdirectory after having compiled the Resources.
17 This can be done by typing the following:
18 cd UnsignedByte
19 ./Initialize
21 * Run the Core
22 The Core is located in the same directory as the Initializer.
23 This can be done by typing the following:
24 ./UnsignedByte
26 The default login is 'hp' with password 'qq'. The 'hp' name is defined in GameVersion.h (which can be found in UnsignedByte/include) and the 'qq' is defined in Initializer.cpp (which can be found in UnsignedByte/Initializer). A default character has also been created, named 'hp'.
28 Have fun!