OSDN Git Service

[Refactor] #37353 NIKKI_* をDIARY_* に改名 / Changed NIKKI_* to DIARY_*
[hengband/hengband.git] / src / floor-generate.c
1 /*!
2  * @file generate.c
3  * @brief ダンジョンの生成 / Dungeon generation
4  * @date 2014/01/04
5  * @author
6  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke\n
7  * This software may be copied and distributed for educational, research,\n
8  * and not for profit purposes provided that this copyright and statement\n
9  * are included in all such copies.  Other copyrights may also apply.\n
10  * 2014 Deskull rearranged comment for Doxygen. \n
11  * @details
12  * Note that Level generation is *not* an important bottleneck,\n
13  * though it can be annoyingly slow on older machines...  Thus\n
14  * we emphasize "simplicity" and "correctness" over "speed".\n
15  *\n
16  * This entire file is only needed for generating levels.\n
17  * This may allow smart compilers to only load it when needed.\n
18  *\n
19  * Consider the "v_info.txt" file for vault generation.\n
20  *\n
21  * In this file, we use the "special" granite and perma-wall sub-types,\n
22  * where "basic" is normal, "inner" is inside a room, "outer" is the\n
23  * outer wall of a room, and "solid" is the outer wall of the dungeon\n
24  * or any walls that may not be pierced by corridors.  Thus the only\n
25  * wall type that may be pierced by a corridor is the "outer granite"\n
26  * type.  The "basic granite" type yields the "actual" corridors.\n
27  *\n
28  * Note that we use the special "solid" granite wall type to prevent\n
29  * multiple corridors from piercing a wall in two adjacent locations,\n
30  * which would be messy, and we use the special "outer" granite wall\n
31  * to indicate which walls "surround" rooms, and may thus be "pierced"\n
32  * by corridors entering or leaving the room.\n
33  *\n
34  * Note that a tunnel which attempts to leave a room near the "edge"\n
35  * of the dungeon in a direction toward that edge will cause "silly"\n
36  * wall piercings, but will have no permanently incorrect effects,\n
37  * as long as the tunnel can *eventually* exit from another side.\n
38  * And note that the wall may not come back into the room by the\n
39  * hole it left through, so it must bend to the left or right and\n
40  * then optionally re-enter the room (at least 2 grids away).  This\n
41  * is not a problem since every room that is large enough to block\n
42  * the passage of tunnels is also large enough to allow the tunnel\n
43  * to pierce the room itself several times.\n
44  *\n
45  * Note that no two corridors may enter a room through adjacent grids,\n
46  * they must either share an entryway or else use entryways at least\n
47  * two grids apart.  This prevents "large" (or "silly") doorways.\n
48  *\n
49  * To create rooms in the dungeon, we first divide the dungeon up\n
50  * into "blocks" of 11x11 grids each, and require that all rooms\n
51  * occupy a rectangular group of blocks.  As long as each room type\n
52  * reserves a sufficient number of blocks, the room building routines\n
53  * will not need to check bounds.  Note that most of the normal rooms\n
54  * actually only use 23x11 grids, and so reserve 33x11 grids.\n
55  *\n
56  * Note that the use of 11x11 blocks (instead of the old 33x11 blocks)\n
57  * allows more variability in the horizontal placement of rooms, and\n
58  * at the same time has the disadvantage that some rooms (two thirds\n
59  * of the normal rooms) may be "split" by panel boundaries.  This can\n
60  * induce a situation where a player is in a room and part of the room\n
61  * is off the screen.  It may be annoying enough to go back to 33x11\n
62  * blocks to prevent this visual situation.\n
63  *\n
64  * Note that the dungeon generation routines are much different (2.7.5)\n
65  * and perhaps "DUN_ROOMS" should be less than 50.\n
66  *\n
67  * Note that it is possible to create a room which is only\n
68  * connected to itself, because the "tunnel generation" code allows a\n
69  * tunnel to leave a room, wander around, and then re-enter the room.\n
70  *\n
71  * Note that it is possible to create a set of rooms which\n
72  * are only connected to other rooms in that set, since there is nothing\n
73  * explicit in the code to prevent this from happening.  But this is less\n
74  * likely than the "isolated room" problem, because each room attempts to\n
75  * connect to another room, in a giant cycle, thus requiring at least two\n
76  * bizarre occurances to create an isolated section of the dungeon.\n
77  *\n
78  * Note that (2.7.9) monster pits have been split into monster "nests"\n
79  * and monster "pits".  The "nests" have a collection of monsters of a\n
80  * given type strewn randomly around the room (jelly, animal, or undead),\n
81  * while the "pits" have a collection of monsters of a given type placed\n
82  * around the room in an organized manner (orc, troll, giant, dragon, or\n
83  * demon).  Note that both "nests" and "pits" are now "level dependant",\n
84  * and both make 16 "expensive" calls to the "get_mon_num()" function.\n
85  *\n
86  * Note that the grid flags changed in a rather drastic manner\n
87  * for Angband 2.8.0 (and 2.7.9+), in particular, dungeon terrain\n
88  * features, such as doors and stairs and traps and rubble and walls,\n
89  * are all handled as a set of 64 possible "terrain features", and\n
90  * not as "fake" objects (440-479) as in pre-2.8.0 versions.\n
91  *\n
92  * The 64 new "dungeon features" will also be used for "visual display"\n
93  * but we must be careful not to allow, for example, the user to display\n
94  * hidden traps in a different way from floors, or secret doors in a way\n
95  * different from granite walls, or even permanent granite in a different\n
96  * way from granite.  \n
97  */
98
99 #include "angband.h"
100 #include "util.h"
101 #include "core.h"
102 #include "bldg.h"
103
104 #include "cmd-dump.h"
105 #include "grid.h"
106 #include "rooms.h"
107 #include "dungeon.h"
108 #include "floor.h"
109 #include "floor-save.h"
110 #include "floor-streams.h"
111 #include "floor-generate.h"
112 #include "floor-events.h"
113 #include "floor-generate.h"
114 #include "feature.h"
115 #include "trap.h"
116 #include "monster.h"
117 #include "quest.h"
118 #include "player-status.h"
119 #include "wild.h"
120 #include "monster-status.h"
121 #include "dungeon-file.h"
122 #include "init.h"
123 #include "feature.h"
124 #include "spells.h"
125
126 #include "world.h"
127 #include "view-mainwindow.h"
128
129 int dun_tun_rnd; 
130 int dun_tun_chg;
131 int dun_tun_con;
132 int dun_tun_pen;
133 int dun_tun_jct;
134
135
136 /*!
137  * Dungeon generation data -- see "cave_gen()"
138  */
139 dun_data *dun;
140
141
142 /*!
143  * @brief 上下左右の外壁数をカウントする / Count the number of walls adjacent to the given grid.
144  * @param y 基準のy座標
145  * @param x 基準のx座標
146  * @return 隣接する外壁の数
147  * @note Assumes "in_bounds()"
148  * @details We count only granite walls and permanent walls.
149  */
150 static int next_to_walls(floor_type* floor_ptr, POSITION y, POSITION x)
151 {
152         int k = 0;
153
154         if (in_bounds(floor_ptr, y + 1, x) && is_extra_bold(floor_ptr, y + 1, x)) k++;
155         if (in_bounds(floor_ptr, y - 1, x) && is_extra_bold(floor_ptr, y - 1, x)) k++;
156         if (in_bounds(floor_ptr, y, x + 1) && is_extra_bold(floor_ptr, y, x + 1)) k++;
157         if (in_bounds(floor_ptr, y, x - 1) && is_extra_bold(floor_ptr, y, x - 1)) k++;
158
159         return (k);
160 }
161
162 /*!
163  * @brief alloc_stairs()の補助として指定の位置に階段を生成できるかの判定を行う / Helper function for alloc_stairs(). Is this a good location for stairs?
164  * @param y 基準のy座標
165  * @param x 基準のx座標
166  * @param walls 最低減隣接させたい外壁の数
167  * @return 階段を生成して問題がないならばTRUEを返す。
168  */
169 static bool alloc_stairs_aux(floor_type *floor_ptr, POSITION y, POSITION x, int walls)
170 {
171         grid_type *g_ptr = &floor_ptr->grid_array[y][x];
172
173         /* Require "naked" floor grid */
174         if (!is_floor_grid(g_ptr)) return FALSE;
175         if (pattern_tile(y, x)) return FALSE;
176         if (g_ptr->o_idx || g_ptr->m_idx) return FALSE;
177
178         /* Require a certain number of adjacent walls */
179         if (next_to_walls(floor_ptr, y, x) < walls) return FALSE;
180
181         return TRUE;
182 }
183
184
185 /*!
186  * @brief 外壁に隣接させて階段を生成する / Places some staircases near walls
187  * @param owner_ptr プレーヤーへの参照ポインタ
188  * @param feat 配置したい地形ID
189  * @param num 配置したい階段の数
190  * @param walls 最低減隣接させたい外壁の数
191  * @return 規定数通りに生成に成功したらTRUEを返す。
192  */
193 static bool alloc_stairs(player_type *owner_ptr, FEAT_IDX feat, int num, int walls)
194 {
195         int i;
196         int shaft_num = 0;
197
198         feature_type *f_ptr = &f_info[feat];
199
200         floor_type *floor_ptr = owner_ptr->current_floor_ptr;
201         if (have_flag(f_ptr->flags, FF_LESS))
202         {
203                 /* No up stairs in town or in ironman mode */
204                 if (ironman_downward || !floor_ptr->dun_level) return TRUE;
205
206                 if (floor_ptr->dun_level > d_info[floor_ptr->dungeon_idx].mindepth)
207                         shaft_num = (randint1(num+1))/2;
208         }
209         else if (have_flag(f_ptr->flags, FF_MORE))
210         {
211                 QUEST_IDX q_idx = quest_number(owner_ptr, floor_ptr->dun_level);
212
213                 /* No downstairs on quest levels */
214                 if (floor_ptr->dun_level > 1 && q_idx)
215                 {
216                         monster_race *r_ptr = &r_info[quest[q_idx].r_idx];
217
218                         /* The quest monster(s) is still alive? */
219                         if (!(r_ptr->flags1 & RF1_UNIQUE) || 0 < r_ptr->max_num)
220                                 return TRUE;
221                 }
222
223                 /* No downstairs at the bottom */
224                 if (floor_ptr->dun_level >= d_info[floor_ptr->dungeon_idx].maxdepth) return TRUE;
225
226                 if ((floor_ptr->dun_level < d_info[floor_ptr->dungeon_idx].maxdepth-1) && !quest_number(owner_ptr, floor_ptr->dun_level+1))
227                         shaft_num = (randint1(num)+1)/2;
228         }
229         else return FALSE;
230
231
232         /* Place "num" stairs */
233         for (i = 0; i < num; i++)
234         {
235                 while (TRUE)
236                 {
237                         POSITION y, x = 0;
238                         grid_type *g_ptr;
239
240                         int candidates = 0;
241                         int pick;
242
243                         for (y = 1; y < floor_ptr->height - 1; y++)
244                         {
245                                 for (x = 1; x < floor_ptr->width - 1; x++)
246                                 {
247                                         if (alloc_stairs_aux(floor_ptr, y, x, walls))
248                                         {
249                                                 /* A valid space found */
250                                                 candidates++;
251                                         }
252                                 }
253                         }
254
255                         /* No valid place! */
256                         if (!candidates)
257                         {
258                                 /* There are exactly no place! */
259                                 if (walls <= 0) return FALSE;
260
261                                 /* Decrease walls limit, and try again */
262                                 walls--;
263                                 continue;
264                         }
265
266                         /* Choose a random one */
267                         pick = randint1(candidates);
268
269                         for (y = 1; y < floor_ptr->height - 1; y++)
270                         {
271                                 for (x = 1; x < floor_ptr->width - 1; x++)
272                                 {
273                                         if (alloc_stairs_aux(floor_ptr, y, x, walls))
274                                         {
275                                                 pick--;
276
277                                                 /* Is this a picked one? */
278                                                 if (!pick) break;
279                                         }
280                                 }
281
282                                 if (!pick) break;
283                         }
284                         g_ptr = &floor_ptr->grid_array[y][x];
285
286                         /* Clear possible garbage of hidden trap */
287                         g_ptr->mimic = 0;
288
289                         /* Clear previous contents, add stairs */
290                         g_ptr->feat = (i < shaft_num) ? feat_state(feat, FF_SHAFT) : feat;
291
292                         /* No longer "FLOOR" */
293                         g_ptr->info &= ~(CAVE_FLOOR);
294
295                         /* Success */
296                         break;
297                 }
298         }
299         return TRUE;
300 }
301
302 /*!
303  * @brief フロア上のランダム位置に各種オブジェクトを配置する / Allocates some objects (using "place" and "type")
304  * @param set 配置したい地形の種類
305  * @param typ 配置したいオブジェクトの種類
306  * @param num 配置したい数
307  * @return 規定数通りに生成に成功したらTRUEを返す。
308  */
309 static void alloc_object(player_type *owner_ptr, int set, EFFECT_ID typ, int num)
310 {
311         POSITION y = 0, x = 0;
312         int k;
313         int dummy = 0;
314         grid_type *g_ptr;
315
316         /* A small level has few objects. */
317         floor_type *floor_ptr = owner_ptr->current_floor_ptr;
318         num = num * floor_ptr->height * floor_ptr->width / (MAX_HGT*MAX_WID) +1;
319
320         /* Place some objects */
321         for (k = 0; k < num; k++)
322         {
323                 /* Pick a "legal" spot */
324                 while (dummy < SAFE_MAX_ATTEMPTS)
325                 {
326                         bool room;
327
328                         dummy++;
329
330                         y = randint0(floor_ptr->height);
331                         x = randint0(floor_ptr->width);
332
333                         g_ptr = &floor_ptr->grid_array[y][x];
334
335                         /* Require "naked" floor grid */
336                         if (!is_floor_grid(g_ptr) || g_ptr->o_idx || g_ptr->m_idx) continue;
337
338                         /* Avoid player location */
339                         if (player_bold(owner_ptr, y, x)) continue;
340
341                         /* Check for "room" */
342                         room = (floor_ptr->grid_array[y][x].info & CAVE_ROOM) ? TRUE : FALSE;
343
344                         /* Require corridor? */
345                         if ((set == ALLOC_SET_CORR) && room) continue;
346
347                         /* Require room? */
348                         if ((set == ALLOC_SET_ROOM) && !room) continue;
349
350                         /* Accept it */
351                         break;
352                 }
353
354                 if (dummy >= SAFE_MAX_ATTEMPTS)
355                 {
356                         msg_print_wizard(CHEAT_DUNGEON, _("アイテムの配置に失敗しました。", "Failed to place object."));
357                         return;
358                 }
359
360
361                 /* Place something */
362                 switch (typ)
363                 {
364                         case ALLOC_TYP_RUBBLE:
365                         {
366                                 place_rubble(floor_ptr, y, x);
367                                 floor_ptr->grid_array[y][x].info &= ~(CAVE_FLOOR);
368                                 break;
369                         }
370
371                         case ALLOC_TYP_TRAP:
372                         {
373                                 place_trap(owner_ptr, y, x);
374                                 floor_ptr->grid_array[y][x].info &= ~(CAVE_FLOOR);
375                                 break;
376                         }
377
378                         case ALLOC_TYP_GOLD:
379                         {
380                                 place_gold(floor_ptr, y, x);
381                                 break;
382                         }
383
384                         case ALLOC_TYP_OBJECT:
385                         {
386                                 place_object(owner_ptr, y, x, 0L);
387                                 break;
388                         }
389                 }
390         }
391 }
392
393
394
395
396 /*!
397  * @brief クエストに関わるモンスターの配置を行う / Place quest monsters
398  * @param creature_ptr プレーヤーへの参照ポインタ
399  * @return 成功したならばTRUEを返す
400  */
401 bool place_quest_monsters(player_type *creature_ptr)
402 {
403         int i;
404
405         /* Handle the quest monster placements */
406         floor_type *floor_ptr = creature_ptr->current_floor_ptr;
407         for (i = 0; i < max_q_idx; i++)
408         {
409                 monster_race *r_ptr;
410                 BIT_FLAGS mode;
411                 int j;
412
413                 if (quest[i].status != QUEST_STATUS_TAKEN ||
414                     (quest[i].type != QUEST_TYPE_KILL_LEVEL &&
415                      quest[i].type != QUEST_TYPE_RANDOM) ||
416                     quest[i].level != floor_ptr->dun_level ||
417                     creature_ptr->dungeon_idx != quest[i].dungeon ||
418                     (quest[i].flags & QUEST_FLAG_PRESET))
419                 {
420                         /* Ignore it */
421                         continue;
422                 }
423
424                 r_ptr = &r_info[quest[i].r_idx];
425
426                 /* Hack -- "unique" monsters must be "unique" */
427                 if ((r_ptr->flags1 & RF1_UNIQUE) &&
428                     (r_ptr->cur_num >= r_ptr->max_num)) continue;
429
430                 mode = (PM_NO_KAGE | PM_NO_PET);
431
432                 if (!(r_ptr->flags1 & RF1_FRIENDS))
433                         mode |= PM_ALLOW_GROUP;
434
435                 for (j = 0; j < (quest[i].max_num - quest[i].cur_num); j++)
436                 {
437                         int k;
438
439                         for (k = 0; k < SAFE_MAX_ATTEMPTS; k++)
440                         {
441                                 POSITION x = 0, y = 0;
442                                 int l;
443
444                                 /* Find an empty grid */
445                                 for (l = SAFE_MAX_ATTEMPTS; l > 0; l--)
446                                 {
447                                         grid_type    *g_ptr;
448                                         feature_type *f_ptr;
449
450                                         y = randint0(floor_ptr->height);
451                                         x = randint0(floor_ptr->width);
452
453                                         g_ptr = &floor_ptr->grid_array[y][x];
454                                         f_ptr = &f_info[g_ptr->feat];
455
456                                         if (!have_flag(f_ptr->flags, FF_MOVE) && !have_flag(f_ptr->flags, FF_CAN_FLY)) continue;
457                                         if (!monster_can_enter(y, x, r_ptr, 0)) continue;
458                                         if (distance(y, x, creature_ptr->y, creature_ptr->x) < 10) continue;
459                                         if (g_ptr->info & CAVE_ICKY) continue;
460                                         else break;
461                                 }
462
463                                 /* Failed to place */
464                                 if (!l) return FALSE;
465
466                                 /* Try to place the monster */
467                                 if (place_monster_aux(0, y, x, quest[i].r_idx, mode))
468                                 {
469                                         /* Success */
470                                         break;
471                                 }
472                                 else
473                                 {
474                                         /* Failure - Try again */
475                                         continue;
476                                 }
477                         }
478
479                         /* Failed to place */
480                         if (k == SAFE_MAX_ATTEMPTS) return FALSE;
481                 }
482         }
483
484         return TRUE;
485 }
486
487 /*!
488  * @brief フロアに洞窟や湖を配置する / Generate various caverns and lakes
489  * @details There were moved from cave_gen().
490  * @return なし
491  */
492 static void gen_caverns_and_lakes(dungeon_type *dungeon_ptr, player_type *owner_ptr)
493 {
494         floor_type *floor_ptr = owner_ptr->current_floor_ptr;
495 #ifdef ALLOW_CAVERNS_AND_LAKES
496         /* Possible "destroyed" level */
497         if ((floor_ptr->dun_level > 30) && one_in_(DUN_DEST*2) && (small_levels) && (dungeon_ptr->flags1 & DF1_DESTROY))
498         {
499                 dun->destroyed = TRUE;
500
501                 /* extra rubble around the place looks cool */
502                 build_lake(floor_ptr, one_in_(2) ? LAKE_T_CAVE : LAKE_T_EARTH_VAULT);
503         }
504
505         /* Make a lake some of the time */
506         if (one_in_(LAKE_LEVEL) && !dun->empty_level && !dun->destroyed &&
507             (dungeon_ptr->flags1 & DF1_LAKE_MASK))
508         {
509                 int count = 0;
510                 if (dungeon_ptr->flags1 & DF1_LAKE_WATER) count += 3;
511                 if (dungeon_ptr->flags1 & DF1_LAKE_LAVA) count += 3;
512                 if (dungeon_ptr->flags1 & DF1_LAKE_RUBBLE) count += 3;
513                 if (dungeon_ptr->flags1 & DF1_LAKE_TREE) count += 3;
514
515                 if (dungeon_ptr->flags1 & DF1_LAKE_LAVA)
516                 {
517                         /* Lake of Lava */
518                         if ((floor_ptr->dun_level > 80) && (randint0(count) < 2)) dun->laketype = LAKE_T_LAVA;
519                         count -= 2;
520
521                         /* Lake of Lava2 */
522                         if (!dun->laketype && (floor_ptr->dun_level > 80) && one_in_(count)) dun->laketype = LAKE_T_FIRE_VAULT;
523                         count--;
524                 }
525
526                 if ((dungeon_ptr->flags1 & DF1_LAKE_WATER) && !dun->laketype)
527                 {
528                         /* Lake of Water */
529                         if ((floor_ptr->dun_level > 50) && randint0(count) < 2) dun->laketype = LAKE_T_WATER;
530                         count -= 2;
531
532                         /* Lake of Water2 */
533                         if (!dun->laketype && (floor_ptr->dun_level > 50) && one_in_(count)) dun->laketype = LAKE_T_WATER_VAULT;
534                         count--;
535                 }
536
537                 if ((dungeon_ptr->flags1 & DF1_LAKE_RUBBLE) && !dun->laketype)
538                 {
539                         /* Lake of rubble */
540                         if ((floor_ptr->dun_level > 35) && (randint0(count) < 2)) dun->laketype = LAKE_T_CAVE;
541                         count -= 2;
542
543                         /* Lake of rubble2 */
544                         if (!dun->laketype && (floor_ptr->dun_level > 35) && one_in_(count)) dun->laketype = LAKE_T_EARTH_VAULT;
545                         count--;
546                 }
547
548                 /* Lake of tree */
549                 if ((floor_ptr->dun_level > 5) && (dungeon_ptr->flags1 & DF1_LAKE_TREE) && !dun->laketype) dun->laketype = LAKE_T_AIR_VAULT;
550
551                 if (dun->laketype)
552                 {
553                         msg_print_wizard(CHEAT_DUNGEON, _("湖を生成します。", "Lake on the level."));
554                         build_lake(floor_ptr, dun->laketype);
555                 }
556         }
557
558         if ((floor_ptr->dun_level > DUN_CAVERN) && !dun->empty_level &&
559             (dungeon_ptr->flags1 & DF1_CAVERN) &&
560             !dun->laketype && !dun->destroyed && (randint1(1000) < floor_ptr->dun_level))
561         {
562                 dun->cavern = TRUE;
563
564                 /* make a large fractal floor_ptr->grid_array in the middle of the dungeon */
565
566                 msg_print_wizard(CHEAT_DUNGEON, _("洞窟を生成。", "Cavern on level."));
567                 build_cavern(floor_ptr);
568         }
569 #endif /* ALLOW_CAVERNS_AND_LAKES */
570
571         /* Hack -- No destroyed "quest" levels */
572         if (quest_number(owner_ptr, floor_ptr->dun_level)) dun->destroyed = FALSE;
573 }
574
575
576 /*!
577  * @brief ダンジョン生成のメインルーチン / Generate a new dungeon level
578  * @details Note that "dun_body" adds about 4000 bytes of memory to the stack.
579  * @param player_ptr プレーヤーへの参照ポインタ
580  * @return ダンジョン生成が全て無事に成功したらTRUEを返す。
581  */
582 static bool cave_gen(player_type *player_ptr)
583 {
584         int i, k;
585         POSITION y, x;
586         dun_data dun_body;
587
588         floor_type *floor_ptr = player_ptr->current_floor_ptr;
589         dungeon_type* dungeon_ptr = &d_info[floor_ptr->dungeon_idx];
590
591         floor_ptr->lite_n = 0;
592         floor_ptr->mon_lite_n = 0;
593         floor_ptr->redraw_n = 0;
594         floor_ptr->view_n = 0;
595
596         /* Global data */
597         dun = &dun_body;
598
599         dun->destroyed = FALSE;
600         dun->empty_level = FALSE;
601         dun->cavern = FALSE;
602         dun->laketype = 0;
603
604         /* Fill the arrays of floors and walls in the good proportions */
605         set_floor_and_wall(floor_ptr->dungeon_idx);
606         get_mon_num_prep(get_monster_hook(), NULL);
607
608         /* Randomize the dungeon creation values */
609         dun_tun_rnd = rand_range(DUN_TUN_RND_MIN, DUN_TUN_RND_MAX);
610         dun_tun_chg = rand_range(DUN_TUN_CHG_MIN, DUN_TUN_CHG_MAX);
611         dun_tun_con = rand_range(DUN_TUN_CON_MIN, DUN_TUN_CON_MAX);
612         dun_tun_pen = rand_range(DUN_TUN_PEN_MIN, DUN_TUN_PEN_MAX);
613         dun_tun_jct = rand_range(DUN_TUN_JCT_MIN, DUN_TUN_JCT_MAX);
614
615         /* Actual maximum number of rooms on this level */
616         dun->row_rooms = floor_ptr->height / BLOCK_HGT;
617         dun->col_rooms = floor_ptr->width / BLOCK_WID;
618
619         /* Initialize the room table */
620         for (y = 0; y < dun->row_rooms; y++)
621         {
622                 for (x = 0; x < dun->col_rooms; x++)
623                 {
624                         dun->room_map[y][x] = FALSE;
625                 }
626         }
627
628         /* No rooms yet */
629         dun->cent_n = 0;
630
631         /* Empty arena levels */
632         if (ironman_empty_levels || ((dungeon_ptr->flags1 & DF1_ARENA) && (empty_levels && one_in_(EMPTY_LEVEL))))
633         {
634                 dun->empty_level = TRUE;
635                 msg_print_wizard(CHEAT_DUNGEON, _("アリーナレベルを生成。", "Arena level."));
636         }
637
638         if (dun->empty_level)
639         {
640                 /* Start with floors */
641                 for (y = 0; y < floor_ptr->height; y++)
642                 {
643                         for (x = 0; x < floor_ptr->width; x++)
644                         {
645                                 place_floor_bold(floor_ptr, y, x);
646                         }
647                 }
648
649                 /* Special boundary walls -- Top and bottom */
650                 for (x = 0; x < floor_ptr->width; x++)
651                 {
652                         place_extra_bold(floor_ptr, 0, x);
653                         place_extra_bold(floor_ptr, floor_ptr->height - 1, x);
654                 }
655
656                 /* Special boundary walls -- Left and right */
657                 for (y = 1; y < (floor_ptr->height - 1); y++)
658                 {
659                         place_extra_bold(floor_ptr, y, 0);
660                         place_extra_bold(floor_ptr, y, floor_ptr->width - 1);
661                 }
662         }
663         else
664         {
665                 /* Start with walls */
666                 for (y = 0; y < floor_ptr->height; y++)
667                 {
668                         for (x = 0; x < floor_ptr->width; x++)
669                         {
670                                 place_extra_bold(floor_ptr, y, x);
671                         }
672                 }
673         }
674
675         /* Generate various caverns and lakes */
676         gen_caverns_and_lakes(dungeon_ptr, player_ptr);
677
678         /* Build maze */
679         if (dungeon_ptr->flags1 & DF1_MAZE)
680         {
681                 build_maze_vault(player_ptr, floor_ptr->width/2-1, floor_ptr->height/2-1, floor_ptr->width-4, floor_ptr->height-4, FALSE);
682
683                 /* Place 3 or 4 down stairs near some walls */
684                 if (!alloc_stairs(player_ptr, feat_down_stair, rand_range(2, 3), 3)) return FALSE;
685
686                 /* Place 1 or 2 up stairs near some walls */
687                 if (!alloc_stairs(player_ptr, feat_up_stair, 1, 3)) return FALSE;
688         }
689
690         /* Build some rooms */
691         else
692         {
693                 int tunnel_fail_count = 0;
694
695                 /*
696                  * Build each type of room in turn until we cannot build any more.
697                  */
698                 if (!generate_rooms(player_ptr)) return FALSE;
699
700
701                 /* Make a hole in the dungeon roof sometimes at level 1 */
702                 if (floor_ptr->dun_level == 1)
703                 {
704                         while (one_in_(DUN_MOS_DEN))
705                         {
706                                 place_trees(player_ptr, randint1(floor_ptr->width - 2), randint1(floor_ptr->height - 2));
707                         }
708                 }
709
710                 /* Destroy the level if necessary */
711                 if (dun->destroyed) destroy_level(player_ptr);
712
713                 /* Hack -- Add some rivers */
714                 if (one_in_(3) && (randint1(floor_ptr->dun_level) > 5))
715                 {
716                         FEAT_IDX feat1 = 0, feat2 = 0;
717
718                         /* Choose water mainly */
719                         if ((randint1(MAX_DEPTH * 2) - 1 > floor_ptr->dun_level) && (dungeon_ptr->flags1 & DF1_WATER_RIVER))
720                         {
721                                 feat1 = feat_deep_water;
722                                 feat2 = feat_shallow_water;
723                         }
724                         else /* others */
725                         {
726                                 FEAT_IDX select_deep_feat[10];
727                                 FEAT_IDX select_shallow_feat[10];
728                                 int select_id_max = 0, selected;
729
730                                 if (dungeon_ptr->flags1 & DF1_LAVA_RIVER)
731                                 {
732                                         select_deep_feat[select_id_max] = feat_deep_lava;
733                                         select_shallow_feat[select_id_max] = feat_shallow_lava;
734                                         select_id_max++;
735                                 }
736                                 if (dungeon_ptr->flags1 & DF1_POISONOUS_RIVER)
737                                 {
738                                         select_deep_feat[select_id_max] = feat_deep_poisonous_puddle;
739                                         select_shallow_feat[select_id_max] = feat_shallow_poisonous_puddle;
740                                         select_id_max++;
741                                 }
742                                 if (dungeon_ptr->flags1 & DF1_ACID_RIVER)
743                                 {
744                                         select_deep_feat[select_id_max] = feat_deep_acid_puddle;
745                                         select_shallow_feat[select_id_max] = feat_shallow_acid_puddle;
746                                         select_id_max++;
747                                 }
748
749                                 if (select_id_max > 0)
750                                 {
751                                         selected = randint0(select_id_max);
752                                         feat1 = select_deep_feat[selected];
753                                         feat2 = select_shallow_feat[selected];
754                                 }
755                                 else
756                                 {
757                                         feat1 = feat_deep_water;
758                                         feat2 = feat_shallow_water;
759                                 }
760                         }
761
762                         if (feat1)
763                         {
764                                 feature_type *f_ptr = &f_info[feat1];
765
766                                 /* Only add river if matches lake type or if have no lake at all */
767                                 if (((dun->laketype == LAKE_T_LAVA) && have_flag(f_ptr->flags, FF_LAVA)) ||
768                                     ((dun->laketype == LAKE_T_WATER) && have_flag(f_ptr->flags, FF_WATER)) ||
769                                      !dun->laketype)
770                                 {
771                                         add_river(floor_ptr, feat1, feat2);
772                                 }
773                         }
774                 }
775
776                 /* Hack -- Scramble the room order */
777                 for (i = 0; i < dun->cent_n; i++)
778                 {
779                         POSITION ty, tx;
780                         int pick = rand_range(0, i);
781
782                         ty = dun->cent[i].y;
783                         tx = dun->cent[i].x;
784                         dun->cent[i].y = dun->cent[pick].y;
785                         dun->cent[i].x = dun->cent[pick].x;
786                         dun->cent[pick].y = ty;
787                         dun->cent[pick].x = tx;
788                 }
789
790                 /* Start with no tunnel doors */
791                 dun->door_n = 0;
792
793                 /* Hack -- connect the first room to the last room */
794                 y = dun->cent[dun->cent_n-1].y;
795                 x = dun->cent[dun->cent_n-1].x;
796
797                 /* Connect all the rooms together */
798                 for (i = 0; i < dun->cent_n; i++)
799                 {
800                         int j;
801
802                         /* Reset the arrays */
803                         dun->tunn_n = 0;
804                         dun->wall_n = 0;
805
806                         /* Connect the room to the previous room */
807                         if (randint1(floor_ptr->dun_level) > dungeon_ptr->tunnel_percent)
808                         {
809                                 /* make cavelike tunnel */
810                                 (void)build_tunnel2(floor_ptr, dun->cent[i].x, dun->cent[i].y, x, y, 2, 2);
811                         }
812                         else
813                         {
814                                 /* make normal tunnel */
815                                 if (!build_tunnel(floor_ptr, dun->cent[i].y, dun->cent[i].x, y, x)) tunnel_fail_count++;
816                         }
817
818                         if (tunnel_fail_count >= 2) return FALSE;
819
820                         /* Turn the tunnel into corridor */
821                         for (j = 0; j < dun->tunn_n; j++)
822                         {
823                                 grid_type *g_ptr;
824                                 feature_type *f_ptr;
825                                 y = dun->tunn[j].y;
826                                 x = dun->tunn[j].x;
827                                 g_ptr = &floor_ptr->grid_array[y][x];
828                                 f_ptr = &f_info[g_ptr->feat];
829
830                                 /* Clear previous contents (if not a lake), add a floor */
831                                 if (!have_flag(f_ptr->flags, FF_MOVE) || (!have_flag(f_ptr->flags, FF_WATER) && !have_flag(f_ptr->flags, FF_LAVA)))
832                                 {
833                                         /* Clear mimic type */
834                                         g_ptr->mimic = 0;
835
836                                         place_floor_grid(g_ptr);
837                                 }
838                         }
839
840                         /* Apply the piercings that we found */
841                         for (j = 0; j < dun->wall_n; j++)
842                         {
843                                 grid_type *g_ptr;
844                                 y = dun->wall[j].y;
845                                 x = dun->wall[j].x;
846                                 g_ptr = &floor_ptr->grid_array[y][x];
847
848                                 /* Clear mimic type */
849                                 g_ptr->mimic = 0;
850
851                                 /* Clear previous contents, add up floor */
852                                 place_floor_grid(g_ptr);
853
854                                 /* Occasional doorway */
855                                 if ((randint0(100) < dun_tun_pen) && !(dungeon_ptr->flags1 & DF1_NO_DOORS))
856                                 {
857                                         /* Place a random door */
858                                         place_random_door(player_ptr, y, x, TRUE);
859                                 }
860                         }
861
862                         /* Remember the "previous" room */
863                         y = dun->cent[i].y;
864                         x = dun->cent[i].x;
865                 }
866
867                 /* Place intersection doors */
868                 for (i = 0; i < dun->door_n; i++)
869                 {
870                         /* Extract junction location */
871                         y = dun->door[i].y;
872                         x = dun->door[i].x;
873
874                         /* Try placing doors */
875                         try_door(player_ptr, y, x - 1);
876                         try_door(player_ptr, y, x + 1);
877                         try_door(player_ptr, y - 1, x);
878                         try_door(player_ptr, y + 1, x);
879                 }
880
881                 /* Place 3 or 4 down stairs near some walls */
882                 if (!alloc_stairs(player_ptr, feat_down_stair, rand_range(3, 4), 3)) return FALSE;
883
884                 /* Place 1 or 2 up stairs near some walls */
885                 if (!alloc_stairs(player_ptr, feat_up_stair, rand_range(1, 2), 3)) return FALSE;
886         }
887
888         if (!dun->laketype)
889         {
890                 if (dungeon_ptr->stream2)
891                 {
892                         /* Hack -- Add some quartz streamers */
893                         for (i = 0; i < DUN_STR_QUA; i++)
894                         {
895                                 build_streamer(player_ptr, dungeon_ptr->stream2, DUN_STR_QC);
896                         }
897                 }
898
899                 if (dungeon_ptr->stream1)
900                 {
901                         /* Hack -- Add some magma streamers */
902                         for (i = 0; i < DUN_STR_MAG; i++)
903                         {
904                                 build_streamer(player_ptr, dungeon_ptr->stream1, DUN_STR_MC);
905                         }
906                 }
907         }
908
909         /* Special boundary walls -- Top and bottom */
910         for (x = 0; x < floor_ptr->width; x++)
911         {
912                 place_bound_perm_wall(&floor_ptr->grid_array[0][x]);
913                 place_bound_perm_wall(&floor_ptr->grid_array[floor_ptr->height - 1][x]);
914         }
915
916         /* Special boundary walls -- Left and right */
917         for (y = 1; y < (floor_ptr->height - 1); y++)
918         {
919                 place_bound_perm_wall(&floor_ptr->grid_array[y][0]);
920                 place_bound_perm_wall(&floor_ptr->grid_array[y][floor_ptr->width - 1]);
921         }
922
923         /* Determine the character location */
924         if (!new_player_spot(player_ptr)) return FALSE;
925
926         if (!place_quest_monsters(player_ptr)) return FALSE;
927
928         /* Basic "amount" */
929         k = (floor_ptr->dun_level / 3);
930         if (k > 10) k = 10;
931         if (k < 2) k = 2;
932
933         /* Pick a base number of monsters */
934         i = dungeon_ptr->min_m_alloc_level;
935
936         /* To make small levels a bit more playable */
937         if (floor_ptr->height < MAX_HGT || floor_ptr->width < MAX_WID)
938         {
939                 int small_tester = i;
940
941                 i = (i * floor_ptr->height) / MAX_HGT;
942                 i = (i * floor_ptr->width) / MAX_WID;
943                 i += 1;
944
945                 if (i > small_tester) i = small_tester;
946                 else msg_format_wizard(CHEAT_DUNGEON,
947                         _("モンスター数基本値を %d から %d に減らします", "Reduced monsters base from %d to %d"), small_tester, i);
948
949         }
950
951         i += randint1(8);
952
953         /* Put some monsters in the dungeon */
954         for (i = i + k; i > 0; i--)
955         {
956                 (void)alloc_monster(0, PM_ALLOW_SLEEP);
957         }
958
959         /* Place some traps in the dungeon */
960         alloc_object(player_ptr, ALLOC_SET_BOTH, ALLOC_TYP_TRAP, randint1(k));
961
962         /* Put some rubble in corridors (except NO_CAVE dungeon (Castle)) */
963         if (!(dungeon_ptr->flags1 & DF1_NO_CAVE)) alloc_object(player_ptr, ALLOC_SET_CORR, ALLOC_TYP_RUBBLE, randint1(k));
964
965         /* Mega Hack -- No object at first level of deeper dungeon */
966         if (player_ptr->enter_dungeon && floor_ptr->dun_level > 1)
967         {
968                 /* No stair scum! */
969                 floor_ptr->object_level = 1;
970         }
971
972         /* Put some objects in rooms */
973         alloc_object(player_ptr, ALLOC_SET_ROOM, ALLOC_TYP_OBJECT, randnor(DUN_AMT_ROOM, 3));
974
975         /* Put some objects/gold in the dungeon */
976         alloc_object(player_ptr, ALLOC_SET_BOTH, ALLOC_TYP_OBJECT, randnor(DUN_AMT_ITEM, 3));
977         alloc_object(player_ptr, ALLOC_SET_BOTH, ALLOC_TYP_GOLD, randnor(DUN_AMT_GOLD, 3));
978
979         /* Set back to default */
980         floor_ptr->object_level = floor_ptr->base_level;
981
982         /* Put the Guardian */
983         if (!alloc_guardian(TRUE)) return FALSE;
984
985         bool is_empty_or_dark = dun->empty_level;
986         is_empty_or_dark &= !one_in_(DARK_EMPTY) || (randint1(100) > floor_ptr->dun_level);
987         is_empty_or_dark &= !(dungeon_ptr->flags1 & DF1_DARKNESS);
988         if (!is_empty_or_dark) return TRUE;
989
990         /* Lite the floor_ptr->grid_array */
991         for (y = 0; y < floor_ptr->height; y++)
992         {
993                 for (x = 0; x < floor_ptr->width; x++)
994                 {
995                         floor_ptr->grid_array[y][x].info |= (CAVE_GLOW);
996                 }
997         }
998
999         return TRUE;
1000 }
1001
1002 /*!
1003  * @brief 闘技場用のアリーナ地形を作成する / Builds the arena after it is entered -KMW-
1004  * @return なし
1005  */
1006 static void build_arena(floor_type *floor_ptr, POSITION *start_y, POSITION *start_x)
1007 {
1008         POSITION yval, y_height, y_depth, xval, x_left, x_right;
1009         POSITION i, j;
1010
1011         yval = SCREEN_HGT / 2;
1012         xval = SCREEN_WID / 2;
1013         y_height = yval - 10;
1014         y_depth = yval + 10;
1015         x_left = xval - 32;
1016         x_right = xval + 32;
1017
1018         for (i = y_height; i <= y_height + 5; i++)
1019                 for (j = x_left; j <= x_right; j++)
1020                 {
1021                         place_extra_perm_bold(floor_ptr, i, j);
1022                         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1023                 }
1024         for (i = y_depth; i >= y_depth - 5; i--)
1025                 for (j = x_left; j <= x_right; j++)
1026                 {
1027                         place_extra_perm_bold(floor_ptr, i, j);
1028                         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1029                 }
1030         for (j = x_left; j <= x_left + 17; j++)
1031                 for (i = y_height; i <= y_depth; i++)
1032                 {
1033                         place_extra_perm_bold(floor_ptr, i, j);
1034                         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1035                 }
1036         for (j = x_right; j >= x_right - 17; j--)
1037                 for (i = y_height; i <= y_depth; i++)
1038                 {
1039                         place_extra_perm_bold(floor_ptr, i, j);
1040                         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1041                 }
1042
1043         place_extra_perm_bold(floor_ptr, y_height + 6, x_left + 18);
1044         floor_ptr->grid_array[y_height + 6][x_left + 18].info |= (CAVE_GLOW | CAVE_MARK);
1045         place_extra_perm_bold(floor_ptr, y_depth - 6, x_left + 18);
1046         floor_ptr->grid_array[y_depth - 6][x_left + 18].info |= (CAVE_GLOW | CAVE_MARK);
1047         place_extra_perm_bold(floor_ptr, y_height + 6, x_right - 18);
1048         floor_ptr->grid_array[y_height + 6][x_right - 18].info |= (CAVE_GLOW | CAVE_MARK);
1049         place_extra_perm_bold(floor_ptr, y_depth - 6, x_right - 18);
1050         floor_ptr->grid_array[y_depth - 6][x_right - 18].info |= (CAVE_GLOW | CAVE_MARK);
1051
1052         *start_y = y_height + 5;
1053         *start_x = xval;
1054         floor_ptr->grid_array[*start_y][*start_x].feat = f_tag_to_index("ARENA_GATE");
1055         floor_ptr->grid_array[*start_y][*start_x].info |= (CAVE_GLOW | CAVE_MARK);
1056 }
1057
1058 /*!
1059  * @brief 挑戦時闘技場への入場処理 / Town logic flow for generation of arena -KMW-
1060  * @return なし
1061  */
1062 static void generate_challenge_arena(floor_type *floor_ptr, player_type *challanger_ptr)
1063 {
1064         POSITION y, x;
1065         POSITION qy = 0;
1066         POSITION qx = 0;
1067
1068         /* Smallest area */
1069         floor_ptr->height = SCREEN_HGT;
1070         floor_ptr->width = SCREEN_WID;
1071
1072         /* Start with solid walls */
1073         for (y = 0; y < MAX_HGT; y++)
1074         {
1075                 for (x = 0; x < MAX_WID; x++)
1076                 {
1077                         /* Create "solid" perma-wall */
1078                         place_solid_perm_bold(floor_ptr, y, x);
1079
1080                         /* Illuminate and memorize the walls */
1081                         floor_ptr->grid_array[y][x].info |= (CAVE_GLOW | CAVE_MARK);
1082                 }
1083         }
1084
1085         /* Then place some floors */
1086         for (y = qy + 1; y < qy + SCREEN_HGT - 1; y++)
1087         {
1088                 for (x = qx + 1; x < qx + SCREEN_WID - 1; x++)
1089                 {
1090                         /* Create empty floor */
1091                         floor_ptr->grid_array[y][x].feat = feat_floor;
1092                 }
1093         }
1094
1095         build_arena(floor_ptr, &y, &x);
1096         player_place(challanger_ptr, y, x);
1097
1098         if(!place_monster_aux(0, challanger_ptr->y + 5, challanger_ptr->x, arena_info[challanger_ptr->arena_number].r_idx, (PM_NO_KAGE | PM_NO_PET)))
1099         {
1100                 challanger_ptr->exit_bldg = TRUE;
1101                 challanger_ptr->arena_number++;
1102                 msg_print(_("相手は欠場した。あなたの不戦勝だ。", "The enemy is unable appear. You won by default."));
1103         }
1104
1105 }
1106
1107 /*!
1108  * @brief モンスター闘技場のフロア生成 / Builds the arena after it is entered -KMW-
1109  * @return なし
1110  */
1111 static void build_battle(floor_type *floor_ptr, POSITION *y, POSITION *x)
1112 {
1113         POSITION yval, y_height, y_depth, xval, x_left, x_right;
1114         register int i, j;
1115
1116         yval = SCREEN_HGT / 2;
1117         xval = SCREEN_WID / 2;
1118         y_height = yval - 10;
1119         y_depth = yval + 10;
1120         x_left = xval - 32;
1121         x_right = xval + 32;
1122
1123         for (i = y_height; i <= y_height + 5; i++)
1124                 for (j = x_left; j <= x_right; j++)
1125                 {
1126                         place_extra_perm_bold(floor_ptr, i, j);
1127                         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1128                 }
1129         for (i = y_depth; i >= y_depth - 3; i--)
1130                 for (j = x_left; j <= x_right; j++)
1131                 {
1132                         place_extra_perm_bold(floor_ptr, i, j);
1133                         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1134                 }
1135         for (j = x_left; j <= x_left + 17; j++)
1136                 for (i = y_height; i <= y_depth; i++)
1137                 {
1138                         place_extra_perm_bold(floor_ptr, i, j);
1139                         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1140                 }
1141         for (j = x_right; j >= x_right - 17; j--)
1142                 for (i = y_height; i <= y_depth; i++)
1143                 {
1144                         place_extra_perm_bold(floor_ptr, i, j);
1145                         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1146                 }
1147
1148         place_extra_perm_bold(floor_ptr, y_height+6, x_left+18);
1149         floor_ptr->grid_array[y_height+6][x_left+18].info |= (CAVE_GLOW | CAVE_MARK);
1150         place_extra_perm_bold(floor_ptr, y_depth-4, x_left+18);
1151         floor_ptr->grid_array[y_depth-4][x_left+18].info |= (CAVE_GLOW | CAVE_MARK);
1152         place_extra_perm_bold(floor_ptr, y_height+6, x_right-18);
1153         floor_ptr->grid_array[y_height+6][x_right-18].info |= (CAVE_GLOW | CAVE_MARK);
1154         place_extra_perm_bold(floor_ptr, y_depth-4, x_right-18);
1155         floor_ptr->grid_array[y_depth-4][x_right-18].info |= (CAVE_GLOW | CAVE_MARK);
1156
1157         for (i = y_height + 1; i <= y_height + 5; i++)
1158                 for (j = x_left + 20 + 2 * (y_height + 5 - i); j <= x_right - 20 - 2 * (y_height + 5 - i); j++)
1159                 {
1160                         floor_ptr->grid_array[i][j].feat = feat_permanent_glass_wall;
1161                 }
1162
1163         i = y_height + 1;
1164         j = xval;
1165         floor_ptr->grid_array[i][j].feat = f_tag_to_index("BUILDING_3");
1166         floor_ptr->grid_array[i][j].info |= (CAVE_GLOW | CAVE_MARK);
1167
1168         *y = i;
1169         *x = j;
1170 }
1171
1172 /*!
1173  * @brief モンスター闘技場への導入処理 / Town logic flow for generation of arena -KMW-
1174  * @return なし
1175  */
1176 static void generate_gambling_arena(player_type *creature_ptr)
1177 {
1178         POSITION y, x;
1179         MONSTER_IDX i;
1180         POSITION qy = 0;
1181         POSITION qx = 0;
1182
1183         /* Start with solid walls */
1184         floor_type *floor_ptr = creature_ptr->current_floor_ptr;
1185         for (y = 0; y < MAX_HGT; y++)
1186         {
1187                 for (x = 0; x < MAX_WID; x++)
1188                 {
1189                         /* Create "solid" perma-wall */
1190                         place_solid_perm_bold(floor_ptr, y, x);
1191
1192                         /* Illuminate and memorize the walls */
1193                         floor_ptr->grid_array[y][x].info |= (CAVE_GLOW | CAVE_MARK);
1194                 }
1195         }
1196
1197         /* Then place some floors */
1198         for (y = qy + 1; y < qy + SCREEN_HGT - 1; y++)
1199         {
1200                 for (x = qx + 1; x < qx + SCREEN_WID - 1; x++)
1201                 {
1202                         /* Create empty floor */
1203                         floor_ptr->grid_array[y][x].feat = feat_floor;
1204                 }
1205         }
1206
1207         build_battle(floor_ptr, &y, &x);
1208
1209         player_place(creature_ptr, y, x);
1210
1211         for(i = 0; i < 4; i++)
1212         {
1213                 place_monster_aux(0, creature_ptr->y + 8 + (i/2)*4, creature_ptr->x - 2 + (i%2)*4, battle_mon[i], (PM_NO_KAGE | PM_NO_PET));
1214                 set_friendly(&floor_ptr->m_list[floor_ptr->grid_array[creature_ptr->y+8+(i/2)*4][creature_ptr->x-2+(i%2)*4].m_idx]);
1215         }
1216         for(i = 1; i < floor_ptr->m_max; i++)
1217         {
1218                 monster_type *m_ptr = &floor_ptr->m_list[i];
1219
1220                 if (!monster_is_valid(m_ptr)) continue;
1221
1222                 m_ptr->mflag2 |= (MFLAG2_MARK | MFLAG2_SHOW);
1223                 update_monster(creature_ptr, i, FALSE);
1224         }
1225 }
1226
1227 /*!
1228  * @brief 固定マップクエストのフロア生成 / Generate a quest level
1229  * @param player_ptr プレーヤーへの参照ポインタ
1230  * @return なし
1231  */
1232 static void generate_fixed_floor(player_type *player_ptr)
1233 {
1234         POSITION x, y;
1235
1236         /* Start with perm walls */
1237         floor_type *floor_ptr = player_ptr->current_floor_ptr;
1238         for (y = 0; y < floor_ptr->height; y++)
1239         {
1240                 for (x = 0; x < floor_ptr->width; x++)
1241                 {
1242                         place_solid_perm_bold(floor_ptr, y, x);
1243                 }
1244         }
1245
1246         /* Set the quest level */
1247         floor_ptr->base_level = quest[floor_ptr->inside_quest].level;
1248         floor_ptr->dun_level = floor_ptr->base_level;
1249         floor_ptr->object_level = floor_ptr->base_level;
1250         floor_ptr->monster_level = floor_ptr->base_level;
1251
1252         if (record_stair) exe_write_diary(player_ptr, DIARY_TO_QUEST, floor_ptr->inside_quest, NULL);
1253         get_mon_num_prep(get_monster_hook(), NULL);
1254
1255         init_flags = INIT_CREATE_DUNGEON;
1256
1257         process_dungeon_file(player_ptr, "q_info.txt", 0, 0, MAX_HGT, MAX_WID);
1258 }
1259
1260 /*!
1261  * @brief ダンジョン時のランダムフロア生成 / Make a real level
1262  * @param player_ptr プレーヤーへの参照ポインタ
1263  * @param concptr
1264  * @return フロアの生成に成功したらTRUE
1265  */
1266 static bool level_gen(player_type *player_ptr, concptr *why)
1267 {
1268         floor_type *floor_ptr = player_ptr->current_floor_ptr;
1269         DUNGEON_IDX d_idx = floor_ptr->dungeon_idx;
1270
1271         if ((always_small_levels || ironman_small_levels ||
1272             (one_in_(SMALL_LEVEL) && small_levels) ||
1273              (d_info[d_idx].flags1 & DF1_BEGINNER) ||
1274             (d_info[d_idx].flags1 & DF1_SMALLEST)) &&
1275             !(d_info[d_idx].flags1 & DF1_BIG))
1276         {
1277                 int level_height, level_width;
1278                 if (d_info[d_idx].flags1 & DF1_SMALLEST)
1279                 {
1280                         level_height = 1;
1281                         level_width = 1;
1282                 }
1283                 else if (d_info[d_idx].flags1 & DF1_BEGINNER)
1284                 {
1285                         level_height = 2;
1286                         level_width = 2;
1287                 }
1288                 else
1289                 {
1290                         level_height = randint1(MAX_HGT / SCREEN_HGT);
1291                         level_width = randint1(MAX_WID / SCREEN_WID);
1292                         bool is_first_level_area = TRUE;
1293                         bool is_max_area = (level_height == MAX_HGT / SCREEN_HGT) && (level_width == MAX_WID / SCREEN_WID);
1294                         while (is_first_level_area || is_max_area)
1295                         {
1296                                 level_height = randint1(MAX_HGT / SCREEN_HGT);
1297                                 level_width = randint1(MAX_WID / SCREEN_WID);
1298                                 is_first_level_area = FALSE;
1299                                 is_max_area = (level_height == MAX_HGT / SCREEN_HGT) && (level_width == MAX_WID / SCREEN_WID);
1300                         }
1301                 }
1302
1303                 floor_ptr->height = level_height * SCREEN_HGT;
1304                 floor_ptr->width = level_width * SCREEN_WID;
1305
1306                 /* Assume illegal panel */
1307                 panel_row_min = floor_ptr->height;
1308                 panel_col_min = floor_ptr->width;
1309
1310                 msg_format_wizard(CHEAT_DUNGEON,
1311                         _("小さなフロア: X:%d, Y:%d", "A 'small' dungeon level: X:%d, Y:%d."),
1312                         floor_ptr->width, floor_ptr->height);
1313         }
1314         else
1315         {
1316                 /* Big dungeon */
1317                 floor_ptr->height = MAX_HGT;
1318                 floor_ptr->width = MAX_WID;
1319
1320                 /* Assume illegal panel */
1321                 panel_row_min = floor_ptr->height;
1322                 panel_col_min = floor_ptr->width;
1323         }
1324
1325         floor_ptr->dungeon_idx = d_idx;
1326         if (!cave_gen(player_ptr))
1327         {
1328                 *why = _("ダンジョン生成に失敗", "could not place player");
1329                 return FALSE;
1330         }
1331
1332         else return TRUE;
1333 }
1334
1335 /*!
1336  * @brief フロアに存在する全マスの記憶状態を初期化する / Wipe all unnecessary flags after grid_array generation
1337  * @return なし
1338  */
1339 void wipe_generate_random_floor_flags(floor_type *floor_ptr)
1340 {
1341         POSITION x, y;
1342
1343         for (y = 0; y < floor_ptr->height; y++)
1344         {
1345                 for (x = 0; x < floor_ptr->width; x++)
1346                 {
1347                         /* Wipe unused flags */
1348                         floor_ptr->grid_array[y][x].info &= ~(CAVE_MASK);
1349                 }
1350         }
1351
1352         if (floor_ptr->dun_level)
1353         {
1354                 for (y = 1; y < floor_ptr->height - 1; y++)
1355                 {
1356                         for (x = 1; x < floor_ptr->width - 1; x++)
1357                         {
1358                                 /* There might be trap */
1359                                 floor_ptr->grid_array[y][x].info |= CAVE_UNSAFE;
1360                         }
1361                 }
1362         }
1363 }
1364
1365 /*!
1366  * @brief フロアの全情報を初期化する / Clear and empty floor.
1367  * @parama player_ptr プレーヤーへの参照ポインタ
1368  * @return なし
1369  */
1370 void clear_cave(player_type *player_ptr)
1371 {
1372         POSITION x, y;
1373         int i;
1374
1375         /* Very simplified version of wipe_o_list() */
1376         floor_type *floor_ptr = player_ptr->current_floor_ptr;
1377         (void)C_WIPE(floor_ptr->o_list, floor_ptr->o_max, object_type);
1378         floor_ptr->o_max = 1;
1379         floor_ptr->o_cnt = 0;
1380
1381         /* Very simplified version of wipe_m_list() */
1382         for (i = 1; i < max_r_idx; i++)
1383                 r_info[i].cur_num = 0;
1384         (void)C_WIPE(floor_ptr->m_list, floor_ptr->m_max, monster_type);
1385         floor_ptr->m_max = 1;
1386         floor_ptr->m_cnt = 0;
1387         for (i = 0; i < MAX_MTIMED; i++) floor_ptr->mproc_max[i] = 0;
1388
1389         /* Pre-calc cur_num of pets in party_mon[] */
1390         precalc_cur_num_of_pet(player_ptr);
1391
1392
1393         /* Start with a blank floor_ptr->grid_array */
1394         for (y = 0; y < MAX_HGT; y++)
1395         {
1396                 for (x = 0; x < MAX_WID; x++)
1397                 {
1398                         grid_type *g_ptr = &floor_ptr->grid_array[y][x];
1399                         g_ptr->info = 0;
1400                         g_ptr->feat = 0;
1401                         g_ptr->o_idx = 0;
1402                         g_ptr->m_idx = 0;
1403                         g_ptr->special = 0;
1404                         g_ptr->mimic = 0;
1405                         g_ptr->cost = 0;
1406                         g_ptr->dist = 0;
1407                         g_ptr->when = 0;
1408                 }
1409         }
1410
1411         /* Set the base level */
1412         floor_ptr->base_level = floor_ptr->dun_level;
1413
1414         /* Reset the monster generation level */
1415         floor_ptr->monster_level = floor_ptr->base_level;
1416
1417         /* Reset the object generation level */
1418         floor_ptr->object_level = floor_ptr->base_level;
1419 }
1420
1421
1422 /*!
1423  * ダンジョンのランダムフロアを生成する / Generates a random dungeon level -RAK-
1424  * @parama player_ptr プレーヤーへの参照ポインタ
1425  * @return なし
1426  * @note Hack -- regenerate any "overflow" levels
1427  */
1428 void generate_floor(player_type *player_ptr)
1429 {
1430         int num;
1431
1432         /* Fill the arrays of floors and walls in the good proportions */
1433         floor_type *floor_ptr = player_ptr->current_floor_ptr;
1434         set_floor_and_wall(floor_ptr->dungeon_idx);
1435
1436         /* Generate */
1437         for (num = 0; TRUE; num++)
1438         {
1439                 bool okay = TRUE;
1440                 concptr why = NULL;
1441
1442                 clear_cave(player_ptr);
1443
1444                 /* Mega-Hack -- no player yet */
1445                 player_ptr->x = player_ptr->y = 0;
1446
1447                 if (floor_ptr->inside_arena)
1448                 {
1449                         generate_challenge_arena(floor_ptr, player_ptr);
1450                 }
1451
1452                 else if (player_ptr->phase_out)
1453                 {
1454                         generate_gambling_arena(player_ptr);
1455                 }
1456
1457                 else if (floor_ptr->inside_quest)
1458                 {
1459                         generate_fixed_floor(player_ptr);
1460                 }
1461
1462                 /* Build the town */
1463                 else if (!floor_ptr->dun_level)
1464                 {
1465                         /* Make the wilderness */
1466                         if (player_ptr->wild_mode) wilderness_gen_small(player_ptr);
1467                         else wilderness_gen(player_ptr);
1468                 }
1469
1470                 /* Build a real level */
1471                 else
1472                 {
1473                         okay = level_gen(player_ptr, &why);
1474                 }
1475
1476
1477                 /* Prevent object over-flow */
1478                 if (floor_ptr->o_max >= current_world_ptr->max_o_idx)
1479                 {
1480                         why = _("アイテムが多すぎる", "too many objects");
1481                         okay = FALSE;
1482                 }
1483                 /* Prevent monster over-flow */
1484                 else if (floor_ptr->m_max >= current_world_ptr->max_m_idx)
1485                 {
1486                         why = _("モンスターが多すぎる", "too many monsters");
1487                         okay = FALSE;
1488                 }
1489
1490                 /* Accept */
1491                 if (okay) break;
1492
1493                 if (why) msg_format(_("生成やり直し(%s)", "Generation restarted (%s)"), why);
1494
1495                 wipe_o_list(floor_ptr);
1496                 wipe_m_list();
1497         }
1498
1499         /* Glow deep lava and building entrances tempor */
1500         glow_deep_lava_and_bldg(player_ptr);
1501
1502         /* Reset flag */
1503         player_ptr->enter_dungeon = FALSE;
1504
1505         wipe_generate_random_floor_flags(floor_ptr);
1506 }
1507
1508 /*!
1509  * @brief build_tunnel用に通路を掘るための方向をランダムに決める / Pick a random direction
1510  * @param rdir Y方向に取るべきベクトル値を返す参照ポインタ
1511  * @param cdir X方向に取るべきベクトル値を返す参照ポインタ
1512  * @return なし
1513  */
1514 static void rand_dir(POSITION *rdir, POSITION *cdir)
1515 {
1516         /* Pick a random direction */
1517         int i = randint0(4);
1518
1519         /* Extract the dy/dx components */
1520         *rdir = ddy_ddd[i];
1521         *cdir = ddx_ddd[i];
1522 }
1523
1524 /*!
1525  * @brief build_tunnel用に通路を掘るための方向を位置関係通りに決める / Always picks a correct direction
1526  * @param rdir Y方向に取るべきベクトル値を返す参照ポインタ
1527  * @param cdir X方向に取るべきベクトル値を返す参照ポインタ
1528  * @param y1 始点Y座標
1529  * @param x1 始点X座標
1530  * @param y2 終点Y座標
1531  * @param x2 終点X座標
1532  * @return なし
1533  */
1534 static void correct_dir(POSITION *rdir, POSITION *cdir, POSITION y1, POSITION x1, POSITION y2, POSITION x2)
1535 {
1536         /* Extract vertical and horizontal directions */
1537         *rdir = (y1 == y2) ? 0 : (y1 < y2) ? 1 : -1;
1538         *cdir = (x1 == x2) ? 0 : (x1 < x2) ? 1 : -1;
1539
1540         /* Never move diagonally */
1541         if (*rdir && *cdir)
1542         {
1543                 if (randint0(100) < 50)
1544                         *rdir = 0;
1545                 else
1546                         *cdir = 0;
1547         }
1548 }
1549
1550 /*!
1551 * @brief 部屋間のトンネルを生成する / Constructs a tunnel between two points
1552 * @param row1 始点Y座標
1553 * @param col1 始点X座標
1554 * @param row2 終点Y座標
1555 * @param col2 終点X座標
1556 * @return 生成に成功したらTRUEを返す
1557 * @details
1558 * This function must be called BEFORE any streamers are created,\n
1559 * since we use the special "granite wall" sub-types to keep track\n
1560 * of legal places for corridors to pierce rooms.\n
1561 *\n
1562 * We use "door_flag" to prevent excessive construction of doors\n
1563 * along overlapping corridors.\n
1564 *\n
1565 * We queue the tunnel grids to prevent door creation along a corridor\n
1566 * which intersects itself.\n
1567 *\n
1568 * We queue the wall piercing grids to prevent a corridor from leaving\n
1569 * a room and then coming back in through the same entrance.\n
1570 *\n
1571 * We "pierce" grids which are "outer" walls of rooms, and when we\n
1572 * do so, we change all adjacent "outer" walls of rooms into "solid"\n
1573 * walls so that no two corridors may use adjacent grids for exits.\n
1574 *\n
1575 * The "solid" wall check prevents corridors from "chopping" the\n
1576 * corners of rooms off, as well as "silly" door placement, and\n
1577 * "excessively wide" room entrances.\n
1578 *\n
1579 * Kind of walls:\n
1580 *   extra -- walls\n
1581 *   inner -- inner room walls\n
1582 *   outer -- outer room walls\n
1583 *   solid -- solid room walls\n
1584 */
1585 bool build_tunnel(floor_type *floor_ptr, POSITION row1, POSITION col1, POSITION row2, POSITION col2)
1586 {
1587         POSITION y, x;
1588         POSITION tmp_row, tmp_col;
1589         POSITION row_dir, col_dir;
1590         POSITION start_row, start_col;
1591         int main_loop_count = 0;
1592
1593         bool door_flag = FALSE;
1594
1595         grid_type *g_ptr;
1596
1597         /* Save the starting location */
1598         start_row = row1;
1599         start_col = col1;
1600
1601         /* Start out in the correct direction */
1602         correct_dir(&row_dir, &col_dir, row1, col1, row2, col2);
1603
1604         /* Keep going until done (or bored) */
1605         while ((row1 != row2) || (col1 != col2))
1606         {
1607                 /* Mega-Hack -- Paranoia -- prevent infinite loops */
1608                 if (main_loop_count++ > 2000) return FALSE;
1609
1610                 /* Allow bends in the tunnel */
1611                 if (randint0(100) < dun_tun_chg)
1612                 {
1613                         /* Acquire the correct direction */
1614                         correct_dir(&row_dir, &col_dir, row1, col1, row2, col2);
1615
1616                         /* Random direction */
1617                         if (randint0(100) < dun_tun_rnd)
1618                         {
1619                                 rand_dir(&row_dir, &col_dir);
1620                         }
1621                 }
1622
1623                 /* Get the next location */
1624                 tmp_row = row1 + row_dir;
1625                 tmp_col = col1 + col_dir;
1626
1627
1628                 /* Extremely Important -- do not leave the dungeon */
1629                 while (!in_bounds(floor_ptr, tmp_row, tmp_col))
1630                 {
1631                         /* Acquire the correct direction */
1632                         correct_dir(&row_dir, &col_dir, row1, col1, row2, col2);
1633
1634                         /* Random direction */
1635                         if (randint0(100) < dun_tun_rnd)
1636                         {
1637                                 rand_dir(&row_dir, &col_dir);
1638                         }
1639
1640                         /* Get the next location */
1641                         tmp_row = row1 + row_dir;
1642                         tmp_col = col1 + col_dir;
1643                 }
1644
1645                 g_ptr = &floor_ptr->grid_array[tmp_row][tmp_col];
1646
1647                 /* Avoid "solid" walls */
1648                 if (is_solid_grid(g_ptr)) continue;
1649
1650                 /* Pierce "outer" walls of rooms */
1651                 if (is_outer_grid(g_ptr))
1652                 {
1653                         /* Acquire the "next" location */
1654                         y = tmp_row + row_dir;
1655                         x = tmp_col + col_dir;
1656
1657                         /* Hack -- Avoid outer/solid walls */
1658                         if (is_outer_bold(floor_ptr, y, x)) continue;
1659                         if (is_solid_bold(floor_ptr, y, x)) continue;
1660
1661                         /* Accept this location */
1662                         row1 = tmp_row;
1663                         col1 = tmp_col;
1664
1665                         /* Save the wall location */
1666                         if (dun->wall_n < WALL_MAX)
1667                         {
1668                                 dun->wall[dun->wall_n].y = row1;
1669                                 dun->wall[dun->wall_n].x = col1;
1670                                 dun->wall_n++;
1671                         }
1672                         else return FALSE;
1673
1674                         /* Forbid re-entry near this piercing */
1675                         for (y = row1 - 1; y <= row1 + 1; y++)
1676                         {
1677                                 for (x = col1 - 1; x <= col1 + 1; x++)
1678                                 {
1679                                         /* Convert adjacent "outer" walls as "solid" walls */
1680                                         if (is_outer_bold(floor_ptr, y, x))
1681                                         {
1682                                                 /* Change the wall to a "solid" wall */
1683                                                 place_solid_noperm_bold(floor_ptr, y, x);
1684                                         }
1685                                 }
1686                         }
1687                 }
1688
1689                 /* Travel quickly through rooms */
1690                 else if (g_ptr->info & (CAVE_ROOM))
1691                 {
1692                         /* Accept the location */
1693                         row1 = tmp_row;
1694                         col1 = tmp_col;
1695                 }
1696
1697                 /* Tunnel through all other walls */
1698                 else if (is_extra_grid(g_ptr) || is_inner_grid(g_ptr) || is_solid_grid(g_ptr))
1699                 {
1700                         /* Accept this location */
1701                         row1 = tmp_row;
1702                         col1 = tmp_col;
1703
1704                         /* Save the tunnel location */
1705                         if (dun->tunn_n < TUNN_MAX)
1706                         {
1707                                 dun->tunn[dun->tunn_n].y = row1;
1708                                 dun->tunn[dun->tunn_n].x = col1;
1709                                 dun->tunn_n++;
1710                         }
1711                         else return FALSE;
1712
1713                         /* Allow door in next grid */
1714                         door_flag = FALSE;
1715                 }
1716
1717                 /* Handle corridor intersections or overlaps */
1718                 else
1719                 {
1720                         /* Accept the location */
1721                         row1 = tmp_row;
1722                         col1 = tmp_col;
1723
1724                         /* Collect legal door locations */
1725                         if (!door_flag)
1726                         {
1727                                 /* Save the door location */
1728                                 if (dun->door_n < DOOR_MAX)
1729                                 {
1730                                         dun->door[dun->door_n].y = row1;
1731                                         dun->door[dun->door_n].x = col1;
1732                                         dun->door_n++;
1733                                 }
1734                                 else return FALSE;
1735
1736                                 /* No door in next grid */
1737                                 door_flag = TRUE;
1738                         }
1739
1740                         /* Hack -- allow pre-emptive tunnel termination */
1741                         if (randint0(100) >= dun_tun_con)
1742                         {
1743                                 /* Distance between row1 and start_row */
1744                                 tmp_row = row1 - start_row;
1745                                 if (tmp_row < 0) tmp_row = (-tmp_row);
1746
1747                                 /* Distance between col1 and start_col */
1748                                 tmp_col = col1 - start_col;
1749                                 if (tmp_col < 0) tmp_col = (-tmp_col);
1750
1751                                 /* Terminate the tunnel */
1752                                 if ((tmp_row > 10) || (tmp_col > 10)) break;
1753                         }
1754                 }
1755         }
1756
1757         return TRUE;
1758 }
1759
1760
1761 /*!
1762 * @brief トンネル生成のための基準点を指定する。
1763 * @param x 基準点を指定するX座標の参照ポインタ、適時値が修正される。
1764 * @param y 基準点を指定するY座標の参照ポインタ、適時値が修正される。
1765 * @param affectwall (調査中)
1766 * @return なし
1767 * @details
1768 * This routine adds the square to the tunnel\n
1769 * It also checks for SOLID walls - and returns a nearby\n
1770 * non-SOLID square in (x,y) so that a simple avoiding\n
1771 * routine can be used. The returned boolean value reflects\n
1772 * whether or not this routine hit a SOLID wall.\n
1773 *\n
1774 * "affectwall" toggles whether or not this new square affects\n
1775 * the boundaries of rooms. - This is used by the catacomb\n
1776 * routine.\n
1777 * @todo 特に詳細な処理の意味を調査すべし
1778 */
1779 static bool set_tunnel(floor_type *floor_ptr, POSITION *x, POSITION *y, bool affectwall)
1780 {
1781         int i, j, dx, dy;
1782
1783         grid_type *g_ptr = &floor_ptr->grid_array[*y][*x];
1784
1785         if (!in_bounds(floor_ptr, *y, *x)) return TRUE;
1786
1787         if (is_inner_grid(g_ptr))
1788         {
1789                 return TRUE;
1790         }
1791
1792         if (is_extra_bold(floor_ptr, *y, *x))
1793         {
1794                 /* Save the tunnel location */
1795                 if (dun->tunn_n < TUNN_MAX)
1796                 {
1797                         dun->tunn[dun->tunn_n].y = *y;
1798                         dun->tunn[dun->tunn_n].x = *x;
1799                         dun->tunn_n++;
1800
1801                         return TRUE;
1802                 }
1803                 else return FALSE;
1804         }
1805
1806         if (is_floor_bold(floor_ptr, *y, *x))
1807         {
1808                 /* Don't do anything */
1809                 return TRUE;
1810         }
1811
1812         if (is_outer_grid(g_ptr) && affectwall)
1813         {
1814                 /* Save the wall location */
1815                 if (dun->wall_n < WALL_MAX)
1816                 {
1817                         dun->wall[dun->wall_n].y = *y;
1818                         dun->wall[dun->wall_n].x = *x;
1819                         dun->wall_n++;
1820                 }
1821                 else return FALSE;
1822
1823                 /* Forbid re-entry near this piercing */
1824                 for (j = *y - 1; j <= *y + 1; j++)
1825                 {
1826                         for (i = *x - 1; i <= *x + 1; i++)
1827                         {
1828                                 /* Convert adjacent "outer" walls as "solid" walls */
1829                                 if (is_outer_bold(floor_ptr, j, i))
1830                                 {
1831                                         /* Change the wall to a "solid" wall */
1832                                         place_solid_noperm_bold(floor_ptr, j, i);
1833                                 }
1834                         }
1835                 }
1836
1837                 /* Clear mimic type */
1838                 floor_ptr->grid_array[*y][*x].mimic = 0;
1839
1840                 place_floor_bold(floor_ptr, *y, *x);
1841
1842                 return TRUE;
1843         }
1844
1845         if (is_solid_grid(g_ptr) && affectwall)
1846         {
1847                 /* cannot place tunnel here - use a square to the side */
1848
1849                 /* find usable square and return value in (x,y) */
1850
1851                 i = 50;
1852
1853                 dy = 0;
1854                 dx = 0;
1855                 while ((i > 0) && is_solid_bold(floor_ptr, *y + dy, *x + dx))
1856                 {
1857                         dy = randint0(3) - 1;
1858                         dx = randint0(3) - 1;
1859
1860                         if (!in_bounds(floor_ptr, *y + dy, *x + dx))
1861                         {
1862                                 dx = 0;
1863                                 dy = 0;
1864                         }
1865
1866                         i--;
1867                 }
1868
1869                 if (i == 0)
1870                 {
1871                         /* Failed for some reason: hack - ignore the solidness */
1872                         place_outer_grid(g_ptr);
1873                         dx = 0;
1874                         dy = 0;
1875                 }
1876
1877                 /* Give new, acceptable coordinate. */
1878                 *x = *x + dx;
1879                 *y = *y + dy;
1880
1881                 return FALSE;
1882         }
1883
1884         return TRUE;
1885 }
1886
1887
1888 /*!
1889 * @brief 外壁を削って「カタコンベ状」の通路を作成する / This routine creates the catacomb-like tunnels by removing extra rock.
1890 * @param x 基準点のX座標
1891 * @param y 基準点のY座標
1892 * @return なし
1893 * @details
1894 * Note that this routine is only called on "even" squares - so it gives
1895 * a natural checkerboard pattern.
1896 */
1897 static void create_cata_tunnel(floor_type *floor_ptr, POSITION x, POSITION y)
1898 {
1899         POSITION x1, y1;
1900
1901         /* Build tunnel */
1902         x1 = x - 1;
1903         y1 = y;
1904         set_tunnel(floor_ptr, &x1, &y1, FALSE);
1905
1906         x1 = x + 1;
1907         y1 = y;
1908         set_tunnel(floor_ptr, &x1, &y1, FALSE);
1909
1910         x1 = x;
1911         y1 = y - 1;
1912         set_tunnel(floor_ptr, &x1, &y1, FALSE);
1913
1914         x1 = x;
1915         y1 = y + 1;
1916         set_tunnel(floor_ptr, &x1, &y1, FALSE);
1917 }
1918
1919
1920 /*!
1921 * @brief トンネル生成処理(詳細調査中)/ This routine does the bulk of the work in creating the new types of tunnels.
1922 * @return なし
1923 * @todo 詳細用調査
1924 * @details
1925 * It is designed to use very simple algorithms to go from (x1,y1) to (x2,y2)\n
1926 * It doesn't need to add any complexity - straight lines are fine.\n
1927 * The SOLID walls are avoided by a recursive algorithm which tries random ways\n
1928 * around the obstical until it works.  The number of itterations is counted, and it\n
1929 * this gets too large the routine exits. This should stop any crashes - but may leave\n
1930 * small gaps in the tunnel where there are too many SOLID walls.\n
1931 *\n
1932 * Type 1 tunnels are extremely simple - straight line from A to B.  This is only used\n
1933 * as a part of the dodge SOLID walls algorithm.\n
1934 *\n
1935 * Type 2 tunnels are made of two straight lines at right angles. When this is used with\n
1936 * short line segments it gives the "cavelike" tunnels seen deeper in the dungeon.\n
1937 *\n
1938 * Type 3 tunnels are made of two straight lines like type 2, but with extra rock removed.\n
1939 * This, when used with longer line segments gives the "catacomb-like" tunnels seen near\n
1940 * the surface.\n
1941 */
1942 static void short_seg_hack(floor_type *floor_ptr, POSITION x1, POSITION y1, POSITION x2, POSITION y2, int type, int count, bool *fail)
1943 {
1944         int i;
1945         POSITION x, y;
1946         int length;
1947
1948         /* Check for early exit */
1949         if (!(*fail)) return;
1950
1951         length = distance(x1, y1, x2, y2);
1952
1953         count++;
1954
1955         if ((type == 1) && (length != 0))
1956         {
1957
1958                 for (i = 0; i <= length; i++)
1959                 {
1960                         x = x1 + i * (x2 - x1) / length;
1961                         y = y1 + i * (y2 - y1) / length;
1962                         if (!set_tunnel(floor_ptr, &x, &y, TRUE))
1963                         {
1964                                 if (count > 50)
1965                                 {
1966                                         /* This isn't working - probably have an infinite loop */
1967                                         *fail = FALSE;
1968                                         return;
1969                                 }
1970
1971                                 /* solid wall - so try to go around */
1972                                 short_seg_hack(floor_ptr, x, y, x1 + (i - 1) * (x2 - x1) / length, y1 + (i - 1) * (y2 - y1) / length, 1, count, fail);
1973                                 short_seg_hack(floor_ptr, x, y, x1 + (i + 1) * (x2 - x1) / length, y1 + (i + 1) * (y2 - y1) / length, 1, count, fail);
1974                         }
1975                 }
1976         }
1977         else if ((type == 2) || (type == 3))
1978         {
1979                 if (x1 < x2)
1980                 {
1981                         for (i = x1; i <= x2; i++)
1982                         {
1983                                 x = i;
1984                                 y = y1;
1985                                 if (!set_tunnel(floor_ptr, &x, &y, TRUE))
1986                                 {
1987                                         /* solid wall - so try to go around */
1988                                         short_seg_hack(floor_ptr, x, y, i - 1, y1, 1, count, fail);
1989                                         short_seg_hack(floor_ptr, x, y, i + 1, y1, 1, count, fail);
1990                                 }
1991                                 if ((type == 3) && ((x + y) % 2))
1992                                 {
1993                                         create_cata_tunnel(floor_ptr, i, y1);
1994                                 }
1995                         }
1996                 }
1997                 else
1998                 {
1999                         for (i = x2; i <= x1; i++)
2000                         {
2001                                 x = i;
2002                                 y = y1;
2003                                 if (!set_tunnel(floor_ptr, &x, &y, TRUE))
2004                                 {
2005                                         /* solid wall - so try to go around */
2006                                         short_seg_hack(floor_ptr, x, y, i - 1, y1, 1, count, fail);
2007                                         short_seg_hack(floor_ptr, x, y, i + 1, y1, 1, count, fail);
2008                                 }
2009                                 if ((type == 3) && ((x + y) % 2))
2010                                 {
2011                                         create_cata_tunnel(floor_ptr, i, y1);
2012                                 }
2013                         }
2014
2015                 }
2016                 if (y1 < y2)
2017                 {
2018                         for (i = y1; i <= y2; i++)
2019                         {
2020                                 x = x2;
2021                                 y = i;
2022                                 if (!set_tunnel(floor_ptr, &x, &y, TRUE))
2023                                 {
2024                                         /* solid wall - so try to go around */
2025                                         short_seg_hack(floor_ptr, x, y, x2, i - 1, 1, count, fail);
2026                                         short_seg_hack(floor_ptr, x, y, x2, i + 1, 1, count, fail);
2027                                 }
2028                                 if ((type == 3) && ((x + y) % 2))
2029                                 {
2030                                         create_cata_tunnel(floor_ptr, x2, i);
2031                                 }
2032                         }
2033                 }
2034                 else
2035                 {
2036                         for (i = y2; i <= y1; i++)
2037                         {
2038                                 x = x2;
2039                                 y = i;
2040                                 if (!set_tunnel(floor_ptr, &x, &y, TRUE))
2041                                 {
2042                                         /* solid wall - so try to go around */
2043                                         short_seg_hack(floor_ptr, x, y, x2, i - 1, 1, count, fail);
2044                                         short_seg_hack(floor_ptr, x, y, x2, i + 1, 1, count, fail);
2045                                 }
2046                                 if ((type == 3) && ((x + y) % 2))
2047                                 {
2048                                         create_cata_tunnel(floor_ptr, x2, i);
2049                                 }
2050                         }
2051                 }
2052         }
2053 }
2054
2055
2056 /*!
2057 * @brief 特定の壁(永久壁など)を避けながら部屋間の通路を作成する / This routine maps a path from (x1, y1) to (x2, y2) avoiding SOLID walls.
2058 * @return なし
2059 * @todo 詳細要調査
2060 * @details
2061 * Permanent rock is ignored in this path finding- sometimes there is no\n
2062 * path around anyway -so there will be a crash if we try to find one.\n
2063 * This routine is much like the river creation routine in Zangband.\n
2064 * It works by dividing a line segment into two.  The segments are divided\n
2065 * until they are less than "cutoff" - when the corresponding routine from\n
2066 * "short_seg_hack" is called.\n
2067 * Note it is VERY important that the "stop if hit another passage" logic\n
2068 * stays as is.  Without this the dungeon turns into Swiss Cheese...\n
2069 */
2070 bool build_tunnel2(floor_type *floor_ptr, POSITION x1, POSITION y1, POSITION x2, POSITION y2, int type, int cutoff)
2071 {
2072         POSITION x3, y3, dx, dy;
2073         POSITION changex, changey;
2074         int length;
2075         int i;
2076         bool retval, firstsuccede;
2077         grid_type *g_ptr;
2078
2079         length = distance(x1, y1, x2, y2);
2080
2081         if (length > cutoff)
2082         {
2083                 /*
2084                 * Divide path in half and call routine twice.
2085                 */
2086                 dx = (x2 - x1) / 2;
2087                 dy = (y2 - y1) / 2;
2088
2089                 /* perturbation perpendicular to path */
2090                 changex = (randint0(abs(dy) + 2) * 2 - abs(dy) - 1) / 2;
2091                 changey = (randint0(abs(dx) + 2) * 2 - abs(dx) - 1) / 2;
2092
2093                 /* Work out "mid" ponit */
2094                 x3 = x1 + dx + changex;
2095                 y3 = y1 + dy + changey;
2096
2097                 /* See if in bounds - if not - do not perturb point */
2098                 if (!in_bounds(floor_ptr, y3, x3))
2099                 {
2100                         x3 = (x1 + x2) / 2;
2101                         y3 = (y1 + y2) / 2;
2102                 }
2103                 /* cache g_ptr */
2104                 g_ptr = &floor_ptr->grid_array[y3][x3];
2105                 if (is_solid_grid(g_ptr))
2106                 {
2107                         /* move midpoint a bit to avoid problem. */
2108
2109                         i = 50;
2110
2111                         dy = 0;
2112                         dx = 0;
2113                         while ((i > 0) && is_solid_bold(floor_ptr, y3 + dy, x3 + dx))
2114                         {
2115                                 dy = randint0(3) - 1;
2116                                 dx = randint0(3) - 1;
2117                                 if (!in_bounds(floor_ptr, y3 + dy, x3 + dx))
2118                                 {
2119                                         dx = 0;
2120                                         dy = 0;
2121                                 }
2122                                 i--;
2123                         }
2124
2125                         if (i == 0)
2126                         {
2127                                 /* Failed for some reason: hack - ignore the solidness */
2128                                 place_outer_bold(floor_ptr, y3, x3);
2129                                 dx = 0;
2130                                 dy = 0;
2131                         }
2132                         y3 += dy;
2133                         x3 += dx;
2134                         g_ptr = &floor_ptr->grid_array[y3][x3];
2135                 }
2136
2137                 if (is_floor_grid(g_ptr))
2138                 {
2139                         if (build_tunnel2(floor_ptr, x1, y1, x3, y3, type, cutoff))
2140                         {
2141                                 if ((floor_ptr->grid_array[y3][x3].info & CAVE_ROOM) || (randint1(100) > 95))
2142                                 {
2143                                         /* do second half only if works + if have hit a room */
2144                                         retval = build_tunnel2(floor_ptr, x3, y3, x2, y2, type, cutoff);
2145                                 }
2146                                 else
2147                                 {
2148                                         /* have hit another tunnel - make a set of doors here */
2149                                         retval = FALSE;
2150
2151                                         /* Save the door location */
2152                                         if (dun->door_n < DOOR_MAX)
2153                                         {
2154                                                 dun->door[dun->door_n].y = y3;
2155                                                 dun->door[dun->door_n].x = x3;
2156                                                 dun->door_n++;
2157                                         }
2158                                         else return FALSE;
2159                                 }
2160                                 firstsuccede = TRUE;
2161                         }
2162                         else
2163                         {
2164                                 /* false- didn't work all the way */
2165                                 retval = FALSE;
2166                                 firstsuccede = FALSE;
2167                         }
2168                 }
2169                 else
2170                 {
2171                         /* tunnel through walls */
2172                         if (build_tunnel2(floor_ptr, x1, y1, x3, y3, type, cutoff))
2173                         {
2174                                 retval = build_tunnel2(floor_ptr, x3, y3, x2, y2, type, cutoff);
2175                                 firstsuccede = TRUE;
2176                         }
2177                         else
2178                         {
2179                                 /* false- didn't work all the way */
2180                                 retval = FALSE;
2181                                 firstsuccede = FALSE;
2182                         }
2183                 }
2184                 if (firstsuccede)
2185                 {
2186                         /* only do this if the first half has worked */
2187                         set_tunnel(floor_ptr, &x3, &y3, TRUE);
2188                 }
2189                 /* return value calculated above */
2190                 return retval;
2191         }
2192         else
2193         {
2194                 /* Do a short segment */
2195                 retval = TRUE;
2196                 short_seg_hack(floor_ptr, x1, y1, x2, y2, type, 0, &retval);
2197
2198                 /* Hack - ignore return value so avoid infinite loops */
2199                 return TRUE;
2200         }
2201 }
2202