X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmap_objects.h;h=4804033d1002fe17499242046fdd5ff804d12f30;hb=951248dddace9f7cadcf30700a3c3e6ad7ae2888;hp=7fcf1c7df63087df887c2076cffb3cbe7a99c223;hpb=b9082c113c43afe5c6a11c2b72f845ee2f8c6aea;p=plomrogue diff --git a/src/map_objects.h b/src/map_objects.h index 7fcf1c7..4804033 100644 --- a/src/map_objects.h +++ b/src/map_objects.h @@ -10,6 +10,7 @@ #include /* for FILE typedef */ +#include /* for uint8_t */ #include "yx_uint16.h" /* for yx_uint16 coordinates */ struct World; @@ -19,7 +20,7 @@ struct World; struct Player { struct yx_uint16 pos; - unsigned char hitpoints; + uint8_t hitpoints; }; @@ -41,7 +42,7 @@ struct Item struct Monster { struct MapObj map_obj; - unsigned char hitpoints; + uint8_t hitpoints; }; @@ -67,7 +68,8 @@ struct ItemDef struct MonsterDef { struct MapObjDef map_obj_def; - unsigned char hitpoints_start; /* Hitpoints each monster starts with. */ + uint8_t corpse_id; /* ID of object type killed monster changes to. */ + uint8_t hitpoints_start; /* Hitpoints each monster starts with. */ }; @@ -81,7 +83,7 @@ extern void init_map_object_defs(struct World * world, char * filename); * "def_id". */ extern void * build_map_objects(struct World * world, void * start, char def_id, - unsigned char n); + uint8_t n); @@ -90,7 +92,8 @@ extern void * build_map_objects(struct World * world, void * start, char def_id, */ extern uint8_t write_map_objects(struct World * world, void * start, FILE * file); -extern uint8_t read_map_objects(struct World * world, void * start, FILE * file); +extern uint8_t read_map_objects(struct World * world, void * start, + FILE * file);