X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=main.h;h=184aceea0a17be1a0e727614318946042001e02a;hp=5af50f3a7625c62b1be79dc393dac80705c058fa;hb=196a9e1a4960e01dcf4af9aef01a8daf3b5cbbc8;hpb=f68f3a12056d7cfbe6cc65abe9f5c5975375ba00 diff --git a/main.h b/main.h index 5af50f3..184acee 100644 --- a/main.h +++ b/main.h @@ -2,54 +2,15 @@ #define LINESIZE 100 -extern long ABB[], ATAB[], ATLOC[], DLOC[], FIXED[], +typedef struct lcg_state +{ + unsigned long a, c, m, x; +} lcg_state; + +extern long ABB[], ATAB[], ATLOC[], BLKLIN, DFLAG, DLOC[], FIXED[], HOLDNG, KTAB[], *LINES, LINK[], LNLENG, LNPOSN, PARMS[], PLACE[], PTEXT[], RTEXT[], TABSIZ; -extern signed char INLINE[LINESIZE+1], MAP1[], MAP2[]; +extern signed char rawbuf[LINESIZE], INLINE[LINESIZE+1], MAP1[], MAP2[]; extern FILE *logfp; extern bool oldstyle; - -struct game_t { - /* These members are in the save order of the individual variables - * in the 2.5 code. */ - long abbnum; - long blklin; - long bonus; - long clock1; - long clock2; - long closed; - long closng; - long detail; - long dflag; - long dkill; - long dtotal; - long foobar; - long holdng; - long iwest; - long knfloc; - long limit; - /* LL may go here */ - long lmwarn; - /* LOC will go here */ - long newloc; - /* OBJ will go here */ - long numdie; - long oldlc2; - long oldloc; - long oldobj; - long panic; - long saved; - long setup; - long spk; - long tally; - long thresh; - long trndex; - long trnluz; - long turns; - /* more state will go here */ - long wzdark; - long zzword; - /* more state will go here */ - long novice; -}; -extern struct game_t game; +extern lcg_state lcgstate;