Nessuna descrizione

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

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