|
@@ -1,5 +1,7 @@
|
1
|
1
|
# OpenRaider
|
2
|
2
|
|
|
3
|
+[![Build Status](https://travis-ci.org/xythobuz/OpenRaider.svg?branch=master)](https://travis-ci.org/xythobuz/OpenRaider)
|
|
4
|
+
|
3
|
5
|
This is a fork of the [OpenRaider](http://openraider.sourceforge.net) Open Source implementation of the classic Tomb Raider Game Engine. The original project was abandoned in 2003.
|
4
|
6
|
|
5
|
7
|
This fork aims to get OpenRaider in a more usable state, maybe one day even being able to play the old Tomb Raider games flawlessly...
|
|
@@ -8,8 +10,6 @@ If you just want to see OpenRaider doing something on your Mac, without installi
|
8
|
10
|
|
9
|
11
|
It seems as if OpenRaider will currently only work on Little-Endian platforms. This is not nice and will hopefully be fixed in the future!
|
10
|
12
|
|
11
|
|
-[![Build Status](https://travis-ci.org/xythobuz/OpenRaider.svg?branch=master)](https://travis-ci.org/xythobuz/OpenRaider)
|
12
|
|
-
|
13
|
13
|
[![Flattr this git repo](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=xythobuz&url=https://github.com/xythobuz/OpenRaider&title=OpenRaider&language=&tags=github&category=software)
|
14
|
14
|
|
15
|
15
|
## Configuration
|
|
@@ -30,14 +30,14 @@ A more or less recent [Doxygen documentation](http://xythobuz.github.io/OpenRaid
|
30
|
30
|
|
31
|
31
|
Basically, OpenRaider depends on the following:
|
32
|
32
|
|
|
33
|
+* C++11 compiler
|
|
34
|
+* cmake
|
33
|
35
|
* OpenGL
|
|
36
|
+* zlib
|
34
|
37
|
* SDL2
|
35
|
38
|
* SDL2-TTF (optional, needed if you want to use TTF fonts)
|
36
|
|
-* OpenAL & ALUT
|
37
|
|
-* zlib
|
38
|
|
-* cmake as build system
|
|
39
|
+* OpenAL & ALUT (optional, needed for sound output)
|
39
|
40
|
* libpng (optional)
|
40
|
|
-* C++11 compiler
|
41
|
41
|
|
42
|
42
|
On Mac OS X 10.9 with [XCode](https://developer.apple.com/xcode/) and [MacPorts](http://www.macports.org) installed, the following should be enough to get all dependencies that are available as port:
|
43
|
43
|
|
|
@@ -57,7 +57,7 @@ Get, compile and install freealut like this:
|
57
|
57
|
|
58
|
58
|
Linux Distributions will probably provide an ALUT library ready to install with their package manager, so you won't need to compile freealut.
|
59
|
59
|
|
60
|
|
-Sound support is optional now, however. If cmake can’t find OpenAL and ALUT, Audio will be deactivated. If you want to explicitly deactivate it, call cmake with `-DENABLE_AUDIO=NO`.
|
|
60
|
+Sound support is optional, however. If cmake can’t find OpenAL and ALUT, Audio will be deactivated. If you want to explicitly deactivate it, call cmake with `-DENABLE_AUDIO=NO`.
|
61
|
61
|
|
62
|
62
|
## Building
|
63
|
63
|
|
|
@@ -142,7 +142,7 @@ I’ve made [a small writeup on my website](http://xythobuz.de/2014_06_14_trle_f
|
142
|
142
|
|
143
|
143
|
## License
|
144
|
144
|
|
145
|
|
-OpenRaider is based on code, specs, and alogrithms from:
|
|
145
|
+OpenRaider is based on code, specs, and algorithms from:
|
146
|
146
|
|
147
|
147
|
* GooseEgg/Freyja 3d Modelers by Mongoose
|
148
|
148
|
* TR Rosetta Stone spec sheet by Anonymous
|