X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=96acb439b4f5ece4509b66d5ca5dc69513373731;hb=68ab090f175669e5bd6dace9ab6905e493114779;hp=e452be2a19c7299f912635ca2758b939481776ca;hpb=a45f297dc70549131b96e8d4c65fa208330bd899;p=open-adventure.git diff --git a/misc.c b/misc.c index e452be2..96acb43 100644 --- a/misc.c +++ b/misc.c @@ -10,131 +10,127 @@ /* hack to ignore GCC Unused Result */ #define IGNORE(r) do{if (r){}}while(0) +#define PERCENT 63 /* partly hide the packed encoding */ + /* I/O routines (SPEAK, PSPEAK, RSPEAK, SETPRM, GETIN, YES) */ -void SPEAK(vocab_t N) -/* Print the message which starts at LINES(N). Precede it with a blank line +void SPEAK(vocab_t msg) +/* Print the message which starts at LINES[N]. Precede it with a blank line * unless game.blklin is false. */ { - long blank, casemake, I, K, L, NEG, NPARMS, PARM, PRMTYP, state; + long blank, casemake, i, nxt, neg, nparms, param, prmtyp, state; - if (N == 0) + if (msg == 0) return; blank=game.blklin; - K=N; - NPARMS=1; -L10: - L=labs(LINES[K])-1; - K=K+1; - LNLENG=0; - LNPOSN=1; - state=0; - for (I=K; I<=L; I++) { - PUTTXT(LINES[I],state,2); - } - LNPOSN=0; + nparms=1; + do { + nxt=labs(LINES[msg])-1; + msg=msg+1; + LNLENG=0; + LNPOSN=1; + state=0; + for (i = msg; i <= nxt; i++) { + PUTTXT(LINES[i],state,2); + } + LNPOSN=0; L30: - LNPOSN=LNPOSN+1; + ++LNPOSN; L32: - if (LNPOSN > LNLENG) - goto L40; - if (INLINE[LNPOSN] != 63) - goto L30; - {long x = LNPOSN+1; PRMTYP=INLINE[x];} - /* 63 is a "%"; the next character determine the type of - * parameter: 1 (!) = suppress message completely, 29 (S) = NULL - * If PARM=1, else 'S' (optional plural ending), 33 (W) = word - * (two 30-bit values) with trailing spaces suppressed, 22 (L) or - * 31 (U) = word but map to lower/upper case, 13 (C) = word in - * lower case with first letter capitalised, 30 (T) = text ending - * with a word of -1, 65-73 (1-9) = number using that many - * characters, 12 (B) = variable number of blanks. */ - if (PRMTYP == 1) - return; - if (PRMTYP == 29) - goto L320; - if (PRMTYP == 30) - goto L340; - if (PRMTYP == 12) - goto L360; - if (PRMTYP == 33 || PRMTYP == 22 || PRMTYP == 31 || PRMTYP == 13) - goto L380; - PRMTYP=PRMTYP-64; - if (PRMTYP < 1 || PRMTYP > 9) goto L30; - SHFTXT(LNPOSN+2,PRMTYP-2); - LNPOSN=LNPOSN+PRMTYP; - PARM=labs(PARMS[NPARMS]); - NEG=0; - if (PARMS[NPARMS] < 0) - NEG=9; - /* 390 */ for (I=1; I<=PRMTYP; I++) { - LNPOSN=LNPOSN-1; - INLINE[LNPOSN]=MOD(PARM,10)+64; - if (I == 1 || PARM != 0) - goto L390; - INLINE[LNPOSN]=NEG; - NEG=0; -L390: - PARM=PARM/10; - } - LNPOSN=LNPOSN+PRMTYP; + if (LNPOSN > LNLENG) + goto L40; + if (INLINE[LNPOSN] != PERCENT) + goto L30; + prmtyp = INLINE[LNPOSN+1]; + /* A "%"; the next character determine the type of + * parameter: 1 (!) = suppress message completely, 29 (S) = NULL + * If PARAM=1, else 'S' (optional plural ending), 33 (W) = word + * (two 30-bit values) with trailing spaces suppressed, 22 (L) or + * 31 (U) = word but map to lower/upper case, 13 (C) = word in + * lower case with first letter capitalised, 30 (T) = text ending + * with a word of -1, 65-73 (1-9) = number using that many + * characters, 12 (B) = variable number of blanks. */ + if (prmtyp == 1) + return; + if (prmtyp == 29) { + SHFTXT(LNPOSN+2,-1); + INLINE[LNPOSN] = 55; + if (PARMS[nparms] == 1) + SHFTXT(LNPOSN+1,-1); + goto L395; + } + if (prmtyp == 30) { + SHFTXT(LNPOSN+2,-2); + state=0; + casemake=2; + + for (;;) { + if (PARMS[nparms] < 0) + goto L395; + if (PARMS[nparms+1] < 0) + casemake=0; + PUTTXT(PARMS[nparms],state,casemake); + nparms=nparms+1; + } + } + if (prmtyp == 12) { + prmtyp=PARMS[nparms]; + SHFTXT(LNPOSN+2,prmtyp-2); + if (prmtyp != 0) { + for (i=1; i<=prmtyp; i++) { + INLINE[LNPOSN]=0; + LNPOSN=LNPOSN+1; + } + } + goto L395; + } + if (prmtyp == 33 || prmtyp == 22 || prmtyp == 31 || prmtyp == 13) { + SHFTXT(LNPOSN+2,-2); + state = 0; + casemake = -1; + if (prmtyp == 31) + casemake=1; + if (prmtyp == 33) + casemake=0; + i = LNPOSN; + PUTTXT(PARMS[nparms],state,casemake); + PUTTXT(PARMS[nparms+1],state,casemake); + if (prmtyp == 13 && INLINE[i] >= 37 && INLINE[i] <= 62) + INLINE[i] -= 26; + nparms += 2; + goto L32; + } + prmtyp=prmtyp-64; + if (prmtyp < 1 || prmtyp > 9) + goto L30; + SHFTXT(LNPOSN+2,prmtyp-2); + LNPOSN += prmtyp; + param=labs(PARMS[nparms]); + neg=0; + if (PARMS[nparms] < 0) + neg=9; + for (i=1; i <= prmtyp; i++) { + --LNPOSN; + INLINE[LNPOSN]=MOD(param,10)+64; + if (i != 1 && param == 0) { + INLINE[LNPOSN]=neg; + neg=0; + } + param=param/10; + } + LNPOSN += prmtyp; L395: - NPARMS=NPARMS+1; - goto L32; - -L320: - SHFTXT(LNPOSN+2,-1); - INLINE[LNPOSN]=55; - if (PARMS[NPARMS] == 1) - SHFTXT(LNPOSN+1,-1); - goto L395; - -L340: - SHFTXT(LNPOSN+2,-2); - state=0; - casemake=2; -L345: - if (PARMS[NPARMS] < 0) goto L395; - {long x = NPARMS+1; if (PARMS[x] < 0) - casemake=0;} - PUTTXT(PARMS[NPARMS],state,casemake); - NPARMS=NPARMS+1; - goto L345; - -L360: - PRMTYP=PARMS[NPARMS]; - SHFTXT(LNPOSN+2,PRMTYP-2); - if (PRMTYP == 0) goto L395; - for (I=1; I<=PRMTYP; I++) { - INLINE[LNPOSN]=0; - LNPOSN=LNPOSN+1; - } - goto L395; - -L380: - SHFTXT(LNPOSN+2,-2); - state=0; - casemake= -1; - if (PRMTYP == 31) - casemake=1; - if (PRMTYP == 33) - casemake=0; - I=LNPOSN; - PUTTXT(PARMS[NPARMS],state,casemake); - {long x = NPARMS+1; PUTTXT(PARMS[x],state,casemake);} - if (PRMTYP == 13 && INLINE[I] >= 37 && INLINE[I] <= - 62)INLINE[I]=INLINE[I]-26; - NPARMS=NPARMS+2; - goto L32; - -L40: - if (blank) - TYPE0(); - blank=false; - TYPE(); - K=L+1; - if (LINES[K] >= 0) - goto L10; + ++nparms; + goto L32; + +L40: + if (blank) + TYPE0(); + blank=false; + TYPE(); + msg = nxt + 1; + } while + (LINES[msg] >= 0); } void PSPEAK(vocab_t msg,int skip) @@ -262,7 +258,7 @@ long GETTXT(bool skip, bool onewrd, bool upper) if (LNPOSN > LNLENG || (onewrd && INLINE[LNPOSN] == 0)) continue; char current=INLINE[LNPOSN]; - if (current < 63) { + if (current < PERCENT) { splitting = -1; if (upper && current >= 37) current=current-26; @@ -271,12 +267,12 @@ long GETTXT(bool skip, bool onewrd, bool upper) continue; } if (splitting != LNPOSN) { - text=text+63; + text=text+PERCENT; splitting = LNPOSN; continue; } - text=text+current-63; + text=text+current-PERCENT; splitting = -1; LNPOSN=LNPOSN+1; } @@ -333,8 +329,8 @@ void fPUTTXT(token_t word, long *state, long casemake) return; byte=w/div; w=(w-byte*div)*64; - if (!(*state != 0 || byte != 63)) { - *state=63; + if (!(*state != 0 || byte != PERCENT)) { + *state=PERCENT; continue; } SHFTXT(LNPOSN,1); @@ -521,12 +517,9 @@ void MOVE(long object, long where) long from; if (object > NOBJECTS) - goto L1; - from=game.place[object]; - goto L2; -L1: - from=game.fixed[object-NOBJECTS]; -L2: + from=game.fixed[object-NOBJECTS]; + else + from=game.place[object]; if (from > 0 && from <= 300) CARRY(object,from); DROP(object,where); @@ -558,11 +551,10 @@ void CARRY(long object, long where) return; } temp=game.atloc[where]; -L7: if (game.link[temp] == object) - goto L8; - temp=game.link[temp]; - goto L7; -L8: game.link[temp]=game.link[object]; + while (game.link[temp] != object) { + temp=game.link[temp]; + } + game.link[temp]=game.link[object]; } void DROP(long object, long where) @@ -570,16 +562,17 @@ void DROP(long object, long where) * game.holdng if the object was being toted. */ { if (object > NOBJECTS) - goto L1; - if (game.place[object] == -1) - game.holdng=game.holdng-1; - game.place[object]=where; - goto L2; -L1: game.fixed[object-NOBJECTS]=where; -L2: if (where <= 0) + game.fixed[object-NOBJECTS] = where; + else + { + if (game.place[object] == -1) + --game.holdng; + game.place[object] = where; + } + if (where <= 0) return; - game.link[object]=game.atloc[where]; - game.atloc[where]=object; + game.link[object] = game.atloc[where]; + game.atloc[where] = object; } long ATDWRF(long where)