X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Fmap.c;h=3a5a0a213d1c6f8f644739f1410a0778bb66a9fa;hb=109dc4e8a5d9f09541ef2dcb84bd6b6ac2e2fb00;hp=833ff98cd1d380bdd97f5b74c9c66f219b5c5225;hpb=28b8b4234e395c3fdc4800e5cfb3dcd70a15cadf;p=plomrogue diff --git a/src/server/map.c b/src/server/map.c index 833ff98..3a5a0a2 100644 --- a/src/server/map.c +++ b/src/server/map.c @@ -8,6 +8,7 @@ #include "map.h" #include /* uint8_t, int8_t, uint16_t, uint32_t, (U)INT*_(MIN|MAX) */ #include /* free() */ +#include /* memset() */ #include "../common/rexit.h" /* exit_err() */ #include "../common/try_malloc.h" /* try_malloc() */ #include "../common/yx_uint8.h" /* yx_uint8 */ @@ -204,7 +205,7 @@ extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx) } char * err = "Too much wrapping in mv_yx_in_dir_legal()."; exit_err( INT8_MIN == wrap_west_east || INT8_MIN == wrap_north_south - || INT8_MAX == wrap_west_east || INT8_MAX == wrap_north_south, err); + || INT8_MAX == wrap_west_east || INT8_MAX == wrap_north_south,err); struct yx_uint8 original = *yx; mv_yx_in_dir(dir, yx); if (('e' == dir || 'd' == dir || 'c' == dir) && yx->x < original.x) @@ -230,3 +231,11 @@ extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx) } return 0; } + + + +extern void init_empty_map(char ** map) +{ + *map = try_malloc(world.map.length * world.map.length, __func__); + memset(*map, ' ', world.map.length * world.map.length); +}