--- deliantra/server/random_maps/exit.C 2010/04/10 01:54:07 1.41 +++ deliantra/server/random_maps/exit.C 2010/07/03 13:14:35 1.47 @@ -27,10 +27,10 @@ #include #include -/* find a character in the layout. fx and fy are pointers to +/* find a character in the maze. fx and fy are pointers to where to find the char. fx,fy = -1 if not found. */ static void -find_in_layout (int mode, char target, int *fx, int *fy, char **layout, random_map_params *RP) +find_in_layout (int mode, char target, int *fx, int *fy, char **maze, random_map_params *RP) { int M; int i, j; @@ -54,7 +54,7 @@ for (i = 1; i < RP->Xsize; i++) for (j = 1; j < RP->Ysize; j++) { - if (layout[i][j] == target) + if (maze[i][j] == target) { *fx = i; *fy = j; @@ -68,7 +68,7 @@ for (i = RP->Xsize - 2; i > 0; i--) for (j = 1; j < RP->Ysize - 1; j++) { - if (layout[i][j] == target) + if (maze[i][j] == target) { *fx = i; *fy = j; @@ -82,7 +82,7 @@ for (i = 1; i < RP->Xsize - 1; i++) for (j = RP->Ysize - 2; j > 0; j--) { - if (layout[i][j] == target) + if (maze[i][j] == target) { *fx = i; *fy = j; @@ -96,7 +96,7 @@ for (i = RP->Xsize - 2; i > 0; i--) for (j = RP->Ysize - 2; j > 0; j--) { - if (layout[i][j] == target) + if (maze[i][j] == target) { *fx = i; *fy = j; @@ -117,7 +117,7 @@ 6 means southward */ void -place_exits (maptile *map, char **maze, char *exitstyle, int orientation, random_map_params *RP) +place_exits (maptile *map, char **maze, const char *exitstyle, int orientation, random_map_params *RP) { maptile *style_map_down = 0; /* harder maze */ maptile *style_map_up = 0; /* easier maze */ @@ -128,8 +128,8 @@ int downx = -1, downy = -1; int final_map_exit = 1; - if (RP->exit_on_final_map) - if (strstr (RP->exit_on_final_map, "no")) + if (const char *eofm = RP->get_str ("exit_on_final_map", 0)) + if (strstr (eofm, "no")) final_map_exit = 0; if (!orientation) @@ -163,8 +163,10 @@ ? style_map_up->pick_random_object (rmg_rndm)->clone () : archetype::get (shstr_exit); + const char *final_map = RP->get_str ("final_map", 0); + /* we need a down exit only if we're recursing. */ - if (RP->dungeon_level < RP->dungeon_depth || *RP->final_map) + if (RP->dungeon_level < RP->dungeon_depth || final_map) the_exit_down = style_map_down ? style_map_down->pick_random_object (rmg_rndm)->clone () : archetype::get (shstr_exit); @@ -172,9 +174,9 @@ the_exit_down = 0; /* set up the up exit */ - the_exit_up->stats.hp = RP->origin_x; - the_exit_up->stats.sp = RP->origin_y; - the_exit_up->slaying = RP->origin_map; + the_exit_up->stats.hp = RP->get_iv ("origin_x", -1); + the_exit_up->stats.sp = RP->get_iv ("origin_y", -1); + the_exit_up->slaying = RP->get_str ("origin_map", 0); /* figure out where to put the entrance */ /* begin a logical block */ @@ -218,14 +220,12 @@ /* surround the exits with notices that this is a random map. */ for (int j = 1; j < 9; j++) - { - if (!wall_blocked (map, the_exit_up->x + freearr_x[j], the_exit_up->y + freearr_y[j])) - { - object *random_sign = archetype::get (shstr_sign); - random_sign->msg = format ("This is a random map.\nLevel: %d\n", RP->dungeon_level - 1); - map->insert (random_sign, the_exit_up->x + freearr_x[j], the_exit_up->y + freearr_y[j], 0, 0); - } - } + if (!wall_blocked (map, the_exit_up->x + freearr_x[j], the_exit_up->y + freearr_y[j])) + { + object *random_sign = archetype::get (shstr_sign); + random_sign->msg = format ("This is a random map.\nLevel: %d of %d.\n", RP->dungeon_level - 1, RP->dungeon_depth); + map->insert (random_sign, the_exit_up->x + freearr_x[j], the_exit_up->y + freearr_y[j], 0, 0); + } /* Block the exit so things don't get dumped on top of it. */ the_exit_up->move_block = MOVE_ALL; @@ -278,29 +278,27 @@ if (the_exit_down) { - char buf[16384]; - - int i = find_free_spot (the_exit_down, map, downx, downy, 1, SIZEOFFREE1 + 1); + int i = rmg_find_free_spot (the_exit_down, map, downx, downy, 1, SIZEOFFREE1 + 1); the_exit_down->x = downx + freearr_x[i]; the_exit_down->y = downy + freearr_y[i]; - RP->origin_x = the_exit_down->x; - RP->origin_y = the_exit_down->y; - write_map_parameters_to_string (buf, RP); - the_exit_down->msg = buf; + RP->set ("origin_x", (IV)the_exit_down->x); + RP->set ("origin_y", (IV)the_exit_down->y); + + the_exit_down->msg = RP->as_shstr (); /* the identifier for making a random map. */ - if (RP->dungeon_level >= RP->dungeon_depth && *RP->final_map) + if (RP->dungeon_level >= RP->dungeon_depth && final_map) { maptile *new_map; object *the_exit_back = the_exit_up->arch->instance (); /* load it */ - if (!(new_map = maptile::find_sync (RP->final_map))) + if (!(new_map = maptile::find_sync (final_map))) return; new_map->load_sync (); - the_exit_down->slaying = RP->final_map; + the_exit_down->slaying = final_map; for (object *tmp = new_map->at (new_map->enter_x, new_map->enter_y).bot; tmp; tmp = tmp->above) /* Remove exit back to previous random map. There should only be one @@ -314,7 +312,7 @@ break; } - if (final_map_exit == 1) + if (final_map_exit) { /* setup the exit back */ the_exit_back->slaying = map->path;