X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fmain.h;h=f3670b24324fb9286dccb9adc2697560ff1f9a75;hb=c72ed6261224cc0a1b8aa72f6af966715970ff60;hp=cd6e6c0657e950b173c2fff4f75c334f246d62ce;hpb=aafa0cb49e7ec8600dad902411de6e76e111c939;p=plomrogue diff --git a/src/main.h b/src/main.h index cd6e6c0..f3670b2 100644 --- a/src/main.h +++ b/src/main.h @@ -6,16 +6,15 @@ #ifndef MAIN_H #define MAIN_H - - #include /* for uint32_t*/ -#include "keybindings.h" +#include "keybindings.h" /* for KeyBiData struct */ struct WinMeta; struct WinConf; struct Win; struct Map; struct MapObjDef; struct MapObj; +struct MapObjAct; @@ -26,6 +25,7 @@ struct World struct KeyBiData kb_wingeom; /* Window geometry config keybindings. */ struct KeyBiData kb_winkeys; /* Window keybinding config keybindings.*/ uint32_t seed; /* Randomness seed. */ + uint32_t mapseed; /* Initial randomness seed used for map.*/ uint32_t turn; /* Current game turn. */ uint16_t score; /* Player's score. */ char * log; /* Pointer to the game log string. */ @@ -37,8 +37,9 @@ struct World uint8_t map_obj_count; /* Counts map objects generated so far. */ struct MapObjDef * map_obj_defs; /* Map object type definitions chain. */ struct MapObj * map_objs; /* Pointer to map objects chain start. */ - struct MapObj * last_map_obj; /* Pointer to map objects chain end. */ -}; + uint8_t inventory_select; /* Player's inventory selection index. */ + struct MapObjAct * map_obj_acts; /* Pointer to map object actions chain. */ +} world;