Address GitLab issue #36: "Get what?" prompt incorrectly handled
authorEric S. Raymond <esr@thyrsus.com>
Tue, 1 Aug 2017 22:35:02 +0000 (18:35 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 1 Aug 2017 22:37:58 +0000 (18:37 -0400)
main.c
tests/illformed.chk
tests/illformed.log

diff --git a/main.c b/main.c
index 8a5545adbb3d42ff230ccfcdba83bf801d14a3f5..603b98a05ef23907cfcfcb2145e761d05a451118 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1050,11 +1050,26 @@ Lclearobj:
         if (game.knfloc > 0 && game.knfloc != game.loc)
             game.knfloc = 0;
 
         if (game.knfloc > 0 && game.knfloc != game.loc)
             game.knfloc = 0;
 
-        // Get command input from user
+       /* Preserve state from last command for reuse when required */
+       struct command_t preserve;
+       memcpy(&preserve, &command, sizeof(struct command_t));
+
+       // Get command input from user
         if (!get_command_input(&command))
             return false;
 
         if (!get_command_input(&command))
             return false;
 
-        ++game.turns;
+#ifdef GDEBUG
+       printf("Preserve: type1 = %u, id1 = %ld, id2 = %ld\n",
+              preserve.type1, preserve.id1, preserve.id2);
+       printf("Command: type2 = %u, id1 = %ld, id2 = %ld\n",
+              preserve.type2, command.id1, command.id2);
+#endif
+
+       /* Handle of objectless action followed by actionless object */
+       if (preserve.type1 == ACTION && preserve.type2 == NO_WORD_TYPE && command.id2 == 0)
+           command.verb = preserve.verb;
+
+       ++game.turns;
 
         if (closecheck()) {
             if (game.closed)
 
         if (closecheck()) {
             if (game.closed)
index 7291c55ef2f471a20bf48c07fc174bb0fb4e4f9a..4124e53c2d3f8e58243ac2afe95675e0bf507c8a 100644 (file)
@@ -153,6 +153,10 @@ There is food here.
 
 There is a bottle of water here.
 
 
 There is a bottle of water here.
 
+> keys
+
+What do you want to do with the keys?
+
 > throw food
 
 You aren't carrying it!
 > throw food
 
 You aren't carrying it!
@@ -325,10 +329,6 @@ There is a bottle of water here.
 
 The stream is gurgling placidly.
 
 
 The stream is gurgling placidly.
 
-> keys
-
-What do you want to do with the keys?
-
 > find keys
 
 I believe what you want is right here with you.
 > find keys
 
 I believe what you want is right here with you.
index b29a08d34e04dd5960b002bdd3787f6ca37d51fe..2645ccf46077608a6190fd7e8ab16b079419986e 100644 (file)
@@ -26,6 +26,7 @@ say fie
 say foe
 say fum
 in
 say foe
 say fum
 in
+keys
 throw food
 nothing food
 calm food
 throw food
 nothing food
 calm food
@@ -62,7 +63,6 @@ inven keys
 nothing
 in
 listen
 nothing
 in
 listen
-keys
 find keys
 unlock keys
 find foo
 find keys
 unlock keys
 find foo