X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmap_objects.c;h=4beb4fdefa174d412c340fc1309f546b30d77ca1;hb=c681a0fed768dfff7af1084dedeec25ab8a421fa;hp=c4b90485068f1580b2d85f53f17b4bb8d6ecb017;hpb=b9082c113c43afe5c6a11c2b72f845ee2f8c6aea;p=plomrogue diff --git a/src/map_objects.c b/src/map_objects.c index c4b9048..4beb4fd 100644 --- a/src/map_objects.c +++ b/src/map_objects.c @@ -2,6 +2,7 @@ #include "map_objects.h" #include /* for malloc(), calloc(), free(), atoi() */ +#include /* for uint8_t */ #include /* for FILE typedef */ #include /* for strchr(), strlen(), memcpy() */ #include "readwrite.h" /* for [read/write]_uint[8/16/23][_bigendian]() */ @@ -142,19 +143,24 @@ extern uint8_t write_map_objects(struct World * world, void * start, { struct MapObj * map_obj; struct MapObjDef * mod; - uint8_t fail = 0; for (map_obj = start; map_obj != 0; map_obj = map_obj->next) { - fail = fail | write_uint8(map_obj->type, file); - fail = fail | write_uint16_bigendian(map_obj->pos.y + 1, file); - fail = fail | write_uint16_bigendian(map_obj->pos.x + 1, file); + if ( write_uint8(map_obj->type, file) + || write_uint16_bigendian(map_obj->pos.y + 1, file) + || write_uint16_bigendian(map_obj->pos.x + 1, file)) + { + return 1; + } mod = get_map_obj_def(world, map_obj->type); if ('m' == mod->m_or_i) { - fail = fail | write_map_objects_monsterdata(map_obj, file); + if (write_map_objects_monsterdata(map_obj, file)) + { + return 1; + } } } - return (fail | write_uint16_bigendian(0, file)); + return write_uint16_bigendian(0, file); } @@ -168,17 +174,22 @@ extern uint8_t read_map_objects(struct World * world, void * start, FILE * file) char first = 1; long pos; uint16_t read_uint16 = 0; - uint8_t fail = 0; while (1) { pos = ftell(file); - fail = fail | read_uint16_bigendian(file, &read_uint16); + if (read_uint16_bigendian(file, &read_uint16)) + { + return 1; + } if (0 == read_uint16) { break; } fseek(file, pos, SEEK_SET); - fail = fail | read_uint8(file, &type); + if (read_uint8(file, &type)) + { + return 1; + } mod = get_map_obj_def(world, type); if ('m' == mod->m_or_i) { @@ -190,28 +201,34 @@ extern uint8_t read_map_objects(struct World * world, void * start, FILE * file) } map_obj = get_next_map_obj(start, &first, size, map_obj); map_obj->type = type; - fail = fail | read_uint16_bigendian(file, &map_obj->pos.y); - fail = fail | read_uint16_bigendian(file, &map_obj->pos.x); + if ( read_uint16_bigendian(file, &map_obj->pos.y) + || read_uint16_bigendian(file, &map_obj->pos.x)) + { + return 1; + } map_obj->pos.y--; map_obj->pos.x--; if ('m' == mod->m_or_i) { - fail = fail | read_map_objects_monsterdata(map_obj, file); + if (read_map_objects_monsterdata(map_obj, file)) + { + return 1; + } } } if (!first) { map_obj->next = 0; } - return fail; + return 0; } extern void * build_map_objects(struct World * world, void * start, char def_id, - unsigned char n) + uint8_t n) { - unsigned char i; + uint8_t i; struct MapObj * mo; char first = 1; struct MapObjDef * mod = get_map_obj_def(world, def_id);