Mercurial > hg > early-roguelike
view rogue3/INSTALL.txt @ 114:a5433ba4cabf
arogue5: fix some daemon-related pointer/int casting.
Daemons and fuses take a single argument, nominally an int but either
ignored or unsafely cast to a pointer. Its type has now been changed
to void*.
The save/restore code no longer tries to store this argument in the
savefile. For doctor(), this is not a problem, because player is the
only argument it is ever given as a daemon. However, alchemy() will
fail to do anything when passed NULL. Fixing this would be complicated
but possible.
Summary: the code is slightly safer, but alchemy jugs are guaranteed to
stop working after save and restore, instead of just extremely likely.
author | John "Elwin" Edwards |
---|---|
date | Fri, 28 Mar 2014 10:57:03 -0700 |
parents | c191a735f811 |
children |
line wrap: on
line source
Roguelike Gallery (rlgallery.org) This is the source code for the Roguelike Gallery's version of Rogue V3. History Rogue 3 was released by Michael Toy, Ken Arnold, and Glenn Wichman, probably late in 1980. It went through several minor updates. The last, Rogue 3.6, was completed mid-June 1981. The Roguelike Restoration Project (rogue.rogueforge.net) updated the game to work on modern systems. The Roguelike Gallery's version has been slightly modified for compatibility with dgamelaunch and security for multiple players. Installing Rogue V3 now uses autotools. Run 'autoreconf' and then './configure' to configure for your system. Once that's finished, compile by running make. (I haven't tested the Visual Studio project files on Windows, but they should work.) If you don't use any options with './configure', rogue3 will keep the high score list in whatever directory you run it from. If you just want to play the game yourself, this will work. If you want multi-user play, use the '--enable-setgid' and '--enable-savedir' options to 'configure'. You will also likely want to use '--enable-scorefile' and '--enable-logfile' to set the locations of those files. After compiling, run 'make install'. There are other possible features, including wizard (debugging) mode. To see the full list, run './configure --help'. Playing For more details, see readme36.html (contains the man page) and rogue36.html (Michael Toy's "Guide to the Dungeons of Doom"). Contact rlgallery.org admin: John "Elwin" Edwards <elwin@sdf.org>