X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Fmap.c;h=3a5a0a213d1c6f8f644739f1410a0778bb66a9fa;hb=2906acb0d93705435ce737285ead26fd015e20be;hp=4cce02ae3c5cd08831f96f0d0bb49b5f0224959d;hpb=a98069786c81fe3ece3f4f1472877dd31bbccd90;p=plomrogue diff --git a/src/server/map.c b/src/server/map.c index 4cce02a..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 */ @@ -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); +}