• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

dat/H03-May-2022-29,50927,967

debian/H07-May-2022-221156

doc/H03-May-2022-13,78712,890

include/H03-May-2022-20,68514,323

patches/H08-Dec-2013-

src/H08-Dec-2013-158,178128,227

sys/H08-Dec-2013-106,63783,403

tests/H08-Dec-2013-1,048403

tilesets/H03-May-2022-1911

util/H03-May-2022-9,4657,859

win/H08-Dec-2013-63,91049,647

.gitignoreH A D08-Dec-2013814 6659

ChangeLogH A D08-Dec-201324.6 KiB591523

FilesH A D08-Dec-201314.4 KiB320284

PortingH A D08-Dec-20137.2 KiB173128

READMEH A D08-Dec-2013788 2314

README.configureH A D08-Dec-20131.6 KiB3925

configureH A D08-Dec-2013253.2 KiB8,9777,334

unnethack.doxygenH A D08-Dec-201367.9 KiB1,6631,199

README

1General information about UnNetHack
2===================================
3
4UnNetHack is a fork of NetHack, originally based on NetHack version 3.4.3.
5
6It features more randomness, more levels, more challenges and more fun than
7vanilla NetHack.
8
9In a nutshell I would describe UnNetHack as "how NetHack would look today if
10the DevTeam didn't stop releasing", following a modern open source project
11approach of development.
12
13
14The project page with detailed information about changes from NetHack, the
15development blog, public servers, source code repository and ways to reach the
16developer can be found at: http://sourceforge.net/apps/trac/unnethack
17
18For discussion, join the IRC channel #unnethack on irc.freenode.net, post to
19rec.games.roguelike.nethack.
20
21
22 -- Good luck, and happy Hacking
23

README.configure

1== Compilation instructions for UnNetHack ==
2
3Windows user need to install an development environment using Cygwin[2].
4Install the packages i686-w64-mingw32-gcc, flex, bison, and make.
5
6
7On Linux and MacOSX for a single-user installation (a Linux Debian
8 or Ubuntu system needs the packages gcc, flex, bison, make,
9 libncurses5-dev and autotools-dev installed):
10
11 ./configure --prefix=$HOME/unnethack --with-owner=`id -un` --with-group=`id -gn` --enable-wizmode=`id -un` && make && make install
12
13
14On Windows for a console build open the Cygwin shell (replace Username
15 and Usergroup with your local settings):
16 ./configure --prefix=$HOME/unnethack --with-owner=Username --with-group=Usergroup --build=mingw32 --disable-file-areas --without-compression --enable-tty-graphics && make && make install
17
18 The game will be started with ~/unnethack/bin/unnethack
19
20On Window for a GUI build open the Cygwin shell:
21 env CC=i686-pc-mingw32-gcc CFLAGS= ./configure \
22            --prefix=`pwd`/builddir_mswin \
23            --with-owner=Username \
24            --with-group=Usergroup \
25            --build=i686-pc-mingw32 \
26            --without-compression --disable-file-areas \
27            --disable-status-color --enable-score-on-botl --enable-realtime-on-botl \
28            --enable-mswin-graphics --disable-tty-graphics \
29            && make install
30
31
32
33Please direct bugs and questions to <bhaak@gmx.net> or post them to the
34NetHack Newsgroup rec.games.roguelike.nethack[1].
35
36
37[1] Google Groups URL: http://groups.google.com/group/rec.games.roguelike.nethack
38[2] http://www.cygwin.com/install.html
39