X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=main.c;h=603b98a05ef23907cfcfcb2145e761d05a451118;hb=2ae60b85d1124c0ce1438b3ca9079bcb0c0681ec;hp=8986f403e56ec3b5ab28dd85584838dfaee58f7f;hpb=ca5374edc3b81b0371d81c74974404352794689b;p=open-adventure.git diff --git a/main.c b/main.c index 8986f40..603b98a 100644 --- a/main.c +++ b/main.c @@ -970,8 +970,6 @@ static bool do_command() { static struct command_t command; - command.verb = 0; - /* Can't leave cave once it's closing (except by main office). */ if (OUTSID(game.newloc) && game.newloc != 0 && game.closng) { rspeak(EXIT_CLOSED); @@ -1052,11 +1050,26 @@ Lclearobj: 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; - ++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) @@ -1134,7 +1147,7 @@ Lookup: command.part = intransitive; command.verb = command.id1; break; - case NUMERIC: + case NUMERIC: // LCOV_EXCL_LINE default: // LCOV_EXCL_LINE BUG(VOCABULARY_TYPE_N_OVER_1000_NOT_BETWEEN_0_AND_3); // LCOV_EXCL_LINE }