OSDN Git Service

モンスターのテレポートバックやテレポートで候補位置が同じだった場合に
[hengband/hengband.git] / src / floors.c
1 /* File: floors.c */
2
3 /* Purpose: management of the saved floor */
4
5 /*
6  * Copyright (c) 2002  Mogami
7  *
8  * This software may be copied and distributed for educational, research, and
9  * not for profit purposes provided that this copyright and statement are
10  * included in all such copies.
11  */
12
13 #include "angband.h"
14 #include "grid.h"
15
16
17 static s16b new_floor_id;       /* floor_id of the destination */
18 static u32b change_floor_mode;  /* Mode flags for changing floor */
19 static u32b latest_visit_mark;  /* Max number of visit_mark */
20
21
22 /*
23  * Initialize saved_floors array.  Make sure that old temporal files
24  * are not remaining as gurbages.
25  */
26 void init_saved_floors(bool force)
27 {
28         char floor_savefile[1024];
29         int i;
30         int fd = -1;
31         int mode = 0644;
32
33 #ifdef SET_UID
34 # ifdef SECURE
35         /* Get "games" permissions */
36         beGames();
37 # endif
38 #endif
39
40         for (i = 0; i < MAX_SAVED_FLOORS; i++)
41         {
42                 saved_floor_type *sf_ptr = &saved_floors[i];
43
44                 /* File name */
45                 sprintf(floor_savefile, "%s.F%02d", savefile, i);
46
47                 /* Grab permissions */
48                 safe_setuid_grab();
49
50                 /* Try to create the file */
51                 fd = fd_make(floor_savefile, mode);
52
53                 /* Drop permissions */
54                 safe_setuid_drop();
55
56                 /* Failed! */
57                 if (fd < 0)
58                 {
59                         if (!force)
60                         {
61 #ifdef JP
62                                 msg_print("¥¨¥é¡¼¡§¸Å¤¤¥Æ¥ó¥Ý¥é¥ê¡¦¥Õ¥¡¥¤¥ë¤¬»Ä¤Ã¤Æ¤¤¤Þ¤¹¡£");
63                                 msg_print("ÊѶòÈÚÅܤòÆó½Å¤Ëµ¯Æ°¤·¤Æ¤¤¤Ê¤¤¤«³Îǧ¤·¤Æ¤¯¤À¤µ¤¤¡£");
64                                 msg_print("²áµî¤ËÊѶòÈÚÅܤ¬¥¯¥é¥Ã¥·¥å¤·¤¿¾ì¹ç¤Ï°ì»þ¥Õ¥¡¥¤¥ë¤ò");
65                                 msg_print("¶¯À©Åª¤Ëºï½ü¤·¤Æ¼Â¹Ô¤ò³¤±¤é¤ì¤Þ¤¹¡£");
66                                 if (!get_check("¶¯À©Åª¤Ëºï½ü¤·¤Æ¤â¤è¤í¤·¤¤¤Ç¤¹¤«¡©")) quit("¼Â¹ÔÃæ»ß");
67 #else
68                                 msg_print("Error: There are old temporal files.");
69                                 msg_print("Make sure you are not running two game processes simultaneously.");
70                                 msg_print("If the temporal files are garbages of old crashed process, ");
71                                 msg_print("you can delete it safely.");
72                                 if (!get_check("Do you delete old temporal files? ")) quit("Aborted.");
73 #endif
74                                 force = TRUE;
75                         }
76                 }
77                 else
78                 {
79                         /* Close the "fd" */
80                         (void)fd_close(fd);
81                 }
82
83                 /* Grab permissions */
84                 safe_setuid_grab();
85
86                 /* Simply kill the temporal file */ 
87                 (void)fd_kill(floor_savefile);
88
89                 /* Drop permissions */
90                 safe_setuid_drop();
91
92                 sf_ptr->floor_id = 0;
93         }
94
95         /* No floor_id used yet (No.0 is reserved to indicate non existance) */
96         max_floor_id = 1;
97
98         /* vist_mark is from 1 */
99         latest_visit_mark = 1;
100
101         /* A sign to mark temporal files */
102         saved_floor_file_sign = time(NULL);
103
104         /* No next floor yet */
105         new_floor_id = 0;
106
107         /* No change floor mode yet */
108         change_floor_mode = 0;
109
110 #ifdef SET_UID
111 # ifdef SECURE
112         /* Drop "games" permissions */
113         bePlayer();
114 # endif
115 #endif
116 }
117
118
119 /*
120  * Kill temporal files
121  * Should be called just before the game quit.
122  */
123 void clear_saved_floor_files(void)
124 {
125         char floor_savefile[1024];
126         int i;
127
128 #ifdef SET_UID
129 # ifdef SECURE
130         /* Get "games" permissions */
131         beGames();
132 # endif
133 #endif
134
135         for (i = 0; i < MAX_SAVED_FLOORS; i++)
136         {
137                 saved_floor_type *sf_ptr = &saved_floors[i];
138
139                 /* No temporal file */
140                 if (!sf_ptr->floor_id) continue;
141                 if (sf_ptr->floor_id == p_ptr->floor_id) continue;
142
143                 /* File name */
144                 sprintf(floor_savefile, "%s.F%02d", savefile, i);
145
146                 /* Grab permissions */
147                 safe_setuid_grab();
148
149                 /* Simply kill the temporal file */ 
150                 (void)fd_kill(floor_savefile);
151
152                 /* Drop permissions */
153                 safe_setuid_drop();
154         }
155
156 #ifdef SET_UID
157 # ifdef SECURE
158         /* Drop "games" permissions */
159         bePlayer();
160 # endif
161 #endif
162 }
163
164
165 /*
166  * Get a pointer for an item of the saved_floors array.
167  */
168 saved_floor_type *get_sf_ptr(s16b floor_id)
169 {
170         int i;
171
172         /* floor_id No.0 indicates no floor */
173         if (!floor_id) return NULL;
174
175         for (i = 0; i < MAX_SAVED_FLOORS; i++)
176         {
177                 saved_floor_type *sf_ptr = &saved_floors[i];
178
179                 if (sf_ptr->floor_id == floor_id) return sf_ptr;
180         }
181
182         /* None found */
183         return NULL;
184 }
185
186
187 /*
188  * kill a saved floor and get an empty space
189  */
190 static void kill_saved_floor(saved_floor_type *sf_ptr)
191 {
192         char floor_savefile[1024];
193
194         /* Already empty */
195         if (!sf_ptr->floor_id) return;
196
197         if (sf_ptr->floor_id == p_ptr->floor_id)
198         {
199                 /* Kill current floor */
200                 p_ptr->floor_id = 0;
201
202                 /* Current floor doesn't have temporal file */
203         }
204         else 
205         {
206                 /* File name */
207                 sprintf(floor_savefile, "%s.F%02d", savefile, (int)sf_ptr->savefile_id);
208
209                 /* Grab permissions */
210                 safe_setuid_grab();
211
212                 /* Simply kill the temporal file */ 
213                 (void)fd_kill(floor_savefile);
214
215                 /* Drop permissions */
216                 safe_setuid_drop();
217         }
218
219         /* No longer exists */
220         sf_ptr->floor_id = 0;
221 }
222
223
224 /*
225  * Initialize new saved floor and get its floor id.  If number of
226  * saved floors are already MAX_SAVED_FLOORS, kill the oldest one.
227  */
228 s16b get_new_floor_id(void)
229 {
230         saved_floor_type *sf_ptr;
231         int i;
232
233         /* Look for empty space */
234         for (i = 0; i < MAX_SAVED_FLOORS; i++)
235         {
236                 sf_ptr = &saved_floors[i];
237
238                 if (!sf_ptr->floor_id) break;
239         }
240
241         /* None found */
242         if (i == MAX_SAVED_FLOORS)
243         {
244                 int oldest = 0;
245                 u32b oldest_visit = 0xffffffffL;
246
247                 /* Search for oldest */
248                 for (i = 0; i < MAX_SAVED_FLOORS; i++)
249                 {
250                         sf_ptr = &saved_floors[i];
251
252                         /* Don't kill current floor */
253                         if (sf_ptr->floor_id == p_ptr->floor_id) continue;
254
255                         /* Don't kill newer */
256                         if (sf_ptr->visit_mark > oldest_visit) continue;
257
258                         oldest = i;
259                         oldest_visit = sf_ptr->visit_mark;
260                 }
261
262                 /* Kill oldest saved floor */
263                 sf_ptr = &saved_floors[oldest];
264                 kill_saved_floor(sf_ptr);
265
266                 /* Use it */
267                 i = oldest;
268         }
269
270         /* Prepare new floor data */
271         sf_ptr->savefile_id = i;
272         sf_ptr->floor_id = max_floor_id;
273         sf_ptr->last_visit = 0;
274         sf_ptr->upper_floor_id = 0;
275         sf_ptr->lower_floor_id = 0;
276         sf_ptr->visit_mark = latest_visit_mark++;
277
278         /* sf_ptr->dun_level is not yet decided */
279
280
281         /* Increment number of floor_id */
282         if (max_floor_id < MAX_SHORT) max_floor_id++;
283
284         /* 32767 floor_ids are all used up!  Re-use ancient IDs */
285         else max_floor_id = 1;
286
287         return sf_ptr->floor_id;
288 }
289
290
291 /*
292  * Prepare mode flags of changing floor
293  */
294 void prepare_change_floor_mode(u32b mode)
295 {
296         change_floor_mode |= mode;
297 }
298
299
300 /*
301  * Builds the dead end
302  */
303 static void build_dead_end(void)
304 {
305         int x,y;
306
307         /* Clear and empty the cave */
308         clear_cave();
309
310         /* Fill the arrays of floors and walls in the good proportions */
311         set_floor_and_wall(0);
312
313         /* Smallest area */
314         cur_hgt = SCREEN_HGT;
315         cur_wid = SCREEN_WID;
316
317         /* Filled with permanent walls */
318         for (y = 0; y < MAX_HGT; y++)
319         {
320                 for (x = 0; x < MAX_WID; x++)
321                 {
322                         /* Create "solid" perma-wall */
323                         place_solid_perm_bold(y, x);
324                 }
325         }
326
327         /* Place at center of the floor */
328         py = cur_hgt / 2;
329         px = cur_wid / 2;
330
331         /* Give one square */
332         place_floor_bold(py, px);
333 }
334
335
336 /*
337  * Preserve_pets
338  */
339 static void preserve_pet(void)
340 {
341         int num, i;
342
343         for (num = 0; num < MAX_PARTY_MON; num++)
344         {
345                 party_mon[num].r_idx = 0;
346         }
347
348         if (p_ptr->riding)
349         {
350                 monster_type *m_ptr = &m_list[p_ptr->riding];
351
352                 /* Pet of other pet don't follow. */
353                 if (m_ptr->parent_m_idx)
354                 {
355                         p_ptr->riding = 0;
356                         p_ptr->pet_extra_flags &= ~(PF_RYOUTE);
357                         p_ptr->riding_ryoute = p_ptr->old_riding_ryoute = FALSE;
358                 }
359                 else
360                 {
361                         /* Preserve the mount */
362                         COPY(&party_mon[0], m_ptr, monster_type);
363
364                         /* Delete from this floor */
365                         delete_monster_idx(p_ptr->riding);
366                 }
367         }
368
369         /*
370          * If player is in wild mode, no pets are preserved
371          * except a monster whom player riding
372          */
373         if (!p_ptr->wild_mode && !p_ptr->inside_arena && !p_ptr->inside_battle)
374         {
375                 for (i = m_max - 1, num = 1; (i >= 1 && num < MAX_PARTY_MON); i--)
376                 {
377                         monster_type *m_ptr = &m_list[i];
378
379                         if (!m_ptr->r_idx) continue;
380                         if (!is_pet(m_ptr)) continue;
381                         if (i == p_ptr->riding) continue;
382
383                         if (reinit_wilderness)
384                         {
385                                 /* Don't lose sight of pets when getting a Quest */
386                         }
387                         else
388                         {
389                                 int dis = distance(py, px, m_ptr->fy, m_ptr->fx);
390
391                                 /* Confused (etc.) monsters don't follow. */
392                                 if (m_ptr->confused || m_ptr->stunned || m_ptr->csleep) continue;
393
394                                 /* Pet of other pet don't follow. */
395                                 if (m_ptr->parent_m_idx) continue;
396
397                                 /*
398                                  * Pets with nickname will follow even from 3 blocks away
399                                  * when you or the pet can see the other.
400                                  */
401                                 if (m_ptr->nickname && 
402                                     ((player_has_los_bold(m_ptr->fy, m_ptr->fx) && projectable(py, px, m_ptr->fy, m_ptr->fx)) ||
403                                      (los(m_ptr->fy, m_ptr->fx, py, px) && projectable(m_ptr->fy, m_ptr->fx, py, px))))
404                                 {
405                                         if (dis > 3) continue;
406                                 }
407                                 else
408                                 {
409                                         if (dis > 1) continue;
410                                 }
411                         }
412
413                         COPY(&party_mon[num], &m_list[i], monster_type);
414
415                         num++;
416
417                         /* Delete from this floor */
418                         delete_monster_idx(i);
419                 }
420         }
421
422         if (record_named_pet)
423         {
424                 for (i = m_max - 1; i >=1; i--)
425                 {
426                         monster_type *m_ptr = &m_list[i];
427                         char m_name[80];
428
429                         if (!m_ptr->r_idx) continue;
430                         if (!is_pet(m_ptr)) continue;
431                         if (!m_ptr->nickname) continue;
432                         if (p_ptr->riding == i) continue;
433
434                         monster_desc(m_name, m_ptr, MD_ASSUME_VISIBLE | MD_INDEF_VISIBLE);
435                         do_cmd_write_nikki(NIKKI_NAMED_PET, 4, m_name);
436                 }
437         }
438
439
440         /* Pet of other pet may disappear. */
441         for (i = m_max - 1; i >=1; i--)
442         {
443                 monster_type *m_ptr = &m_list[i];
444
445                 /* Are there its parent? */
446                 if (m_ptr->parent_m_idx && !m_list[m_ptr->parent_m_idx].r_idx)
447                 {
448                         /* Its parent have gone, it also goes away. */
449
450                         if (is_seen(m_ptr))
451                         {
452                                 char m_name[80];
453
454                                 /* Acquire the monster name */
455                                 monster_desc(m_name, m_ptr, 0);
456
457 #ifdef JP
458                                 msg_format("%s¤Ï¾Ã¤¨µî¤Ã¤¿¡ª", m_name);
459 #else
460                                 msg_format("%^s disappears!", m_name);
461 #endif
462                         }
463
464                         /* Delete the monster */
465                         delete_monster_idx(i);
466                 }
467         }
468 }
469
470
471 /*
472  * Pre-calculate the racial counters of preserved pets
473  * To prevent multiple generation of unique monster who is the minion of player
474  */
475 void precalc_cur_num_of_pet(void)
476 {
477         monster_type *m_ptr;
478         int i;
479         int max_num = p_ptr->wild_mode ? 1 : MAX_PARTY_MON;
480
481         for (i = 0; i < max_num; i++)
482         {
483                 m_ptr = &party_mon[i];
484
485                 /* Skip empty monsters */
486                 if (!m_ptr->r_idx) continue;
487
488                 /* Hack -- Increase the racial counter */
489                 real_r_ptr(m_ptr)->cur_num++;
490         }
491 }
492
493
494 /*
495  * Place preserved pet monsters on new floor
496  */
497 static void place_pet(void)
498 {
499         int i;
500         int max_num = p_ptr->wild_mode ? 1 : MAX_PARTY_MON;
501
502         for (i = 0; i < max_num; i++)
503         {
504                 int cy, cx, m_idx;
505
506                 if (!(party_mon[i].r_idx)) continue;
507
508                 if (i == 0)
509                 {
510                         m_idx = m_pop();
511                         p_ptr->riding = m_idx;
512                         if (m_idx)
513                         {
514                                 cy = py;
515                                 cx = px;
516                         }
517                 }
518                 else
519                 {
520                         int j, d;
521
522                         for (d = 1; d < 6; d++)
523                         {
524                                 for (j = 1000; j > 0; j--)
525                                 {
526                                         scatter(&cy, &cx, py, px, d, 0);
527                                         if (monster_can_enter(cy, cx, &r_info[party_mon[i].r_idx], 0)) break;
528                                 }
529                                 if (j) break;
530                         }
531                         m_idx = (d == 6) ? 0 : m_pop();
532                 }
533
534                 if (m_idx)
535                 {
536                         monster_type *m_ptr = &m_list[m_idx];
537                         monster_race *r_ptr;
538
539                         cave[cy][cx].m_idx = m_idx;
540
541                         m_ptr->r_idx = party_mon[i].r_idx;
542
543                         /* Copy all member of the structure */
544                         *m_ptr = party_mon[i];
545                         r_ptr = real_r_ptr(m_ptr);
546
547                         m_ptr->fy = cy;
548                         m_ptr->fx = cx;
549                         m_ptr->ml = TRUE;
550                         m_ptr->csleep = 0;
551
552                         /* Paranoia */
553                         m_ptr->hold_o_idx = 0;
554                         m_ptr->target_y = 0;
555
556                         if ((r_ptr->flags1 & RF1_FORCE_SLEEP) && !ironman_nightmare)
557                         {
558                                 /* Monster is still being nice */
559                                 m_ptr->mflag |= (MFLAG_NICE);
560
561                                 /* Must repair monsters */
562                                 repair_monsters = TRUE;
563                         }
564
565                         /* Update the monster */
566                         update_mon(m_idx, TRUE);
567                         lite_spot(cy, cx);
568
569                         /* Pre-calculated in precalc_cur_num_of_pet() */
570                         /* r_ptr->cur_num++; */
571
572                         /* Hack -- Count the number of "reproducers" */
573                         if (r_ptr->flags2 & RF2_MULTIPLY) num_repro++;
574
575                         /* Hack -- Notice new multi-hued monsters */
576                         {
577                                 monster_race *ap_r_ptr = &r_info[m_ptr->ap_r_idx];
578                                 if (ap_r_ptr->flags1 & (RF1_ATTR_MULTI | RF1_SHAPECHANGER))
579                                         shimmer_monsters = TRUE;
580                         }
581                 }
582                 else
583                 {
584                         monster_type *m_ptr = &party_mon[i];
585                         monster_race *r_ptr = real_r_ptr(m_ptr);
586                         char m_name[80];
587
588                         monster_desc(m_name, m_ptr, 0);
589 #ifdef JP
590                         msg_format("%s¤È¤Ï¤°¤ì¤Æ¤·¤Þ¤Ã¤¿¡£", m_name);
591 #else
592                         msg_format("You have lost sight of %s.", m_name);
593 #endif
594                         if (record_named_pet && m_ptr->nickname)
595                         {
596                                 monster_desc(m_name, m_ptr, MD_INDEF_VISIBLE);
597                                 do_cmd_write_nikki(NIKKI_NAMED_PET, 5, m_name);
598                         }
599
600                         /* Pre-calculated in precalc_cur_num_of_pet(), but need to decrease */
601                         if (r_ptr->cur_num) r_ptr->cur_num--;
602                 }
603         }
604
605         /* For accuracy of precalc_cur_num_of_pet() */               
606         C_WIPE(party_mon, MAX_PARTY_MON, monster_type);                            
607 }
608
609
610 /*
611  * Hack -- Update location of unique monsters and artifacts
612  *
613  * The r_ptr->floor_id and a_ptr->floor_id are not updated correctly
614  * while new floor creation since dungeons may be re-created by
615  * auto-scum option.
616  */
617 static void update_unique_artifact(s16b cur_floor_id)
618 {
619         int i;
620
621         /* Maintain unique monsters */
622         for (i = 1; i < m_max; i++)
623         {
624                 monster_race *r_ptr;
625                 monster_type *m_ptr = &m_list[i];
626
627                 /* Skip dead monsters */
628                 if (!m_ptr->r_idx) continue;
629
630                 /* Extract real monster race */
631                 r_ptr = real_r_ptr(m_ptr);
632
633                 /* Memorize location of the unique monster */
634                 if ((r_ptr->flags1 & RF1_UNIQUE) ||
635                     (r_ptr->flags7 & RF7_NAZGUL))
636                 {
637                         r_ptr->floor_id = cur_floor_id;
638                 }
639         }
640
641         /* Maintain artifatcs */
642         for (i = 1; i < o_max; i++)
643         {
644                 object_type *o_ptr = &o_list[i];
645
646                 /* Skip dead objects */
647                 if (!o_ptr->k_idx) continue;
648
649                 /* Memorize location of the artifact */
650                 if (object_is_fixed_artifact(o_ptr))
651                 {
652                         a_info[o_ptr->name1].floor_id = cur_floor_id;
653                 }
654         }
655 }
656
657
658 /*
659  * When a monster is at a place where player will return,
660  * Get out of the my way!
661  */
662 static void get_out_monster(void)
663 {
664         int tries = 0;
665         int dis = 1;
666         int oy = py;
667         int ox = px;
668         int m_idx = cave[oy][ox].m_idx;
669
670         /* Nothing to do if no monster */
671         if (!m_idx) return;
672
673         /* Look until done */
674         while (TRUE)
675         {
676                 monster_type *m_ptr;
677
678                 /* Pick a (possibly illegal) location */
679                 int ny = rand_spread(oy, dis);
680                 int nx = rand_spread(ox, dis);
681
682                 tries++;
683
684                 /* Stop after 1000 tries */
685                 if (tries > 10000) return;
686
687                 /*
688                  * Increase distance after doing enough tries
689                  * compared to area of possible space
690                  */
691                 if (tries > 20 * dis * dis) dis++;
692
693                 /* Ignore illegal locations */
694                 if (!in_bounds(ny, nx)) continue;
695
696                 /* Require "empty" floor space */
697                 if (!cave_empty_bold(ny, nx)) continue;
698
699                 /* Hack -- no teleport onto glyph of warding */
700                 if (is_glyph_grid(&cave[ny][nx])) continue;
701                 if (is_explosive_rune_grid(&cave[ny][nx])) continue;
702
703                 /* ...nor onto the Pattern */
704                 if (pattern_tile(ny, nx)) continue;
705
706                 /*** It's a good place ***/
707
708                 m_ptr = &m_list[m_idx];
709
710                 /* Update the old location */
711                 cave[oy][ox].m_idx = 0;
712
713                 /* Update the new location */
714                 cave[ny][nx].m_idx = m_idx;
715
716                 /* Move the monster */
717                 m_ptr->fy = ny;
718                 m_ptr->fx = nx; 
719
720                 /* No need to do update_mon() */
721
722                 /* Success */
723                 return;
724         }
725 }
726
727
728 /*
729  * Is this feature has special meaning (except floor_id) with c_ptr->special?
730  */
731 #define feat_uses_special(F) (have_flag(f_info[(F)].flags, FF_SPECIAL))
732
733
734 /*
735  * Virtually teleport onto the stairs that is connecting between two
736  * floors.
737  *
738  * Teleport level spell and trap doors will always lead the player to
739  * the one of the floors connected by the one of the stairs in the
740  * current floor.
741  */
742 static void locate_connected_stairs(saved_floor_type *sf_ptr)
743 {
744         int x, y, sx = 0, sy = 0;
745         int x_table[20];
746         int y_table[20];
747         int num = 0;
748         int i;
749
750         /* Search usable stairs */
751         for (y = 0; y < cur_hgt; y++)
752         {
753                 for (x = 0; x < cur_wid; x++)
754                 {
755                         cave_type *c_ptr = &cave[y][x];
756                         feature_type *f_ptr = &f_info[c_ptr->feat];
757                         bool ok = FALSE;
758
759                         if (change_floor_mode & CFM_UP)
760                         {
761                                 if (have_flag(f_ptr->flags, FF_LESS) && have_flag(f_ptr->flags, FF_STAIRS) &&
762                                     !have_flag(f_ptr->flags, FF_SPECIAL))
763                                 {
764                                         ok = TRUE;
765
766                                         /* Found fixed stairs? */
767                                         if (c_ptr->special &&
768                                             c_ptr->special == sf_ptr->upper_floor_id)
769                                         {
770                                                 sx = x;
771                                                 sy = y;
772                                         }
773                                 }
774                         }
775
776                         else if (change_floor_mode & CFM_DOWN)
777                         {
778                                 if (have_flag(f_ptr->flags, FF_MORE) && have_flag(f_ptr->flags, FF_STAIRS) &&
779                                     !have_flag(f_ptr->flags, FF_SPECIAL))
780                                 {
781                                         ok = TRUE;
782
783                                         /* Found fixed stairs */
784                                         if (c_ptr->special &&
785                                             c_ptr->special == sf_ptr->lower_floor_id)
786                                         {
787                                                 sx = x;
788                                                 sy = y;
789                                         }
790                                 }
791                         }
792
793                         else
794                         {
795                                 if (have_flag(f_ptr->flags, FF_BLDG))
796                                 {
797                                         ok = TRUE;
798                                 }
799                         }
800
801                         if (ok && (num < 20))
802                         {
803                                 x_table[num] = x;
804                                 y_table[num] = y;
805                                 num++;
806                         }
807                 }
808         }
809
810         if (sx)
811         {
812                 /* Already fixed */
813                 py = sy;
814                 px = sx;
815         }
816         else if (!num)
817         {
818                 /* No stairs found! -- No return */
819                 prepare_change_floor_mode(CFM_RAND_PLACE | CFM_NO_RETURN);
820
821                 /* Mega Hack -- It's not the stairs you enter.  Disable it.  */
822                 if (!feat_uses_special(cave[py][px].feat)) cave[py][px].special = 0;
823         }
824         else
825         {
826                 /* Choose random one */
827                 i = randint0(num);
828
829                 /* Point stair location */
830                 py = y_table[i];
831                 px = x_table[i];
832         }
833 }
834
835 /*
836  * Maintain quest monsters, mark next floor_id at stairs, save current
837  * floor, and prepare to enter next floor.
838  */
839 void leave_floor(void)
840 {
841         cave_type *c_ptr = NULL;
842         feature_type *f_ptr;
843         saved_floor_type *sf_ptr;
844         int quest_r_idx = 0;
845         int i;
846
847         /* Preserve pets and prepare to take these to next floor */
848         preserve_pet();
849
850         /* Remove all mirrors without explosion */
851         remove_all_mirrors(FALSE);
852
853         if (p_ptr->special_defense & NINJA_S_STEALTH) set_superstealth(FALSE);
854
855         /* New floor is not yet prepared */
856         new_floor_id = 0;
857
858         /* Temporary get a floor_id (for Arena) */
859         if (!p_ptr->floor_id &&
860             (change_floor_mode & CFM_SAVE_FLOORS) &&
861             !(change_floor_mode & CFM_NO_RETURN))
862         {
863             /* Get temporal floor_id */
864             p_ptr->floor_id = get_new_floor_id();
865             
866             /* Record the dungeon level */
867             get_sf_ptr(p_ptr->floor_id)->dun_level = dun_level;
868         }
869
870
871         /* Search the quest monster index */
872         for (i = 0; i < max_quests; i++)
873         {
874                 if ((quest[i].status == QUEST_STATUS_TAKEN) &&
875                     ((quest[i].type == QUEST_TYPE_KILL_LEVEL) ||
876                     (quest[i].type == QUEST_TYPE_RANDOM)) &&
877                     (quest[i].level == dun_level) &&
878                     (dungeon_type == quest[i].dungeon) &&
879                     !(quest[i].flags & QUEST_FLAG_PRESET))
880                 {
881                         quest_r_idx = quest[i].r_idx;
882                 }
883         }
884
885         /* Maintain quest monsters */
886         for (i = 1; i < m_max; i++)
887         {
888                 monster_race *r_ptr;
889                 monster_type *m_ptr = &m_list[i];
890
891                 /* Skip dead monsters */
892                 if (!m_ptr->r_idx) continue;
893
894                 /* Only maintain quest monsters */
895                 if (quest_r_idx != m_ptr->r_idx) continue;
896
897                 /* Extract real monster race */
898                 r_ptr = real_r_ptr(m_ptr);
899
900                 /* Ignore unique monsters */
901                 if ((r_ptr->flags1 & RF1_UNIQUE) ||
902                     (r_ptr->flags7 & RF7_NAZGUL)) continue;
903
904                 /* Delete non-unique quest monsters */
905                 delete_monster_idx(i);
906         }
907
908         /* Check if there is a same item */
909         for (i = 0; i < INVEN_PACK; i++)
910         {
911                 object_type *o_ptr = &inventory[i];
912
913                 /* Skip dead objects */
914                 if (!o_ptr->k_idx) continue;
915
916                 /* Delete old memorized location of the artifact */
917                 if (object_is_fixed_artifact(o_ptr))
918                 {
919                         a_info[o_ptr->name1].floor_id = 0;
920                 }
921         }
922
923         /* Extract current floor info or NULL */
924         sf_ptr = get_sf_ptr(p_ptr->floor_id);
925
926         /* Choose random stairs */
927         if ((change_floor_mode & CFM_RAND_CONNECT) && p_ptr->floor_id)
928         {
929                 locate_connected_stairs(sf_ptr);
930         }
931
932         /* Extract new dungeon level */
933         if (change_floor_mode & CFM_SAVE_FLOORS)
934         {
935                 /* Extract stair position */
936                 c_ptr = &cave[py][px];
937                 f_ptr = &f_info[c_ptr->feat];
938
939                 /* Get back to old saved floor? */
940                 if (c_ptr->special && !have_flag(f_ptr->flags, FF_SPECIAL) && get_sf_ptr(c_ptr->special))
941                 {
942                         /* Saved floor is exist.  Use it. */
943                         new_floor_id = c_ptr->special;
944                 }
945
946                 /* Mark shaft up/down */
947                 if (have_flag(f_ptr->flags, FF_STAIRS) && have_flag(f_ptr->flags, FF_SHAFT))
948                 {
949                         prepare_change_floor_mode(CFM_SHAFT);
950                 }
951         }
952
953         /* Climb up/down some sort of stairs */
954         if (change_floor_mode & (CFM_DOWN | CFM_UP))
955         {
956                 int move_num = 0;
957
958                 /* Extract level movement number */
959                 if (change_floor_mode & CFM_DOWN) move_num = 1;
960                 else if (change_floor_mode & CFM_UP) move_num = -1;
961
962                 /* Shafts are deeper than normal stairs */
963                 if (change_floor_mode & CFM_SHAFT)
964                         move_num += SGN(move_num);
965
966                 /* Get out from or Enter the dungeon */
967                 if (change_floor_mode & CFM_DOWN)
968                 {
969                         if (!dun_level)
970                                 move_num = d_info[dungeon_type].mindepth;
971                 }
972                 else if (change_floor_mode & CFM_UP)
973                 {
974                         if (dun_level + move_num < d_info[dungeon_type].mindepth)
975                                 move_num = -dun_level;
976                 }
977
978                 dun_level += move_num;
979         }
980
981         /* Leaving the dungeon to town */
982         if (!dun_level && dungeon_type)
983         {
984                 p_ptr->leaving_dungeon = TRUE;
985                 if (!vanilla_town && !lite_town)
986                 {
987                         p_ptr->wilderness_y = d_info[dungeon_type].dy;
988                         p_ptr->wilderness_x = d_info[dungeon_type].dx;
989                 }
990                 p_ptr->recall_dungeon = dungeon_type;
991                 dungeon_type = 0;
992
993                 /* Reach to the surface -- Clear all saved floors */
994                 change_floor_mode &= ~CFM_SAVE_FLOORS;
995         }
996
997         /* Kill some old saved floors */
998         if (!(change_floor_mode & CFM_SAVE_FLOORS))
999         {
1000                 int i;
1001
1002                 /* Kill all saved floors */
1003                 for (i = 0; i < MAX_SAVED_FLOORS; i++)
1004                         kill_saved_floor(&saved_floors[i]);
1005
1006                 /* Reset visit_mark count */
1007                 latest_visit_mark = 1;
1008         }
1009         else if (change_floor_mode & CFM_NO_RETURN)
1010         {
1011                 /* Kill current floor */
1012                 kill_saved_floor(sf_ptr);
1013         }
1014
1015         /* No current floor -- Left/Enter dungeon etc... */
1016         if (!p_ptr->floor_id)
1017         {
1018                 /* No longer need to save current floor */
1019                 return;
1020         }
1021
1022
1023         /* Mark next floor_id on the previous floor */
1024         if (!new_floor_id)
1025         {
1026                 /* Get new id */
1027                 new_floor_id = get_new_floor_id();
1028
1029                 /* Connect from here */
1030                 if (c_ptr && !feat_uses_special(c_ptr->feat))
1031                 {
1032                         c_ptr->special = new_floor_id;
1033                 }
1034
1035                 /* Record new dungeon level */
1036                 get_sf_ptr(new_floor_id)->dun_level = dun_level;
1037         }
1038
1039         /* Fix connection -- level teleportation or trap door */
1040         if (change_floor_mode & CFM_RAND_CONNECT)
1041         {
1042                 if (change_floor_mode & CFM_UP)
1043                         sf_ptr->upper_floor_id = new_floor_id;
1044                 else if (change_floor_mode & CFM_DOWN)
1045                         sf_ptr->lower_floor_id = new_floor_id;
1046         }
1047
1048         /* If you can return, you need to save previous floor */
1049         if ((change_floor_mode & CFM_SAVE_FLOORS) &&
1050             !(change_floor_mode & CFM_NO_RETURN))
1051         {
1052                 /* Get out of the my way! */
1053                 get_out_monster();
1054
1055                 /* Record the last visit turn of current floor */
1056                 sf_ptr->last_visit = turn;
1057
1058                 /* Forget the lite */
1059                 forget_lite();
1060
1061                 /* Forget the view */
1062                 forget_view();
1063
1064                 /* Forget the view */
1065                 clear_mon_lite();
1066
1067                 /* Save current floor */
1068                 if (!save_floor(sf_ptr, 0))
1069                 {
1070                         /* Save failed -- No return */
1071                         prepare_change_floor_mode(CFM_NO_RETURN);
1072
1073                         /* Kill current floor */
1074                         kill_saved_floor(get_sf_ptr(p_ptr->floor_id));
1075                 }
1076         }
1077 }
1078
1079
1080 /*
1081  * Enter new floor.  If the floor is an old saved floor, it will be
1082  * restored from the temporal file.  If the floor is new one, new cave
1083  * will be generated.
1084  */
1085 void change_floor(void)
1086 {
1087         saved_floor_type *sf_ptr;
1088         bool loaded = FALSE;
1089
1090         /* The dungeon is not ready */
1091         character_dungeon = FALSE;
1092
1093         /* No longer in the trap detecteded region */
1094         p_ptr->dtrap = FALSE;
1095
1096         /* Mega-Hack -- no panel yet */
1097         panel_row_min = 0;
1098         panel_row_max = 0;
1099         panel_col_min = 0;
1100         panel_col_max = 0;
1101
1102         /* Mega-Hack -- not ambushed on the wildness? */
1103         ambush_flag = FALSE;
1104
1105         /* No saved floors (On the surface etc.) */
1106         if (!(change_floor_mode & CFM_SAVE_FLOORS) &&
1107             !(change_floor_mode & CFM_FIRST_FLOOR))
1108         {
1109                 /* Create cave */
1110                 generate_cave();
1111
1112                 /* Paranoia -- No new saved floor */
1113                 new_floor_id = 0;
1114         }
1115
1116         /* In the dungeon */
1117         else
1118         {
1119                 /* No floor_id yet */
1120                 if (!new_floor_id)
1121                 {
1122                         /* Get new id */
1123                         new_floor_id = get_new_floor_id();
1124                 }
1125
1126                 /* Pointer for infomations of new floor */
1127                 sf_ptr = get_sf_ptr(new_floor_id);
1128
1129                 /* Try to restore old floor */
1130                 if (sf_ptr->last_visit)
1131                 {
1132                         /* Old saved floor is exist */
1133                         if (load_floor(sf_ptr, 0))
1134                         {
1135                                 loaded = TRUE;
1136
1137                                 /* Forbid return stairs */
1138                                 if (change_floor_mode & CFM_NO_RETURN)
1139                                 {
1140                                         cave_type *c_ptr = &cave[py][px];
1141
1142                                         if (!feat_uses_special(c_ptr->feat))
1143                                         {
1144                                                 if (change_floor_mode & (CFM_DOWN | CFM_UP))
1145                                                 {
1146                                                         /* Reset to floor */
1147                                                         c_ptr->feat = floor_type[randint0(100)];
1148                                                 }
1149
1150                                                 c_ptr->special = 0;
1151                                         }
1152                                 }
1153                         }
1154                 }
1155
1156                 /*
1157                  * Set lower/upper_floor_id of new floor when the new
1158                  * floor is right-above/right-under the current floor.
1159                  *
1160                  * Stair creation/Teleport level/Trap door will take
1161                  * you the same floor when you used it later again.
1162                  */
1163                 if (p_ptr->floor_id)
1164                 {
1165                         saved_floor_type *cur_sf_ptr = get_sf_ptr(p_ptr->floor_id);
1166
1167                         if (change_floor_mode & CFM_UP)
1168                         {
1169                                 /* New floor is right-above */
1170                                 if (cur_sf_ptr->upper_floor_id == new_floor_id)
1171                                         sf_ptr->lower_floor_id = p_ptr->floor_id;
1172                         }
1173                         else if (change_floor_mode & CFM_DOWN)
1174                         {
1175                                 /* New floor is right-under */
1176                                 if (cur_sf_ptr->lower_floor_id == new_floor_id)
1177                                         sf_ptr->upper_floor_id = p_ptr->floor_id;
1178                         }
1179                 }
1180
1181                 /* Maintain monsters and artifacts */
1182                 if (loaded)
1183                 {
1184                         int i;
1185                         s32b absence_ticks = (turn - sf_ptr->last_visit) / TURNS_PER_TICK;
1186                         int alloc_chance = d_info[dungeon_type].max_m_alloc_chance;
1187                         int alloc_times;
1188
1189                         /* Maintain monsters */
1190                         for (i = 1; i < m_max; i++)
1191                         {
1192                                 monster_race *r_ptr;
1193                                 monster_type *m_ptr = &m_list[i];
1194
1195                                 /* Skip dead monsters */
1196                                 if (!m_ptr->r_idx) continue;
1197
1198                                 if (!is_pet(m_ptr))
1199                                 {
1200                                         /* Restore HP */
1201                                         m_ptr->hp = m_ptr->maxhp = m_ptr->max_maxhp;
1202
1203                                         /* Remove fear */
1204                                         m_ptr->monfear = 0;
1205
1206                                         /* Remove invulnerability */
1207                                         m_ptr->invulner = 0;
1208
1209                                         /* Remove fast status */
1210                                         m_ptr->fast = 0;
1211
1212                                         /* Remove slow status */
1213                                         m_ptr->slow = 0;
1214
1215                                         /* Remove stun */
1216                                         m_ptr->stunned = 0;
1217
1218                                         /* Remove confusion */
1219                                         m_ptr->confused = 0;
1220                                 }
1221
1222                                 /* Extract real monster race */
1223                                 r_ptr = real_r_ptr(m_ptr);
1224
1225                                 /* Ignore non-unique */
1226                                 if (!(r_ptr->flags1 & RF1_UNIQUE) &&
1227                                     !(r_ptr->flags7 & RF7_NAZGUL)) continue;
1228
1229                                 /* Appear at a different floor? */
1230                                 if (r_ptr->floor_id != new_floor_id)
1231                                 {
1232                                         /* Disapper from here */
1233                                         delete_monster_idx(i);
1234                                 }
1235                         }
1236
1237                         /* Maintain artifatcs */
1238                         for (i = 1; i < o_max; i++)
1239                         {
1240                                 object_type *o_ptr = &o_list[i];
1241
1242                                 /* Skip dead objects */
1243                                 if (!o_ptr->k_idx) continue;
1244
1245                                 /* Ignore non-artifact */
1246                                 if (!object_is_fixed_artifact(o_ptr)) continue;
1247
1248                                 /* Appear at a different floor? */
1249                                 if (a_info[o_ptr->name1].floor_id != new_floor_id)
1250                                 {
1251                                         /* Disappear from here */
1252                                         delete_object_idx(i);
1253                                 }
1254                                 else
1255                                 {
1256                                         /* Cancel preserve */
1257                                         a_info[o_ptr->name1].cur_num = 1;
1258                                 }
1259                         }
1260
1261                         place_quest_monsters();
1262
1263                         /* Place some random monsters */
1264                         alloc_times = absence_ticks / alloc_chance;
1265
1266                         if (randint0(alloc_chance) < (absence_ticks % alloc_chance))
1267                                 alloc_times++;
1268
1269                         for (i = 0; i < alloc_times; i++)
1270                         {
1271                                 /* Make a (group of) new monster */
1272                                 (void)alloc_monster(0, 0);
1273                         }
1274                 }
1275
1276                 /* New floor_id or failed to restore */
1277                 else /* if (!loaded) */
1278                 {
1279                         if (sf_ptr->last_visit)
1280                         {
1281                                 /* Temporal file is broken? */
1282 #ifdef JP
1283                                 msg_print("³¬ÃʤϹԤ­»ß¤Þ¤ê¤À¤Ã¤¿¡£");
1284 #else
1285                                 msg_print("The staircases come to a dead end...");
1286 #endif
1287
1288                                 /* Create simple dead end */
1289                                 build_dead_end();
1290
1291                                 /* Break connection */
1292                                 if (change_floor_mode & CFM_UP)
1293                                 {
1294                                         sf_ptr->upper_floor_id = 0;
1295                                 }
1296                                 else if (change_floor_mode & CFM_DOWN)
1297                                 {
1298                                         sf_ptr->lower_floor_id = 0;
1299                                 }
1300                         }
1301                         else
1302                         {
1303                                 /* Newly create cave */
1304                                 generate_cave();
1305                         }
1306
1307                         /* Record last visit turn */
1308                         sf_ptr->last_visit = turn;
1309
1310                         /* Set correct dun_level value */
1311                         sf_ptr->dun_level = dun_level;
1312
1313                         /* Create connected stairs */
1314                         if (!(change_floor_mode & CFM_NO_RETURN))
1315                         {
1316                                 /* Extract stair position */
1317                                 cave_type *c_ptr = &cave[py][px];
1318
1319                                 /*** Create connected stairs ***/
1320
1321                                 /* No stairs down from Quest */
1322                                 if ((change_floor_mode & CFM_UP) && !quest_number(dun_level))
1323                                 {
1324                                         if (change_floor_mode & CFM_SHAFT)
1325                                                 c_ptr->feat = FEAT_MORE_MORE;
1326                                         else
1327                                                 c_ptr->feat = FEAT_MORE;
1328                                 }
1329
1330                                 /* No stairs up when ironman_downward */
1331                                 else if ((change_floor_mode & CFM_DOWN) && !ironman_downward)
1332                                 {
1333                                         if (change_floor_mode & CFM_SHAFT)
1334                                                 c_ptr->feat = FEAT_LESS_LESS;
1335                                         else
1336                                                 c_ptr->feat = FEAT_LESS;
1337                                 }
1338
1339                                 /* Paranoia -- Clear mimic */
1340                                 c_ptr->mimic = 0;
1341
1342                                 /* Connect to previous floor */
1343                                 c_ptr->special = p_ptr->floor_id;
1344                         }
1345                 }
1346
1347                 /* Arrive at random grid */
1348                 if (change_floor_mode & (CFM_RAND_PLACE))
1349                 {
1350                         (void)new_player_spot();
1351                 }
1352
1353                 /* You see stairs blocked */
1354                 else if ((change_floor_mode & CFM_NO_RETURN) &&
1355                          (change_floor_mode & (CFM_DOWN | CFM_UP)))
1356                 {
1357                         if (!p_ptr->blind)
1358                         {
1359 #ifdef JP
1360                                 msg_print("ÆÍÁ³³¬Ãʤ¬ºÉ¤¬¤ì¤Æ¤·¤Þ¤Ã¤¿¡£");
1361 #else
1362                                 msg_print("Suddenly the stairs is blocked!");
1363 #endif
1364                         }
1365                         else
1366                         {
1367 #ifdef JP
1368                                 msg_print("¥´¥È¥´¥È¤È²¿¤«²»¤¬¤·¤¿¡£");
1369 #else
1370                                 msg_print("You hear some noises.");
1371 #endif
1372                         }
1373                 }
1374
1375                 /*
1376                  * Update visit mark
1377                  *
1378                  * The "turn" is not always different number because
1379                  * the level teleport doesn't take any turn.  Use
1380                  * visit mark instead of last visit turn to find the
1381                  * oldest saved floor.
1382                  */
1383                 sf_ptr->visit_mark = latest_visit_mark++;
1384         }
1385
1386         /* Place preserved pet monsters */
1387         place_pet();
1388
1389         /* Hack -- maintain unique and artifacts */
1390         update_unique_artifact(new_floor_id);
1391
1392         /* Now the player is in new floor */
1393         p_ptr->floor_id = new_floor_id;
1394
1395         /* The dungeon is ready */
1396         character_dungeon = TRUE;
1397
1398         /* Hack -- Munchkin characters always get whole map */
1399         if (p_ptr->pseikaku == SEIKAKU_MUNCHKIN)
1400                 wiz_lite((bool)(p_ptr->pclass == CLASS_NINJA));
1401
1402         /* Remember when this level was "created" */
1403         old_turn = turn;
1404
1405         /* No dungeon feeling yet */
1406         p_ptr->feeling_turn = old_turn;
1407         p_ptr->feeling = 0;
1408
1409         /* Clear all flags */
1410         change_floor_mode = 0L;
1411 }
1412
1413
1414
1415 /*
1416  * Create stairs at or move previously created stairs into the player
1417  * location.
1418  */
1419 void stair_creation(void)
1420 {
1421         saved_floor_type *sf_ptr;
1422         saved_floor_type *dest_sf_ptr;
1423
1424         bool up = TRUE;
1425         bool down = TRUE;
1426         s16b dest_floor_id = 0;
1427
1428
1429         /* Forbid up staircases on Ironman mode */
1430         if (ironman_downward) up = FALSE;
1431
1432         /* Forbid down staircases on quest level */
1433         if (quest_number(dun_level) || (dun_level >= d_info[dungeon_type].maxdepth)) down = FALSE;
1434
1435         /* No effect out of standard dungeon floor */
1436         if (!dun_level || (!up && !down) ||
1437             (p_ptr->inside_quest && is_fixed_quest_idx(p_ptr->inside_quest)) ||
1438             p_ptr->inside_arena || p_ptr->inside_battle)
1439         {
1440                 /* arena or quest */
1441 #ifdef JP
1442                 msg_print("¸ú²Ì¤¬¤¢¤ê¤Þ¤»¤ó¡ª");
1443 #else
1444                 msg_print("There is no effect!");
1445 #endif
1446                 return;
1447         }
1448
1449         /* Artifacts resists */
1450         if (!cave_valid_bold(py, px))
1451         {
1452 #ifdef JP
1453                 msg_print("¾²¾å¤Î¥¢¥¤¥Æ¥à¤¬¼öʸ¤òÄ·¤ÍÊÖ¤·¤¿¡£");
1454 #else
1455                 msg_print("The object resists the spell.");
1456 #endif
1457
1458                 return;
1459         }
1460
1461         /* Destroy all objects in the grid */
1462         delete_object(py, px);
1463
1464         /* Extract current floor data */
1465         sf_ptr = get_sf_ptr(p_ptr->floor_id);
1466
1467         /* Choose randomly */
1468         if (up && down)
1469         {
1470                 if (randint0(100) < 50) up = FALSE;
1471                 else down = FALSE;
1472         }
1473
1474         /* Destination is already fixed */
1475         if (up)
1476         {
1477                 if (sf_ptr->upper_floor_id) dest_floor_id = sf_ptr->upper_floor_id;
1478         }
1479         else
1480         {
1481                 if (sf_ptr->lower_floor_id) dest_floor_id = sf_ptr->lower_floor_id;
1482         }
1483
1484
1485         /* Search old stairs leading to the destination */
1486         if (dest_floor_id)
1487         {
1488                 int x, y;
1489
1490                 for (y = 0; y < cur_hgt; y++)
1491                 {
1492                         for (x = 0; x < cur_wid; x++)
1493                         {
1494                                 cave_type *c_ptr = &cave[y][x];
1495
1496                                 if (!c_ptr->special) continue;
1497                                 if (feat_uses_special(c_ptr->feat)) continue;
1498                                 if (c_ptr->special != dest_floor_id) continue;
1499
1500                                 /* Remove old stairs */
1501                                 c_ptr->special = 0;
1502                                 cave_set_feat(y, x, floor_type[randint0(100)]);
1503                         }
1504                 }
1505         }
1506
1507         /* No old destination -- Get new one now */
1508         else
1509         {
1510                 dest_floor_id = get_new_floor_id();
1511
1512                 /* Fix it */
1513                 if (up)
1514                         sf_ptr->upper_floor_id = dest_floor_id;
1515                 else
1516                         sf_ptr->lower_floor_id = dest_floor_id;
1517         }
1518
1519         /* Extract destination floor data */
1520         dest_sf_ptr = get_sf_ptr(dest_floor_id);
1521
1522
1523         /* Create a staircase */
1524         if (up)
1525         {
1526                 if (dest_sf_ptr->last_visit && dest_sf_ptr->dun_level <= dun_level - 2)
1527                         cave_set_feat(py, px, FEAT_LESS_LESS);
1528                 else
1529                         cave_set_feat(py, px, FEAT_LESS);
1530         }
1531         else
1532         {
1533                 if (dest_sf_ptr->last_visit && dest_sf_ptr->dun_level >= dun_level + 2)
1534                         cave_set_feat(py, px, FEAT_MORE_MORE);
1535                 else
1536                         cave_set_feat(py, px, FEAT_MORE);
1537         }
1538
1539
1540         /* Connect this stairs to the destination */
1541         cave[py][px].special = dest_floor_id;
1542 }