]> granicus.if.org Git - nethack/log
nethack
2 years agoeliminate static analysis complaints about eat.c NetHack-3.7
PatR [Mon, 6 Mar 2023 00:19:32 +0000 (16:19 -0800)]
eliminate static analysis complaints about eat.c

This is fairly ridiculous but it prevents the bogus complaints
when compiling eat.c with 'gcc -fanalyzer' about some fields in
gc.context.victual being used without having been initialized.

There's bound to be a better way to handle this and I'm curious
whether it will work with the 'onefile' testing.

2 years agogit issue #994 - killed by a touch of death
PatR [Sun, 5 Mar 2023 23:11:25 +0000 (15:11 -0800)]
git issue #994 - killed by a touch of death

Issue reported by vultur-cadens:  cause of death reason for touch
of death and death due to loss of strength only showed the cause,
not the monster spellcaster who was responsible.

This changes
|Killed by a touch of death.
to
|Killed by the touch of death inflicted by the Wizard of Yendor.
and
|Killed by terminal fraility.
to
|Killed by strength loss inflicted by a chameleon imitating an arch-lich.
(The 'imitating' part doesn't fit on the tombstone but will be present
in logfile/xlogfile.)

Noticed while implemented this:  touch of death was modifying u.uhpmax
and basing death vs damage on that even when hero was polymorphed.
It now rehumanizes the hero in that situation.

Closes #994

2 years agobump editlevel
nhmall [Sun, 5 Mar 2023 22:57:03 +0000 (17:57 -0500)]
bump editlevel

2 years agoegraving fix
PatR [Sun, 5 Mar 2023 22:49:45 +0000 (14:49 -0800)]
egraving fix

Fix a "format is not literal" warning.

2 years agosym-changes - add engravings to the map
nhmall [Sun, 5 Mar 2023 22:35:49 +0000 (17:35 -0500)]
sym-changes - add engravings to the map

1. Add "engraved room floor" pchar sym (S_engroom). The symbol that
displays at the engraved part of a room (not a corridor though).
The default symbol is '`' which is currently never shown if people
have defined the boulder symbol to '0' and statues are displayed as
monster symbols. It is bright blue.

Add some stylized variations of the S_engroom symset to some of
the symsets.

2. Add "engraved corridor" pchar sym (S_engrcorr). The symbol that
displays at the engraved part of a corridor. The default symbol is
'#', and it matches the symbol for corridor from for whatever the
current symset uses. It is bright blue to match the color of the
S_engroom symbol. Using the normal corridor symbol for display
preserves the lines of the corridor so is not as visually-disruptive
as a smaller symbol would be. Explicit entries that match the S_corr
symbol have been added to the symset file.

Magic mapping and clairvoyance impacts yet to be determined.

The Guidebook updates will come later.

2 years agoTutorial: reset inventory letters
Pasi Kallinen [Sun, 5 Mar 2023 15:54:09 +0000 (17:54 +0200)]
Tutorial: reset inventory letters

2 years agoMore tutorial level
Pasi Kallinen [Sun, 5 Mar 2023 14:38:19 +0000 (16:38 +0200)]
More tutorial level

Add more stuff to the tutorial level:
 - closing a door
 - cursed armor
 - taking off armor
 - shuffled descriptions
 - removing curses
 - reading scrolls

2 years agoSplit level temperature message into function
Pasi Kallinen [Sun, 5 Mar 2023 10:34:33 +0000 (12:34 +0200)]
Split level temperature message into function

2 years agoSplit stuck-cannot-go-up/down into separate function
Pasi Kallinen [Sun, 5 Mar 2023 09:58:23 +0000 (11:58 +0200)]
Split stuck-cannot-go-up/down into separate function

2 years agoSpell of knock can knock back small monsters
Pasi Kallinen [Sat, 4 Mar 2023 17:06:13 +0000 (19:06 +0200)]
Spell of knock can knock back small monsters

Differentiates the spell from the wand of opening,
and the spell name sounds like it should do that ...

2 years agoBetter algo for picking a room to put stairs in
Pasi Kallinen [Sat, 4 Mar 2023 16:01:15 +0000 (18:01 +0200)]
Better algo for picking a room to put stairs in

2 years agoUntrap tip
Pasi Kallinen [Sat, 4 Mar 2023 09:02:06 +0000 (11:02 +0200)]
Untrap tip

2 years agofixes entry for pull request #993 - curses' >>
PatR [Fri, 3 Mar 2023 19:16:13 +0000 (11:16 -0800)]
fixes entry for pull request #993 - curses' >>

Pull request from entrez:  when the curses interface was deciding
whether ">>" could fit on the bottom line of the message window, it
was off by two (based on the initial report) and ">>" clobbered the
last two characters.

Reported case was "Welcome to level " when that was appended to
another short message.  It should have ended with "6. " but that had
been chopped off by ">> ".  Reproducible by assigning a long name to
something, dropping an item, dropping the something, and dropping
just enough other stuff so that the named item will be reported on
the bottom message line during pickup-all, forcing --More-- before
continuing to the item below it.  The item with the long name needs
to fit in the message window's width (when formatted with invent
letter prefix and trailing period) without being wrapped and not
leaving enough unused space to fix ">> ".

Closes #993

2 years agoPrevent curses 'More' (>>) from overwriting msg
Michael Meyer [Wed, 1 Mar 2023 21:20:43 +0000 (16:20 -0500)]
Prevent curses 'More' (>>) from overwriting msg

In some scenarios where a message prompted a 'more' (in curses shown as
'>>'), the '>>' could overwrite the last one or two characters of the
message.

This could happen if a single message on its own was the length of the
message space minus 2 (e.g. for an 80 character terminal, "h - a concave
amulet named this is an amulet name, it is very long, and so on."), or
if an addition to an existing line brought it to the length of the
message space minus 1 or 2 (e.g. "You materialize on a different level!
You remember this level as testlevlname.").  The two scenarios had
slightly different causes.

I think this fixes both of those scenarios.  I believe this is the
cause of the problem described in GitHub issue #990 but there isn't
enough detail to know that for a fact.

2 years agoSaving grace
Pasi Kallinen [Fri, 3 Mar 2023 15:37:02 +0000 (17:37 +0200)]
Saving grace

Once per game, if receiving a killing blow from above 90% HP,
allow the hero to survive with 1 HP.

2 years agoTutorial: pushing boulders
Pasi Kallinen [Fri, 3 Mar 2023 14:14:22 +0000 (16:14 +0200)]
Tutorial: pushing boulders

2 years agoAdjust archeologist and valkyrie intrinsics
Pasi Kallinen [Fri, 3 Mar 2023 09:35:28 +0000 (11:35 +0200)]
Adjust archeologist and valkyrie intrinsics

I felt it was strange that archeologist started out both
fast and stealthy, but didn't gain searching until level 10.
So, archeologists now start with searching, gain stealth at 5,
and fast at 10.

Similarly valkyries starting out stealthy felt odd, so now they'll
get it at level 3.

This leaves only the rogue starting out innately stealthy, which
feels appropriate.

2 years agoMinor tutorial tweak
Pasi Kallinen [Fri, 3 Mar 2023 07:57:46 +0000 (09:57 +0200)]
Minor tutorial tweak

Remove the autoopen setting, as it alraedy defaults to on.
Add an engraving mentioning some actions may take multiple tries.

2 years agoremove package from visual studio solution for now
nhmall [Fri, 3 Mar 2023 03:17:51 +0000 (22:17 -0500)]
remove package from visual studio solution for now

2 years agoretarget Visual Studio SDK
nhmall [Fri, 3 Mar 2023 03:06:14 +0000 (22:06 -0500)]
retarget Visual Studio SDK

2 years agofix achievement sounds in the macsound interface
nhmall [Fri, 3 Mar 2023 01:30:05 +0000 (20:30 -0500)]
fix achievement sounds in the macsound interface

> With sounds on, using #levelchange to drop more than one level only
> gave the level-loss sound effect once.

Fix the underlying issue within macsound.m by allowing the currently
playing sound to run to its completion prior to starting the next.

This also backs out the acknowledgment --More-- that was added after
the sound issue first materialized and puts it back to the way it was
the past several releases.

2 years agoRevert "up/down level feedback"
nhmall [Fri, 3 Mar 2023 01:14:04 +0000 (20:14 -0500)]
Revert "up/down level feedback"

This reverts commit 9ce98594a42abf1f45b591dc5cba4d5fb37323d6.

2 years agochange 'm #tip' behavior
PatR [Thu, 2 Mar 2023 13:33:16 +0000 (05:33 -0800)]
change 'm #tip' behavior

Using the 'm' prefix with #tip was putting up a menu to pick between
one or more floor containers and 'choose from invent', but that
interfered with choosing Tip as a context-sensitive item-action for
carried container.  Change 'm' to behave like it does with #eat and
\#quaff and several other commands:  skip possible candidates on the
floor and go directly to picking something from inventory.

That prevents using 'm' to force a menu of
|a - <floor container>
|i - pick a container being carried
for any menustyle when there is one floor container.  For menustyles
other than traditional, I think that's inconsequential; player needs
to answer 'n' for floor container and then get the choose-from-invent
prompt instead of 'i' and then choose.  When there are two or more
containers on hero's spot, 'm' prefix isn't needed to get that menu.

Unfortuately using 'm' to override menustyle:Traditional is still a
thing players might want to do.  Keep the prior behavior for that
style when multiple containers are present (dotip() already skipped
that menu despite 'm' when there was just one container).  Use the
new behavior (skip floor containers) when one (or none) is present.
That's inconsistent but seems more useful than alternatives.  It is
relatively unlikely that anyone who uses traditional non-menu item
selection will also use newfangled inventory item-actions so the menu
isn't likely to interfere with the latter.  Update the Guidebook to
describe how Traditional differs just in case.

2 years agofollow-up bit for cursmisc.c
nhmall [Thu, 2 Mar 2023 01:05:43 +0000 (20:05 -0500)]
follow-up bit for cursmisc.c

2 years agoopt out of bgcolor highlighting via bgcolors
nhmall [Thu, 2 Mar 2023 00:17:47 +0000 (19:17 -0500)]
opt out of bgcolor highlighting via bgcolors

2 years agofix uppercase alt key combinations with PDCurses
nhmall [Wed, 1 Mar 2023 22:06:15 +0000 (17:06 -0500)]
fix uppercase alt key combinations with PDCurses

2 years agoMerge branch 'missing_framecolor' of https://github.com/entrez/NetHack into NetHack-3.7
nhmall [Wed, 1 Mar 2023 21:04:33 +0000 (16:04 -0500)]
Merge branch 'missing_framecolor' of https://github.com/entrez/NetHack into NetHack-3.7

2 years agoInitialize scrollbar 'framecolor' before use
Michael Meyer [Wed, 1 Mar 2023 20:23:46 +0000 (15:23 -0500)]
Initialize scrollbar 'framecolor' before use

Caused an asan crash because the value is used to index an array.

2 years agofix remaining contrived issues re HANGUPHANDLING
nhmall [Wed, 1 Mar 2023 17:01:43 +0000 (12:01 -0500)]
fix remaining contrived issues re HANGUPHANDLING

2 years agoSplit dungeon.lua level reading to separate function
Pasi Kallinen [Wed, 1 Mar 2023 16:32:41 +0000 (18:32 +0200)]
Split dungeon.lua level reading to separate function

2 years agofix an issue when HANGUPHANDLING isn't defined
nhmall [Wed, 1 Mar 2023 15:54:04 +0000 (10:54 -0500)]
fix an issue when HANGUPHANDLING isn't defined

This is a contrived issue since HANGUPHANDLING is probably
defined for UNIX

2 years agotypo fix
nhmall [Wed, 1 Mar 2023 15:43:35 +0000 (10:43 -0500)]
typo fix

2 years agoupdate minimal build test in CI
nhmall [Wed, 1 Mar 2023 15:41:21 +0000 (10:41 -0500)]
update minimal build test in CI

This could trigger a couple of additional follow-up commits if the build fails.

2 years agoFix: using a selection in a lit des.region modified it
copperwater [Sun, 26 Feb 2023 22:46:47 +0000 (17:46 -0500)]
Fix: using a selection in a lit des.region modified it

The intuitive behavior when passing a selection to des.region, e.g.

    local foo = selection.area(07,02,10,24)
    des.region(foo, "lit")

is that foo will remain unmodified for further use. However, this wasn't
the case whenever making a lit region from it, because in order to light
walls adjacent to the lit area, the selection was having a grow
transformation applied as well. (This also seems like a problem - it
grows the selection even if what is being lit is not surrounded by
walls. I added a note in lua.adoc about this behavior.)

This fixes the selection mutation by cloning the passed-in selection and
growing the clone which leaves the original one unaffected.

This should not affect any special levels currently because the only
instance of des.region being used with a selection appears to be in
bigrm-2, which specifies *unlit* areas, which did not get grown.

2 years agodone_hup is compile-time optional for some reason
Pasi Kallinen [Wed, 1 Mar 2023 15:08:16 +0000 (17:08 +0200)]
done_hup is compile-time optional for some reason

2 years agoTutorial level
Pasi Kallinen [Sat, 25 Feb 2023 18:37:01 +0000 (20:37 +0200)]
Tutorial level

Add a tutorial level to teach commands to new players.
Very much a WIP.

Breaks save and bones compat.

2 years agofix a soundeffects typo
nhmall [Tue, 28 Feb 2023 21:15:56 +0000 (16:15 -0500)]
fix a soundeffects typo

2 years agodrawbridge revisited
PatR [Tue, 28 Feb 2023 20:14:23 +0000 (12:14 -0800)]
drawbridge revisited

Take the DEADMONSTER() check back out.  It adds some protection
against something that should never happen but also adds confusion
that it might actually happen.  Dead monsters aren't on the map.

Avoid 'if (cond) foo();' without braces if foo() might expand into
nothing.

Clean up the occupants[] array when finishing with drawbridge.

2 years agodrawbridge fix - double death
PatR [Tue, 28 Feb 2023 18:33:44 +0000 (10:33 -0800)]
drawbridge fix - double death

Make sure a dead monster that hasn't been purged from the fmon list
yet can't be hit by opening/closing/destroyed drawbridge.  I don't
think that could happen because the monster gets removed from the
map, but add some bullet-proofing.

Also, give drawbridge smash/crash sound effects even when player
can see whatever is happening instead of just when only hearing the
activity.

2 years agopartial fix for #K3869 - curses: meta characters
PatR [Tue, 28 Feb 2023 18:14:25 +0000 (10:14 -0800)]
partial fix for #K3869 - curses: meta characters

Meta-key fix for curses interface running on top of ncurses library.
Previously only digits and lower case letters would produce a meta
character when combined with Alt (or Option on Apple keyboards), now
it should work for any basic character (not arrows or other function
keys).  It only works on terminals that send two characters ESC k
for Alt+k but that is not a change in behavior.

curses interface running on top of PDcurses library uses different
code which isn't fixed by this.  The alt key fixup it does have was
already present in curses_read_char() and recently got duplicated in
curses_convert_keys().  At least one other routine calls the latter
so it was necessary, but curses_read_char() calls that routine so
doesn't need to keep its own copy of the fixup.

2 years agopaste error
nhmall [Tue, 28 Feb 2023 05:09:37 +0000 (00:09 -0500)]
paste error

2 years agoreturn correct ALT-key sequences with PDCurses
nhmall [Tue, 28 Feb 2023 05:05:04 +0000 (00:05 -0500)]
return correct ALT-key sequences with PDCurses

They weren't working at all because the values of ALT_A through ALT_Z
were out of the normal char range with PDCurses, and caught by the default
case in the switch, where reject got set.

/* use key as-is unless it's out of normal char range */
        reject = ((uchar) ret < 1 || ret > 255);

2 years agomore macOS.370 macro usage
nhmall [Mon, 27 Feb 2023 16:47:09 +0000 (11:47 -0500)]
more macOS.370 macro usage

2 years agofix a 'make bundle' error
nhmall [Mon, 27 Feb 2023 16:08:51 +0000 (11:08 -0500)]
fix a 'make bundle' error

make[1]: *** No rule to make target `../util/uudecode', needed by `/Users/testuser/nethack/NHsource/bundle/NetHackTerm.app/Contents/Resources/NetHackTerm.icns'.  Stop.
make: *** [bundle] Error 2

2 years agoStart using 3 part version numbers.
nhkeni [Mon, 27 Feb 2023 15:18:14 +0000 (10:18 -0500)]
Start using 3 part version numbers.

2 years agoremove an unused, incorrectly-spelled soundeffect
nhmall [Sun, 26 Feb 2023 20:44:04 +0000 (15:44 -0500)]
remove an unused, incorrectly-spelled soundeffect

2 years agofollow-up for seffects.h
nhmall [Sun, 26 Feb 2023 14:46:45 +0000 (09:46 -0500)]
follow-up for seffects.h

Make it emit nothing without one of the expected #defines.

2 years agoRevert "update Makefile.nmake"
nhmall [Sun, 26 Feb 2023 14:42:35 +0000 (09:42 -0500)]
Revert "update Makefile.nmake"

This reverts commit 8c7922635edacea230b55176a90162f7e7db7189.

2 years agopull request #973 - antagonostic undecagonstring
PatR [Sun, 26 Feb 2023 07:55:22 +0000 (23:55 -0800)]
pull request #973 - antagonostic undecagonstring

Pull request from Kufat:  add new hallucinatory monster from Iain
M. Banks' _The_Culture_ book series:  "antagonistic undecagonstring".

I was a bit concerned about the length, but it is quite a bit
shorter than the longest entry:  "one-eyed one-horned flying purple
people eater".

Closes #973

2 years agoBogusmon from The Culture (Iain M. Banks)
Kufat [Mon, 6 Feb 2023 02:57:09 +0000 (21:57 -0500)]
Bogusmon from The Culture (Iain M. Banks)

Add the antagonistic undecagonstring from The Hydrogen Sonata as a hallucinatory monster.

2 years agoThis is cron-daily v1-May-8-2022. 000files updated: Files
nhw_cron [Sat, 25 Feb 2023 21:24:08 +0000 (16:24 -0500)]
This is cron-daily v1-May-8-2022.  000files updated: Files

2 years agoupdate Makefile.nmake
nhmall [Sat, 25 Feb 2023 21:28:58 +0000 (16:28 -0500)]
update Makefile.nmake

2 years agoupdate Xcode project
nhmall [Sat, 25 Feb 2023 21:20:10 +0000 (16:20 -0500)]
update Xcode project

2 years agonew file include/seffects.h
nhmall [Sat, 25 Feb 2023 21:07:29 +0000 (16:07 -0500)]
new file include/seffects.h

2 years agoremove a maintenance/synchronization requirement
nhmall [Sat, 25 Feb 2023 21:05:27 +0000 (16:05 -0500)]
remove a maintenance/synchronization requirement

adds a file include/seffects.h

2 years agoadd a comment to include/sndprocs.h
nhmall [Sat, 25 Feb 2023 19:51:59 +0000 (14:51 -0500)]
add a comment to include/sndprocs.h

2 years agoadd comment prior to soundeffect_automapping table
nhmall [Sat, 25 Feb 2023 19:38:53 +0000 (14:38 -0500)]
add comment prior to soundeffect_automapping table

2 years agoinclude the two new sounds to list of sought files
nhmall [Sat, 25 Feb 2023 19:26:15 +0000 (14:26 -0500)]
include the two new sounds to list of sought files

2 years agoLua: Traps without victims
Pasi Kallinen [Sat, 25 Feb 2023 15:56:44 +0000 (17:56 +0200)]
Lua: Traps without victims

Traps may get corpses generated on them on early dungeon levels,
to warn off fragile starting heroes. Allow creating traps in lua
without the corpse.

2 years agofix #H2694 - egg hatching feedback
PatR [Sat, 25 Feb 2023 15:02:19 +0000 (07:02 -0800)]
fix #H2694 - egg hatching feedback

A bug report from ten and half years ago...
If a carried egg hatches, the message is
|<foo> drops from your pack.
and if tame, is followed by
|Its cries sound like {mommy,daddy}.
The latter was issued even when <foo> has no speech capability.

Replace "its cries sound like" with "its <vocalize>ing sounds like"
for suitable value of <vocalize>.

This adds two new monster sounds, MS_BELLOW and MS_CHIRP, also two
new sound effect codes, se_chirp and se_croc_bellow.

We had MS_SILENT for crocodile.  On wikipedia, crocodile is described
as the most vocal reptile.  Adult males make a load bellowing noise
and hatchlings make a chirping noise.

This changes crocodile, titanothere, and baluchitherium from MS_SILENT
to MS_BELLOW and baby crocodile from MS_SILENT to MS_CHIRP.  Chirp
might be appropriate for lizards and lizard-like amphibians but I've
left those as MS_SILENT.

[Noticed but not changed:  lizards and lizard-like amphibians aren't
flagged as oviparous.  Shouldn't they be?]

2 years agoMakefile.mingw32 placement
nhmall [Fri, 24 Feb 2023 22:45:02 +0000 (17:45 -0500)]
Makefile.mingw32 placement

2 years agoWindows: add lua files dependency
nhmall [Fri, 24 Feb 2023 22:40:35 +0000 (17:40 -0500)]
Windows: add lua files dependency

2 years agoaddress github issue #987 - curses: arrow keys
PatR [Thu, 23 Feb 2023 22:02:28 +0000 (14:02 -0800)]
address github issue #987 - curses: arrow keys

Issue reported by jeremyhetzler:  left and right arrows produced
unexpected characters when trying to use them to edit text that is
being entered.

The curses interface converts arrow keys and function keys related
to the keypad into movement keys (hjkl or 4286 depending on the
number_pad setting).  But it was doing that all the time, not just
when nethack wanted movement keys.  This extends the existing
program_state.getting_a_command flag to getdir() so that it can be
used for controlling that in addition to 'altmeta' support.

Typing an arrow when interacting with the map (actual command or
getpos, now getdir too) will still work.  Typing one when making a
wish or naming a pet will issue a beep and be treated as if '\0' had
been typed, and that normally gets treated as if ESC had been typed.
[Possible room for improvement there.  Losing the whole text when
trying to back up a character feels a bit harsh.]

Treating left arrow as escape rather than as h or 4 will probably be
enough to train players not to try to edit text with it after they
get burned by that a time or two.

Bonus fix:  curses' keystroke conversion only supported traditional
number_pad behavior, not the inverted phone number pad layout.

Closes #987

2 years agoLava walls vs cold rays
Pasi Kallinen [Wed, 22 Feb 2023 09:55:18 +0000 (11:55 +0200)]
Lava walls vs cold rays

Lava walls have a small chance of turning into solid stone wall
when hit by a cold ray. Before this they turned to floor, which
was obviously wrong.

2 years agoupdate tested versions of Visual Studio 2023-02-21
nhmall [Wed, 22 Feb 2023 04:51:02 +0000 (23:51 -0500)]
update tested versions of Visual Studio 2023-02-21

2 years agoGuidebook update
nhmall [Wed, 22 Feb 2023 04:03:19 +0000 (23:03 -0500)]
Guidebook update

2 years agoremove some macgraphics references; some Amiga
nhmall [Wed, 22 Feb 2023 03:54:56 +0000 (22:54 -0500)]
remove some macgraphics references; some Amiga

Also closes #183

2 years agotty_display_file()
PatR [Tue, 21 Feb 2023 22:00:31 +0000 (14:00 -0800)]
tty_display_file()

For the !defined(DEF_PAGER) config, if the file to be displayed
can't be opened, refresh the screen after complaining about that
rather than when no complaint is issued.

2 years agonon-Unix sysconf updates
PatR [Tue, 21 Feb 2023 19:15:08 +0000 (11:15 -0800)]
non-Unix sysconf updates

For non-Unix systems, disable the "description of NetHack's command
line" entry in the help command's menu.

2 years agopaste error in read.c
nhmall [Tue, 21 Feb 2023 16:52:36 +0000 (11:52 -0500)]
paste error in read.c

2 years agoRemove extra backslash from EOL
Pasi Kallinen [Tue, 21 Feb 2023 15:34:06 +0000 (17:34 +0200)]
Remove extra backslash from EOL

2 years agoLava walls cover objects
Pasi Kallinen [Tue, 21 Feb 2023 14:52:22 +0000 (16:52 +0200)]
Lava walls cover objects

Items landing into a wall of lava are covered up by it.
Kicking behaves the same as wall of water: splashes,
but doesn't move the item.

2 years agofixes entry for PR #978 - suppress monster's name
PatR [Mon, 20 Feb 2023 21:04:44 +0000 (13:04 -0800)]
fixes entry for PR #978 - suppress monster's name

for <new form> portion of messages "<old form> turns into <new form>"
to avoid named vampires yielding "Dracula turns into Dracula".

Pull request from entrez:  a couple of engulf messages used regular
monster naming for vamp-shifters transforming rather than dying.
3.6.1 had fixes for this for basic monster death but didn't handle
engulfing.

Fixes #978

2 years agoAvoid "It turns into [Name]" on vamp engulf
Michael Meyer [Fri, 10 Feb 2023 19:07:49 +0000 (14:07 -0500)]
Avoid "It turns into [Name]" on vamp engulf

Apply a similar fix as a791b4b and f441696 ended up settling on for
normal vampire transformation to the vampire transformation that happens
when their shapeshifted form is engulfed.

2 years agofix #K3863 - replace 'for (int i=0;...' in core
PatR [Mon, 20 Feb 2023 20:22:14 +0000 (12:22 -0800)]
fix #K3863 - replace 'for (int i=0;...' in core

The Makefiles and some of the hints have already been updated to
specify that C99 is required in response to #K3863.  The code was
evidently being compiled in the default mode of an old version of
gcc and that mode complained that C99 was required to specify a
declaration in the initializer clause of a
'for(initialize;test;update)statement'.  Other C99 features used
by nethack were apparently accepted as extensions in the default
conformance mode.

There's only one such declaration in the core code so replace it
with a separate declaration and ordinary 'for' loop.

win/Qt/{lots}.cpp and win/win32/{few}.c have these declarations but
the core didn't.

2 years agofix issue in Guidebook.tex
nhmall [Mon, 20 Feb 2023 02:40:52 +0000 (21:40 -0500)]
fix issue in Guidebook.tex

2 years agofix recover on Linux
nhmall [Sun, 19 Feb 2023 20:06:55 +0000 (15:06 -0500)]
fix recover on Linux

Also, recover should be a target-side utility, not host. That
really only makes a difference if you are cross-compiling.

2 years ago[un]compress wait() feedback
PatR [Sun, 19 Feb 2023 19:18:56 +0000 (11:18 -0800)]
[un]compress wait() feedback

At some point this may need to be commented out, but for the time
being report failure by wait() during the fork()+exec()+wait()
sequence when compressing or uncompressing a save file.

For the benefit of 'git log':  uncompressing an old save file or
compressing a new one fails when running nethack under control of
gdb (GNU Project's debugger) on OSX.  Noticed and reproducible on
OSX 10.11.6; no idea about more recent versions.  wait() returns -1
and sets errno to 4, "interrupted system call", and leaves the
variable that receives the child process's exit status as is.
NetHack has been relying on that exit status variable without
checking whether wait() returns success or failure.

This changes nethack's behavior when wait() fails.  It is now
intentionally failing compress/uncompress (by init'ing the status
to 1) after it was briefly treated as success (due to a recent
commit that set status to 0 before calling wait()), after a long
time of accidentally failing due to not setting varible 'i' (was 2
after being used for another purpose).  In addition to initializing
to failure prior to calling wait(), replace use of 'i' with a new
variable that is only used for this, possibly making the code more
comprehensible.

By the way, the issue with compress and uncompress failure when
running under control of gdb on OSX is not new.  I don't use gdb
a lot and have gotten tired of rediscovering this misbehavior.

2 years agoGuidebook update
nhmall [Sun, 19 Feb 2023 15:52:56 +0000 (10:52 -0500)]
Guidebook update

2 years agoTips and option to disable them
Pasi Kallinen [Sun, 19 Feb 2023 13:44:29 +0000 (15:44 +0200)]
Tips and option to disable them

Adds a more general way to handle gameplay tips, and adds
a boolean option "tips", which can be used to disable all
tips.  Adds a helpful longer message when the game goes
into the "farlook" mode.

Also adds a lua binding to easily show multi-line text
in a menu window.

Breaks save compat.

2 years agoreverse main bit of 'build fix: COMPRESS_OPTIONS'
PatR [Sun, 19 Feb 2023 02:03:21 +0000 (18:03 -0800)]
reverse main bit of 'build fix: COMPRESS_OPTIONS'

I realized that I put opts[] inside a block that would go out of
scope while it was still needed.  When I went to fix that, I
discovered that it is already present where it ought to be.  My
'experimentation' should have defined COMPRESS_OPTIONS sooner so
that the outer scope would see it.

This doesn't revert the previous commit because a couple of comments
and a bit of reformatting from it are still useful.

2 years agobuild fix: COMPRESS_OPTIONS
PatR [Sun, 19 Feb 2023 01:32:26 +0000 (17:32 -0800)]
build fix: COMPRESS_OPTIONS

While experimenting I tried defining COMPRESS_OPTIONS and files.c
would no longer compile.  Evidently nobody has been using that.

2 years agoexpand C99=1 with macOS.370 and linux.370 hints
nhmall [Sat, 18 Feb 2023 16:35:40 +0000 (11:35 -0500)]
expand C99=1 with macOS.370 and linux.370 hints

In addition to C99=1 on the make command line, also allow
C89=1 or C11=1 or C23=1.

NOTE: Those won't all lead to a successful build of NetHack,
and the use of C23=1 (-std=c2x) will only be valid on recent
compiler versions (clang-15, for one, accepts it).

2 years agoCross-compiling update
nhmall [Sat, 18 Feb 2023 05:55:01 +0000 (00:55 -0500)]
Cross-compiling update

2 years agopyrolisk feedback
PatR [Fri, 17 Feb 2023 22:40:26 +0000 (14:40 -0800)]
pyrolisk feedback

From a report 9 years ago, a pet pyrolisk was repeatedly gazing at a
grey-elf and nothing happened.  It turned out that the elf was wearing
an elven cloak which was negating damage some of the time (most of the
time back then) but with no indication that that's what was happening.

This makes many types of damage that are negated by MC say so.
Probably other types of damage should do likewise.

2 years ago fix a warning on Linux for X11 if -std=c99
nhmall [Fri, 17 Feb 2023 21:56:27 +0000 (16:56 -0500)]
 fix a warning on Linux for X11 if -std=c99

2 years agoAddress github issue #983 - getpos valid locations
PatR [Fri, 17 Feb 2023 20:21:54 +0000 (12:21 -0800)]
Address github issue #983 - getpos valid locations

Issue reported by entrez:  when getpos() is being used to have the
player pick a map location, if player types '$' (for some operations
like jumping or applying a polearm) then valid spots are highlighted
but the highlighting obscures what was shown on the map.  I'm not
sure whether this 'fixes' the issue but it's probably good enough.
Allow typing another '$' to toggle the highlighting back off,
redisplaying the map in the process, without needing to move the
cursor or type ^R to accomplish that.  Toggling seems more intuitive.

This is a lot more complicated than it needs to be because I assumed
that the background aspect of highlighting stayed visible when the
glyphs were reverted.  It doesn't work that way but I haven't thrown
out the effort to make toggling the highlights work sanely.  Prior
to this, typing '$' again just redrew the highlighting again, with
no visible effect.

Closes #983

2 years agoallow setting the standard
nhmall [Fri, 17 Feb 2023 15:23:40 +0000 (10:23 -0500)]
allow setting the standard

CSTD can be manually set near the top of src/Makefile, util/Makefile
or by including c99=1 or C99=1 on the build make command line if
using the linux.370 or macOS.370 hints files.

2 years agoThis is cron-daily v1-May-8-2022. 000files updated: Files
nhw_cron [Fri, 17 Feb 2023 08:24:08 +0000 (03:24 -0500)]
This is cron-daily v1-May-8-2022.  000files updated: Files

2 years ago3.7: add doc/fixes36.7 as doc/fixes3-6-7.txt
PatR [Fri, 17 Feb 2023 07:43:37 +0000 (23:43 -0800)]
3.7: add doc/fixes36.7 as doc/fixes3-6-7.txt

2 years agoupdate patchlevel.h with NetHack 3.6.7 release info
nhmall [Fri, 17 Feb 2023 02:06:06 +0000 (21:06 -0500)]
update patchlevel.h with NetHack 3.6.7 release info

2 years agoGuidebook update
nhmall [Fri, 17 Feb 2023 01:56:33 +0000 (20:56 -0500)]
Guidebook update

2 years agoMerge branch 'naming-overflow-fix2' into NetHack-3.7
nhmall [Thu, 16 Feb 2023 23:52:47 +0000 (18:52 -0500)]
Merge branch 'naming-overflow-fix2' into NetHack-3.7

2 years agoFix angering monsters with non-hero magic rays
Pasi Kallinen [Wed, 15 Feb 2023 09:24:01 +0000 (11:24 +0200)]
Fix angering monsters with non-hero magic rays

Can't use gc.context.mon_moving to check if the ray was caused
by hero, as some rays can happen while hero is moving in response
to their action - for example a bolt of lightning from a god.
dobuzz() uses positive type values for magic rays caused by hero,
so just use that.

2 years agoDon't anger target via mon vs mon zap/breath
Michael Meyer [Mon, 13 Feb 2023 22:11:07 +0000 (17:11 -0500)]
Don't anger target via mon vs mon zap/breath

dobuzz() was modified in 677b32c2a7 to anger the target, but beams
handled by dobuzz() don't necessarily originate from the hero.  Monsters
can zap wands that hit other monsters, dragons can use their breath
attacks, etc.  Those things were causing the targets to become angry at
the hero.

2 years agoFix: message when pet moves from water to eat
Michael Meyer [Mon, 13 Feb 2023 19:21:44 +0000 (14:21 -0500)]
Fix: message when pet moves from water to eat

The <x,y> params of dog_eat are the pet's starting position that turn,
not necessarily the position of the object being eaten.  If the pet is
doing a combined move-and-eat action, <x,y> will be its original spot,
but it will have already moved to <mtmp->mx,mtmp->my>, where the food
object also is.

The attempt to check whether the eating was happening out-of-sight
underwater (to suppress the message in that case) was checking the pet's
starting location, not its new location/the location of the food object.
So if a pet moved from water to land to eat something, the chowing-down
message would be improperly suppressed (and presumably the message for a
pet moving from land to water to eat would be improperly left
_un_suppressed, though I didn't actually try to reproduce that).

2 years agosplit kicking a door into a separate function
SHIRAKATA Kentaro [Fri, 27 Jan 2023 16:22:14 +0000 (01:22 +0900)]
split kicking a door into a separate function

2 years agoFix: Change gradient math to avoid isqrt
copperwater [Fri, 10 Feb 2023 22:23:32 +0000 (17:23 -0500)]
Fix: Change gradient math to avoid isqrt

isqrt adds some noticeable distortion artifacts to gradients (test case
I used is to draw a line from 10,10 to 20,15 with mindist = maxdist = 2
and see how the gradient is biased towards the upper right); changing
the distance calculations to use the square of the distance rather than
the raw distance avoids this. This makes radial gradients more radial,
and square gradients more square.

There still appears to be a bit of bias, but I think this is due to the
line algorithm not lining up perfectly with the tiles.

2 years agoInvert the behavior of selection.gradient
copperwater [Fri, 10 Feb 2023 12:38:22 +0000 (07:38 -0500)]
Invert the behavior of selection.gradient

selection.gradient has some pretty unintuitive behavior, in that it
selects points that are NOT close to the defined center. I've used
gradient selections several times and so far all of them have had to be
negated, because I wanted to select points close to the center with a
decreasing probability further out.

This implements that behavior, and also fixes a bug in which the x,y
coordinates of the gradient center(s) were not converted properly when
used within a des.room or des.map. Also updated the lua documentation
for gradient.

I removed the "limited" argument, as it was previously used to control
whether the rest of the map outside the max given distance would be
included in the selection; now that the area beyond maxdist is naturally
never in the selection, it doesn't have much use. (And I can't think of
a reasonable use case for the inverse: wanting to select points close to
the center, with decreasing chance towards maxdist, but then select the
entire map beyond maxdist.)

Currently this does not affect any special levels or themed rooms
because none of them use selection.gradient.

2 years agomore bundle work for macOS
nhmall [Sun, 12 Feb 2023 06:19:05 +0000 (01:19 -0500)]
more bundle work for macOS

This iteration:

Places the resulting bundle folder off the top of the tree, rather than as a subdirectory of src.

Leaves the Applescript files out for now.

Builds the Info.plist (for now) via hard-coded values in the Makefile.

Builds the bundle launch script on the fly at make-time.

I think this revision may be working, at lease on my test machine.
There are more improvements to be done.