X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=advent.h;h=2e07c7ef26d30c176905f6740c890c261546b7e6;hb=0d3393ebee2cfa97cd7b51daf0448992df758594;hp=a20c3dd15200ac3d51e5de3517d5509c8baad9cc;hpb=ef236aea3beef846b38245aa4ce3a753862c84f0;p=open-adventure.git diff --git a/advent.h b/advent.h index a20c3dd..2e07c7e 100644 --- a/advent.h +++ b/advent.h @@ -87,7 +87,7 @@ enum termination {endgame, quitgame, scoregame}; enum speechpart {unknown, intransitive, transitive}; -enum wordtype {NO_WORD_TYPE, MOTION, OBJECT, ACTION, SPECIAL}; +typedef enum {NO_WORD_TYPE, MOTION, OBJECT, ACTION, NUMERIC} word_type_t; typedef enum scorebonus {none, splatter, defeat, victory} score_t; @@ -101,11 +101,8 @@ enum phase_codes { GO_TOP, GO_CLEAROBJ, GO_CHECKHINT, - GO_DIRECTION, GO_WORD2, - GO_SPECIALS, GO_UNKNOWN, - GO_ACTION, GO_DWARFWAKE, }; @@ -191,8 +188,8 @@ struct command_t { enum speechpart part; vocab_t id1; vocab_t id2; - enum wordtype type1; - enum wordtype type2; + word_type_t type1; + word_type_t type2; verb_t verb; obj_t obj; }; @@ -225,7 +222,7 @@ extern int suspend(void); extern int resume(void); extern int restore(FILE *); extern long initialise(void); -extern int action(struct command_t *command); +extern int action(struct command_t command); extern void state_change(obj_t, int);