
Originally Posted by
Setlec
i would say check out Xreal source code.
Coo, never heard of it before. Stunning!
Here is what I did to run it.
# Go to your home directory
# Get the source for XreaL
Code:
svn co https://xreal.svn.sourceforge.net/svnroot/xreal/trunk/xreal XreaL
# If this doesn't work, make sure you have Subversion installed and try again.
Code:
aptitude install subversion
# Go the XreaL directory
# Compile the game for your platform, eg x86_64
Code:
scons arch=linux-x86_64
# If you get compile errors, make sure you have all necessary libraries installed and try again. For example, I had to install quite a few:
Code:
aptitude install scons libboost-all-dev libsdl1.2-dev libcurl4-openssl-dev libsndfile1-dev libopenal-dev libxml2-dev
# Compile the map compiler, using "scons"
# Go the ~/XreaL/base/maps folder.
# Compile e.g. the "default" map which has a screenshot
Code:
./xmap2_compile -all test_box.map
# Compile e.g. the kat_q4dm3 map
Code:
./xmap2_compile -all kat_q4dm3.map
# Compile e.g. the GWDM2 map.
Code:
./xmap2_compile -all gwdm2.map
# Run the game
Awesome looks!