Sin descripción

tkatchev f90c614ef0 Nixification. hace 2 años
data e47812094d Bugfix. hace 8 años
libmaudit 8f6cdf864c . hace 9 años
pkg b298feb368 . hace 11 años
platform 5a254ed759 . hace 9 años
util 7081bd7ac6 Better highscore calculations. hace 7 años
webpage 47b75572b7 Better highscore calculations. hace 7 años
.gitignore f90c614ef0 Nixification. hace 2 años
CMakeLists.txt f90c614ef0 Nixification. hace 2 años
HOWTO.txt 6e5aab90b6 . hace 10 años
LICENSE 834d4857bd . hace 10 años
README ce812cd715 . hace 11 años
actions.h 5b36b13ea0 . hace 9 años
apply.h f958424d12 . hace 9 años
astar.h e30311ebf6 . hace 10 años
bank_screens.h f958424d12 . hace 9 años
bones.h f958424d12 . hace 9 años
bresenham.h 68f5be67c3 . hace 11 años
celauto.h dfa2b2065e . hace 9 años
celauto_bank.h dfa2b2065e . hace 9 años
combat.h 7d67f94004 . hace 9 años
common.h a92bb5ba1e Compilation performance improvements. hace 11 años
common_types.h c9616fad20 . hace 9 años
configparser.cc 048e66cb10 . hace 9 años
configparser.h c875112795 . hace 9 años
configparser.rl c875112795 . hace 9 años
constants.h c875112795 . hace 9 años
counters.h a0a1449ed3 . hace 10 años
counters_serialize.h 7465370b73 . hace 11 años
damage.h 4e8dcea8a5 . hace 9 años
debug_benchmark.h 97c605d1f1 . hace 11 años
default.nix f90c614ef0 Nixification. hace 2 años
delaunay.h d921dcfc04 . hace 10 años
designs.h a2cabc7b85 . hace 9 años
designs_bank.h a7ee907c14 . hace 10 años
ffeatures.h fa31af0f17 . hace 9 años
finance.h cec1021d03 . hace 10 años
fov.h 78ad1fe1b4 . hace 10 años
game.h fb7bb46e40 . hace 9 años
game_generation.h f958424d12 . hace 9 años
game_processing.h 20beae583d Fix death while sleeping. hace 6 años
game_rendering.h c875112795 . hace 9 años
game_ui.h 5b36b13ea0 . hace 9 años
gamestate.h a18af32f8e . hace 9 años
grid.h f958424d12 . hace 9 años
highscore.h 47b75572b7 Better highscore calculations. hace 7 años
incavead.cc 49ef8f86fb . hace 9 años
inv_screens.h d02e14639e . hace 9 años
inv_screens2.h 2fbd79f076 . hace 9 años
inventory.h 2fbd79f076 . hace 9 años
items.h 5e67ffcd05 . hace 10 años
levelskins.h 3bd27cf872 . hace 9 años
logging.h c531576d40 . hace 11 años
look_screens.h f958424d12 . hace 9 años
mainloop_net.h f90c614ef0 Nixification. hace 2 años
monster_ai.h c875112795 . hace 9 años
monsters.h 5e07e7ac72 . hace 9 años
moon.h f958424d12 . hace 9 años
neighbors.h 52ccf1bfe0 . hace 10 años
nlp.h f958424d12 . hace 9 años
permafeats.h 59703dedba . hace 9 años
player.h 8f47d23f1c . hace 9 años
pstats.h c875112795 . hace 9 años
pstats_serialize.h 214c9405d6 . hace 9 años
random.h 15d330e976 . hace 9 años
random_serialize.h 7465370b73 . hace 11 años
rcode.h a41dfb3945 . hace 11 años
render_maudit.h e20f4a3f16 Fix build problems. hace 7 años
serialize.h 59703dedba . hace 9 años
shell.nix f90c614ef0 Nixification. hace 2 años
skins.h b433709454 . hace 10 años
species.h a67d528881 . hace 9 años
species_bank.h 7465370b73 . hace 11 años
spectator.h f958424d12 . hace 9 años
strings_bank.h f958424d12 . hace 9 años
terrain.h 54d7d9b101 . hace 9 años
terrain_bank.h a92bb5ba1e Compilation performance improvements. hace 11 años
uniques.h 5c50304bc8 . hace 10 años
utilstuff.h 7edb854e35 . hace 9 años
vault_place.h 4ecfa2ad39 . hace 9 años
vaults.h 20c4e15a6f . hace 9 años
vaults_bank.h 4e00287a73 . hace 9 años
worldkey.h 9ad7550f7d . hace 11 años

README


What you will need
------------------

To compile this game you will need

a) A C++11 compiler. (Tested with gcc 4.7 and above.)

b) A build environment that supports POSIX. (Though only a small subset is needed; mostly the socket functions.)

c) Optionally: CMake

d) Optionally, if you want to change the config file syntax: the "ragel" tool, http://www.complang.org/ragel/.


How to build
------------

Simple instructions, for a reasonably UNIX-like OS:

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


How to play
-----------

a) Change directory to where the 'incavead' binary was installed.
b) Run 'incavead', the game server.
c) Connect with a telnet client to localhost, port 20020.

Example: "puttytel 0.0.0.0 20020"


Enjoy!
------