Merge branch 'NetHack-3.6.0'

This commit is contained in:
nhmall
2018-04-25 18:15:49 -04:00
267 changed files with 625 additions and 156 deletions

8
.gitattributes vendored
View File

@@ -1,9 +1,15 @@
*.[ch] NHSUBST *.[ch] NHSUBST
*.cpp NHSUBST
*.sh NHSUBST *.sh NHSUBST
*.pl NHSUBST
Porting NHSUBST
README NHSUBST
* text=auto * text=auto
*.hqx -text *.hqx -text
*.sln -text *.sln -text
*.vcxproj -text *.vcxproj -text
*.doc !diff *.doc !diff
*.DOC !diff *.DOC !diff
*.uu NH_header=no
*.xpm NH_header=no
.git* NH_header=no

View File

@@ -2,3 +2,5 @@
nhgitset.pl NHSUBST nhgitset.pl NHSUBST
hooksdir/* NHSUBST hooksdir/* NHSUBST
* text=auto * text=auto
DOTGIT/TARGET NH_header=no
hooksdir/TARGET NH_header=no

View File

@@ -4,7 +4,9 @@
|___/\___|\_/\___|_\___/ .__/\___|_| |___/\___|\_/\___|_\___/ .__/\___|_|
|_| |_|
$NHDT-Date: 1519228647 2018/02/21 15:57:27 $ # NetHack 3.6 Developer.txt $NHDT-Date: 1524689668 2018/04/25 20:54:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.13 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
Welcome to the NetHack Infrastructure Developer's Guide. Welcome to the NetHack Infrastructure Developer's Guide.

View File

@@ -1,5 +1,6 @@
$NHDT-Date: 1432473678 2015/05/24 13:21:18 $ $NHDT-Branch: master $:$NHDT-Revision: 1.2 $ # NetHack 3.6 code_features.txt $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.3 $
code_features.txt # Copyright (c) 2015 by Michael Allison
# NetHack may be freely redistributed. See license for details.
Developer-useful info about code features, assumptions, purpose, Developer-useful info about code features, assumptions, purpose,
rationale, etc. rationale, etc.

View File

@@ -1,3 +1,7 @@
# NetHack 3.6 code_style.txt $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $
# Copyright (c) 2015 by Derek S. Ray
# NetHack may be freely redistributed. See license for details.
NetHack DevTeam Coding Style NetHack DevTeam Coding Style
============================ ============================

View File

@@ -1,7 +1,10 @@
# NetHack 3.6 git_recipes.txt $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.9 $
# Copyright (c) 2015 by Derek S. Ray
# NetHack may be freely redistributed. See license for details.
Git has a messy learning curve. This file is an attempt to serve as a quick Git has a messy learning curve. This file is an attempt to serve as a quick
reference for basic tasks while you get up to speed. reference for basic tasks while you get up to speed.
$NHDT-Date: 1449695691 2015/12/09 21:14:51 $
------------------------ ------------------------
[*] git checkout [-f] (branch) [*] git checkout [-f] (branch)

View File

@@ -1,4 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# NetHack 3.6 getinfo.pl $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $
# Copyright (c) 2018 by Michael Allison
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,6 +1,9 @@
#!/usr/bin/perl #!/usr/bin/perl
# NetHack 3.6 NHadd $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
# wrapper for nhadd and nhcommit aliases # wrapper for nhadd and nhcommit aliases
# $NHDT-Date: 1427408239 2015/03/26 22:17:19 $
%ok = map { $_ => 1 } ('add', 'commit'); %ok = map { $_ => 1 } ('add', 'commit');

View File

@@ -1,7 +1,9 @@
# #
# NHgithook.pm # NetHack 3.6 NHgithook.pm $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.6 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
# NetHack Git Hook Module # NetHack Git Hook Module
# $NHDT-Date: 1519164205 2018/02/20 22:03:25 $
package NHgithook; package NHgithook;
use Cwd; use Cwd;

View File

@@ -1,7 +1,8 @@
#!/usr/bin/perl #!/usr/bin/perl
# # NetHack 3.6 NHsubst $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.4 $
# NHsubst # Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# $NHDT-Date$ # NetHack may be freely redistributed. See license for details.
# git merge driver for substitutions (like RCS/CVS) # git merge driver for substitutions (like RCS/CVS)
# driver line: .... %O %A %B %L # driver line: .... %O %A %B %L
use strict; use strict;

View File

@@ -1,7 +1,8 @@
#!/usr/bin/perl #!/usr/bin/perl
# # NetHack 3.6 NHtext $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.8 $
# NHtext # Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# $NHDT-Date$ # NetHack may be freely redistributed. See license for details.
# clean/smudge filter for handling substitutions # clean/smudge filter for handling substitutions
use strict; use strict;

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 applypatch-msg $NHDT-Date: 1524689646 2018/04/25 20:54:06 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 commit-msg $NHDT-Date: 1524689646 2018/04/25 20:54:06 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,6 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# nhsub # $NHDT-Date: 1524689646 2018/04/25 20:54:06 $ Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.7 $
# $NHDT-Date: 1518800857 2018/02/16 17:07:37 $ # Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
# Note: was originally called nhdate; the rename is not reflected in the code. # Note: was originally called nhdate; the rename is not reflected in the code.

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 post-checkout $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 post-commit $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 post-merge $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 post-rewrite $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 pre-applypatch $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 pre-auto-gc $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 pre-commit $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 pre-push $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # NetHack 3.6 pre-rebase $NHDT-Date: 1524689633 2018/04/25 20:53:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # $NHDT-Date: 1524689633 2018/04/25 20:53:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
#STARTUP-START #STARTUP-START
BEGIN { BEGIN {

View File

@@ -1,5 +1,7 @@
#!/usr/bin/perl #!/usr/bin/perl
# $NHDT-Date$ # $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $
# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland
# NetHack may be freely redistributed. See license for details.
# value of nethack.setupversion we will end up with when this is done # value of nethack.setupversion we will end up with when this is done
# version 1 is reserved for repos checked out before versioning was added # version 1 is reserved for repos checked out before versioning was added

View File

@@ -171,3 +171,7 @@ creation.
An object of the NetHack development project is to get the game An object of the NetHack development project is to get the game
working on as many different types of hardware and under as many different working on as many different types of hardware and under as many different
operating systems as is practical. Any assistance will be appreciated. operating systems as is practical. Any assistance will be appreciated.
# NetHack 3.6 Porting $NHDT-Date: 1524689603 2018/04/25 20:53:23 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $
# Copyright (c) 2005 by Michael Allison
# NetHack may be freely redistributed. See license for details.

4
README
View File

@@ -181,3 +181,7 @@ be able to provide support or receive bug reports for it.
In our own patches, we will assume that your code is synchronized with ours. In our own patches, we will assume that your code is synchronized with ours.
-- Good luck, and happy Hacking -- -- Good luck, and happy Hacking --
# $NHDT-Date: 1524689604 2018/04/25 20:53:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.42 $
# Copyright (c) 2012 by Michael Allison
# NetHack may be freely redistributed. See license for details.

3
dat/.gitattributes vendored
View File

@@ -1,3 +1,6 @@
*.def NHSUBST *.def NHSUBST
*.des NHSUBST *.des NHSUBST
*.txt NHSUBST *.txt NHSUBST
data.base NHSUBST
symbols NHSUBST
tribute NHSUBST

View File

@@ -1,3 +1,7 @@
# NetHack 3.6 bogusmon.txt $NHDT-Date: 1524689579 2018/04/25 20:52:59 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.7 $
# Copyright (c) 2016 by Pasi Kallinen
# NetHack may be freely redistributed. See license for details.
#
# Hallucinatory monsters # Hallucinatory monsters
# #
# #

View File

@@ -1,4 +1,5 @@
# NetHack 3.6 data.base $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ # NetHack 3.6 data.base
# $NHDT-Date: 1524683801 2018/04/25 19:16:41 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.84 $
# Copyright (c) 1994, 1995, 1996 by the NetHack Development Team # Copyright (c) 1994, 1995, 1996 by the NetHack Development Team
# Copyright (c) 1994 by Boudewijn Wayers # Copyright (c) 1994 by Boudewijn Wayers
# NetHack may be freely redistributed. See license for details. # NetHack may be freely redistributed. See license for details.

View File

@@ -1,3 +1,6 @@
# NetHack 3.6 engrave.txt $NHDT-Date: 1524689579 2018/04/25 20:52:59 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $
# Copyright (c) 2015 by Pasi Kallinen
# NetHack may be freely redistributed. See license for details.
# Random engravings on the floor # Random engravings on the floor
# #
Elbereth Elbereth

View File

@@ -1,3 +1,6 @@
# NetHack 3.6 epitaph.txt $NHDT-Date: 1524689580 2018/04/25 20:53:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.3 $
# Copyright (c) 2015 by Pasi Kallinen
# NetHack may be freely redistributed. See license for details.
# Epitaphs for random headstones # Epitaphs for random headstones
# #
# #

View File

@@ -186,12 +186,12 @@ Terry Pratchett, passed away. NetHack 3.6.0 introduced a tribute to him.
team since the release of 3.4.3 with some of the beloved community patches. team since the release of 3.4.3 with some of the beloved community patches.
Many bugs were fixed and some code was restructured. Many bugs were fixed and some code was restructured.
In 2018, several hundred bug fixes for 3.6.0 and some new features In late April 2018, several hundred bug fixes for 3.6.0 and some new
were assembled and released as NetHack 3.6.1. The development team at features were assembled and released as NetHack 3.6.1.
the time of release of 3.6.1 consisted of Warwick Allison, The development team at the time of release of 3.6.1 consisted of
Michael Allison, Ken Arromdee, David Cohrs, Jessie Collet, Pasi Kallinen, Warwick Allison, Michael Allison, Ken Arromdee, David Cohrs, Jessie Collet,
Ken Lorber, Dean Luick, Patric Mueller, Pat Rankin, Derek S. Ray, Pasi Kallinen, Ken Lorber, Dean Luick, Patric Mueller, Pat Rankin,
Alex Smith, Mike Stephenson, Janet Walz and Paul Winner. Derek S. Ray, Alex Smith, Mike Stephenson, Janet Walz and Paul Winner.
The development team, as well as Steve VanDevender and Kevin Smolkowski The development team, as well as Steve VanDevender and Kevin Smolkowski
ensured that NetHack 3.6.1 continued to operate on various Unix flavors ensured that NetHack 3.6.1 continued to operate on various Unix flavors

View File

@@ -1,4 +1,5 @@
# NetHack 3.6 oracle.des $NHDT-Date: 1432512784 2015/05/25 00:13:04 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ # NetHack 3.6 oracle.des $NHDT-Date: 1524689580 2018/04/25 20:53:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $
# Copyright (c) 2015 by Pasi Kallinen
# NetHack may be freely redistributed. See license for details. # NetHack may be freely redistributed. See license for details.
# #
# Oracle level # Oracle level

View File

@@ -1,3 +1,7 @@
# NetHack 3.6 symbols $NHDT-Date: 1524689580 2018/04/25 20:53:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $
# Copyright (c) 2006 by Michael Allison
# NetHack may be freely redistributed. See license for details.
#
# Symbol sets for use in NetHack's text-based display. # Symbol sets for use in NetHack's text-based display.
# #
# IBMgraphics works by specifying special characters which reside # IBMgraphics works by specifying special characters which reside

View File

@@ -1,3 +1,6 @@
# NetHack 3.6 tribute $NHDT-Date: 1524689580 2018/04/25 20:53:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.82 $
# Copyright (c) 2017 by Robert Patrick Rankin
# NetHack may be freely redistributed. See license for details.
# A tribute introduced in NetHack 3.6.0 to: # A tribute introduced in NetHack 3.6.0 to:
# #
# Sir Terence David John "Terry" Pratchett # Sir Terence David John "Terry" Pratchett

8
doc/.gitattributes vendored
View File

@@ -1,5 +1,9 @@
*.mn NHSUBST *.mn NHSUBST
*.6 NHSUBST *.6 NHSUBST
fixes.* NHSUBST fixes* NHSUBST
window.doc NHSUBST window.doc NHSUBST
config.nh NHSUBST
Guidebook.txt NH_header=no
tmac.n NH_header=no
fixes* NH_header=no
*.txt NH_header=no

View File

@@ -1,4 +1,4 @@
.\" $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.262 $ $NHDT-Date: 1524524932 2018/04/23 23:08:52 $ .\" $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.264 $ $NHDT-Date: 1524690677 2018/04/25 21:11:17 $
.\" .\"
.\" This is an excerpt from the 'roff' man page from the 'groff' package. .\" This is an excerpt from the 'roff' man page from the 'groff' package.
.\" NetHack's Guidebook.mn currently does *not* adhere to these guidelines. .\" NetHack's Guidebook.mn currently does *not* adhere to these guidelines.
@@ -21,7 +21,7 @@
.ds vr "NetHack 3.6 .ds vr "NetHack 3.6
.ds f0 "\*(vr .ds f0 "\*(vr
.ds f1 .ds f1
.ds f2 "April 23, 2018 .ds f2 "April 27, 2018
. .
.\" labeled paragraph start (should be part of tmac.n, but I don't want to .\" labeled paragraph start (should be part of tmac.n, but I don't want to
.\" make changes to that file) .\" make changes to that file)
@@ -4485,10 +4485,10 @@ passed away. NetHack 3.6.0 introduced a tribute to him.
team since the release of 3.4.3 with some of the beloved community team since the release of 3.4.3 with some of the beloved community
patches. Many bugs were fixed and some code was restructured. patches. Many bugs were fixed and some code was restructured.
.pg .pg
In 2018, several hundred bug fixes for 3.6.0 and some new features In late April 2018, several hundred bug fixes for 3.6.0 and
were assembled and released as NetHack 3.6.1. The development team at some new features were assembled and released as NetHack 3.6.1.
the time of release of 3.6.1 consisted of The development team at the time of release of 3.6.1 consisted of
\fBWarwick Allison\fP,\fBMichael Allison\fP, \fBKen Arromdee\fP, \fBWarwick Allison\fP, \fBMichael Allison\fP, \fBKen Arromdee\fP,
\fBDavid Cohrs\fP, \fBJessie Collet\fP, \fBPasi Kallinen\fP, \fBDavid Cohrs\fP, \fBJessie Collet\fP, \fBPasi Kallinen\fP,
\fBKen Lorber\fP, \fBDean Luick\fP, \fBPatric Mueller\fP, \fBKen Lorber\fP, \fBDean Luick\fP, \fBPatric Mueller\fP,
\fBPat Rankin\fP, \fBDerek S. Ray\fP, \fBAlex Smith\fP, \fBPat Rankin\fP, \fBDerek S. Ray\fP, \fBAlex Smith\fP,

View File

@@ -45,7 +45,7 @@
%.au %.au
\author{Original version - Eric S. Raymond\\ \author{Original version - Eric S. Raymond\\
(Edited and expanded for 3.6 by Mike Stephenson and others)} (Edited and expanded for 3.6 by Mike Stephenson and others)}
\date{April 23, 2018} \date{April 27, 2018}
\maketitle \maketitle
@@ -5243,9 +5243,9 @@ patches. Many bugs were fixed and some code was restructured.
%.pg %.pg
\medskip \medskip
In 2018, several hundred bug fixes for 3.6.0 and some new features In late April 2018, several hundred bug fixes for 3.6.0 and some new features
were assembled and released as NetHack 3.6.1. The development team at were assembled and released as NetHack 3.6.1. The development team at the
the time of release of 3.6.1 consisted of time of release of 3.6.1 consisted of
{\it Warwick Allison}, {\it Michael Allison}, {\it Ken Arromdee}, {\it Warwick Allison}, {\it Michael Allison}, {\it Ken Arromdee},
{\it David Cohrs}, {\it Jessie Collet}, {\it David Cohrs}, {\it Jessie Collet},
{\it Pasi Kallinen}, {\it Ken Lorber}, {\it Dean Luick}, {\it Pasi Kallinen}, {\it Ken Lorber}, {\it Dean Luick},
@@ -5260,6 +5260,7 @@ The development team, as well as {\it Steve VanDevender} and
operate on various Unix flavors and maintained the X11 interface. operate on various Unix flavors and maintained the X11 interface.
%.pg %.pg
\medskip
{\it Ken Lorber}, {\it Haoyang Wang}, {\it Pat Rankin}, and {\it Dean Luick} {\it Ken Lorber}, {\it Haoyang Wang}, {\it Pat Rankin}, and {\it Dean Luick}
maintained the port of {\it NetHack\/} 3.6 for Mac OSX. maintained the port of {\it NetHack\/} 3.6 for Mac OSX.

View File

@@ -1,3 +1,6 @@
# NetHack 3.6 config.nh $NHDT-Date: 1524689547 2018/04/25 20:52:27 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $
# Copyright (c) 2016 by Pasi Kallinen
# NetHack may be freely redistributed. See license for details.
# Sample config file for NetHack 3.6 # Sample config file for NetHack 3.6
# #
# A '#' at the beginning of a line means the rest of the line is a comment. # A '#' at the beginning of a line means the rest of the line is a comment.

View File

@@ -1,6 +1,18 @@
.TH DGN_COMP 6 "12 Dec 1995" .TH DGN_COMP 6 "25 May 2015" NETHACK
.\" NetHack 3.6 dgn_comp.6 $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.5 $ .de ND
.UC 4 .ds Nd \\$3
..
.de NB
.ds Nb \\$2
..
.de NR
.ds Nr \\$2
..
.ND $NHDT-Date: 1524689548 2018/04/25 20:52:28 $
.NB $NHDT-Branch: NetHack-3.6.0 $
.NR $NHDT-Revision: 1.6 $
.ds Na Kenneth Lorber
.SH NAME .SH NAME
dgn_comp \- NetHack dungeon compiler dgn_comp \- NetHack dungeon compiler
.SH SYNOPSIS .SH SYNOPSIS
@@ -401,3 +413,7 @@ lev_comp(6), nethack(6)
.SH BUGS .SH BUGS
.PP .PP
Probably infinite. Probably infinite.
.SH COPYRIGHT
This file is Copyright (C) \*(Na and was last modified \*(Nd (version
\*(Nb:\*(Nr).
NetHack may be freely redistributed. See license for details.

View File

@@ -1,6 +1,17 @@
.TH DLB 6 "28 Oct 1993" .TH DLB 6 "25 May 2015" NETHACK
.\" NetHack 3.6 dlb.6 $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.6 $ .de ND
.UC 4 .ds Nd \\$3
..
.de NB
.ds Nb \\$2
..
.de NR
.ds Nr \\$2
..
.ND $NHDT-Date: 1524689548 2018/04/25 20:52:28 $
.NB $NHDT-Branch: NetHack-3.6.0 $
.NR $NHDT-Revision: 1.7 $
.ds Na Kenneth Lorber
.SH NAME .SH NAME
dlb \- NetHack data librarian dlb \- NetHack data librarian
.SH SYNOPSIS .SH SYNOPSIS
@@ -92,3 +103,7 @@ Not a good tar emulation; - does not mean stdin or stdout.
Should include an optional compression facility. Should include an optional compression facility.
Not all read-only files for NetHack can be read out of an archive; Not all read-only files for NetHack can be read out of an archive;
examining the source is the only way to know which files can be. examining the source is the only way to know which files can be.
.SH COPYRIGHT
This file is Copyright (C) \*(Na and was last modified \*(Nd (version
\*(Nb:\*(Nr).
NetHack may be freely redistributed. See license for details.

View File

@@ -1,4 +1,4 @@
$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ $NHDT-Date: 1524689548 2018/04/25 20:52:28 $
[This is a partial list supplied by Ken Arromdee long after the fact] [This is a partial list supplied by Ken Arromdee long after the fact]

View File

@@ -1,4 +1,4 @@
$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.334 $ $NHDT-Date: 1524689548 2018/04/25 20:52:28 $
General Fixes and Modified Features General Fixes and Modified Features
----------------------------------- -----------------------------------

View File

@@ -1,4 +1,4 @@
$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.135 $ $NHDT-Date: 1524689548 2018/04/25 20:52:28 $
General Fixes and Modified Features General Fixes and Modified Features
----------------------------------- -----------------------------------

View File

@@ -1,4 +1,4 @@
$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.106 $ $NHDT-Date: 1524689549 2018/04/25 20:52:29 $
General Fixes and Modified Features General Fixes and Modified Features
----------------------------------- -----------------------------------

View File

@@ -1,3 +1,3 @@
$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.543 $ $NHDT-Date: 1524689549 2018/04/25 20:52:29 $
There was no NetHack 3.5.x release There was no NetHack 3.5.x release

View File

@@ -1,4 +1,4 @@
$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.562 $ $NHDT-Date: 1524689549 2018/04/25 20:52:29 $
General Fixes and Modified Features General Fixes and Modified Features
----------------------------------- -----------------------------------

View File

@@ -1,4 +1,4 @@
$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.446 $ $NHDT-Date: 1524689549 2018/04/25 20:52:29 $
General Fixes and Modified Features General Fixes and Modified Features
----------------------------------- -----------------------------------
@@ -39,7 +39,7 @@ make a previously-discovered scroll written with marker while blind have its
#name or C for discoveries list that spanned multiple pages would exit on #name or C for discoveries list that spanned multiple pages would exit on
space instead of advancing to next page (workaround: use '>' instead) space instead of advancing to next page (workaround: use '>' instead)
don't show the old level when you die going down the stairs because of an don't show the old level when you die going down the stairs because of an
iron ball iron ball
new high score with ", while helpless" attribute appended would erroneously new high score with ", while helpless" attribute appended would erroneously
result in ", while helpless" being appended to all following entries result in ", while helpless" being appended to all following entries
allow bright aliases for colors in menucolors allow bright aliases for colors in menucolors
@@ -177,7 +177,7 @@ a few types of monster (barrow wight, Nazgul, erinys) have weapon attacks that
don't deal physical damage, so special damage like stoning via wielded don't deal physical damage, so special damage like stoning via wielded
cockatrice corpse wouldn't be inflicted cockatrice corpse wouldn't be inflicted
non-item-using monsters who happened to be carrying scroll or wand of fire or non-item-using monsters who happened to be carrying scroll or wand of fire or
a fire horn could use it to cure themselves of being turned into slime a fire horn could use it to cure themselves of being turned into slime
when looting multiple containers, add 'n' for "loot next container", change when looting multiple containers, add 'n' for "loot next container", change
'q' and ESC from "done with this container" to "done looting" 'q' and ESC from "done with this container" to "done looting"
change looting to choose ":iobrs nq" action from a menu for menustyle:Partial change looting to choose ":iobrs nq" action from a menu for menustyle:Partial

View File

@@ -1,6 +1,17 @@
.TH LEV_COMP 6 "16 May 1996" .TH LEV_COMP 6 "25 May 2015" NETHACK
.\" NetHack 3.6 lev_comp.6 $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.5 $ .de ND
.UC 4 .ds Nd \\$3
..
.de NB
.ds Nb \\$2
..
.de NR
.ds Nr \\$2
..
.ND $NHDT-Date: 1524689549 2018/04/25 20:52:29 $
.NB $NHDT-Branch: NetHack-3.6.0 $
.NR $NHDT-Revision: 1.7 $
.ds Na Kenneth Lorber
.SH NAME .SH NAME
lev_comp \- NetHack special levels compiler lev_comp \- NetHack special levels compiler
.SH SYNOPSIS .SH SYNOPSIS
@@ -571,3 +582,7 @@ dgn_comp(6), nethack(6)
.PP .PP
Probably infinite. Probably infinite.
Most importantly, still needs additional bounds checking. Most importantly, still needs additional bounds checking.
.SH COPYRIGHT
This file is Copyright (C) \*(Na and was last modified \*(Nd (version
\*(Nb:\*(Nr).
NetHack may be freely redistributed. See license for details.

View File

@@ -1,6 +1,17 @@
.TH MAKEDEFS 6 "29 Apr 2010" .TH MAKEDEFS 6 "25 May 2015" NETHACK
.\" NetHack 3.6 makedefs.6 $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ .de ND
.UC 4 .ds Nd \\$3
..
.de NB
.ds Nb \\$2
..
.de NR
.ds Nr \\$2
..
.ND $NHDT-Date: 1524689549 2018/04/25 20:52:29 $
.NB $NHDT-Branch: NetHack-3.6.0 $
.NR $NHDT-Revision: 1.10 $
.ds Na Kenneth Lorber
.SH NAME .SH NAME
makedefs \- NetHack miscellaneous build-time functions makedefs \- NetHack miscellaneous build-time functions
.SH SYNOPSIS .SH SYNOPSIS
@@ -265,3 +276,7 @@ The NetHack Development Team
.SH "SEE ALSO" .SH "SEE ALSO"
.PP .PP
.BR dgn_comp (6) .BR dgn_comp (6)
.SH COPYRIGHT
This file is Copyright (C) \*(Na and was last modified \*(Nd (version
\*(Nb:\*(Nr).
NetHack may be freely redistributed. See license for details.

View File

@@ -1,5 +1,17 @@
.TH NETHACK 6 "7 December 2015" .TH NETHACK 6 "2 February 2018" NETHACK
.\" NetHack 3.6 nethack.6 $NHDT-Date: 1519228609 2018/02/21 15:56:49 $ $NHDT-Branch: githash $:$NHDT-Revision: 1.13 $ .de ND
.ds Nd \\$3
..
.de NB
.ds Nb \\$2
..
.de NR
.ds Nr \\$2
..
.ND $NHDT-Date: 1524689549 2018/04/25 20:52:29 $
.NB $NHDT-Branch: NetHack-3.6.0 $
.NR $NHDT-Revision: 1.14 $
.ds Na Robert Patrick Rankin
.SH NAME .SH NAME
nethack \- Exploring The Mazes of Menace nethack \- Exploring The Mazes of Menace
.SH SYNOPSIS .SH SYNOPSIS
@@ -378,7 +390,9 @@ dgn_comp(6), lev_comp(6), recover(6)
.SH BUGS .SH BUGS
.PP .PP
Probably infinite. Probably infinite.
.SH COPYRIGHT
This file is Copyright (C) \*(Na and was last modified \*(Nd (version
\*(Nb:\*(Nr).
NetHack may be freely redistributed. See license for details.
.PP .PP
Dungeons & Dragons is a Trademark of Wizards of the Coast, Inc. Dungeons & Dragons is a Trademark of Wizards of the Coast, Inc.

View File

@@ -1,6 +1,17 @@
.TH RECOVER 6 "9 January 1993" .TH RECOVER 6 "14 December 2015" NETHACK
.\" NetHack 3.6 recover.6 $NHDT-Date: 1450129883 2015/12/14 21:51:23 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.8 $ .de ND
.UC 4 .ds Nd \\$3
..
.de NB
.ds Nb \\$2
..
.de NR
.ds Nr \\$2
..
.ND $NHDT-Date: 1524689550 2018/04/25 20:52:30 $
.NB $NHDT-Branch: NetHack-3.6.0 $
.NR $NHDT-Revision: 1.9 $
.ds Na Kenneth Lorber
.SH NAME .SH NAME
recover \- recover a NetHack game interrupted by disaster recover \- recover a NetHack game interrupted by disaster
.SH SYNOPSIS .SH SYNOPSIS
@@ -130,3 +141,7 @@ determine.
.I recover .I recover
should be taught to use the nethack playground locking mechanism to should be taught to use the nethack playground locking mechanism to
avoid conflicts. avoid conflicts.
.SH COPYRIGHT
This file is Copyright (C) \*(Na and was last modified \*(Nd (version
\*(Nb:\*(Nr).
NetHack may be freely redistributed. See license for details.

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 artifact.h $NHDT-Date: 1433050871 2015/05/31 05:41:11 $ $NHDT-Branch: master $:$NHDT-Revision: 1.11 $ */ /* NetHack 3.6 artifact.h $NHDT-Date: 1433050871 2015/05/31 05:41:11 $ $NHDT-Branch: master $:$NHDT-Revision: 1.11 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2011. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef ARTIFACT_H #ifndef ARTIFACT_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 artilist.h $NHDT-Date: 1433050874 2015/05/31 05:41:14 $ $NHDT-Branch: master $:$NHDT-Revision: 1.16 $ */ /* NetHack 3.6 artilist.h $NHDT-Date: 1433050874 2015/05/31 05:41:14 $ $NHDT-Branch: master $:$NHDT-Revision: 1.16 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2017. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifdef MAKEDEFS_C #ifdef MAKEDEFS_C

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 config.h $NHDT-Date: 1478740241 2016/11/10 01:10:41 $ $NHDT-Branch: master $:$NHDT-Revision: 1.100 $ */ /* NetHack 3.6 config.h $NHDT-Date: 1478740241 2016/11/10 01:10:41 $ $NHDT-Branch: master $:$NHDT-Revision: 1.100 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2016. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef CONFIG_H /* make sure the compiler does not see the typedefs twice */ #ifndef CONFIG_H /* make sure the compiler does not see the typedefs twice */

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 config1.h $NHDT-Date: 1432512781 2015/05/25 00:13:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.17 $ */ /* NetHack 3.6 config1.h $NHDT-Date: 1432512781 2015/05/25 00:13:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.17 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef CONFIG1_H #ifndef CONFIG1_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 context.h $NHDT-Date: 1455907260 2016/02/19 18:41:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */ /* NetHack 3.6 context.h $NHDT-Date: 1455907260 2016/02/19 18:41:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* If you change the context structure make sure you increment EDITLEVEL in */ /* If you change the context structure make sure you increment EDITLEVEL in */

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 coord.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* NetHack 3.6 coord.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef COORD_H #ifndef COORD_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 decl.h $NHDT-Date: 1496531104 2017/06/03 23:05:04 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.82 $ */ /* NetHack 3.6 decl.h $NHDT-Date: 1496531104 2017/06/03 23:05:04 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.82 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2007. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef DECL_H #ifndef DECL_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 dungeon.h $NHDT-Date: 1447755969 2015/11/17 10:26:09 $ $NHDT-Branch: master $:$NHDT-Revision: 1.24 $ */ /* NetHack 3.6 dungeon.h $NHDT-Date: 1447755969 2015/11/17 10:26:09 $ $NHDT-Branch: master $:$NHDT-Revision: 1.24 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef DUNGEON_H #ifndef DUNGEON_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 engrave.h $NHDT-Date: 1432512777 2015/05/25 00:12:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */ /* NetHack 3.6 engrave.h $NHDT-Date: 1432512777 2015/05/25 00:12:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef ENGRAVE_H #ifndef ENGRAVE_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 flag.h $NHDT-Date: 1514071158 2017/12/23 23:19:18 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.132 $ */ /* NetHack 3.6 flag.h $NHDT-Date: 1514071158 2017/12/23 23:19:18 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.132 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* If you change the flag structure make sure you increment EDITLEVEL in */ /* If you change the flag structure make sure you increment EDITLEVEL in */

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 func_tab.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */ /* NetHack 3.6 func_tab.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Pasi Kallinen, 2016. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef FUNC_TAB_H #ifndef FUNC_TAB_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 global.h $NHDT-Date: 1465114189 2016/06/05 08:09:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.49 $ */ /* NetHack 3.6 global.h $NHDT-Date: 1524690661 2018/04/25 21:11:01 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.51 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef GLOBAL_H #ifndef GLOBAL_H
@@ -7,7 +8,7 @@
#include <stdio.h> #include <stdio.h>
#define BETA /* development or beta testing [MRS] */ /* #define BETA */ /* development or beta testing [MRS] */
#define DEBUG #define DEBUG

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 hack.h $NHDT-Date: 1490908464 2017/03/30 21:14:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.76 $ */ /* NetHack 3.6 hack.h $NHDT-Date: 1490908464 2017/03/30 21:14:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.76 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Pasi Kallinen, 2017. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef HACK_H #ifndef HACK_H

View File

@@ -1,4 +1,5 @@
/* NetHack 3.6 integer.h $NHDT-Date: 1457210314 2016/03/05 20:38:34 $ $NHDT-Branch: chasonr $:$NHDT-Revision: 1.0 $ */ /* NetHack 3.6 integer.h $NHDT-Date: 1524689514 2018/04/25 20:51:54 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.0 $ */
/* Copyright (c) 2016 by Michael Allison */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* integer.h -- provide sized integer types */ /* integer.h -- provide sized integer types */

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 lev.h $NHDT-Date: 1432512781 2015/05/25 00:13:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* NetHack 3.6 lev.h $NHDT-Date: 1432512781 2015/05/25 00:13:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* Common include file for save and restore routines */ /* Common include file for save and restore routines */

View File

@@ -1,4 +1,5 @@
/* NetHack 3.6 lint.h $NHDT-Date: 1454571508 2016/02/04 07:38:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.4 $ */ /* NetHack 3.6 lint.h $NHDT-Date: 1524689514 2018/04/25 20:51:54 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ */
/* Copyright (c) 2016 by Robert Patrick Rankin */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* /*

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 mac-carbon.h $NHDT-Date: 1432512777 2015/05/25 00:12:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */ /* NetHack 3.6 mac-carbon.h $NHDT-Date: 1432512777 2015/05/25 00:12:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */
/*-Copyright (c) Kevin Hugo, 2003. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* Compiler prefix file for the Macintosh Carbon port. /* Compiler prefix file for the Macintosh Carbon port.

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 mac-qt.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */ /* NetHack 3.6 mac-qt.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */
/*-Copyright (c) Kevin Hugo, 2003. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* Compiler prefix file for the Macintosh Qt port. /* Compiler prefix file for the Macintosh Qt port.

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 mac-term.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */ /* NetHack 3.6 mac-term.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */
/*-Copyright (c) Kevin Hugo, 2003. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* Compiler prefix file for the MacOS X Terminal.app port. /* Compiler prefix file for the MacOS X Terminal.app port.

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 macconf.h $NHDT-Date: 1432512782 2015/05/25 00:13:02 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* NetHack 3.6 macconf.h $NHDT-Date: 1432512782 2015/05/25 00:13:02 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Kevin Hugo, 2004. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifdef MAC #ifdef MAC

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 macwin.h $NHDT-Date: 1447755970 2015/11/17 10:26:10 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */ /* NetHack 3.6 macwin.h $NHDT-Date: 1447755970 2015/11/17 10:26:10 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Kevin Hugo, 2003. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef MACWIN_H #ifndef MACWIN_H

View File

@@ -1,4 +1,5 @@
/* NetHack 3.6 mail.h $NHDT-Date: 1432512777 2015/05/25 00:12:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */ /* NetHack 3.6 mail.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.9 $ */
/* Copyright (c) 2015 by Kenneth Lorber */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* used by ckmailstatus() to pass information to the mail-daemon in newmail() /* used by ckmailstatus() to pass information to the mail-daemon in newmail()

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 mextra.h $NHDT-Date: 1451836000 2016/01/03 15:46:40 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.18 $ */ /* NetHack 3.6 mextra.h $NHDT-Date: 1451836000 2016/01/03 15:46:40 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.18 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef MEXTRA_H #ifndef MEXTRA_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 mfndpos.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* NetHack 3.6 mfndpos.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2005. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef MFNDPOS_H #ifndef MFNDPOS_H

View File

@@ -1,7 +1,9 @@
/* NetHack 3.6 micro.h $NHDT-Date: 1432512781 2015/05/25 00:13:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* NetHack 3.6 micro.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ */
/* micro.h - function declarations for various microcomputers */ /* Copyright (c) 2015 by Kenneth Lorber */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* micro.h - function declarations for various microcomputers */
#ifndef MICRO_H #ifndef MICRO_H
#define MICRO_H #define MICRO_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 mkroom.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.13 $ */ /* NetHack 3.6 mkroom.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.13 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Pasi Kallinen, 2016. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef MKROOM_H #ifndef MKROOM_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 monst.h $NHDT-Date: 1461028522 2016/04/19 01:15:22 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.24 $ */ /* NetHack 3.6 monst.h $NHDT-Date: 1461028522 2016/04/19 01:15:22 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.24 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2016. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef MONST_H #ifndef MONST_H

View File

@@ -1,6 +1,7 @@
/* NetHack 3.6 monsym.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* NetHack 3.6 monsym.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.11 $ */
/* Monster symbols and creation information rev 1.0 */ /* Copyright (c) 2016 by Pasi Kallinen */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* Monster symbols and creation information rev 1.0 */
#ifndef MONSYM_H #ifndef MONSYM_H
#define MONSYM_H #define MONSYM_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 obj.h $NHDT-Date: 1508827590 2017/10/24 06:46:30 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.60 $ */ /* NetHack 3.6 obj.h $NHDT-Date: 1508827590 2017/10/24 06:46:30 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.60 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef OBJ_H #ifndef OBJ_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 objclass.h $NHDT-Date: 1462067744 2016/05/01 01:55:44 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ */ /* NetHack 3.6 objclass.h $NHDT-Date: 1462067744 2016/05/01 01:55:44 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Pasi Kallinen, 2018. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef OBJCLASS_H #ifndef OBJCLASS_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 os2conf.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* NetHack 3.6 os2conf.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */
/* Copyright (c) Timo Hakulinen, 1990, 1991, 1992, 1993, 1996. */ /* Copyright (c) Timo Hakulinen, 1990, 1991, 1992, 1993, 1996. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 patchlevel.h $NHDT-Date: 1451600769 2015/12/31 22:26:09 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.116 $ */ /* NetHack 3.6 patchlevel.h $NHDT-Date: 1524690061 2018/04/25 21:01:01 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.119 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2012. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* NetHack 3.6.1 */ /* NetHack 3.6.1 */
@@ -35,9 +36,9 @@
/****************************************************************************/ /****************************************************************************/
/* Version 3.6.x */ /* Version 3.6.x */
/* Patch 1, [insert date here] /* Patch 1, April 27, 2018
* A couple of dozen bug fixes. * Over five hundred bug fixes.
* * Some improvements.
*/ */
/* /*

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 pcconf.h $NHDT-Date: 1457207019 2016/03/05 19:43:39 $ $NHDT-Branch: chasonr $:$NHDT-Revision: 1.19 $ */ /* NetHack 3.6 pcconf.h $NHDT-Date: 1457207019 2016/03/05 19:43:39 $ $NHDT-Branch: chasonr $:$NHDT-Revision: 1.19 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef PCCONF_H #ifndef PCCONF_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 permonst.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* NetHack 3.6 permonst.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef PERMONST_H #ifndef PERMONST_H

View File

@@ -1,5 +1,5 @@
/********************************************************************** /**********************************************************************
** $NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ ** $NHDT-Date: 1524683840 2018/04/25 19:17:20 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $
** $Id: qttableview.h,v 1.2 2002/03/09 03:13:13 jwalz Exp $ ** $Id: qttableview.h,v 1.2 2002/03/09 03:13:13 jwalz Exp $
** **
** Definition of QtTableView class ** Definition of QtTableView class

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 rm.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.41 $ */ /* NetHack 3.6 rm.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.41 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Pasi Kallinen, 2017. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef RM_H #ifndef RM_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 skills.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.11 $ */ /* NetHack 3.6 skills.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.11 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985-1999. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985-1999. */
/*-Copyright (c) Pasi Kallinen, 2017. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef SKILLS_H #ifndef SKILLS_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 system.h $NHDT-Date: 1501723401 2017/08/03 01:23:21 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.13 $ */ /* NetHack 3.6 system.h $NHDT-Date: 1501723401 2017/08/03 01:23:21 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.13 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2017. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef SYSTEM_H #ifndef SYSTEM_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 tcap.h $NHDT-Date: 1432512774 2015/05/25 00:12:54 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */ /* NetHack 3.6 tcap.h $NHDT-Date: 1432512774 2015/05/25 00:12:54 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1989. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1989. */
/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* not named termcap.h because it may conflict with a system header */ /* not named termcap.h because it may conflict with a system header */

View File

@@ -1,4 +1,5 @@
/* NetHack 3.6 tile2x11.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* NetHack 3.6 tile2x11.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ */
/* Copyright (c) 2002 by David Cohrs */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef TILE2X11_H #ifndef TILE2X11_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 tosconf.h $NHDT-Date: 1432512782 2015/05/25 00:13:02 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */ /* NetHack 3.6 tosconf.h $NHDT-Date: 1432512782 2015/05/25 00:13:02 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifdef TOS #ifdef TOS

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 tradstdc.h $NHDT-Date: 1501803107 2017/08/03 23:31:47 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.29 $ */ /* NetHack 3.6 tradstdc.h $NHDT-Date: 1501803107 2017/08/03 23:31:47 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.29 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2006. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef TRADSTDC_H #ifndef TRADSTDC_H

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 trap.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* NetHack 3.6 trap.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Pasi Kallinen, 2016. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
/* note for 3.1.0 and later: no longer manipulated by 'makedefs' */ /* note for 3.1.0 and later: no longer manipulated by 'makedefs' */

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 unixconf.h $NHDT-Date: 1520099325 2018/03/03 17:48:45 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */ /* NetHack 3.6 unixconf.h $NHDT-Date: 1520099325 2018/03/03 17:48:45 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Pasi Kallinen, 2018. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifdef UNIX #ifdef UNIX
@@ -235,7 +236,9 @@
/* #define COMPRESS_OPTIONS "-q" */ /* #define COMPRESS_OPTIONS "-q" */
#endif #endif
#ifndef FCMASK
#define FCMASK 0660 /* file creation mask */ #define FCMASK 0660 /* file creation mask */
#endif
/* fcntl(2) is a POSIX-portable call for manipulating file descriptors. /* fcntl(2) is a POSIX-portable call for manipulating file descriptors.
* Comment out the USE_FCNTL if for some reason you have a strange * Comment out the USE_FCNTL if for some reason you have a strange

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 vmsconf.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.22 $ */ /* NetHack 3.6 vmsconf.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.22 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2011. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifdef VMS #ifdef VMS

View File

@@ -1,5 +1,6 @@
/* NetHack 3.6 you.h $NHDT-Date: 1450231172 2015/12/16 01:59:32 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */ /* NetHack 3.6 you.h $NHDT-Date: 1450231172 2015/12/16 01:59:32 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2016. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
#ifndef YOU_H #ifndef YOU_H

Some files were not shown because too many files have changed in this diff Show More