Aucune description

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

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!
------