X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=main.c;h=0e934ba81e90a12c6e68471489ce0de93913e150;hb=refs%2Fmerge-requests%2F59%2Fhead;hp=cfad7b075ac488d3bd23f7d4c3e43998aa0f2c17;hpb=dd2a9497309ca258ac495deb52f1e9c94a589ab6;p=open-adventure.git diff --git a/main.c b/main.c index cfad7b0..0e934ba 100644 --- a/main.c +++ b/main.c @@ -1,7 +1,16 @@ /* + * There used to be a note that said this: + * * The author - Don Woods - apologises for the style of the code; it * is a result of running the original Fortran IV source through a * home-brew Fortran-to-C converter.) + * + * Now that the code has been restructured into idiomatic C, the following + * is more appropriate: + * + * ESR apologizes for the remaing gotos (now confined to two functions in this + * file - they used to be *everywhere*), and the offensive globals. Applying + * the Structured Program Theorem can be hard. */ #include #include @@ -501,27 +510,28 @@ static bool playermove(FILE *cmdin, token_t verb) if (K == game.loc)K2=91; if (CNDBIT(game.loc,4))K2=274; if (K2 == 0) { - L21: - LL=MOD((labs(TRAVEL[KK])/1000),1000); - if (LL != K) { - if (LL <= 300) { - if (FORCED(LL) && MOD((labs(TRAVEL[KEY[LL]])/1000),1000) == K) - K2=KK; - } - if (TRAVEL[KK] >= 0) { - ++KK; - goto L21; - } - KK=K2; - if (KK == 0) { - RSPEAK(140); - return true; + for (;;) { + LL=MOD((labs(TRAVEL[KK])/1000),1000); + if (LL != K) { + if (LL <= 300) { + if (FORCED(LL) && MOD((labs(TRAVEL[KEY[LL]])/1000),1000) == K) + K2=KK; + } + if (TRAVEL[KK] >= 0) { + ++KK; + continue; + } + KK=K2; + if (KK == 0) { + RSPEAK(140); + return true; + } } - } - K=MOD(labs(TRAVEL[KK]),1000); - KK=KEY[game.loc]; - goto L9; + K=MOD(labs(TRAVEL[KK]),1000); + KK=KEY[game.loc]; + break; /* fall through to ordinary travel */ + } } else { RSPEAK(K2); return true; @@ -542,10 +552,13 @@ static bool playermove(FILE *cmdin, token_t verb) RSPEAK((OUTSID(game.loc) && game.loc != 8) ? 57 : 58); return true; } - game.oldlc2=game.oldloc; - game.oldloc=game.loc; + else { + /* none of the specials */ + game.oldlc2=game.oldloc; + game.oldloc=game.loc; + } -L9: + /* ordinary travel */ for (;;) { LL=labs(TRAVEL[KK]); if (MOD(LL,1000) == 1 || MOD(LL,1000) == K)