X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=src%2Fserver%2Fmap.c;h=30d64a5ddea02da915d6bd733450f60f166e73b9;hb=ca22fd77389df670bc483c43ae03f4d76023816f;hp=1c9a2f1881fdbac990dcd48ffe3bc9232aaa479d;hpb=0438f2fc5df337e4264103a86c1765ace9c6565a;p=plomrogue diff --git a/src/server/map.c b/src/server/map.c index 1c9a2f1..30d64a5 100644 --- a/src/server/map.c +++ b/src/server/map.c @@ -1,15 +1,25 @@ /* src/server/map.c */ #include "map.h" -#include /* uint8_t, uint16_t, uint32_t, UINT16_MAX */ +#include /* uint8_t, int8_t, uint16_t, uint32_t, (U)INT*_(MIN|MAX) */ +#include /* free() */ +#include /* strchr() */ #include "../common/rexit.h" /* exit_err() */ #include "../common/try_malloc.h" /* try_malloc() */ -#include "../common/yx_uint8.h" /* struct yx_uint8 */ +#include "../common/yx_uint8.h" /* yx_uint8 */ #include "rrand.h" /* rrand() */ #include "world.h" /* global world */ +/* Helper to mv_yx_in_dir_legal(). Move "yx" into hex direction "d". */ +static void mv_yx_in_dir(char d, struct yx_uint8 * yx); + +/* Helper to mv_yx_in_dir_legal(). Move "yx" into hex direction "d", do wrapping + * logic, return 1 if "yx" ends outside of the original wrap space, else 0. + */ +static uint8_t mv_yx_in_dir_wrap(char d, struct yx_uint8 * yx); + /* Call this too often with "init" of 0 and the game exits with an error message * about reaching an iteration limit. An "init" of 1 sets the iteration counter * to 0. Iteration limit is currently 256 * UINT16_MAX. @@ -30,6 +40,77 @@ static void make_trees(); +static void mv_yx_in_dir(char d, struct yx_uint8 * yx) +{ + if (d == 'e') + { + yx->x = yx->x + (yx->y % 2); + yx->y--; + } + else if (d == 'd') + { + yx->x++; + } + else if (d == 'c') + { + yx->x = yx->x + (yx->y % 2); + yx->y++; + } + else if (d == 'x') + { + yx->x = yx->x - !(yx->y % 2); + yx->y++; + } + else if (d == 's') + { + yx->x--; + } + else if (d == 'w') + { + yx->x = yx->x - !(yx->y % 2); + yx->y--; + } +} + + + +static uint8_t mv_yx_in_dir_wrap(char d, struct yx_uint8 * yx) +{ + static int8_t wrap_west_east = 0; + static int8_t wrap_north_south = 0; + char * err = "Too much wrapping in mv_yx_in_dir_wrap()."; + exit_err( INT8_MIN == wrap_west_east || INT8_MIN == wrap_north_south + || INT8_MAX == wrap_west_east || INT8_MAX == wrap_north_south, err); + if (!yx) + { + wrap_west_east = wrap_north_south = 0; + return 0; + } + struct yx_uint8 original; + original.y = yx->y; + original.x = yx->x; + mv_yx_in_dir(d, yx); + if (strchr("edc", d) && yx->x < original.x) + { + wrap_west_east++; + } + else if (strchr("xsw", d) && yx->x > original.x) + { + wrap_west_east--; + } + if (strchr("we", d) && yx->y > original.y) + { + wrap_north_south--; + } + else if (strchr("xc", d) && yx->y < original.y) + { + wrap_north_south++; + } + return (wrap_west_east != 0) + (wrap_north_south != 0); +} + + + static uint8_t iter_limit(uint8_t init) { static uint32_t i = 0; @@ -136,30 +217,26 @@ static void make_trees() -extern void init_map() +extern void remake_map() { - char * f_name = "init_map()"; - world.map.cells = try_malloc(world.map.length * world.map.length, f_name); + free(world.map.cells); + world.map.cells = try_malloc(world.map.length * world.map.length, __func__); + uint32_t store_seed = world.seed; + world.seed = world.seed_map; make_sea(); make_island(); make_trees(); + world.seed = store_seed; } -extern uint8_t is_passable(struct yx_uint8 pos) +extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx) { - uint8_t passable = 0; - if (pos.x < world.map.length && pos.y < world.map.length) + uint8_t wraptest = mv_yx_in_dir_wrap(dir, yx); + if (yx && !wraptest && yx->x < world.map.length && yx->y < world.map.length) { - passable = ('.' == world.map.cells[(pos.y * world.map.length) + pos.x]); + return 1; } - return passable; -} - - - -extern uint16_t yx_to_map_pos(struct yx_uint8 * yx) -{ - return (yx->y * world.map.length) + yx->x; + return 0; }