From: Eric S. Raymond Date: Sat, 1 Jul 2017 18:03:01 +0000 (-0400) Subject: Minor refactor - create an equality function to simplify skip logic. X-Git-Tag: takebird~137 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=e57d9d514cc6cdeb23ddc995a4b9eb745f43817b Minor refactor - create an equality function to simplify skip logic. --- diff --git a/main.c b/main.c index fc4f9be..98be245 100644 --- a/main.c +++ b/main.c @@ -491,6 +491,13 @@ static void croak(void) } } +static bool traveleq(long a, long b) +/* Are two travel entries equal for purposes of skip after failed condition? */ +{ + return (travel[a].cond == travel[b].cond) + && (travel[a].dest == travel[b].dest); +} + /* Given the current location in "game.loc", and a motion verb number in * "motion", put the new location in "game.newloc". The current loc is saved * in "game.oldloc" in case he wants to retreat. The current @@ -628,7 +635,7 @@ static bool playermove( int motion) BUG(CONDITIONAL_TRAVEL_ENTRY_WITH_NO_ALTERATION); // LCOV_EXCL_LINE ++te_tmp; } while - ((T_DESTINATION(travel[travel_entry]) == T_DESTINATION(travel[te_tmp])) && (T_CONDITION(travel[travel_entry]) == T_CONDITION(travel[te_tmp]))); + (traveleq(travel_entry, te_tmp)); travel_entry = te_tmp; } @@ -670,7 +677,7 @@ static bool playermove( int motion) BUG(CONDITIONAL_TRAVEL_ENTRY_WITH_NO_ALTERATION); // LCOV_EXCL_LINE ++te_tmp; } while - ((T_DESTINATION(travel[travel_entry]) == T_DESTINATION(travel[te_tmp])) && (T_CONDITION(travel[travel_entry]) == T_CONDITION(travel[te_tmp]))); + (traveleq(travel_entry, te_tmp)); travel_entry = te_tmp; continue; /* goto L12 */ case 3: