X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmain.h;h=f3670b24324fb9286dccb9adc2697560ff1f9a75;hb=2ee362765a142ed12df2de1b7c337b46d6674395;hp=e4d62e29ee87d682a58c2eeb9386562b62709738;hpb=7290dec4219eaa2325aa00ef6139f715743dba3a;p=plomrogue diff --git a/src/main.h b/src/main.h index e4d62e2..f3670b2 100644 --- a/src/main.h +++ b/src/main.h @@ -14,6 +14,7 @@ struct Win; struct Map; struct MapObjDef; struct MapObj; +struct MapObjAct; @@ -24,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. */ @@ -36,8 +38,8 @@ struct World struct MapObjDef * map_obj_defs; /* Map object type definitions chain. */ struct MapObj * map_objs; /* Pointer to map objects chain start. */ uint8_t inventory_select; /* Player's inventory selection index. */ - uint8_t old_inventory_select; /* Temporarily stores for recordfile */ -} world; /* writing inventory selection index. */ + struct MapObjAct * map_obj_acts; /* Pointer to map object actions chain. */ +} world;