OSDN Git Service

No more unlimited Multiply monster drops -- up to 1024.
[hengbandforosx/hengbandosx.git] / src / xtra2.c
1 /* File: xtra2.c */
2
3 /*
4  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
5  *
6  * This software may be copied and distributed for educational, research,
7  * and not for profit purposes provided that this copyright and statement
8  * are included in all such copies.  Other copyrights may also apply.
9  */
10
11 /* Purpose: effects of various "objects" */
12
13 #include "angband.h"
14
15 #define REWARD_CHANCE 10
16
17
18 /*
19  * Advance experience levels and print experience
20  */
21 void check_experience(void)
22 {
23         bool level_reward = FALSE;
24         bool level_mutation = FALSE;
25         bool level_inc_stat = FALSE;
26         bool android = (p_ptr->prace == RACE_ANDROID ? TRUE : FALSE);
27         int  old_lev = p_ptr->lev;
28
29         /* Hack -- lower limit */
30         if (p_ptr->exp < 0) p_ptr->exp = 0;
31         if (p_ptr->max_exp < 0) p_ptr->max_exp = 0;
32         if (p_ptr->max_max_exp < 0) p_ptr->max_max_exp = 0;
33
34         /* Hack -- upper limit */
35         if (p_ptr->exp > PY_MAX_EXP) p_ptr->exp = PY_MAX_EXP;
36         if (p_ptr->max_exp > PY_MAX_EXP) p_ptr->max_exp = PY_MAX_EXP;
37         if (p_ptr->max_max_exp > PY_MAX_EXP) p_ptr->max_max_exp = PY_MAX_EXP;
38
39         /* Hack -- maintain "max" experience */
40         if (p_ptr->exp > p_ptr->max_exp) p_ptr->max_exp = p_ptr->exp;
41
42         /* Hack -- maintain "max max" experience */
43         if (p_ptr->max_exp > p_ptr->max_max_exp) p_ptr->max_max_exp = p_ptr->max_exp;
44
45         /* Redraw experience */
46         p_ptr->redraw |= (PR_EXP);
47
48         /* Handle stuff */
49         handle_stuff();
50
51
52         /* Lose levels while possible */
53         while ((p_ptr->lev > 1) &&
54                (p_ptr->exp < ((android ? player_exp_a : player_exp)[p_ptr->lev - 2] * p_ptr->expfact / 100L)))
55         {
56                 /* Lose a level */
57                 p_ptr->lev--;
58
59                 /* Update some stuff */
60                 p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
61
62                 /* Redraw some stuff */
63                 p_ptr->redraw |= (PR_LEV | PR_TITLE);
64
65                 /* Window stuff */
66                 p_ptr->window |= (PW_PLAYER);
67
68                 /* Handle stuff */
69                 handle_stuff();
70         }
71
72
73         /* Gain levels while possible */
74         while ((p_ptr->lev < PY_MAX_LEVEL) &&
75                (p_ptr->exp >= ((android ? player_exp_a : player_exp)[p_ptr->lev-1] * p_ptr->expfact / 100L)))
76         {
77                 /* Gain a level */
78                 p_ptr->lev++;
79
80                 /* Save the highest level */
81                 if (p_ptr->lev > p_ptr->max_plv)
82                 {
83                         p_ptr->max_plv = p_ptr->lev;
84
85                         if ((p_ptr->pclass == CLASS_CHAOS_WARRIOR) ||
86                             (p_ptr->muta2 & MUT2_CHAOS_GIFT))
87                         {
88                                 level_reward = TRUE;
89                         }
90                         if (p_ptr->prace == RACE_BEASTMAN)
91                         {
92                                 if (one_in_(5)) level_mutation = TRUE;
93                         }
94                         level_inc_stat = TRUE;
95
96                         do_cmd_write_nikki(NIKKI_LEVELUP, p_ptr->lev, NULL);
97                 }
98
99                 /* Sound */
100                 sound(SOUND_LEVEL);
101
102                 /* Message */
103 #ifdef JP
104 msg_format("¥ì¥Ù¥ë %d ¤Ë¤è¤¦¤³¤½¡£", p_ptr->lev);
105 #else
106                 msg_format("Welcome to level %d.", p_ptr->lev);
107
108 #endif
109
110                 /* Update some stuff */
111                 p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
112
113                 /* Redraw some stuff */
114                 p_ptr->redraw |= (PR_LEV | PR_TITLE | PR_EXP);
115
116                 /* Window stuff */
117                 p_ptr->window |= (PW_PLAYER | PW_SPELL | PW_INVEN);
118
119                 /* HP¤ÈMP¤Î¾å¾ºÎ̤òɽ¼¨ */
120                 level_up = 1;
121
122                 /* Handle stuff */
123                 handle_stuff();
124
125                 level_up = 0;
126
127                 if (level_inc_stat)
128                 {
129                         if(!(p_ptr->max_plv % 10))
130                         {
131                                 int choice;
132                                 screen_save();
133                                 while(1)
134                                 {
135                                         int n;
136                                         char tmp[32];
137
138 #ifdef JP
139                                         cnv_stat(p_ptr->stat_max[0], tmp);
140                                         prt(format("        a) ÏÓÎÏ (¸½ºßÃÍ %s)", tmp), 2, 14);
141                                         cnv_stat(p_ptr->stat_max[1], tmp);
142                                         prt(format("        b) ÃÎǽ (¸½ºßÃÍ %s)", tmp), 3, 14);
143                                         cnv_stat(p_ptr->stat_max[2], tmp);
144                                         prt(format("        c) ¸­¤µ (¸½ºßÃÍ %s)", tmp), 4, 14);
145                                         cnv_stat(p_ptr->stat_max[3], tmp);
146                                         prt(format("        d) ´ïÍÑ (¸½ºßÃÍ %s)", tmp), 5, 14);
147                                         cnv_stat(p_ptr->stat_max[4], tmp);
148                                         prt(format("        e) Âѵנ(¸½ºßÃÍ %s)", tmp), 6, 14);
149                                         cnv_stat(p_ptr->stat_max[5], tmp);
150                                         prt(format("        f) Ì¥ÎÏ (¸½ºßÃÍ %s)", tmp), 7, 14);
151                                         prt("", 8, 14);
152                                         prt("        ¤É¤ÎǽÎÏÃͤò¾å¤²¤Þ¤¹¤«¡©", 1, 14);
153 #else
154                                         cnv_stat(p_ptr->stat_max[0], tmp);
155                                         prt(format("        a) Str (cur %s)", tmp), 2, 14);
156                                         cnv_stat(p_ptr->stat_max[1], tmp);
157                                         prt(format("        b) Int (cur %s)", tmp), 3, 14);
158                                         cnv_stat(p_ptr->stat_max[2], tmp);
159                                         prt(format("        c) Wis (cur %s)", tmp), 4, 14);
160                                         cnv_stat(p_ptr->stat_max[3], tmp);
161                                         prt(format("        d) Dex (cur %s)", tmp), 5, 14);
162                                         cnv_stat(p_ptr->stat_max[4], tmp);
163                                         prt(format("        e) Con (cur %s)", tmp), 6, 14);
164                                         cnv_stat(p_ptr->stat_max[5], tmp);
165                                         prt(format("        f) Chr (cur %s)", tmp), 7, 14);
166                                         prt("", 8, 14);
167                                         prt("        Which stat do you want to raise?", 1, 14);
168 #endif
169                                         while(1)
170                                         {
171                                                 choice = inkey();
172                                                 if ((choice >= 'a') && (choice <= 'f')) break;
173                                         }
174                                         for(n = 0; n < 6; n++)
175                                                 if (n != choice - 'a')
176                                                         prt("",n+2,14);
177 #ifdef JP
178                                         if (get_check("¤è¤í¤·¤¤¤Ç¤¹¤«¡©")) break;
179 #else
180                                         if (get_check("Are you sure? ")) break;
181 #endif
182                                 }
183                                 do_inc_stat(choice - 'a');
184                                 screen_load();
185                         }
186                         else if(!(p_ptr->max_plv % 2))
187                                 do_inc_stat(randint0(6));
188                 }
189
190                 if (level_mutation)
191                 {
192 #ifdef JP
193 msg_print("¤¢¤Ê¤¿¤ÏÊѤï¤Ã¤¿µ¤¤¬¤¹¤ë...");
194 #else
195                         msg_print("You feel different...");
196 #endif
197
198                         (void)gain_random_mutation(0);
199                         level_mutation = FALSE;
200                 }
201
202                 /*
203                  * Ê󽷤ǥì¥Ù¥ë¤¬¾å¤ë¤ÈºÆµ¢Åª¤Ë check_experience() ¤¬
204                  * ¸Æ¤Ð¤ì¤ë¤Î¤Ç½çÈÖ¤òºÇ¸å¤Ë¤¹¤ë¡£
205                  */
206                 if (level_reward)
207                 {
208                         gain_level_reward(0);
209                         level_reward = FALSE;
210                 }
211
212                 /* Update some stuff */
213                 p_ptr->update |= (PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
214
215                 /* Redraw some stuff */
216                 p_ptr->redraw |= (PR_LEV | PR_TITLE);
217
218                 /* Window stuff */
219                 p_ptr->window |= (PW_PLAYER | PW_SPELL);
220
221                 /* Handle stuff */
222                 handle_stuff();
223         }
224
225         /* Load an autopick preference file */
226         if (old_lev != p_ptr->lev) autopick_load_pref(FALSE);
227 }
228
229
230 /*
231  * Hack -- Return the "automatic coin type" of a monster race
232  * Used to allocate proper treasure when "Creeping coins" die
233  *
234  * XXX XXX XXX Note the use of actual "monster names"
235  */
236 static int get_coin_type(int r_idx)
237 {
238         /* Analyze monsters */
239         switch (r_idx)
240         {
241         case MON_COPPER_COINS: return 2;
242         case MON_SILVER_COINS: return 5;
243         case MON_GOLD_COINS: return 10;
244         case MON_MITHRIL_COINS:
245         case MON_MITHRIL_GOLEM: return 16;
246         case MON_ADAMANT_COINS: return 17;
247         }
248
249         /* Assume nothing */
250         return 0;
251 }
252
253
254 /*
255  * Hack -- determine if a template is Cloak
256  */
257 static bool kind_is_cloak(int k_idx)
258 {
259         object_kind *k_ptr = &k_info[k_idx];
260
261         /* Analyze the item type */
262         if (k_ptr->tval == TV_CLOAK)
263         {
264                 return (TRUE);
265         }
266
267         /* Assume not good */
268         return (FALSE);
269 }
270
271
272 /*
273  * Hack -- determine if a template is Polearm
274  */
275 static bool kind_is_polearm(int k_idx)
276 {
277         object_kind *k_ptr = &k_info[k_idx];
278
279         /* Analyze the item type */
280         if (k_ptr->tval == TV_POLEARM)
281         {
282                 return (TRUE);
283         }
284
285         /* Assume not good */
286         return (FALSE);
287 }
288
289
290 /*
291  * Hack -- determine if a template is Sword
292  */
293 static bool kind_is_sword(int k_idx)
294 {
295         object_kind *k_ptr = &k_info[k_idx];
296
297         /* Analyze the item type */
298         if ((k_ptr->tval == TV_SWORD) && (k_ptr->sval > 2))
299         {
300                 return (TRUE);
301         }
302
303         /* Assume not good */
304         return (FALSE);
305 }
306
307
308 /*
309  * Hack -- determine if a template is Book
310  */
311 static bool kind_is_book(int k_idx)
312 {
313         object_kind *k_ptr = &k_info[k_idx];
314
315         /* Analyze the item type */
316         if ((k_ptr->tval >= TV_LIFE_BOOK) && (k_ptr->tval <= TV_CRUSADE_BOOK))
317         {
318                 return (TRUE);
319         }
320
321         /* Assume not good */
322         return (FALSE);
323 }
324
325
326 /*
327  * Hack -- determine if a template is Good book
328  */
329 static bool kind_is_good_book(int k_idx)
330 {
331         object_kind *k_ptr = &k_info[k_idx];
332
333         /* Analyze the item type */
334         if ((k_ptr->tval >= TV_LIFE_BOOK) && (k_ptr->tval <= TV_CRUSADE_BOOK) && (k_ptr->tval != TV_ARCANE_BOOK) && (k_ptr->sval > 1))
335         {
336                 return (TRUE);
337         }
338
339         /* Assume not good */
340         return (FALSE);
341 }
342
343
344 /*
345  * Hack -- determine if a template is Armor
346  */
347 static bool kind_is_armor(int k_idx)
348 {
349         object_kind *k_ptr = &k_info[k_idx];
350
351         /* Analyze the item type */
352         if (k_ptr->tval == TV_HARD_ARMOR)
353         {
354                 return (TRUE);
355         }
356
357         /* Assume not good */
358         return (FALSE);
359 }
360
361
362 /*
363  * Hack -- determine if a template is hafted weapon
364  */
365 static bool kind_is_hafted(int k_idx)
366 {
367         object_kind *k_ptr = &k_info[k_idx];
368
369         /* Analyze the item type */
370         if (k_ptr->tval == TV_HAFTED)
371         {
372                 return (TRUE);
373         }
374
375         /* Assume not good */
376         return (FALSE);
377 }
378
379
380 /*
381  * Check for "Quest" completion when a quest monster is killed or charmed.
382  */
383 void check_quest_completion(monster_type *m_ptr)
384 {
385         int i, j, y, x, ny, nx, i2, j2;
386
387         int quest_num;
388
389         bool create_stairs = FALSE;
390         bool reward = FALSE;
391
392         object_type forge;
393         object_type *q_ptr;
394
395         /* Get the location */
396         y = m_ptr->fy;
397         x = m_ptr->fx;
398
399         /* Inside a quest */
400         quest_num = p_ptr->inside_quest;
401
402         /* Search for an active quest on this dungeon level */
403         if (!quest_num)
404         {
405                 for (i = max_quests - 1; i > 0; i--)
406                 {
407                         /* Quest is not active */
408                         if (quest[i].status != QUEST_STATUS_TAKEN)
409                                 continue;
410
411                         /* Quest is not a dungeon quest */
412                         if (quest[i].flags & QUEST_FLAG_PRESET)
413                                 continue;
414
415                         /* Quest is not on this level */
416                         if ((quest[i].level != dun_level) &&
417                             (quest[i].type != QUEST_TYPE_KILL_ANY_LEVEL))
418                                 continue;
419
420                         /* Not a "kill monster" quest */
421                         if ((quest[i].type == QUEST_TYPE_FIND_ARTIFACT) ||
422                             (quest[i].type == QUEST_TYPE_FIND_EXIT))
423                                 continue;
424
425                         /* Interesting quest */
426                         if ((quest[i].type == QUEST_TYPE_KILL_NUMBER) ||
427                             (quest[i].type == QUEST_TYPE_TOWER) ||
428                             (quest[i].type == QUEST_TYPE_KILL_ALL))
429                                 break;
430
431                         /* Interesting quest */
432                         if (((quest[i].type == QUEST_TYPE_KILL_LEVEL) ||
433                              (quest[i].type == QUEST_TYPE_KILL_ANY_LEVEL) ||
434                              (quest[i].type == QUEST_TYPE_RANDOM)) &&
435                              (quest[i].r_idx == m_ptr->r_idx))
436                                 break;
437                 }
438
439                 quest_num = i;
440         }
441
442         /* Handle the current quest */
443         if (quest_num && (quest[quest_num].status == QUEST_STATUS_TAKEN))
444         {
445                 /* Current quest */
446                 i = quest_num;
447
448                 switch (quest[i].type)
449                 {
450                         case QUEST_TYPE_KILL_NUMBER:
451                         {
452                                 quest[i].cur_num++;
453
454                                 if (quest[i].cur_num >= quest[i].num_mon)
455                                 {
456                                         if (record_fix_quest) do_cmd_write_nikki(NIKKI_FIX_QUEST_C, i, NULL);
457                                         /* completed quest */
458                                         quest[i].status = QUEST_STATUS_COMPLETED;
459                                         quest[i].complev = (byte)p_ptr->lev;
460
461                                         if (!(quest[i].flags & QUEST_FLAG_SILENT))
462                                         {
463 #ifdef JP
464 msg_print("¥¯¥¨¥¹¥È¤òãÀ®¤·¤¿¡ª");
465 #else
466                                                 msg_print("You just completed your quest!");
467 #endif
468
469                                                 msg_print(NULL);
470                                         }
471
472                                         quest[i].cur_num = 0;
473                                 }
474                                 break;
475                         }
476                         case QUEST_TYPE_KILL_ALL:
477                         {
478                                 int number_mon = 0;
479
480                                 if (!is_hostile(m_ptr)) break;
481
482                                 /* Count all hostile monsters */
483                                 for (i2 = 0; i2 < cur_wid; ++i2)
484                                         for (j2 = 0; j2 < cur_hgt; j2++)
485                                                 if (cave[j2][i2].m_idx > 0)
486                                                         if (is_hostile(&m_list[cave[j2][i2].m_idx])) 
487                                                                 number_mon++;
488
489                                 if ((number_mon - 1) == 0)
490                                 {
491                                         if (record_fix_quest) do_cmd_write_nikki(NIKKI_FIX_QUEST_C, i, NULL);
492                                         /* completed */
493                                         if (quest[i].flags & QUEST_FLAG_SILENT)
494                                         {
495                                                 quest[i].status = QUEST_STATUS_FINISHED;
496                                         }
497                                         else
498                                         {
499                                                 quest[i].status = QUEST_STATUS_COMPLETED;
500                                                 quest[i].complev = (byte)p_ptr->lev;
501 #ifdef JP
502 msg_print("¥¯¥¨¥¹¥È¤òãÀ®¤·¤¿¡ª");
503 #else
504                                                 msg_print("You just completed your quest!");
505 #endif
506
507                                                 msg_print(NULL);
508                                         }
509                                 }
510                                 break;
511                         }
512                         case QUEST_TYPE_KILL_LEVEL:
513                         case QUEST_TYPE_RANDOM:
514                         {
515                                 /* Only count valid monsters */
516                                 if (quest[i].r_idx != m_ptr->r_idx)
517                                         break;
518
519                                 quest[i].cur_num++;
520
521                                 if (quest[i].cur_num >= quest[i].max_num)
522                                 {
523                                         if (record_fix_quest && (quest[i].type == QUEST_TYPE_KILL_LEVEL)) do_cmd_write_nikki(NIKKI_FIX_QUEST_C, i, NULL);
524                                         if (record_rand_quest && (quest[i].type == QUEST_TYPE_RANDOM)) do_cmd_write_nikki(NIKKI_RAND_QUEST_C, i, NULL);
525                                         /* completed quest */
526                                         quest[i].status = QUEST_STATUS_COMPLETED;
527                                         quest[i].complev = (byte)p_ptr->lev;
528                                         if (!(quest[i].flags & QUEST_FLAG_PRESET))
529                                         {
530                                                 create_stairs = TRUE;
531                                                 p_ptr->inside_quest = 0;
532                                         }
533
534                                         if (!(quest[i].flags & QUEST_FLAG_SILENT))
535                                         {
536 #ifdef JP
537 msg_print("¥¯¥¨¥¹¥È¤òãÀ®¤·¤¿¡ª");
538 #else
539                                                 msg_print("You just completed your quest!");
540 #endif
541
542                                                 msg_print(NULL);
543                                         }
544
545                                         /* Finish the two main quests without rewarding */
546                                         if ((i == QUEST_OBERON) || (i == QUEST_SERPENT))
547                                         {
548                                                 quest[i].status = QUEST_STATUS_FINISHED;
549                                         }
550
551                                         if (quest[i].type == QUEST_TYPE_RANDOM)
552                                         {
553                                                 reward = TRUE;
554                                                 quest[i].status = QUEST_STATUS_FINISHED;
555                                         }
556                                 }
557                                 break;
558                         }
559                         case QUEST_TYPE_KILL_ANY_LEVEL:
560                         {
561                                 quest[i].cur_num++;
562                                 if (quest[i].cur_num >= quest[i].max_num)
563                                 {
564                                         if (record_fix_quest) do_cmd_write_nikki(NIKKI_FIX_QUEST_C, i, NULL);
565                                          /* completed quest */
566                                         quest[i].status = QUEST_STATUS_COMPLETED;
567                                         quest[i].complev = (byte)p_ptr->lev;
568
569                                         if (!(quest[i].flags & QUEST_FLAG_SILENT))
570                                         {
571 #ifdef JP
572 msg_print("¥¯¥¨¥¹¥È¤òãÀ®¤·¤¿¡ª");
573 #else
574                                                 msg_print("You just completed your quest!");
575 #endif
576
577                                                 msg_print(NULL);
578                                         }
579                                         quest[i].cur_num = 0;
580                                 }
581                                 break;
582                         }
583                         case QUEST_TYPE_TOWER:
584                         {
585                                 int number_mon = 0;
586
587                                 if (!is_hostile(m_ptr)) break;
588
589                                 /* Count all hostile monsters */
590                                 for (i2 = 0; i2 < cur_wid; ++i2)
591                                         for (j2 = 0; j2 < cur_hgt; j2++)
592                                                 if (cave[j2][i2].m_idx > 0)
593                                                         if (is_hostile(&m_list[cave[j2][i2].m_idx])) 
594                                                                 number_mon++;
595
596                                 if ((number_mon - 1) == 0)
597                                 {
598                                         if (record_fix_quest) do_cmd_write_nikki(NIKKI_FIX_QUEST_C, i, NULL);
599                                         
600                                         quest[i].status = QUEST_STATUS_STAGE_COMPLETED;
601                                         /* completed */
602                                         if((quest[QUEST_TOWER1].status == QUEST_STATUS_STAGE_COMPLETED) &&
603                                            (quest[QUEST_TOWER2].status == QUEST_STATUS_STAGE_COMPLETED) &&
604                                            (quest[QUEST_TOWER3].status == QUEST_STATUS_STAGE_COMPLETED))
605                                         {
606                                                 quest[QUEST_TOWER1].status = QUEST_STATUS_COMPLETED;
607                                                 quest[QUEST_TOWER1].complev = (byte)p_ptr->lev;;
608                                                         
609 #ifdef JP
610 msg_print("¥¯¥¨¥¹¥È¤òãÀ®¤·¤¿¡ª");
611 #else
612                                                 msg_print("You just completed your quest!");
613 #endif
614                                                 msg_print(NULL);
615                                         }
616                                 }
617                                 break;
618                         }
619                 }
620         }
621
622         /* Create a magical staircase */
623         if (create_stairs)
624         {
625                 /* Stagger around */
626                 while (cave_perma_bold(y, x) || cave[y][x].o_idx || (cave[y][x].info & CAVE_OBJECT) )
627                 {
628                         /* Pick a location */
629                         scatter(&ny, &nx, y, x, 1, 0);
630
631                         /* Stagger */
632                         y = ny; x = nx;
633                 }
634
635                 /* Explain the staircase */
636 #ifdef JP
637 msg_print("ËâË¡¤Î³¬Ãʤ¬¸½¤ì¤¿...");
638 #else
639                 msg_print("A magical staircase appears...");
640 #endif
641
642
643                 /* Create stairs down */
644                 cave_set_feat(y, x, feat_down_stair);
645
646                 /* Remember to update everything */
647                 p_ptr->update |= (PU_FLOW);
648         }
649
650         /*
651          * Drop quest reward
652          */
653         if (reward)
654         {
655                 for (j = 0; j < (dun_level / 15)+1; j++)
656                 {
657                         /* Get local object */
658                         q_ptr = &forge;
659
660                         /* Wipe the object */
661                         object_wipe(q_ptr);
662
663                         /* Make a great object */
664                         make_object(q_ptr, AM_GOOD | AM_GREAT);
665
666                         /* Drop it in the dungeon */
667                         (void)drop_near(q_ptr, -1, y, x);
668                 }
669         }
670 }
671
672
673 /*
674  * Return monster death string
675  */
676 cptr extract_note_dies(monster_race *r_ptr)
677 {
678         /* Some monsters get "destroyed" */
679         if (!monster_living(r_ptr))
680         {
681                 int i;
682
683                 for (i = 0; i < 4; i++)
684                 {
685                         if (r_ptr->blow[i].method == RBM_EXPLODE)
686                         {
687 #ifdef JP
688                                 return "¤ÏÇúȯ¤·¤ÆÊ´¡¹¤Ë¤Ê¤Ã¤¿¡£";
689 #else
690                                 return " explodes into tiny shreds.";
691 #endif
692                         }
693                 }
694
695 #ifdef JP
696                 return "¤òÅݤ·¤¿¡£";
697 #else
698                 return " is destroyed.";
699 #endif
700         }
701
702         /* Assume a default death */
703 #ifdef JP
704         return "¤Ï»à¤ó¤À¡£";
705 #else
706         return " dies.";
707 #endif
708 }
709
710
711 /*
712  * Handle the "death" of a monster.
713  *
714  * Disperse treasures centered at the monster location based on the
715  * various flags contained in the monster flags fields.
716  *
717  * Check for "Quest" completion when a quest monster is killed.
718  *
719  * Note that only the player can induce "monster_death()" on Uniques.
720  * Thus (for now) all Quest monsters should be Uniques.
721  *
722  * Note that monsters can now carry objects, and when a monster dies,
723  * it drops all of its objects, which may disappear in crowded rooms.
724  */
725 void monster_death(int m_idx, bool drop_item)
726 {
727         int i, j, y, x;
728
729         int dump_item = 0;
730         int dump_gold = 0;
731
732         int number = 0;
733
734         monster_type *m_ptr = &m_list[m_idx];
735
736         monster_race *r_ptr = &r_info[m_ptr->r_idx];
737
738         bool visible = ((m_ptr->ml && !p_ptr->image) || (r_ptr->flags1 & RF1_UNIQUE));
739
740         u32b mo_mode = 0L;
741
742         bool do_gold = (!(r_ptr->flags1 & RF1_ONLY_ITEM));
743         bool do_item = (!(r_ptr->flags1 & RF1_ONLY_GOLD));
744         bool cloned = (m_ptr->smart & SM_CLONED) ? TRUE : FALSE;
745         int force_coin = get_coin_type(m_ptr->r_idx);
746
747         object_type forge;
748         object_type *q_ptr;
749
750         bool drop_chosen_item = drop_item && !cloned && !p_ptr->inside_arena
751                 && !p_ptr->inside_battle && !is_pet(m_ptr);
752
753         /* The caster is dead? */
754         if (world_monster && world_monster == m_idx) world_monster = 0;
755
756         /* Notice changes in view */
757         if (r_ptr->flags7 & (RF7_LITE_MASK | RF7_DARK_MASK))
758         {
759                 /* Update some things */
760                 p_ptr->update |= (PU_MON_LITE);
761         }
762
763         /* Get the location */
764         y = m_ptr->fy;
765         x = m_ptr->fx;
766
767         if (record_named_pet && is_pet(m_ptr) && m_ptr->nickname)
768         {
769                 char m_name[80];
770
771                 monster_desc(m_name, m_ptr, MD_INDEF_VISIBLE);
772                 do_cmd_write_nikki(NIKKI_NAMED_PET, 3, m_name);
773         }
774
775         /* Let monsters explode! */
776         for (i = 0; i < 4; i++)
777         {
778                 if (r_ptr->blow[i].method == RBM_EXPLODE)
779                 {
780                         int flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
781                         int typ = mbe_info[r_ptr->blow[i].effect].explode_type;
782                         int d_dice = r_ptr->blow[i].d_dice;
783                         int d_side = r_ptr->blow[i].d_side;
784                         int damage = damroll(d_dice, d_side);
785
786                         project(m_idx, 3, y, x, damage, typ, flg, -1);
787                         break;
788                 }
789         }
790
791         if (m_ptr->mflag2 & MFLAG2_CHAMELEON)
792         {
793                 choose_new_monster(m_idx, TRUE, MON_CHAMELEON);
794                 r_ptr = &r_info[m_ptr->r_idx];
795         }
796
797         /* Check for quest completion */
798         check_quest_completion(m_ptr);
799
800         /* Handle the possibility of player vanquishing arena combatant -KMW- */
801         if (p_ptr->inside_arena && !is_pet(m_ptr))
802         {
803                 p_ptr->exit_bldg = TRUE;
804
805                 if (p_ptr->arena_number > MAX_ARENA_MONS)
806                 {
807 #ifdef JP
808 msg_print("ÁÇÀ²¤é¤·¤¤¡ª·¯¤³¤½¿¿¤Î¾¡Íø¼Ô¤À¡£");
809 #else
810                         msg_print("You are a Genuine Champion!");
811 #endif
812                 }
813                 else
814                 {
815 #ifdef JP
816 msg_print("¾¡Íø¡ª¥Á¥ã¥ó¥Ô¥ª¥ó¤Ø¤ÎÆ»¤ò¿Ê¤ó¤Ç¤¤¤ë¡£");
817 #else
818                         msg_print("Victorious! You're on your way to becoming Champion.");
819 #endif
820                 }
821
822                 if (arena_info[p_ptr->arena_number].tval)
823                 {
824                         /* Get local object */
825                         q_ptr = &forge;
826
827                         /* Prepare to make a prize */
828                         object_prep(q_ptr, lookup_kind(arena_info[p_ptr->arena_number].tval, arena_info[p_ptr->arena_number].sval));
829
830                         apply_magic(q_ptr, object_level, AM_NO_FIXED_ART);
831
832                         /* Drop it in the dungeon */
833                         (void)drop_near(q_ptr, -1, y, x);
834                 }
835
836                 if (p_ptr->arena_number > MAX_ARENA_MONS) p_ptr->arena_number++;
837                 p_ptr->arena_number++;
838                 if (record_arena)
839                 {
840                         char m_name[80];
841                         
842                         /* Extract monster name */
843                         monster_desc(m_name, m_ptr, MD_IGNORE_HALLU | MD_ASSUME_VISIBLE | MD_INDEF_VISIBLE);
844                         
845                         do_cmd_write_nikki(NIKKI_ARENA, p_ptr->arena_number, m_name);
846                 }
847         }
848
849         if (m_idx == p_ptr->riding)
850         {
851                 if (rakuba(-1, FALSE))
852                 {
853 #ifdef JP
854 msg_print("ÃÏÌ̤ËÍî¤È¤µ¤ì¤¿¡£");
855 #else
856                         msg_print("You have fallen from your riding pet.");
857 #endif
858                 }
859         }
860
861         /* Drop a dead corpse? */
862         if (one_in_(r_ptr->flags1 & RF1_UNIQUE ? 1 : 4) &&
863             (r_ptr->flags9 & (RF9_DROP_CORPSE | RF9_DROP_SKELETON)) &&
864             !(p_ptr->inside_arena || p_ptr->inside_battle || cloned || ((m_ptr->r_idx == today_mon) && is_pet(m_ptr))))
865         {
866                 /* Assume skeleton */
867                 bool corpse = FALSE;
868
869                 /*
870                  * We cannot drop a skeleton? Note, if we are in this check,
871                  * we *know* we can drop at least a corpse or a skeleton
872                  */
873                 if (!(r_ptr->flags9 & RF9_DROP_SKELETON))
874                         corpse = TRUE;
875                 else if ((r_ptr->flags9 & RF9_DROP_CORPSE) && (r_ptr->flags1 & RF1_UNIQUE))
876                         corpse = TRUE;
877
878                 /* Else, a corpse is more likely unless we did a "lot" of damage */
879                 else if (r_ptr->flags9 & RF9_DROP_CORPSE)
880                 {
881                         /* Lots of damage in one blow */
882                         if ((0 - ((m_ptr->maxhp) / 4)) > m_ptr->hp)
883                         {
884                                 if (one_in_(5)) corpse = TRUE;
885                         }
886                         else
887                         {
888                                 if (!one_in_(5)) corpse = TRUE;
889                         }
890                 }
891
892                 /* Get local object */
893                 q_ptr = &forge;
894
895                 /* Prepare to make an object */
896                 object_prep(q_ptr, lookup_kind(TV_CORPSE, (corpse ? SV_CORPSE : SV_SKELETON)));
897
898                 apply_magic(q_ptr, object_level, AM_NO_FIXED_ART);
899
900                 q_ptr->pval = m_ptr->r_idx;
901
902                 /* Drop it in the dungeon */
903                 (void)drop_near(q_ptr, -1, y, x);
904         }
905
906         /* Drop objects being carried */
907         monster_drop_carried_objects(m_ptr);
908
909         if (r_ptr->flags1 & RF1_DROP_GOOD) mo_mode |= AM_GOOD;
910         if (r_ptr->flags1 & RF1_DROP_GREAT) mo_mode |= AM_GREAT;
911
912         switch (m_ptr->r_idx)
913         {
914         case MON_PINK_HORROR:
915                 /* Pink horrors are replaced with 2 Blue horrors */
916                 if (!(p_ptr->inside_arena || p_ptr->inside_battle))
917                 {
918                         bool notice = FALSE;
919
920                         for (i = 0; i < 2; i++)
921                         {
922                                 int wy = y, wx = x;
923                                 bool pet = is_pet(m_ptr);
924                                 u32b mode = 0L;
925
926                                 if (pet) mode |= PM_FORCE_PET;
927
928                                 if (summon_specific((pet ? -1 : m_idx), wy, wx, 100, SUMMON_BLUE_HORROR, mode))
929                                 {
930                                         if (player_can_see_bold(wy, wx))
931                                                 notice = TRUE;
932                                 }
933                         }
934
935                         if (notice)
936 #ifdef JP
937                                 msg_print("¥Ô¥ó¥¯¡¦¥Û¥é¡¼¤ÏʬÎö¤·¤¿¡ª");
938 #else
939                                 msg_print("The Pink horror divides!");
940 #endif
941                 }
942                 break;
943
944         case MON_BLOODLETTER:
945                 /* Bloodletters of Khorne may drop a blade of chaos */
946                 if (drop_chosen_item && (randint1(100) < 15))
947                 {
948                         /* Get local object */
949                         q_ptr = &forge;
950
951                         /* Prepare to make a Blade of Chaos */
952                         object_prep(q_ptr, lookup_kind(TV_SWORD, SV_BLADE_OF_CHAOS));
953
954                         apply_magic(q_ptr, object_level, AM_NO_FIXED_ART | mo_mode);
955
956                         /* Drop it in the dungeon */
957                         (void)drop_near(q_ptr, -1, y, x);
958                 }
959                 break;
960
961         case MON_RAAL:
962                 if (drop_chosen_item && (dun_level > 9))
963                 {
964                         /* Get local object */
965                         q_ptr = &forge;
966
967                         /* Wipe the object */
968                         object_wipe(q_ptr);
969
970                         /* Activate restriction */
971                         if ((dun_level > 49) && one_in_(5))
972                                 get_obj_num_hook = kind_is_good_book;
973                         else
974                                 get_obj_num_hook = kind_is_book;
975
976                         /* Make a book */
977                         make_object(q_ptr, mo_mode);
978
979                         /* Drop it in the dungeon */
980                         (void)drop_near(q_ptr, -1, y, x);
981                 }
982                 break;
983
984         case MON_DAWN:
985                 /*
986                  * Mega^3-hack: killing a 'Warrior of the Dawn' is likely to
987                  * spawn another in the fallen one's place!
988                  */
989                 if (!p_ptr->inside_arena && !p_ptr->inside_battle)
990                 {
991                         if (!one_in_(7))
992                         {
993                                 int wy = y, wx = x;
994                                 int attempts = 100;
995                                 bool pet = is_pet(m_ptr);
996
997                                 do
998                                 {
999                                         scatter(&wy, &wx, y, x, 20, 0);
1000                                 }
1001                                 while (!(in_bounds(wy, wx) && cave_empty_bold2(wy, wx)) && --attempts);
1002
1003                                 if (attempts > 0)
1004                                 {
1005                                         u32b mode = 0L;
1006                                         if (pet) mode |= PM_FORCE_PET;
1007
1008                                         if (summon_specific((pet ? -1 : m_idx), wy, wx, 100, SUMMON_DAWN, mode))
1009                                         {
1010                                                 if (player_can_see_bold(wy, wx))
1011 #ifdef JP
1012                                                         msg_print("¿·¤¿¤ÊÀï»Î¤¬¸½¤ì¤¿¡ª");
1013 #else
1014                                                         msg_print("A new warrior steps forth!");
1015 #endif
1016
1017                                         }
1018                                 }
1019                         }
1020                 }
1021                 break;
1022
1023         case MON_UNMAKER:
1024                 /* One more ultra-hack: An Unmaker goes out with a big bang! */
1025                 {
1026                         int flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
1027                         (void)project(m_idx, 6, y, x, 100, GF_CHAOS, flg, -1);
1028                 }
1029                 break;
1030
1031         case MON_UNICORN_ORD:
1032         case MON_MORGOTH:
1033         case MON_ONE_RING:
1034                 /* Reward for "lazy" player */
1035                 if (p_ptr->pseikaku == SEIKAKU_NAMAKE)
1036                 {
1037                         int a_idx = 0;
1038                         artifact_type *a_ptr = NULL;
1039
1040                         if (!drop_chosen_item) break;
1041
1042                         do
1043                         {
1044                                 switch (randint0(3))
1045                                 {
1046                                 case 0:
1047                                         a_idx = ART_NAMAKE_HAMMER;
1048                                         break;
1049                                 case 1:
1050                                         a_idx = ART_NAMAKE_BOW;
1051                                         break;
1052                                 case 2:
1053                                         a_idx = ART_NAMAKE_ARMOR;
1054                                         break;
1055                                 }
1056
1057                                 a_ptr = &a_info[a_idx];
1058                         }
1059                         while (a_ptr->cur_num);
1060
1061                         /* Create the artifact */
1062                         if (create_named_art(a_idx, y, x))
1063                         {
1064                                 a_ptr->cur_num = 1;
1065
1066                                 /* Hack -- Memorize location of artifact in saved floors */
1067                                 if (character_dungeon) a_ptr->floor_id = p_ptr->floor_id;
1068                         }
1069                         else if (!preserve_mode) a_ptr->cur_num = 1;
1070                 }
1071                 break;
1072
1073         case MON_SERPENT:
1074                 if (!drop_chosen_item) break;
1075
1076                 /* Get local object */
1077                 q_ptr = &forge;
1078
1079                 /* Mega-Hack -- Prepare to make "Grond" */
1080                 object_prep(q_ptr, lookup_kind(TV_HAFTED, SV_GROND));
1081
1082                 /* Mega-Hack -- Mark this item as "Grond" */
1083                 q_ptr->name1 = ART_GROND;
1084
1085                 /* Mega-Hack -- Actually create "Grond" */
1086                 apply_magic(q_ptr, -1, AM_GOOD | AM_GREAT);
1087
1088                 /* Drop it in the dungeon */
1089                 (void)drop_near(q_ptr, -1, y, x);
1090
1091                 /* Get local object */
1092                 q_ptr = &forge;
1093
1094                 /* Mega-Hack -- Prepare to make "Chaos" */
1095                 object_prep(q_ptr, lookup_kind(TV_CROWN, SV_CHAOS));
1096
1097                 /* Mega-Hack -- Mark this item as "Chaos" */
1098                 q_ptr->name1 = ART_CHAOS;
1099
1100                 /* Mega-Hack -- Actually create "Chaos" */
1101                 apply_magic(q_ptr, -1, AM_GOOD | AM_GREAT);
1102
1103                 /* Drop it in the dungeon */
1104                 (void)drop_near(q_ptr, -1, y, x);
1105                 break;
1106
1107         case MON_B_DEATH_SWORD:
1108                 if (drop_chosen_item)
1109                 {
1110                         /* Get local object */
1111                         q_ptr = &forge;
1112
1113                         /* Prepare to make a broken sword */
1114                         object_prep(q_ptr, lookup_kind(TV_SWORD, randint1(2)));
1115
1116                         /* Drop it in the dungeon */
1117                         (void)drop_near(q_ptr, -1, y, x);
1118                 }
1119                 break;
1120
1121         case MON_A_GOLD:
1122         case MON_A_SILVER:
1123                 if (drop_chosen_item && ((m_ptr->r_idx == MON_A_GOLD) ||
1124                      ((m_ptr->r_idx == MON_A_SILVER) && (r_ptr->r_akills % 5 == 0))))
1125                 {
1126                         /* Get local object */
1127                         q_ptr = &forge;
1128
1129                         /* Prepare to make a Can of Toys */
1130                         object_prep(q_ptr, lookup_kind(TV_CHEST, SV_CHEST_KANDUME));
1131
1132                         apply_magic(q_ptr, object_level, AM_NO_FIXED_ART);
1133
1134                         /* Drop it in the dungeon */
1135                         (void)drop_near(q_ptr, -1, y, x);
1136                 }
1137                 break;
1138
1139         case MON_ROLENTO:
1140                 {
1141                         int flg = PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL;
1142                         (void)project(m_idx, 3, y, x, damroll(20, 10), GF_FIRE, flg, -1);
1143                 }
1144                 break;
1145
1146         default:
1147                 if (!drop_chosen_item) break;
1148
1149                 switch (r_ptr->d_char)
1150                 {
1151                 case '(':
1152                         if (dun_level > 0)
1153                         {
1154                                 /* Get local object */
1155                                 q_ptr = &forge;
1156
1157                                 /* Wipe the object */
1158                                 object_wipe(q_ptr);
1159
1160                                 /* Activate restriction */
1161                                 get_obj_num_hook = kind_is_cloak;
1162
1163                                 /* Make a cloak */
1164                                 make_object(q_ptr, mo_mode);
1165
1166                                 /* Drop it in the dungeon */
1167                                 (void)drop_near(q_ptr, -1, y, x);
1168                         }
1169                         break;
1170
1171                 case '/':
1172                         if (dun_level > 4)
1173                         {
1174                                 /* Get local object */
1175                                 q_ptr = &forge;
1176
1177                                 /* Wipe the object */
1178                                 object_wipe(q_ptr);
1179
1180                                 /* Activate restriction */
1181                                 get_obj_num_hook = kind_is_polearm;
1182
1183                                 /* Make a poleweapon */
1184                                 make_object(q_ptr, mo_mode);
1185
1186                                 /* Drop it in the dungeon */
1187                                 (void)drop_near(q_ptr, -1, y, x);
1188                         }
1189                         break;
1190
1191                 case '[':
1192                         if (dun_level > 19)
1193                         {
1194                                 /* Get local object */
1195                                 q_ptr = &forge;
1196
1197                                 /* Wipe the object */
1198                                 object_wipe(q_ptr);
1199
1200                                 /* Activate restriction */
1201                                 get_obj_num_hook = kind_is_armor;
1202
1203                                 /* Make a hard armor */
1204                                 make_object(q_ptr, mo_mode);
1205
1206                                 /* Drop it in the dungeon */
1207                                 (void)drop_near(q_ptr, -1, y, x);
1208                         }
1209                         break;
1210
1211                 case '\\':
1212                         if (dun_level > 4)
1213                         {
1214                                 /* Get local object */
1215                                 q_ptr = &forge;
1216
1217                                 /* Wipe the object */
1218                                 object_wipe(q_ptr);
1219
1220                                 /* Activate restriction */
1221                                 get_obj_num_hook = kind_is_hafted;
1222
1223                                 /* Make a hafted weapon */
1224                                 make_object(q_ptr, mo_mode);
1225
1226                                 /* Drop it in the dungeon */
1227                                 (void)drop_near(q_ptr, -1, y, x);
1228                         }
1229                         break;
1230
1231                 case '|':
1232                         if (m_ptr->r_idx != MON_STORMBRINGER)
1233                         {
1234                                 /* Get local object */
1235                                 q_ptr = &forge;
1236
1237                                 /* Wipe the object */
1238                                 object_wipe(q_ptr);
1239
1240                                 /* Activate restriction */
1241                                 get_obj_num_hook = kind_is_sword;
1242
1243                                 /* Make a sword */
1244                                 make_object(q_ptr, mo_mode);
1245
1246                                 /* Drop it in the dungeon */
1247                                 (void)drop_near(q_ptr, -1, y, x);
1248                         }
1249                         break;
1250                 }
1251                 break;
1252         }
1253
1254         /* Mega-Hack -- drop fixed items */
1255         if (drop_chosen_item)
1256         {
1257                 int a_idx = 0;
1258                 int chance = 0;
1259
1260                 switch (m_ptr->r_idx)
1261                 {
1262                 case MON_OBERON:
1263                         if (one_in_(3))
1264                         {
1265                                 a_idx = ART_JUDGE;
1266                                 chance = 33;
1267                         }
1268                         else
1269                         {
1270                                 a_idx = ART_AMBER;
1271                                 chance = 50;
1272                         }
1273                         break;
1274
1275                 case MON_GHB:
1276                         a_idx = ART_GHB;
1277                         chance = 100;
1278                         break;
1279
1280                 case MON_STORMBRINGER:
1281                         a_idx = ART_STORMBRINGER;
1282                         chance = 100;
1283                         break;
1284
1285                 case MON_ECHIZEN:
1286                         a_idx = ART_CRIMSON;
1287                         chance = 50;
1288                         break;
1289
1290                 case MON_GANDALF:
1291                         a_idx = ART_ICANUS;
1292                         chance = 20;
1293                         break;
1294
1295                 case MON_OROCHI:
1296                         a_idx = ART_KUSANAGI;
1297                         chance = 25;
1298                         break;
1299
1300                 case MON_DWORKIN:
1301                         a_idx = ART_JUDGE;
1302                         chance = 20;
1303                         break;
1304
1305                 case MON_SAURON:
1306                         if (one_in_(10))
1307                         {
1308                                 a_idx = ART_POWER;
1309                                 chance = 100;
1310                         }
1311                         else
1312                         {
1313                                 a_idx = ART_AHO;
1314                                 chance = 100;
1315                         }
1316                         break;
1317
1318                 case MON_BRAND:
1319                         if (!one_in_(3))
1320                         {
1321                                 a_idx = ART_BRAND;
1322                                 chance = 25;
1323                         }
1324                         else
1325                         {
1326                                 a_idx = ART_WEREWINDLE;
1327                                 chance = 33;
1328                         }
1329                         break;
1330
1331                 case MON_CORWIN:
1332                         if (!one_in_(3))
1333                         {
1334                                 a_idx = ART_GRAYSWANDIR;
1335                                 chance = 33;
1336                         }
1337                         else
1338                         {
1339                                 a_idx = ART_CORWIN;
1340                                 chance = 33;
1341                         }
1342                         break;
1343
1344                 case MON_SURTUR:
1345                         a_idx = ART_TWILIGHT;
1346                         chance = 66;
1347                         break;
1348
1349                 case MON_SARUMAN:
1350                         a_idx = ART_ELENDIL;
1351                         chance = 33;
1352                         break;
1353
1354                 case MON_FIONA:
1355                         a_idx = ART_FIONA;
1356                         chance = 50;
1357                         break;
1358
1359                 case MON_JULIAN:
1360                         a_idx = ART_JULIAN;
1361                         chance = 45;
1362                         break;
1363
1364                 case MON_KLING:
1365                         a_idx = ART_DESTINY;
1366                         chance = 40;
1367                         break;
1368
1369                 case MON_GOEMON:
1370                         a_idx = ART_ZANTETSU;
1371                         chance = 75;
1372                         break;
1373
1374                 case MON_HAGEN:
1375                         a_idx = ART_HAGEN;
1376                         chance = 66;
1377                         break;
1378
1379                 case MON_CAINE:
1380                         a_idx = ART_CAINE;
1381                         chance = 50;
1382                         break;
1383
1384                 case MON_BULLGATES:
1385                         a_idx = ART_WINBLOWS;
1386                         chance = 66;
1387                         break;
1388
1389                 case MON_LUNGORTHIN:
1390                         a_idx = ART_CALRIS;
1391                         chance = 50;
1392                         break;
1393
1394                 case MON_JACK_SHADOWS:
1395                         a_idx = ART_JACK;
1396                         chance = 15;
1397                         break;
1398
1399                 case MON_DIO:
1400                         a_idx = ART_STONEMASK;
1401                         chance = 20;
1402                         break;
1403
1404                 case MON_BELD:
1405                         a_idx = ART_SOULCRUSH;
1406                         chance = 10;
1407                         break;
1408
1409                 case MON_PIP:
1410                         a_idx = ART_EXCALIBUR_J;
1411                         chance = 50;
1412                         break;
1413
1414                 case MON_SHUTEN:
1415                         a_idx = ART_SHUTEN_DOJI;
1416                         chance = 33;
1417                         break;
1418
1419                 case MON_GOTHMOG:
1420                         a_idx = ART_GOTHMOG;
1421                         chance = 33;
1422                         break;
1423
1424                 case MON_FUNDIN:
1425                         a_idx = ART_FUNDIN;
1426                         chance = 5;
1427                         break;
1428
1429                 case MON_ROBIN_HOOD:
1430                         a_idx = ART_ROBIN_HOOD;
1431                         chance = 5;
1432                         break;
1433                 }
1434
1435                 if ((a_idx > 0) && ((randint0(100) < chance) || p_ptr->wizard))
1436                 {
1437                         artifact_type *a_ptr = &a_info[a_idx];
1438
1439                         if (!a_ptr->cur_num)
1440                         {
1441                                 /* Create the artifact */
1442                                 if (create_named_art(a_idx, y, x))
1443                                 {
1444                                         a_ptr->cur_num = 1;
1445
1446                                         /* Hack -- Memorize location of artifact in saved floors */
1447                                         if (character_dungeon) a_ptr->floor_id = p_ptr->floor_id;
1448                                 }
1449                                 else if (!preserve_mode) a_ptr->cur_num = 1;
1450                         }
1451                 }
1452
1453                 if ((r_ptr->flags7 & RF7_GUARDIAN) && (d_info[dungeon_type].final_guardian == m_ptr->r_idx))
1454                 {
1455                         int k_idx = d_info[dungeon_type].final_object ? d_info[dungeon_type].final_object
1456                                 : lookup_kind(TV_SCROLL, SV_SCROLL_ACQUIREMENT);
1457
1458                         if (d_info[dungeon_type].final_artifact)
1459                         {
1460                                 int a_idx = d_info[dungeon_type].final_artifact;
1461                                 artifact_type *a_ptr = &a_info[a_idx];
1462
1463                                 if (!a_ptr->cur_num)
1464                                 {
1465                                         /* Create the artifact */
1466                                         if (create_named_art(a_idx, y, x))
1467                                         {
1468                                                 a_ptr->cur_num = 1;
1469
1470                                                 /* Hack -- Memorize location of artifact in saved floors */
1471                                                 if (character_dungeon) a_ptr->floor_id = p_ptr->floor_id;
1472                                         }
1473                                         else if (!preserve_mode) a_ptr->cur_num = 1;
1474
1475                                         /* Prevent rewarding both artifact and "default" object */
1476                                         if (!d_info[dungeon_type].final_object) k_idx = 0;
1477                                 }
1478                         }
1479
1480                         if (k_idx)
1481                         {
1482                                 /* Get local object */
1483                                 q_ptr = &forge;
1484
1485                                 /* Prepare to make a reward */
1486                                 object_prep(q_ptr, k_idx);
1487
1488                                 apply_magic(q_ptr, object_level, AM_NO_FIXED_ART | AM_GOOD);
1489
1490                                 /* Drop it in the dungeon */
1491                                 (void)drop_near(q_ptr, -1, y, x);
1492                         }
1493 #ifdef JP
1494                         msg_format("¤¢¤Ê¤¿¤Ï%s¤òÀ©ÇƤ·¤¿¡ª",d_name+d_info[dungeon_type].name);
1495 #else
1496                         msg_format("You have conquered %s!",d_name+d_info[dungeon_type].name);
1497 #endif
1498                 }
1499         }
1500
1501         /* Determine how much we can drop */
1502         if ((r_ptr->flags1 & RF1_DROP_60) && (randint0(100) < 60)) number++;
1503         if ((r_ptr->flags1 & RF1_DROP_90) && (randint0(100) < 90)) number++;
1504         if  (r_ptr->flags1 & RF1_DROP_1D2) number += damroll(1, 2);
1505         if  (r_ptr->flags1 & RF1_DROP_2D2) number += damroll(2, 2);
1506         if  (r_ptr->flags1 & RF1_DROP_3D2) number += damroll(3, 2);
1507         if  (r_ptr->flags1 & RF1_DROP_4D2) number += damroll(4, 2);
1508
1509         if (cloned && !(r_ptr->flags1 & RF1_UNIQUE))
1510                 number = 0; /* Clones drop no stuff unless Cloning Pits */
1511
1512         if (is_pet(m_ptr) || p_ptr->inside_battle || p_ptr->inside_arena)
1513                 number = 0; /* Pets drop no stuff */
1514         if (!drop_item && (r_ptr->d_char != '$')) number = 0;
1515         
1516         if((r_ptr->flags2 & (RF2_MULTIPLY)) && (r_ptr->r_pkills > 1024))
1517                 number = 0; /* Limit of Multiply monster drop */
1518
1519         /* Hack -- handle creeping coins */
1520         coin_type = force_coin;
1521
1522         /* Average dungeon and monster levels */
1523         object_level = (dun_level + r_ptr->level) / 2;
1524
1525         /* Drop some objects */
1526         for (j = 0; j < number; j++)
1527         {
1528                 /* Get local object */
1529                 q_ptr = &forge;
1530
1531                 /* Wipe the object */
1532                 object_wipe(q_ptr);
1533
1534                 /* Make Gold */
1535                 if (do_gold && (!do_item || (randint0(100) < 50)))
1536                 {
1537                         /* Make some gold */
1538                         if (!make_gold(q_ptr)) continue;
1539
1540                         /* XXX XXX XXX */
1541                         dump_gold++;
1542                 }
1543
1544                 /* Make Object */
1545                 else
1546                 {
1547                         /* Make an object */
1548                         if (!make_object(q_ptr, mo_mode)) continue;
1549
1550                         /* XXX XXX XXX */
1551                         dump_item++;
1552                 }
1553
1554                 /* Drop it in the dungeon */
1555                 (void)drop_near(q_ptr, -1, y, x);
1556         }
1557
1558         /* Reset the object level */
1559         object_level = base_level;
1560
1561         /* Reset "coin" type */
1562         coin_type = 0;
1563
1564
1565         /* Take note of any dropped treasure */
1566         if (visible && (dump_item || dump_gold))
1567         {
1568                 /* Take notes on treasure */
1569                 lore_treasure(m_idx, dump_item, dump_gold);
1570         }
1571
1572         /* Only process "Quest Monsters" */
1573         if (!(r_ptr->flags1 & RF1_QUESTOR)) return;
1574         if (p_ptr->inside_battle) return;
1575
1576         /* Winner? */
1577         if ((m_ptr->r_idx == MON_SERPENT) && !cloned)
1578         {
1579                 /* Total winner */
1580                 p_ptr->total_winner = TRUE;
1581
1582                 /* Redraw the "title" */
1583                 p_ptr->redraw |= (PR_TITLE);
1584
1585 #ifdef JP
1586                 do_cmd_write_nikki(NIKKI_BUNSHOU, 0, "¸«»ö¤ËÊѶòÈÚÅܤξ¡Íø¼Ô¤È¤Ê¤Ã¤¿¡ª");
1587 #else
1588                 do_cmd_write_nikki(NIKKI_BUNSHOU, 0, "become *WINNER* of Hengband finely!");
1589 #endif
1590
1591                 if ((p_ptr->pclass == CLASS_CHAOS_WARRIOR) || (p_ptr->muta2 & MUT2_CHAOS_GIFT))
1592                 {
1593 #ifdef JP
1594                         msg_format("%s¤«¤é¤ÎÀ¼¤¬¶Á¤¤¤¿¡£", chaos_patrons[p_ptr->chaos_patron]);
1595                         msg_print("¡Ø¤è¤¯¤ä¤Ã¤¿¡¢ÄêÌ¿¤Î¼Ô¤è¡ª¡Ù");
1596 #else
1597                         msg_format("The voice of %s booms out:", chaos_patrons[p_ptr->chaos_patron]);
1598                         msg_print("'Thou art donst well, mortal!'");
1599 #endif
1600                 }
1601
1602                 /* Congratulations */
1603 #ifdef JP
1604                 msg_print("*** ¤ª¤á¤Ç¤È¤¦ ***");
1605 #else
1606                 msg_print("*** CONGRATULATIONS ***");
1607 #endif
1608
1609 #ifdef JP
1610                 msg_print("¤¢¤Ê¤¿¤Ï¥²¡¼¥à¤ò¥³¥ó¥×¥ê¡¼¥È¤·¤Þ¤·¤¿¡£");
1611 #else
1612                 msg_print("You have won the game!");
1613 #endif
1614
1615 #ifdef JP
1616                 msg_print("½àÈ÷¤¬À°¤Ã¤¿¤é°úÂà(¼«»¦¥³¥Þ¥ó¥É)¤·¤Æ¤â·ë¹½¤Ç¤¹¡£");
1617 #else
1618                 msg_print("You may retire (commit suicide) when you are ready.");
1619 #endif
1620         }
1621 }
1622
1623 /*
1624  * Modify the physical damage done to the monster.
1625  * (for example when it's invulnerable or shielded)
1626  *
1627  * ToDo: Accept a damage-type to calculate the modified damage from
1628  * things like fire, frost, lightning, poison, ... attacks.
1629  *
1630  * "type" is not yet used and should be 0.
1631  */
1632 int mon_damage_mod(monster_type *m_ptr, int dam, bool is_psy_spear)
1633 {
1634         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
1635
1636         if ((r_ptr->flagsr & RFR_RES_ALL) && dam > 0)
1637         {
1638                 dam /= 100;
1639                 if ((dam == 0) && one_in_(3)) dam = 1;
1640         }
1641
1642         if (MON_INVULNER(m_ptr))
1643         {
1644                 if (is_psy_spear)
1645                 {
1646                         if (!p_ptr->blind && is_seen(m_ptr))
1647                         {
1648 #ifdef JP
1649                                 msg_print("¥Ð¥ê¥¢¤òÀÚ¤êÎö¤¤¤¿¡ª");
1650 #else
1651                                 msg_print("The barrier is penetrated!");
1652 #endif
1653                         }
1654                 }
1655                 else if (!one_in_(PENETRATE_INVULNERABILITY))
1656                 {
1657                         return (0);
1658                 }
1659         }
1660         return (dam);
1661 }
1662
1663
1664 /*
1665  * Calculate experience point to be get
1666  *
1667  * Even the 64 bit operation is not big enough to avoid overflaw
1668  * unless we carefully choose orders of multiplication and division.
1669  *
1670  * Get the coefficient first, and multiply (potentially huge) base
1671  * experience point of a monster later.
1672  */
1673 static void get_exp_from_mon(int dam, monster_type *m_ptr)
1674 {
1675         monster_race *r_ptr = &r_info[m_ptr->r_idx];
1676
1677         s32b new_exp;
1678         u32b new_exp_frac;
1679         s32b div_h;
1680         u32b div_l;
1681
1682         if (!m_ptr->r_idx) return;
1683         if (is_pet(m_ptr) || p_ptr->inside_battle) return;
1684
1685         /*
1686          * - Ratio of monster's level to player's level effects
1687          * - Varying speed effects
1688          * - Get a fraction in proportion of damage point
1689          */
1690         new_exp = r_ptr->level * SPEED_TO_ENERGY(m_ptr->mspeed) * dam;
1691         new_exp_frac = 0;
1692         div_h = 0L;
1693         div_l = (p_ptr->max_plv+2) * SPEED_TO_ENERGY(r_ptr->speed);
1694
1695         /* Use (average maxhp * 2) as a denominator */
1696         if (!(r_ptr->flags1 & RF1_FORCE_MAXHP))
1697                 s64b_mul(&div_h, &div_l, 0, r_ptr->hdice * (ironman_nightmare ? 2 : 1) * (r_ptr->hside + 1));
1698         else
1699                 s64b_mul(&div_h, &div_l, 0, r_ptr->hdice * (ironman_nightmare ? 2 : 1) * r_ptr->hside * 2);
1700
1701         /* Special penalty in the wilderness */
1702         if (!dun_level && (!(r_ptr->flags8 & RF8_WILD_ONLY) || !(r_ptr->flags1 & RF1_UNIQUE)))
1703                 s64b_mul(&div_h, &div_l, 0, 5);
1704
1705         /* Do division first to prevent overflaw */
1706         s64b_div(&new_exp, &new_exp_frac, div_h, div_l);
1707
1708         /* Special penalty for mutiply-monster */
1709         if ((r_ptr->flags2 & RF2_MULTIPLY) || (m_ptr->r_idx == MON_DAWN))
1710         {
1711                 int monnum_penarty = r_ptr->r_akills / 400;
1712                 if (monnum_penarty > 8) monnum_penarty = 8;
1713
1714                 while (monnum_penarty--)
1715                 {
1716                         /* Divide by 4 */
1717                         s64b_RSHIFT(new_exp, new_exp_frac, 2);
1718                 }
1719         }
1720
1721         /* Finally multiply base experience point of the monster */
1722         s64b_mul(&new_exp, &new_exp_frac, 0, r_ptr->mexp);
1723
1724         /* Gain experience */
1725         gain_exp_64(new_exp, new_exp_frac);
1726 }
1727
1728
1729 /*
1730  * Decreases monsters hit points, handling monster death.
1731  *
1732  * We return TRUE if the monster has been killed (and deleted).
1733  *
1734  * We announce monster death (using an optional "death message"
1735  * if given, and a otherwise a generic killed/destroyed message).
1736  *
1737  * Only "physical attacks" can induce the "You have slain" message.
1738  * Missile and Spell attacks will induce the "dies" message, or
1739  * various "specialized" messages.  Note that "You have destroyed"
1740  * and "is destroyed" are synonyms for "You have slain" and "dies".
1741  *
1742  * Hack -- unseen monsters yield "You have killed it." message.
1743  *
1744  * Added fear (DGK) and check whether to print fear messages -CWS
1745  *
1746  * Made name, sex, and capitalization generic -BEN-
1747  *
1748  * As always, the "ghost" processing is a total hack.
1749  *
1750  * Hack -- we "delay" fear messages by passing around a "fear" flag.
1751  *
1752  * XXX XXX XXX Consider decreasing monster experience over time, say,
1753  * by using "(m_exp * m_lev * (m_lev)) / (p_lev * (m_lev + n_killed))"
1754  * instead of simply "(m_exp * m_lev) / (p_lev)", to make the first
1755  * monster worth more than subsequent monsters.  This would also need
1756  * to induce changes in the monster recall code.
1757  */
1758 bool mon_take_hit(int m_idx, int dam, bool *fear, cptr note)
1759 {
1760         monster_type    *m_ptr = &m_list[m_idx];
1761         monster_race    *r_ptr = &r_info[m_ptr->r_idx];
1762
1763         monster_type    exp_mon;
1764
1765         /* Innocent until proven otherwise */
1766         bool        innocent = TRUE, thief = FALSE;
1767         int         i;
1768         int         expdam;
1769
1770         COPY(&exp_mon, m_ptr, monster_type);
1771         if (!(r_ptr->flags7 & RF7_KILL_EXP))
1772         {
1773                 expdam = (m_ptr->hp > dam) ? dam : m_ptr->hp;
1774                 if (r_ptr->flags6 & RF6_HEAL) expdam = (expdam+1) * 2 / 3;
1775
1776                 get_exp_from_mon(expdam, &exp_mon);
1777
1778                 /* Genocided by chaos patron */
1779                 if (!m_ptr->r_idx) m_idx = 0;
1780         }
1781
1782         /* Redraw (later) if needed */
1783         if (p_ptr->health_who == m_idx) p_ptr->redraw |= (PR_HEALTH);
1784         if (p_ptr->riding == m_idx) p_ptr->redraw |= (PR_UHEALTH);
1785
1786         /* Wake it up */
1787         (void)set_monster_csleep(m_idx, 0);
1788
1789         /* Hack - Cancel any special player stealth magics. -LM- */
1790         if (p_ptr->special_defense & NINJA_S_STEALTH)
1791         {
1792                 set_superstealth(FALSE);
1793         }
1794
1795         /* Genocided by chaos patron */
1796         if (!m_idx) return TRUE;
1797
1798         /* Hurt it */
1799         m_ptr->hp -= dam;
1800
1801         /* It is dead now */
1802         if (m_ptr->hp < 0)
1803         {
1804                 char m_name[80];
1805
1806                 if (r_info[m_ptr->r_idx].flags7 & RF7_TANUKI)
1807                 {
1808                         /* You might have unmasked Tanuki first time */
1809                         r_ptr = &r_info[m_ptr->r_idx];
1810                         m_ptr->ap_r_idx = m_ptr->r_idx;
1811                         if (r_ptr->r_sights < MAX_SHORT) r_ptr->r_sights++;
1812                 }
1813
1814                 if (m_ptr->mflag2 & MFLAG2_CHAMELEON)
1815                 {
1816                         /* You might have unmasked Chameleon first time */
1817                         r_ptr = real_r_ptr(m_ptr);
1818                         if (r_ptr->r_sights < MAX_SHORT) r_ptr->r_sights++;
1819                 }
1820
1821                 if (!(m_ptr->smart & SM_CLONED))
1822                 {
1823                         /* When the player kills a Unique, it stays dead */
1824                         if (r_ptr->flags1 & RF1_UNIQUE)
1825                         {
1826                                 r_ptr->max_num = 0;
1827
1828                                 /* Mega-Hack -- Banor & Lupart */
1829                                 if ((m_ptr->r_idx == MON_BANOR) || (m_ptr->r_idx == MON_LUPART))
1830                                 {
1831                                         r_info[MON_BANORLUPART].max_num = 0;
1832                                         r_info[MON_BANORLUPART].r_pkills++;
1833                                         r_info[MON_BANORLUPART].r_akills++;
1834                                         if (r_info[MON_BANORLUPART].r_tkills < MAX_SHORT) r_info[MON_BANORLUPART].r_tkills++;
1835                                 }
1836                                 else if (m_ptr->r_idx == MON_BANORLUPART)
1837                                 {
1838                                         r_info[MON_BANOR].max_num = 0;
1839                                         r_info[MON_BANOR].r_pkills++;
1840                                         r_info[MON_BANOR].r_akills++;
1841                                         if (r_info[MON_BANOR].r_tkills < MAX_SHORT) r_info[MON_BANOR].r_tkills++;
1842                                         r_info[MON_LUPART].max_num = 0;
1843                                         r_info[MON_LUPART].r_pkills++;
1844                                         r_info[MON_LUPART].r_akills++;
1845                                         if (r_info[MON_LUPART].r_tkills < MAX_SHORT) r_info[MON_LUPART].r_tkills++;
1846                                 }
1847                         }
1848
1849                         /* When the player kills a Nazgul, it stays dead */
1850                         else if (r_ptr->flags7 & RF7_NAZGUL) r_ptr->max_num--;
1851                 }
1852
1853                 /* Count all monsters killed */
1854                 if (r_ptr->r_akills < MAX_SHORT) r_ptr->r_akills++;
1855
1856                 /* Recall even invisible uniques or winners */
1857                 if ((m_ptr->ml && !p_ptr->image) || (r_ptr->flags1 & RF1_UNIQUE))
1858                 {
1859                         /* Count kills this life */
1860                         if ((m_ptr->mflag2 & MFLAG2_KAGE) && (r_info[MON_KAGE].r_pkills < MAX_SHORT)) r_info[MON_KAGE].r_pkills++;
1861                         else if (r_ptr->r_pkills < MAX_SHORT) r_ptr->r_pkills++;
1862
1863                         /* Count kills in all lives */
1864                         if ((m_ptr->mflag2 & MFLAG2_KAGE) && (r_info[MON_KAGE].r_tkills < MAX_SHORT)) r_info[MON_KAGE].r_tkills++;
1865                         else if (r_ptr->r_tkills < MAX_SHORT) r_ptr->r_tkills++;
1866
1867                         /* Hack -- Auto-recall */
1868                         monster_race_track(m_ptr->ap_r_idx);
1869                 }
1870
1871                 /* Extract monster name */
1872                 monster_desc(m_name, m_ptr, MD_TRUE_NAME);
1873
1874                 /* Don't kill Amberites */
1875                 if ((r_ptr->flags3 & RF3_AMBERITE) && one_in_(2))
1876                 {
1877                         int curses = 1 + randint1(3);
1878                         bool stop_ty = FALSE;
1879                         int count = 0;
1880
1881 #ifdef JP
1882 msg_format("%^s¤Ï¶²¤í¤·¤¤·ì¤Î¼ö¤¤¤ò¤¢¤Ê¤¿¤Ë¤«¤±¤¿¡ª", m_name);
1883 #else
1884                         msg_format("%^s puts a terrible blood curse on you!", m_name);
1885 #endif
1886
1887                         curse_equipment(100, 50);
1888
1889                         do
1890                         {
1891                                 stop_ty = activate_ty_curse(stop_ty, &count);
1892                         }
1893                         while (--curses);
1894                 }
1895
1896                 if (r_ptr->flags2 & RF2_CAN_SPEAK)
1897                 {
1898                         char line_got[1024];
1899
1900                         /* Dump a message */
1901 #ifdef JP
1902                         if (!get_rnd_line("mondeath_j.txt", m_ptr->r_idx, line_got))
1903 #else
1904                         if (!get_rnd_line("mondeath.txt", m_ptr->r_idx, line_got))
1905 #endif
1906
1907                                 msg_format("%^s %s", m_name, line_got);
1908
1909 #ifdef WORLD_SCORE
1910                         if (m_ptr->r_idx == MON_SERPENT)
1911                         {
1912                                 /* Make screen dump */
1913                                 screen_dump = make_screen_dump();
1914                         }
1915 #endif
1916                 }
1917
1918                 if (!(d_info[dungeon_type].flags1 & DF1_BEGINNER))
1919                 {
1920                         if (!dun_level && !ambush_flag && !p_ptr->inside_arena)
1921                         {
1922                                 chg_virtue(V_VALOUR, -1);
1923                         }
1924                         else if (r_ptr->level > dun_level)
1925                         {
1926                                 if (randint1(10) <= (r_ptr->level - dun_level))
1927                                         chg_virtue(V_VALOUR, 1);
1928                         }
1929                         if (r_ptr->level > 60)
1930                         {
1931                                 chg_virtue(V_VALOUR, 1);
1932                         }
1933                         if (r_ptr->level >= 2 * (p_ptr->lev+1))
1934                                 chg_virtue(V_VALOUR, 2);
1935                 }
1936
1937                 if (r_ptr->flags1 & RF1_UNIQUE)
1938                 {
1939                         if (r_ptr->flags3 & (RF3_EVIL | RF3_GOOD)) chg_virtue(V_HARMONY, 2);
1940
1941                         if (r_ptr->flags3 & RF3_GOOD)
1942                         {
1943                                 chg_virtue(V_UNLIFE, 2);
1944                                 chg_virtue(V_VITALITY, -2);
1945                         }
1946
1947                         if (one_in_(3)) chg_virtue(V_INDIVIDUALISM, -1);
1948                 }
1949
1950                 if (m_ptr->r_idx == MON_BEGGAR || m_ptr->r_idx == MON_LEPER)
1951                 {
1952                         chg_virtue(V_COMPASSION, -1);
1953                 }
1954
1955                 if ((r_ptr->flags3 & RF3_GOOD) &&
1956                         ((r_ptr->level) / 10 + (3 * dun_level) >= randint1(100)))
1957                         chg_virtue(V_UNLIFE, 1);
1958
1959                 if (r_ptr->d_char == 'A')
1960                 {
1961                         if (r_ptr->flags1 & RF1_UNIQUE)
1962                                 chg_virtue(V_FAITH, -2);
1963                         else if ((r_ptr->level) / 10 + (3 * dun_level) >= randint1(100))
1964                         {
1965                                 if (r_ptr->flags3 & RF3_GOOD) chg_virtue(V_FAITH, -1);
1966                                 else chg_virtue(V_FAITH, 1);
1967                         }
1968                 }
1969                 else if (r_ptr->flags3 & RF3_DEMON)
1970                 {
1971                         if (r_ptr->flags1 & RF1_UNIQUE)
1972                                 chg_virtue(V_FAITH, 2);
1973                         else if ((r_ptr->level) / 10 + (3 * dun_level) >= randint1(100))
1974                                 chg_virtue(V_FAITH, 1);
1975                 }
1976
1977                 if ((r_ptr->flags3 & RF3_UNDEAD) && (r_ptr->flags1 & RF1_UNIQUE))
1978                         chg_virtue(V_VITALITY, 2);
1979
1980                 if (r_ptr->r_deaths)
1981                 {
1982                         if (r_ptr->flags1 & RF1_UNIQUE)
1983                         {
1984                                 chg_virtue(V_HONOUR, 10);
1985                         }
1986                         else if ((r_ptr->level) / 10 + (2 * dun_level) >= randint1(100))
1987                         {
1988                                 chg_virtue(V_HONOUR, 1);
1989                         }
1990                 }
1991                 if ((r_ptr->flags2 & RF2_MULTIPLY) && (r_ptr->r_akills > 1000) && one_in_(10))
1992                 {
1993                         chg_virtue(V_VALOUR, -1);
1994                 }
1995
1996                 for (i = 0; i < 4; i++)
1997                 {
1998                         if (r_ptr->blow[i].d_dice != 0) innocent = FALSE; /* Murderer! */
1999
2000                         if ((r_ptr->blow[i].effect == RBE_EAT_ITEM)
2001                                 || (r_ptr->blow[i].effect == RBE_EAT_GOLD))
2002
2003                                 thief = TRUE; /* Thief! */
2004                 }
2005
2006                 /* The new law says it is illegal to live in the dungeon */
2007                 if (r_ptr->level != 0) innocent = FALSE;
2008
2009                 if (thief)
2010                 {
2011                         if (r_ptr->flags1 & RF1_UNIQUE)
2012                                 chg_virtue(V_JUSTICE, 3);
2013                         else if (1+((r_ptr->level) / 10 + (2 * dun_level))
2014                                 >= randint1(100))
2015                                 chg_virtue(V_JUSTICE, 1);
2016                 }
2017                 else if (innocent)
2018                 {
2019                         chg_virtue (V_JUSTICE, -1);
2020                 }
2021
2022                 if ((r_ptr->flags3 & RF3_ANIMAL) && !(r_ptr->flags3 & RF3_EVIL) && !(r_ptr->flags4 & ~(RF4_NOMAGIC_MASK))  && !(r_ptr->flags5 & ~(RF5_NOMAGIC_MASK)) && !(r_ptr->flags6 & ~(RF6_NOMAGIC_MASK)))
2023                 {
2024                         if (one_in_(4)) chg_virtue(V_NATURE, -1);
2025                 }
2026
2027                 if ((r_ptr->flags1 & RF1_UNIQUE) && record_destroy_uniq)
2028                 {
2029                         char note_buf[160];
2030 #ifdef JP
2031                         sprintf(note_buf, "%s%s", r_name + r_ptr->name, (m_ptr->smart & SM_CLONED) ? "(¥¯¥í¡¼¥ó)" : "");
2032 #else
2033                         sprintf(note_buf, "%s%s", r_name + r_ptr->name, (m_ptr->smart & SM_CLONED) ? "(Clone)" : "");
2034 #endif
2035                         do_cmd_write_nikki(NIKKI_UNIQUE, 0, note_buf);
2036                 }
2037
2038                 /* Make a sound */
2039                 sound(SOUND_KILL);
2040
2041                 /* Death by Missile/Spell attack */
2042                 if (note)
2043                 {
2044                         msg_format("%^s%s", m_name, note);
2045                 }
2046
2047                 /* Death by physical attack -- invisible monster */
2048                 else if (!m_ptr->ml)
2049                 {
2050 #ifdef JP
2051                         if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
2052                                 msg_format("¤»¤Ã¤«¤¯¤À¤«¤é%s¤ò»¦¤·¤¿¡£", m_name);
2053                         else
2054 msg_format("%s¤ò»¦¤·¤¿¡£", m_name);
2055 #else
2056                                 msg_format("You have killed %s.", m_name);
2057 #endif
2058
2059                 }
2060
2061                 /* Death by Physical attack -- non-living monster */
2062                 else if (!monster_living(r_ptr))
2063                 {
2064                         int i;
2065                         bool explode = FALSE;
2066
2067                         for (i = 0; i < 4; i++)
2068                         {
2069                                 if (r_ptr->blow[i].method == RBM_EXPLODE) explode = TRUE;
2070                         }
2071
2072                         /* Special note at death */
2073                         if (explode)
2074 #ifdef JP
2075                                 msg_format("%s¤ÏÇúȯ¤·¤ÆÊ´¡¹¤Ë¤Ê¤Ã¤¿¡£", m_name);
2076 #else
2077                                 msg_format("%^s explodes into tiny shreds.", m_name);
2078 #endif
2079                         else
2080                         {
2081 #ifdef JP
2082                                 if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
2083                                         msg_format("¤»¤Ã¤«¤¯¤À¤«¤é%s¤òÅݤ·¤¿¡£", m_name);
2084                                 else
2085 msg_format("%s¤òÅݤ·¤¿¡£", m_name);
2086 #else
2087                                 msg_format("You have destroyed %s.", m_name);
2088 #endif
2089                         }
2090                 }
2091
2092                 /* Death by Physical attack -- living monster */
2093                 else
2094                 {
2095 #ifdef JP
2096                         if ((p_ptr->pseikaku == SEIKAKU_COMBAT) || (inventory[INVEN_BOW].name1 == ART_CRIMSON))
2097                                 msg_format("¤»¤Ã¤«¤¯¤À¤«¤é%s¤òÁò¤êµî¤Ã¤¿¡£", m_name);
2098                         else
2099 msg_format("%s¤òÁò¤êµî¤Ã¤¿¡£", m_name);
2100 #else
2101                                 msg_format("You have slain %s.", m_name);
2102 #endif
2103
2104                 }
2105                 if ((r_ptr->flags1 & RF1_UNIQUE) && !(m_ptr->smart & SM_CLONED) && !vanilla_town)
2106                 {
2107                         for (i = 0; i < MAX_KUBI; i++)
2108                         {
2109                                 if ((kubi_r_idx[i] == m_ptr->r_idx) && !(m_ptr->mflag2 & MFLAG2_CHAMELEON))
2110                                 {
2111 #ifdef JP
2112 msg_format("%s¤Î¼ó¤Ë¤Ï¾Þ¶â¤¬¤«¤«¤Ã¤Æ¤¤¤ë¡£", m_name);
2113 #else
2114                                         msg_format("There is a price on %s's head.", m_name);
2115 #endif
2116                                         break;
2117                                 }
2118                         }
2119                 }
2120
2121                 /* Generate treasure */
2122                 monster_death(m_idx, TRUE);
2123
2124                 /* Mega hack : replace IKETA to BIKETAL */
2125                 if ((m_ptr->r_idx == MON_IKETA) &&
2126                     !(p_ptr->inside_arena || p_ptr->inside_battle))
2127                 {
2128                         int dummy_y = m_ptr->fy;
2129                         int dummy_x = m_ptr->fx;
2130                         u32b mode = 0L;
2131
2132                         if (is_pet(m_ptr)) mode |= PM_FORCE_PET;
2133
2134                         /* Delete the monster */
2135                         delete_monster_idx(m_idx);
2136
2137                         if (summon_named_creature(0, dummy_y, dummy_x, MON_BIKETAL, mode))
2138                         {
2139 #ifdef JP
2140                                 msg_print("¡Ö¥Ï¥¡¥Ã¥Ï¥Ã¥Ï¥Ã¥Ï¡ª¡ª»ä¤¬¥Ð¥¤¥±¥¿¥ë¤À¡ª¡ª¡×");
2141 #else
2142                                 msg_print("Uwa-hahaha!  *I* am Biketal!");
2143 #endif
2144                         }
2145                 }
2146                 else
2147                 {
2148                         /* Delete the monster */
2149                         delete_monster_idx(m_idx);
2150                 }
2151
2152                 /* Prevent bug of chaos patron's reward */
2153                 if (r_ptr->flags7 & RF7_KILL_EXP)
2154                         get_exp_from_mon((long)exp_mon.max_maxhp*2, &exp_mon);
2155                 else
2156                         get_exp_from_mon(((long)exp_mon.max_maxhp+1L) * 9L / 10L, &exp_mon);
2157
2158                 /* Not afraid */
2159                 (*fear) = FALSE;
2160
2161                 /* Monster is dead */
2162                 return (TRUE);
2163         }
2164
2165
2166 #ifdef ALLOW_FEAR
2167
2168         /* Mega-Hack -- Pain cancels fear */
2169         if (MON_MONFEAR(m_ptr) && (dam > 0))
2170         {
2171                 /* Cure fear */
2172                 if (set_monster_monfear(m_idx, MON_MONFEAR(m_ptr) - randint1(dam)))
2173                 {
2174                         /* No more fear */
2175                         (*fear) = FALSE;
2176                 }
2177         }
2178
2179         /* Sometimes a monster gets scared by damage */
2180         if (!MON_MONFEAR(m_ptr) && !(r_ptr->flags3 & (RF3_NO_FEAR)))
2181         {
2182                 /* Percentage of fully healthy */
2183                 int percentage = (100L * m_ptr->hp) / m_ptr->maxhp;
2184
2185                 /*
2186                  * Run (sometimes) if at 10% or less of max hit points,
2187                  * or (usually) when hit for half its current hit points
2188                  */
2189                 if ((randint1(10) >= percentage) ||
2190                     ((dam >= m_ptr->hp) && (randint0(100) < 80)))
2191                 {
2192                         /* Hack -- note fear */
2193                         (*fear) = TRUE;
2194
2195                         /* XXX XXX XXX Hack -- Add some timed fear */
2196                         (void)set_monster_monfear(m_idx, (randint1(10) +
2197                                           (((dam >= m_ptr->hp) && (percentage > 7)) ?
2198                                            20 : ((11 - percentage) * 5))));
2199                 }
2200         }
2201
2202 #endif
2203
2204 #if 0
2205         if (p_ptr->riding && (p_ptr->riding == m_idx) && (dam > 0))
2206         {
2207                 char m_name[80];
2208
2209                 /* Extract monster name */
2210                 monster_desc(m_name, m_ptr, 0);
2211
2212                 if (m_ptr->hp > m_ptr->maxhp/3) dam = (dam + 1) / 2;
2213                 if (rakuba((dam > 200) ? 200 : dam, FALSE))
2214                 {
2215 #ifdef JP
2216 msg_format("%^s¤Ë¿¶¤êÍî¤È¤µ¤ì¤¿¡ª", m_name);
2217 #else
2218                                 msg_format("%^s has thrown you off!", m_name);
2219 #endif
2220                 }
2221         }
2222 #endif
2223
2224         /* Not dead yet */
2225         return (FALSE);
2226 }
2227
2228
2229 /*
2230  * Get term size and calculate screen size
2231  */
2232 void get_screen_size(int *wid_p, int *hgt_p)
2233 {
2234         Term_get_size(wid_p, hgt_p);
2235         *hgt_p -= ROW_MAP + 2;
2236         *wid_p -= COL_MAP + 2;
2237         if (use_bigtile) *wid_p /= 2;
2238 }
2239
2240
2241 /*
2242  * Calculates current boundaries
2243  * Called below and from "do_cmd_locate()".
2244  */
2245 void panel_bounds_center(void)
2246 {
2247         int wid, hgt;
2248
2249         /* Get size */
2250         get_screen_size(&wid, &hgt);
2251
2252         panel_row_max = panel_row_min + hgt - 1;
2253         panel_row_prt = panel_row_min - 1;
2254         panel_col_max = panel_col_min + wid - 1;
2255         panel_col_prt = panel_col_min - 13;
2256 }
2257
2258
2259 /*
2260  * Map resizing whenever the main term changes size
2261  */
2262 void resize_map(void)
2263 {
2264         /* Only if the dungeon exists */
2265         if (!character_dungeon) return;
2266         
2267         /* Mega-Hack -- no panel yet */
2268         panel_row_max = 0;
2269         panel_col_max = 0;
2270
2271         /* Reset the panels */
2272         panel_row_min = cur_hgt;
2273         panel_col_min = cur_wid;
2274                                 
2275         verify_panel();
2276
2277         /* Update stuff */
2278         p_ptr->update |= (PU_TORCH | PU_BONUS | PU_HP | PU_MANA | PU_SPELLS);
2279
2280         /* Forget lite/view */
2281         p_ptr->update |= (PU_UN_VIEW | PU_UN_LITE);
2282
2283         /* Update lite/view */
2284         p_ptr->update |= (PU_VIEW | PU_LITE | PU_MON_LITE);
2285
2286         /* Update monsters */
2287         p_ptr->update |= (PU_MONSTERS);
2288
2289         /* Redraw everything */
2290         p_ptr->redraw |= (PR_WIPE | PR_BASIC | PR_EXTRA | PR_MAP | PR_EQUIPPY);
2291
2292         /* Hack -- update */
2293         handle_stuff();
2294         
2295         /* Redraw */
2296         Term_redraw();
2297
2298         /*
2299          * Waiting command;
2300          * Place the cursor on the player
2301          */
2302         if (can_save) move_cursor_relative(py, px);
2303
2304         /* Refresh */
2305         Term_fresh();
2306 }
2307
2308 /*
2309  * Redraw a term when it is resized
2310  */
2311 void redraw_window(void)
2312 {
2313         /* Only if the dungeon exists */
2314         if (!character_dungeon) return;
2315
2316         /* Window stuff */
2317         p_ptr->window |= (PW_INVEN | PW_EQUIP | PW_SPELL | PW_PLAYER);
2318
2319         /* Window stuff */
2320         p_ptr->window |= (PW_MESSAGE | PW_OVERHEAD | PW_DUNGEON | PW_MONSTER | PW_OBJECT);
2321
2322         /* Hack -- update */
2323         handle_stuff();
2324
2325         /* Redraw */
2326         Term_redraw();
2327 }
2328
2329
2330 /*
2331  * Handle a request to change the current panel
2332  *
2333  * Return TRUE if the panel was changed.
2334  *
2335  * Also used in do_cmd_locate
2336  */
2337 bool change_panel(int dy, int dx)
2338 {
2339         int y, x;
2340         int wid, hgt;
2341
2342         /* Get size */
2343         get_screen_size(&wid, &hgt);
2344
2345         /* Apply the motion */
2346         y = panel_row_min + dy * hgt / 2;
2347         x = panel_col_min + dx * wid / 2;
2348
2349         /* Verify the row */
2350         if (y > cur_hgt - hgt) y = cur_hgt - hgt;
2351         if (y < 0) y = 0;
2352
2353         /* Verify the col */
2354         if (x > cur_wid - wid) x = cur_wid - wid;
2355         if (x < 0) x = 0;
2356
2357         /* Handle "changes" */
2358         if ((y != panel_row_min) || (x != panel_col_min))
2359         {
2360                 /* Save the new panel info */
2361                 panel_row_min = y;
2362                 panel_col_min = x;
2363
2364                 /* Recalculate the boundaries */
2365                 panel_bounds_center();
2366
2367                 /* Update stuff */
2368                 p_ptr->update |= (PU_MONSTERS);
2369
2370                 /* Redraw map */
2371                 p_ptr->redraw |= (PR_MAP);
2372
2373                 /* Handle stuff */
2374                 handle_stuff();
2375
2376                 /* Success */
2377                 return (TRUE);
2378         }
2379
2380         /* No change */
2381         return (FALSE);
2382 }
2383
2384
2385 /*
2386  * Given an row (y) and col (x), this routine detects when a move
2387  * off the screen has occurred and figures new borders. -RAK-
2388  *
2389  * "Update" forces a "full update" to take place.
2390  *
2391  * The map is reprinted if necessary, and "TRUE" is returned.
2392  */
2393 void verify_panel(void)
2394 {
2395         int y = py;
2396         int x = px;
2397         int wid, hgt;
2398
2399         int prow_min;
2400         int pcol_min;
2401         int max_prow_min;
2402         int max_pcol_min;
2403
2404         /* Get size */
2405         get_screen_size(&wid, &hgt);
2406
2407         max_prow_min = cur_hgt - hgt;
2408         max_pcol_min = cur_wid - wid;
2409
2410         /* Bounds checking */
2411         if (max_prow_min < 0) max_prow_min = 0;
2412         if (max_pcol_min < 0) max_pcol_min = 0;
2413
2414                 /* Center on player */
2415         if (center_player && (center_running || !running))
2416         {
2417                 /* Center vertically */
2418                 prow_min = y - hgt / 2;
2419                 if (prow_min < 0) prow_min = 0;
2420                 else if (prow_min > max_prow_min) prow_min = max_prow_min;
2421
2422                 /* Center horizontally */
2423                 pcol_min = x - wid / 2;
2424                 if (pcol_min < 0) pcol_min = 0;
2425                 else if (pcol_min > max_pcol_min) pcol_min = max_pcol_min;
2426         }
2427         else
2428         {
2429                 prow_min = panel_row_min;
2430                 pcol_min = panel_col_min;
2431
2432                 /* Scroll screen when 2 grids from top/bottom edge */
2433                 if (y > panel_row_max - 2)
2434                 {
2435                         while (y > prow_min + hgt-1 - 2)
2436                         {
2437                                 prow_min += (hgt / 2);
2438                         }
2439                 }
2440
2441                 if (y < panel_row_min + 2)
2442                 {
2443                         while (y < prow_min + 2)
2444                         {
2445                                 prow_min -= (hgt / 2);
2446                         }
2447                 }
2448
2449                 if (prow_min > max_prow_min) prow_min = max_prow_min;
2450                 if (prow_min < 0) prow_min = 0;
2451
2452                 /* Scroll screen when 4 grids from left/right edge */
2453                 if (x > panel_col_max - 4)
2454                 {
2455                         while (x > pcol_min + wid-1 - 4)
2456                         {
2457                                 pcol_min += (wid / 2);
2458                         }
2459                 }
2460                 
2461                 if (x < panel_col_min + 4)
2462                 {
2463                         while (x < pcol_min + 4)
2464                         {
2465                                 pcol_min -= (wid / 2);
2466                         }
2467                 }
2468
2469                 if (pcol_min > max_pcol_min) pcol_min = max_pcol_min;
2470                 if (pcol_min < 0) pcol_min = 0;
2471         }
2472
2473         /* Check for "no change" */
2474         if ((prow_min == panel_row_min) && (pcol_min == panel_col_min)) return;
2475
2476         /* Save the new panel info */
2477         panel_row_min = prow_min;
2478         panel_col_min = pcol_min;
2479
2480         /* Hack -- optional disturb on "panel change" */
2481         if (disturb_panel && !center_player) disturb(0, 0);
2482
2483         /* Recalculate the boundaries */
2484         panel_bounds_center();
2485
2486         /* Update stuff */
2487         p_ptr->update |= (PU_MONSTERS);
2488
2489         /* Redraw map */
2490         p_ptr->redraw |= (PR_MAP);
2491
2492         /* Window stuff */
2493         p_ptr->window |= (PW_OVERHEAD | PW_DUNGEON);
2494 }
2495
2496
2497 /*
2498  * Monster health description
2499  */
2500 cptr look_mon_desc(monster_type *m_ptr, u32b mode)
2501 {
2502         monster_race *ap_r_ptr = &r_info[m_ptr->ap_r_idx];
2503         bool         living;
2504         int          perc;
2505         cptr desc;
2506         cptr attitude;
2507         cptr clone;
2508
2509         /* Determine if the monster is "living" */
2510         living = monster_living(ap_r_ptr);
2511
2512         /* Calculate a health "percentage" */
2513         perc = 100L * m_ptr->hp / m_ptr->maxhp;
2514
2515         /* Healthy monsters */
2516         if (m_ptr->hp >= m_ptr->maxhp)
2517         {
2518                 /* No damage */
2519 #ifdef JP
2520                 desc = living ? "̵½ý" : "̵¥À¥á¡¼¥¸";
2521 #else
2522                 desc = living ? "unhurt" : "undamaged";
2523 #endif
2524
2525         }
2526
2527         else if (perc >= 60)
2528         {
2529 #ifdef JP
2530                 desc = living ? "·Ú½ý" : "¾®¥À¥á¡¼¥¸";
2531 #else
2532                 desc = living ? "somewhat wounded" : "somewhat damaged";
2533 #endif
2534
2535         }
2536
2537         else if (perc >= 25)
2538         {
2539 #ifdef JP
2540                 desc = living ? "Éé½ý" : "Ãæ¥À¥á¡¼¥¸";
2541 #else
2542                 desc = living ? "wounded" : "damaged";
2543 #endif
2544
2545         }
2546
2547         else if (perc >= 10)
2548         {
2549 #ifdef JP
2550                 desc = living ? "½Å½ý" : "Âç¥À¥á¡¼¥¸";
2551 #else
2552                 desc = living ? "badly wounded" : "badly damaged";
2553 #endif
2554
2555         }
2556
2557         else 
2558         {
2559 #ifdef JP
2560                 desc = living ? "Ⱦ»àȾÀ¸" : "Åݤ줫¤±";
2561 #else
2562                 desc = living ? "almost dead" : "almost destroyed";
2563 #endif
2564         }
2565
2566
2567         /* Need attitude information? */
2568         if (!(mode & 0x01))
2569         {
2570                 /* Full information is not needed */
2571                 attitude = "";
2572         }
2573         else if (is_pet(m_ptr))
2574         {
2575 #ifdef JP
2576                 attitude = ", ¥Ú¥Ã¥È";
2577 #else
2578                 attitude = ", pet";
2579 #endif
2580         }
2581         else if (is_friendly(m_ptr))
2582         {
2583 #ifdef JP
2584                 attitude = ", Í§¹¥Åª";
2585 #else
2586                 attitude = ", friendly";
2587 #endif
2588         }
2589         else
2590         {
2591 #ifdef JP
2592                 attitude = "";
2593 #else
2594                 attitude = "";
2595 #endif
2596         }
2597
2598
2599         /* Clone monster? */
2600         if (m_ptr->smart & SM_CLONED)
2601         {
2602                 clone = ", clone";
2603         }
2604         else
2605         {
2606                 clone = "";
2607         }
2608
2609         /* Display monster's level --- idea borrowed from ToME */
2610         if (ap_r_ptr->r_tkills && !(m_ptr->mflag2 & MFLAG2_KAGE))
2611         {
2612 #ifdef JP
2613                 return format("¥ì¥Ù¥ë%d, %s%s%s", ap_r_ptr->level, desc, attitude, clone);
2614 #else
2615                 return format("Level %d, %s%s%s", ap_r_ptr->level, desc, attitude, clone);
2616 #endif
2617         }
2618         else 
2619         {
2620 #ifdef JP
2621                 return format("¥ì¥Ù¥ë???, %s%s%s", desc, attitude, clone);
2622 #else
2623                 return format("Level ???, %s%s%s", desc, attitude, clone);
2624 #endif
2625         }
2626 }
2627
2628
2629
2630 /*
2631  * Angband sorting algorithm -- quick sort in place
2632  *
2633  * Note that the details of the data we are sorting is hidden,
2634  * and we rely on the "ang_sort_comp()" and "ang_sort_swap()"
2635  * function hooks to interact with the data, which is given as
2636  * two pointers, and which may have any user-defined form.
2637  */
2638 void ang_sort_aux(vptr u, vptr v, int p, int q)
2639 {
2640         int z, a, b;
2641
2642         /* Done sort */
2643         if (p >= q) return;
2644
2645         /* Pivot */
2646         z = p;
2647
2648         /* Begin */
2649         a = p;
2650         b = q;
2651
2652         /* Partition */
2653         while (TRUE)
2654         {
2655                 /* Slide i2 */
2656                 while (!(*ang_sort_comp)(u, v, b, z)) b--;
2657
2658                 /* Slide i1 */
2659                 while (!(*ang_sort_comp)(u, v, z, a)) a++;
2660
2661                 /* Done partition */
2662                 if (a >= b) break;
2663
2664                 /* Swap */
2665                 (*ang_sort_swap)(u, v, a, b);
2666
2667                 /* Advance */
2668                 a++, b--;
2669         }
2670
2671         /* Recurse left side */
2672         ang_sort_aux(u, v, p, b);
2673
2674         /* Recurse right side */
2675         ang_sort_aux(u, v, b+1, q);
2676 }
2677
2678
2679 /*
2680  * Angband sorting algorithm -- quick sort in place
2681  *
2682  * Note that the details of the data we are sorting is hidden,
2683  * and we rely on the "ang_sort_comp()" and "ang_sort_swap()"
2684  * function hooks to interact with the data, which is given as
2685  * two pointers, and which may have any user-defined form.
2686  */
2687 void ang_sort(vptr u, vptr v, int n)
2688 {
2689         /* Sort the array */
2690         ang_sort_aux(u, v, 0, n-1);
2691 }
2692
2693
2694
2695 /*** Targeting Code ***/
2696
2697
2698 /*
2699  * Determine is a monster makes a reasonable target
2700  *
2701  * The concept of "targeting" was stolen from "Morgul" (?)
2702  *
2703  * The player can target any location, or any "target-able" monster.
2704  *
2705  * Currently, a monster is "target_able" if it is visible, and if
2706  * the player can hit it with a projection, and the player is not
2707  * hallucinating.  This allows use of "use closest target" macros.
2708  *
2709  * Future versions may restrict the ability to target "trappers"
2710  * and "mimics", but the semantics is a little bit weird.
2711  */
2712 bool target_able(int m_idx)
2713 {
2714         monster_type *m_ptr = &m_list[m_idx];
2715
2716         /* Monster must be alive */
2717         if (!m_ptr->r_idx) return (FALSE);
2718
2719         /* Hack -- no targeting hallucinations */
2720         if (p_ptr->image) return (FALSE);
2721
2722         /* Monster must be visible */
2723         if (!m_ptr->ml) return (FALSE);
2724
2725         if (p_ptr->riding && (p_ptr->riding == m_idx)) return (TRUE);
2726
2727         /* Monster must be projectable */
2728         if (!projectable(py, px, m_ptr->fy, m_ptr->fx)) return (FALSE);
2729
2730         /* XXX XXX XXX Hack -- Never target trappers */
2731         /* if (CLEAR_ATTR && (CLEAR_CHAR)) return (FALSE); */
2732
2733         /* Assume okay */
2734         return (TRUE);
2735 }
2736
2737
2738
2739
2740 /*
2741  * Update (if necessary) and verify (if possible) the target.
2742  *
2743  * We return TRUE if the target is "okay" and FALSE otherwise.
2744  */
2745 bool target_okay(void)
2746 {
2747         /* Accept stationary targets */
2748         if (target_who < 0) return (TRUE);
2749
2750         /* Check moving targets */
2751         if (target_who > 0)
2752         {
2753                 /* Accept reasonable targets */
2754                 if (target_able(target_who))
2755                 {
2756                         monster_type *m_ptr = &m_list[target_who];
2757
2758                         /* Acquire monster location */
2759                         target_row = m_ptr->fy;
2760                         target_col = m_ptr->fx;
2761
2762                         /* Good target */
2763                         return (TRUE);
2764                 }
2765         }
2766
2767         /* Assume no target */
2768         return (FALSE);
2769 }
2770
2771
2772 /*
2773  * Sorting hook -- comp function -- by "distance to player"
2774  *
2775  * We use "u" and "v" to point to arrays of "x" and "y" positions,
2776  * and sort the arrays by double-distance to the player.
2777  */
2778 static bool ang_sort_comp_distance(vptr u, vptr v, int a, int b)
2779 {
2780         byte *x = (byte*)(u);
2781         byte *y = (byte*)(v);
2782
2783         int da, db, kx, ky;
2784
2785         /* Absolute distance components */
2786         kx = x[a]; kx -= px; kx = ABS(kx);
2787         ky = y[a]; ky -= py; ky = ABS(ky);
2788
2789         /* Approximate Double Distance to the first point */
2790         da = ((kx > ky) ? (kx + kx + ky) : (ky + ky + kx));
2791
2792         /* Absolute distance components */
2793         kx = x[b]; kx -= px; kx = ABS(kx);
2794         ky = y[b]; ky -= py; ky = ABS(ky);
2795
2796         /* Approximate Double Distance to the first point */
2797         db = ((kx > ky) ? (kx + kx + ky) : (ky + ky + kx));
2798
2799         /* Compare the distances */
2800         return (da <= db);
2801 }
2802
2803
2804 /*
2805  * Sorting hook -- comp function -- by importance level of grids
2806  *
2807  * We use "u" and "v" to point to arrays of "x" and "y" positions,
2808  * and sort the arrays by level of monster
2809  */
2810 static bool ang_sort_comp_importance(vptr u, vptr v, int a, int b)
2811 {
2812         byte *x = (byte*)(u);
2813         byte *y = (byte*)(v);
2814         cave_type *ca_ptr = &cave[y[a]][x[a]];
2815         cave_type *cb_ptr = &cave[y[b]][x[b]];
2816         monster_type *ma_ptr = &m_list[ca_ptr->m_idx];
2817         monster_type *mb_ptr = &m_list[cb_ptr->m_idx];
2818         monster_race *ap_ra_ptr, *ap_rb_ptr;
2819
2820         /* The player grid */
2821         if (y[a] == py && x[a] == px) return TRUE;
2822         if (y[b] == py && x[b] == px) return FALSE;
2823
2824         /* Extract monster race */
2825         if (ca_ptr->m_idx && ma_ptr->ml) ap_ra_ptr = &r_info[ma_ptr->ap_r_idx];
2826         else ap_ra_ptr = NULL;
2827         if (cb_ptr->m_idx && mb_ptr->ml) ap_rb_ptr = &r_info[mb_ptr->ap_r_idx];
2828         else ap_rb_ptr = NULL;
2829
2830         if (ap_ra_ptr && !ap_rb_ptr) return TRUE;
2831         if (!ap_ra_ptr && ap_rb_ptr) return FALSE;
2832
2833         /* Compare two monsters */
2834         if (ap_ra_ptr && ap_rb_ptr)
2835         {
2836                 /* Unique monsters first */
2837                 if ((ap_ra_ptr->flags1 & RF1_UNIQUE) && !(ap_rb_ptr->flags1 & RF1_UNIQUE)) return TRUE;
2838                 if (!(ap_ra_ptr->flags1 & RF1_UNIQUE) && (ap_rb_ptr->flags1 & RF1_UNIQUE)) return FALSE;
2839
2840                 /* Shadowers first (¤¢¤ä¤·¤¤±Æ) */
2841                 if ((ma_ptr->mflag2 & MFLAG2_KAGE) && !(mb_ptr->mflag2 & MFLAG2_KAGE)) return TRUE;
2842                 if (!(ma_ptr->mflag2 & MFLAG2_KAGE) && (mb_ptr->mflag2 & MFLAG2_KAGE)) return FALSE;
2843
2844                 /* Unknown monsters first */
2845                 if (!ap_ra_ptr->r_tkills && ap_rb_ptr->r_tkills) return TRUE;
2846                 if (ap_ra_ptr->r_tkills && !ap_rb_ptr->r_tkills) return FALSE;
2847
2848                 /* Higher level monsters first (if known) */
2849                 if (ap_ra_ptr->r_tkills && ap_rb_ptr->r_tkills)
2850                 {
2851                         if (ap_ra_ptr->level > ap_rb_ptr->level) return TRUE;
2852                         if (ap_ra_ptr->level < ap_rb_ptr->level) return FALSE;
2853                 }
2854
2855                 /* Sort by index if all conditions are same */
2856                 if (ma_ptr->ap_r_idx > mb_ptr->ap_r_idx) return TRUE;
2857                 if (ma_ptr->ap_r_idx < mb_ptr->ap_r_idx) return FALSE;
2858         }
2859
2860         /* An object get higher priority */
2861         if (cave[y[a]][x[a]].o_idx && !cave[y[b]][x[b]].o_idx) return TRUE;
2862         if (!cave[y[a]][x[a]].o_idx && cave[y[b]][x[b]].o_idx) return FALSE;
2863
2864         /* Priority from the terrain */
2865         if (f_info[ca_ptr->feat].priority > f_info[cb_ptr->feat].priority) return TRUE;
2866         if (f_info[ca_ptr->feat].priority < f_info[cb_ptr->feat].priority) return FALSE;
2867
2868         /* If all conditions are same, compare distance */
2869         return ang_sort_comp_distance(u, v, a, b);
2870 }
2871
2872
2873 /*
2874  * Sorting hook -- swap function -- by "distance to player"
2875  *
2876  * We use "u" and "v" to point to arrays of "x" and "y" positions,
2877  * and sort the arrays by distance to the player.
2878  */
2879 static void ang_sort_swap_distance(vptr u, vptr v, int a, int b)
2880 {
2881         byte *x = (byte*)(u);
2882         byte *y = (byte*)(v);
2883
2884         byte temp;
2885
2886         /* Swap "x" */
2887         temp = x[a];
2888         x[a] = x[b];
2889         x[b] = temp;
2890
2891         /* Swap "y" */
2892         temp = y[a];
2893         y[a] = y[b];
2894         y[b] = temp;
2895 }
2896
2897
2898
2899 /*
2900  * Hack -- help "select" a location (see below)
2901  */
2902 static s16b target_pick(int y1, int x1, int dy, int dx)
2903 {
2904         int i, v;
2905
2906         int x2, y2, x3, y3, x4, y4;
2907
2908         int b_i = -1, b_v = 9999;
2909
2910
2911         /* Scan the locations */
2912         for (i = 0; i < temp_n; i++)
2913         {
2914                 /* Point 2 */
2915                 x2 = temp_x[i];
2916                 y2 = temp_y[i];
2917
2918                 /* Directed distance */
2919                 x3 = (x2 - x1);
2920                 y3 = (y2 - y1);
2921
2922                 /* Verify quadrant */
2923                 if (dx && (x3 * dx <= 0)) continue;
2924                 if (dy && (y3 * dy <= 0)) continue;
2925
2926                 /* Absolute distance */
2927                 x4 = ABS(x3);
2928                 y4 = ABS(y3);
2929
2930                 /* Verify quadrant */
2931                 if (dy && !dx && (x4 > y4)) continue;
2932                 if (dx && !dy && (y4 > x4)) continue;
2933
2934                 /* Approximate Double Distance */
2935                 v = ((x4 > y4) ? (x4 + x4 + y4) : (y4 + y4 + x4));
2936
2937                 /* XXX XXX XXX Penalize location */
2938
2939                 /* Track best */
2940                 if ((b_i >= 0) && (v >= b_v)) continue;
2941
2942                 /* Track best */
2943                 b_i = i; b_v = v;
2944         }
2945
2946         /* Result */
2947         return (b_i);
2948 }
2949
2950
2951 /*
2952  * Hack -- determine if a given location is "interesting"
2953  */
2954 static bool target_set_accept(int y, int x)
2955 {
2956         cave_type *c_ptr;
2957
2958         s16b this_o_idx, next_o_idx = 0;
2959
2960         /* Bounds */
2961         if (!(in_bounds(y, x))) return (FALSE);
2962
2963         /* Player grid is always interesting */
2964         if (player_bold(y, x)) return (TRUE);
2965
2966
2967         /* Handle hallucination */
2968         if (p_ptr->image) return (FALSE);
2969
2970
2971         /* Examine the grid */
2972         c_ptr = &cave[y][x];
2973
2974         /* Visible monsters */
2975         if (c_ptr->m_idx)
2976         {
2977                 monster_type *m_ptr = &m_list[c_ptr->m_idx];
2978
2979                 /* Visible monsters */
2980                 if (m_ptr->ml) return (TRUE);
2981         }
2982
2983         /* Scan all objects in the grid */
2984         for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
2985         {
2986                 object_type *o_ptr;
2987
2988                 /* Acquire object */
2989                 o_ptr = &o_list[this_o_idx];
2990
2991                 /* Acquire next object */
2992                 next_o_idx = o_ptr->next_o_idx;
2993
2994                 /* Memorized object */
2995                 if (o_ptr->marked & OM_FOUND) return (TRUE);
2996         }
2997
2998         /* Interesting memorized features */
2999         if (c_ptr->info & (CAVE_MARK))
3000         {
3001                 /* Notice object features */
3002                 if (c_ptr->info & CAVE_OBJECT) return (TRUE);
3003
3004                 /* Feature code (applying "mimic" field) */
3005                 if (have_flag(f_info[get_feat_mimic(c_ptr)].flags, FF_NOTICE)) return TRUE;
3006         }
3007
3008         /* Nope */
3009         return (FALSE);
3010 }
3011
3012
3013 /*
3014  * Prepare the "temp" array for "target_set"
3015  *
3016  * Return the number of target_able monsters in the set.
3017  */
3018 static void target_set_prepare(int mode)
3019 {
3020         int y, x;
3021
3022         /* Reset "temp" array */
3023         temp_n = 0;
3024
3025         /* Scan the current panel */
3026         for (y = panel_row_min; y <= panel_row_max; y++)
3027         {
3028                 for (x = panel_col_min; x <= panel_col_max; x++)
3029                 {
3030                         cave_type *c_ptr;
3031
3032                         /* Require "interesting" contents */
3033                         if (!target_set_accept(y, x)) continue;
3034
3035                         c_ptr = &cave[y][x];
3036
3037                         /* Require target_able monsters for "TARGET_KILL" */
3038                         if ((mode & (TARGET_KILL)) && !target_able(c_ptr->m_idx)) continue;
3039
3040                         if ((mode & (TARGET_KILL)) && !target_pet && is_pet(&m_list[c_ptr->m_idx])) continue;
3041
3042                         /* Save the location */
3043                         temp_x[temp_n] = x;
3044                         temp_y[temp_n] = y;
3045                         temp_n++;
3046                 }
3047         }
3048
3049         /* Set the sort hooks */
3050         if (mode & (TARGET_KILL))
3051         {
3052                 /* Target the nearest monster for shooting */
3053                 ang_sort_comp = ang_sort_comp_distance;
3054                 ang_sort_swap = ang_sort_swap_distance;
3055         }
3056         else
3057         {
3058                 /* Look important grids first in Look command */
3059                 ang_sort_comp = ang_sort_comp_importance;
3060                 ang_sort_swap = ang_sort_swap_distance;
3061         }
3062
3063         /* Sort the positions */
3064         ang_sort(temp_x, temp_y, temp_n);
3065
3066         if (p_ptr->riding && target_pet && (temp_n > 1) && (mode & (TARGET_KILL)))
3067         {
3068                 byte tmp;
3069
3070                 tmp = temp_y[0];
3071                 temp_y[0] = temp_y[1];
3072                 temp_y[1] = tmp;
3073                 tmp = temp_x[0];
3074                 temp_x[0] = temp_x[1];
3075                 temp_x[1] = tmp;
3076         }
3077 }
3078
3079
3080 /*
3081  * Evaluate number of kill needed to gain level
3082  */
3083 static void evaluate_monster_exp(char *buf, monster_type *m_ptr)
3084 {
3085         monster_race *ap_r_ptr = &r_info[m_ptr->ap_r_idx];
3086         u32b num;
3087         s32b exp_mon, exp_adv;
3088         u32b exp_mon_frac, exp_adv_frac;
3089
3090         if ((p_ptr->lev >= PY_MAX_LEVEL) || (p_ptr->prace == RACE_ANDROID))
3091         {
3092                 sprintf(buf,"**");
3093                 return;
3094         }
3095         else if (!ap_r_ptr->r_tkills || (m_ptr->mflag2 & MFLAG2_KAGE))
3096         {
3097                 if (!p_ptr->wizard)
3098                 {
3099                         sprintf(buf,"??");
3100                         return;
3101                 }
3102         }
3103
3104
3105         /* The monster's experience point (assuming average monster speed) */
3106         exp_mon = ap_r_ptr->mexp * ap_r_ptr->level;
3107         exp_mon_frac = 0;
3108         s64b_div(&exp_mon, &exp_mon_frac, 0, (p_ptr->max_plv + 2));
3109
3110
3111         /* Total experience value for next level */
3112         exp_adv = player_exp[p_ptr->lev -1] * p_ptr->expfact;
3113         exp_adv_frac = 0;
3114         s64b_div(&exp_adv, &exp_adv_frac, 0, 100);
3115
3116         /* Experience value need to get */
3117         s64b_sub(&exp_adv, &exp_adv_frac, p_ptr->exp, p_ptr->exp_frac);
3118
3119
3120         /* You need to kill at least one monster to get any experience */
3121         s64b_add(&exp_adv, &exp_adv_frac, exp_mon, exp_mon_frac);
3122         s64b_sub(&exp_adv, &exp_adv_frac, 0, 1);
3123
3124         /* Extract number of monsters needed */
3125         s64b_div(&exp_adv, &exp_adv_frac, exp_mon, exp_mon_frac);
3126
3127         /* If 999 or more monsters needed, only display "999". */
3128         num = MIN(999, exp_adv_frac);
3129
3130         /* Display the number */
3131         sprintf(buf,"%03ld", (long int)num);
3132 }
3133
3134
3135 bool show_gold_on_floor = FALSE;
3136
3137 /*
3138  * Examine a grid, return a keypress.
3139  *
3140  * The "mode" argument contains the "TARGET_LOOK" bit flag, which
3141  * indicates that the "space" key should scan through the contents
3142  * of the grid, instead of simply returning immediately.  This lets
3143  * the "look" command get complete information, without making the
3144  * "target" command annoying.
3145  *
3146  * The "info" argument contains the "commands" which should be shown
3147  * inside the "[xxx]" text.  This string must never be empty, or grids
3148  * containing monsters will be displayed with an extra comma.
3149  *
3150  * Note that if a monster is in the grid, we update both the monster
3151  * recall info and the health bar info to track that monster.
3152  *
3153  * Eventually, we may allow multiple objects per grid, or objects
3154  * and terrain features in the same grid. XXX XXX XXX
3155  *
3156  * This function must handle blindness/hallucination.
3157  */
3158 static int target_set_aux(int y, int x, int mode, cptr info)
3159 {
3160         cave_type *c_ptr = &cave[y][x];
3161         s16b this_o_idx, next_o_idx = 0;
3162         cptr s1 = "", s2 = "", s3 = "", x_info = "";
3163         bool boring = TRUE;
3164         s16b feat;
3165         feature_type *f_ptr;
3166         int query = '\001';
3167         char out_val[MAX_NLEN+80];
3168
3169 #ifdef ALLOW_EASY_FLOOR
3170         int floor_list[23], floor_num = 0;
3171
3172         /* Scan all objects in the grid */
3173         if (easy_floor)
3174         {
3175                 floor_num = scan_floor(floor_list, y, x, 0x02);
3176
3177                 if (floor_num)
3178                 {
3179 #ifdef JP
3180                         x_info = "xʪ ";
3181 #else
3182                         x_info = "x,";
3183 #endif
3184                 }
3185         }
3186
3187 #endif /* ALLOW_EASY_FLOOR */
3188
3189         /* Hack -- under the player */
3190         if (player_bold(y, x))
3191         {
3192                 /* Description */
3193 #ifdef JP
3194                 s1 = "¤¢¤Ê¤¿¤Ï";
3195                 s2 = "¤Î¾å";
3196                 s3 = "¤Ë¤¤¤ë";
3197 #else
3198                 s1 = "You are ";
3199
3200                 /* Preposition */
3201                 s2 = "on ";
3202 #endif
3203         }
3204         else
3205         {
3206 #ifdef JP
3207                 s1 = "¥¿¡¼¥²¥Ã¥È:";
3208 #else
3209                 s1 = "Target:";
3210 #endif
3211         }
3212
3213         /* Hack -- hallucination */
3214         if (p_ptr->image)
3215         {
3216 #ifdef JP
3217                 cptr name = "²¿¤«´ñ̯¤Êʪ";
3218 #else
3219                 cptr name = "something strange";
3220 #endif
3221
3222
3223                 /* Display a message */
3224 #ifdef JP
3225                 sprintf(out_val, "%s%s%s%s [%s]", s1, name, s2, s3, info);
3226 #else
3227                 sprintf(out_val, "%s%s%s%s [%s]", s1, s2, s3, name, info);
3228 #endif
3229
3230                 prt(out_val, 0, 0);
3231                 move_cursor_relative(y, x);
3232                 query = inkey();
3233
3234                 /* Stop on everything but "return" */
3235                 if ((query != '\r') && (query != '\n')) return query;
3236
3237                 /* Repeat forever */
3238                 return 0;
3239         }
3240
3241
3242         /* Actual monsters */
3243         if (c_ptr->m_idx && m_list[c_ptr->m_idx].ml)
3244         {
3245                 monster_type *m_ptr = &m_list[c_ptr->m_idx];
3246                 monster_race *ap_r_ptr = &r_info[m_ptr->ap_r_idx];
3247                 char m_name[80];
3248                 bool recall = FALSE;
3249
3250                 /* Not boring */
3251                 boring = FALSE;
3252
3253                 /* Get the monster name ("a kobold") */
3254                 monster_desc(m_name, m_ptr, MD_INDEF_VISIBLE);
3255
3256                 /* Hack -- track this monster race */
3257                 monster_race_track(m_ptr->ap_r_idx);
3258
3259                 /* Hack -- health bar for this monster */
3260                 health_track(c_ptr->m_idx);
3261
3262                 /* Hack -- handle stuff */
3263                 handle_stuff();
3264
3265                 /* Interact */
3266                 while (1)
3267                 {
3268                         char acount[10];
3269
3270                         /* Recall */
3271                         if (recall)
3272                         {
3273                                 /* Save */
3274                                 screen_save();
3275
3276                                 /* Recall on screen */
3277                                 screen_roff(m_ptr->ap_r_idx, 0);
3278
3279                                 /* Hack -- Complete the prompt (again) */
3280 #ifdef JP
3281                                 Term_addstr(-1, TERM_WHITE, format("  [r»× %s%s]", x_info, info));
3282 #else
3283                                 Term_addstr(-1, TERM_WHITE, format("  [r,%s%s]", x_info, info));
3284 #endif
3285
3286                                 /* Command */
3287                                 query = inkey();
3288
3289                                 /* Restore */
3290                                 screen_load();
3291
3292                                 /* Normal commands */
3293                                 if (query != 'r') break;
3294
3295                                 /* Toggle recall */
3296                                 recall = FALSE;
3297
3298                                 /* Cleare recall text and repeat */
3299                                 continue;
3300                         }
3301
3302                         /*** Normal ***/
3303
3304                         /* Describe, and prompt for recall */
3305                         evaluate_monster_exp(acount, m_ptr);
3306
3307 #ifdef JP
3308                         sprintf(out_val, "[%s]%s%s(%s)%s%s [r»× %s%s]", acount, s1, m_name, look_mon_desc(m_ptr, 0x01), s2, s3, x_info, info);
3309 #else
3310                         sprintf(out_val, "[%s]%s%s%s%s(%s) [r, %s%s]", acount, s1, s2, s3, m_name, look_mon_desc(m_ptr, 0x01), x_info, info);
3311 #endif
3312
3313                         prt(out_val, 0, 0);
3314
3315                         /* Place cursor */
3316                         move_cursor_relative(y, x);
3317
3318                         /* Command */
3319                         query = inkey();
3320
3321                         /* Normal commands */
3322                         if (query != 'r') break;
3323
3324                         /* Toggle recall */
3325                         recall = TRUE;
3326                 }
3327
3328                 /* Always stop at "normal" keys */
3329                 if ((query != '\r') && (query != '\n') && (query != ' ') && (query != 'x')) return query;
3330
3331                 /* Sometimes stop at "space" key */
3332                 if ((query == ' ') && !(mode & (TARGET_LOOK))) return query;
3333
3334                 /* Change the intro */
3335 #ifdef JP
3336                 s1 = "¤½¤ì¤Ï";
3337 #else
3338                 s1 = "It is ";
3339 #endif
3340
3341
3342                 /* Hack -- take account of gender */
3343 #ifdef JP
3344                 if (ap_r_ptr->flags1 & (RF1_FEMALE)) s1 = "Èà½÷¤Ï";
3345 #else
3346                 if (ap_r_ptr->flags1 & (RF1_FEMALE)) s1 = "She is ";
3347 #endif
3348
3349 #ifdef JP
3350                 else if (ap_r_ptr->flags1 & (RF1_MALE)) s1 = "Èà¤Ï";
3351 #else
3352                 else if (ap_r_ptr->flags1 & (RF1_MALE)) s1 = "He is ";
3353 #endif
3354
3355
3356                 /* Use a preposition */
3357 #ifdef JP
3358                 s2 = "¤ò";
3359                 s3 = "»ý¤Ã¤Æ¤¤¤ë";
3360 #else
3361                 s2 = "carrying ";
3362 #endif
3363
3364
3365                 /* Scan all objects being carried */
3366                 for (this_o_idx = m_ptr->hold_o_idx; this_o_idx; this_o_idx = next_o_idx)
3367                 {
3368                         char o_name[MAX_NLEN];
3369
3370                         object_type *o_ptr;
3371
3372                         /* Acquire object */
3373                         o_ptr = &o_list[this_o_idx];
3374
3375                         /* Acquire next object */
3376                         next_o_idx = o_ptr->next_o_idx;
3377
3378                         /* Obtain an object description */
3379                         object_desc(o_name, o_ptr, 0);
3380
3381                         /* Describe the object */
3382 #ifdef JP
3383                         sprintf(out_val, "%s%s%s%s[%s]", s1, o_name, s2, s3, info);
3384 #else
3385                         sprintf(out_val, "%s%s%s%s [%s]", s1, s2, s3, o_name, info);
3386 #endif
3387
3388                         prt(out_val, 0, 0);
3389                         move_cursor_relative(y, x);
3390                         query = inkey();
3391
3392                         /* Always stop at "normal" keys */
3393                         if ((query != '\r') && (query != '\n') && (query != ' ') && (query != 'x')) return query;
3394
3395                         /* Sometimes stop at "space" key */
3396                         if ((query == ' ') && !(mode & (TARGET_LOOK))) return query;
3397
3398                         /* Change the intro */
3399 #ifdef JP
3400                         s2 = "¤ò¤Þ¤¿";
3401 #else
3402                         s2 = "also carrying ";
3403 #endif
3404                 }
3405
3406                 /* Use a preposition */
3407 #ifdef JP
3408                 s2 = "¤Î¾å";
3409                 s3 = "¤Ë¤¤¤ë";
3410 #else
3411                 s2 = "on ";
3412 #endif
3413         }
3414
3415
3416 #ifdef ALLOW_EASY_FLOOR
3417         if (floor_num)
3418         {
3419                 int min_width = 0;
3420
3421                 while (1)
3422                 {
3423                         if (floor_num == 1)
3424                         {
3425                                 char o_name[MAX_NLEN];
3426
3427                                 object_type *o_ptr;
3428
3429                                 /* Acquire object */
3430                                 o_ptr = &o_list[floor_list[0]];
3431
3432                                 /* Describe the object */
3433                                 object_desc(o_name, o_ptr, 0);
3434
3435                                 /* Message */
3436 #ifdef JP
3437                                 sprintf(out_val, "%s%s%s%s[%s]",
3438                                         s1, o_name, s2, s3, info);
3439 #else
3440                                 sprintf(out_val, "%s%s%s%s [%s]",
3441                                         s1, s2, s3, o_name, info);
3442 #endif
3443
3444                                 prt(out_val, 0, 0);
3445                                 move_cursor_relative(y, x);
3446
3447                                 /* Command */
3448                                 query = inkey();
3449
3450                                 /* End this grid */
3451                                 return query;
3452                         }
3453
3454                         /* Provide one cushion before item listing  */
3455                         if (boring)
3456                         {
3457                                 /* Display rough information about items */
3458 #ifdef JP
3459                                 sprintf(out_val, "%s %d¸Ä¤Î¥¢¥¤¥Æ¥à%s%s ['x'¤Ç°ìÍ÷, %s]",
3460                                         s1, floor_num, s2, s3, info);
3461 #else
3462                                 sprintf(out_val, "%s%s%sa pile of %d items [x,%s]",
3463                                         s1, s2, s3, floor_num, info);
3464 #endif
3465
3466                                 prt(out_val, 0, 0);
3467                                 move_cursor_relative(y, x);
3468
3469                                 /* Command */
3470                                 query = inkey();
3471
3472                                 /* No request for listing */
3473                                 if (query != 'x' && query != ' ') return query;
3474                         }
3475
3476
3477                         /** Display list of items **/
3478
3479                         /* Continue scrolling list if requested */
3480                         while (1)
3481                         {
3482                                 int i, o_idx;
3483
3484                                 /* Save screen */
3485                                 screen_save();
3486
3487                                 /* Display */
3488                                 show_gold_on_floor = TRUE;
3489                                 (void)show_floor(0, y, x, &min_width);
3490                                 show_gold_on_floor = FALSE;
3491
3492                                 /* Prompt */
3493 #ifdef JP
3494                                 sprintf(out_val, "%s %d¸Ä¤Î¥¢¥¤¥Æ¥à%s%s [Enter¤Ç¼¡¤Ø, %s]",
3495                                         s1, floor_num, s2, s3, info);
3496 #else
3497                                 sprintf(out_val, "%s%s%sa pile of %d items [Enter,%s]",
3498                                         s1, s2, s3, floor_num, info);
3499 #endif
3500                                 prt(out_val, 0, 0);
3501
3502
3503                                 /* Wait */
3504                                 query = inkey();
3505
3506                                 /* Load screen */
3507                                 screen_load();
3508
3509                                 /* Exit unless 'Enter' */
3510                                 if (query != '\n' && query != '\r')
3511                                 {
3512                                         return query;
3513                                 }
3514
3515                                 /* Get the object being moved. */
3516                                 o_idx = c_ptr->o_idx;
3517  
3518                                 /* Only rotate a pile of two or more objects. */
3519                                 if (!(o_idx && o_list[o_idx].next_o_idx)) continue;
3520
3521                                 /* Remove the first object from the list. */
3522                                 excise_object_idx(o_idx);
3523
3524                                 /* Find end of the list. */
3525                                 i = c_ptr->o_idx;
3526                                 while (o_list[i].next_o_idx)
3527                                         i = o_list[i].next_o_idx;
3528
3529                                 /* Add after the last object. */
3530                                 o_list[i].next_o_idx = o_idx;
3531
3532                                 /* Loop and re-display the list */
3533                         }
3534                 }
3535
3536                 /* NOTREACHED */
3537         }
3538 #endif /* ALLOW_EASY_FLOOR */
3539
3540
3541         /* Scan all objects in the grid */
3542         for (this_o_idx = c_ptr->o_idx; this_o_idx; this_o_idx = next_o_idx)
3543         {
3544                 object_type *o_ptr;
3545
3546                 /* Acquire object */
3547                 o_ptr = &o_list[this_o_idx];
3548
3549                 /* Acquire next object */
3550                 next_o_idx = o_ptr->next_o_idx;
3551
3552                 /* Describe it */
3553                 if (o_ptr->marked & OM_FOUND)
3554                 {
3555                         char o_name[MAX_NLEN];
3556
3557                         /* Not boring */
3558                         boring = FALSE;
3559
3560                         /* Obtain an object description */
3561                         object_desc(o_name, o_ptr, 0);
3562
3563                         /* Describe the object */
3564 #ifdef JP
3565                         sprintf(out_val, "%s%s%s%s[%s]", s1, o_name, s2, s3, info);
3566 #else
3567                         sprintf(out_val, "%s%s%s%s [%s]", s1, s2, s3, o_name, info);
3568 #endif
3569
3570                         prt(out_val, 0, 0);
3571                         move_cursor_relative(y, x);
3572                         query = inkey();
3573
3574                         /* Always stop at "normal" keys */
3575                         if ((query != '\r') && (query != '\n') && (query != ' ') && (query != 'x')) return query;
3576
3577                         /* Sometimes stop at "space" key */
3578                         if ((query == ' ') && !(mode & TARGET_LOOK)) return query;
3579
3580                         /* Change the intro */
3581 #ifdef JP
3582                         s1 = "¤½¤ì¤Ï";
3583 #else
3584                         s1 = "It is ";
3585 #endif
3586
3587
3588                         /* Plurals */
3589 #ifdef JP
3590                         if (o_ptr->number != 1) s1 = "¤½¤ì¤é¤Ï";
3591 #else
3592                         if (o_ptr->number != 1) s1 = "They are ";
3593 #endif
3594
3595
3596                         /* Preposition */
3597 #ifdef JP
3598                         s2 = "¤Î¾å";
3599                         s3 = "¤Ë¸«¤¨¤ë";
3600 #else
3601                         s2 = "on ";
3602 #endif
3603
3604                 }
3605         }
3606
3607
3608         /* Feature code (applying "mimic" field) */
3609         feat = get_feat_mimic(c_ptr);
3610
3611         /* Require knowledge about grid, or ability to see grid */
3612         if (!(c_ptr->info & CAVE_MARK) && !player_can_see_bold(y, x))
3613         {
3614                 /* Forget feature */
3615                 feat = feat_none;
3616         }
3617
3618         f_ptr = &f_info[feat];
3619
3620         /* Terrain feature if needed */
3621         if (boring || have_flag(f_ptr->flags, FF_REMEMBER))
3622         {
3623                 cptr name;
3624
3625                 /* Hack -- special handling for quest entrances */
3626                 if (have_flag(f_ptr->flags, FF_QUEST_ENTER))
3627                 {
3628                         /* Set the quest number temporary */
3629                         int old_quest = p_ptr->inside_quest;
3630                         int j;
3631
3632                         /* Clear the text */
3633                         for (j = 0; j < 10; j++) quest_text[j][0] = '\0';
3634                         quest_text_line = 0;
3635
3636                         p_ptr->inside_quest = c_ptr->special;
3637
3638                         /* Get the quest text */
3639                         init_flags = INIT_SHOW_TEXT;
3640
3641                         process_dungeon_file("q_info.txt", 0, 0, 0, 0);
3642
3643 #ifdef JP
3644                         name = format("¥¯¥¨¥¹¥È¡Ö%s¡×(%d³¬ÁêÅö)", quest[c_ptr->special].name, quest[c_ptr->special].level);
3645 #else
3646                         name = format("the entrance to the quest '%s'(level %d)", quest[c_ptr->special].name, quest[c_ptr->special].level);
3647 #endif
3648
3649                         /* Reset the old quest number */
3650                         p_ptr->inside_quest = old_quest;
3651                 }
3652
3653                 /* Hack -- special handling for building doors */
3654                 else if (have_flag(f_ptr->flags, FF_BLDG) && !p_ptr->inside_arena)
3655                 {
3656                         name = building[f_ptr->subtype].name;
3657                 }
3658                 else if (have_flag(f_ptr->flags, FF_ENTRANCE))
3659                 {
3660 #ifdef JP
3661                         name = format("%s(%d³¬ÁêÅö)", d_text + d_info[c_ptr->special].text, d_info[c_ptr->special].mindepth);
3662 #else
3663                         name = format("%s(level %d)", d_text + d_info[c_ptr->special].text, d_info[c_ptr->special].mindepth);
3664 #endif
3665                 }
3666                 else if (have_flag(f_ptr->flags, FF_TOWN))
3667                 {
3668                         name = town[c_ptr->special].name;
3669                 }
3670                 else if (p_ptr->wild_mode && (feat == feat_floor))
3671                 {
3672 #ifdef JP
3673                         name = "ƻ";
3674 #else
3675                         name = "road";
3676 #endif
3677                 }
3678                 else
3679                 {
3680                         name = f_name + f_ptr->name;
3681                 }
3682
3683
3684                 /* Pick a prefix */
3685                 if (*s2 &&
3686                     ((!have_flag(f_ptr->flags, FF_MOVE) && !have_flag(f_ptr->flags, FF_CAN_FLY)) ||
3687                      (!have_flag(f_ptr->flags, FF_LOS) && !have_flag(f_ptr->flags, FF_TREE)) ||
3688                      have_flag(f_ptr->flags, FF_TOWN)))
3689                 {
3690 #ifdef JP
3691                         s2 = "¤ÎÃæ";
3692 #else
3693                         s2 = "in ";
3694 #endif
3695                 }
3696
3697                 /* Hack -- special introduction for store & building doors -KMW- */
3698                 if (have_flag(f_ptr->flags, FF_STORE) ||
3699                     have_flag(f_ptr->flags, FF_QUEST_ENTER) ||
3700                     (have_flag(f_ptr->flags, FF_BLDG) && !p_ptr->inside_arena) ||
3701                     have_flag(f_ptr->flags, FF_ENTRANCE))
3702                 {
3703 #ifdef JP
3704                         s2 = "¤ÎÆþ¸ý";
3705 #else
3706                         s3 = "";
3707 #endif
3708                 }
3709 #ifndef JP
3710                 else if (have_flag(f_ptr->flags, FF_FLOOR) ||
3711                          have_flag(f_ptr->flags, FF_TOWN) ||
3712                          have_flag(f_ptr->flags, FF_SHALLOW) ||
3713                          have_flag(f_ptr->flags, FF_DEEP))
3714                 {
3715                         s3 ="";
3716                 }
3717                 else
3718                 {
3719                         /* Pick proper indefinite article */
3720                         s3 = (is_a_vowel(name[0])) ? "an " : "a ";
3721                 }
3722 #endif
3723
3724                 /* Display a message */
3725                 if (p_ptr->wizard)
3726                 {
3727                         char f_idx_str[32];
3728                         if (c_ptr->mimic) sprintf(f_idx_str, "%d/%d", c_ptr->feat, c_ptr->mimic);
3729                         else sprintf(f_idx_str, "%d", c_ptr->feat);
3730 #ifdef JP
3731                         sprintf(out_val, "%s%s%s%s[%s] %x %s %d %d %d (%d,%d)", s1, name, s2, s3, info, c_ptr->info, f_idx_str, c_ptr->dist, c_ptr->cost, c_ptr->when, y, x);
3732 #else
3733                         sprintf(out_val, "%s%s%s%s [%s] %x %s %d %d %d (%d,%d)", s1, s2, s3, name, info, c_ptr->info, f_idx_str, c_ptr->dist, c_ptr->cost, c_ptr->when, y, x);
3734 #endif
3735                 }
3736                 else
3737 #ifdef JP
3738                         sprintf(out_val, "%s%s%s%s[%s]", s1, name, s2, s3, info);
3739 #else
3740                         sprintf(out_val, "%s%s%s%s [%s]", s1, s2, s3, name, info);
3741 #endif
3742
3743                 prt(out_val, 0, 0);
3744                 move_cursor_relative(y, x);
3745                 query = inkey();
3746
3747                 /* Always stop at "normal" keys */
3748                 if ((query != '\r') && (query != '\n') && (query != ' ')) return query;
3749         }
3750
3751         /* Stop on everything but "return" */
3752         if ((query != '\r') && (query != '\n')) return query;
3753
3754         /* Repeat forever */
3755         return 0;
3756 }
3757
3758
3759 /*
3760  * Handle "target" and "look".
3761  *
3762  * Note that this code can be called from "get_aim_dir()".
3763  *
3764  * All locations must be on the current panel.  Consider the use of
3765  * "panel_bounds()" to allow "off-panel" targets, perhaps by using
3766  * some form of "scrolling" the map around the cursor.  XXX XXX XXX
3767  * That is, consider the possibility of "auto-scrolling" the screen
3768  * while the cursor moves around.  This may require changes in the
3769  * "update_mon()" code to allow "visibility" even if off panel, and
3770  * may require dynamic recalculation of the "temp" grid set.
3771  *
3772  * Hack -- targeting/observing an "outer border grid" may induce
3773  * problems, so this is not currently allowed.
3774  *
3775  * The player can use the direction keys to move among "interesting"
3776  * grids in a heuristic manner, or the "space", "+", and "-" keys to
3777  * move through the "interesting" grids in a sequential manner, or
3778  * can enter "location" mode, and use the direction keys to move one
3779  * grid at a time in any direction.  The "t" (set target) command will
3780  * only target a monster (as opposed to a location) if the monster is
3781  * target_able and the "interesting" mode is being used.
3782  *
3783  * The current grid is described using the "look" method above, and
3784  * a new command may be entered at any time, but note that if the
3785  * "TARGET_LOOK" bit flag is set (or if we are in "location" mode,
3786  * where "space" has no obvious meaning) then "space" will scan
3787  * through the description of the current grid until done, instead
3788  * of immediately jumping to the next "interesting" grid.  This
3789  * allows the "target" command to retain its old semantics.
3790  *
3791  * The "*", "+", and "-" keys may always be used to jump immediately
3792  * to the next (or previous) interesting grid, in the proper mode.
3793  *
3794  * The "return" key may always be used to scan through a complete
3795  * grid description (forever).
3796  *
3797  * This command will cancel any old target, even if used from
3798  * inside the "look" command.
3799  */
3800 bool target_set(int mode)
3801 {
3802         int             i, d, m, t, bd;
3803         int             y = py;
3804         int             x = px;
3805
3806         bool    done = FALSE;
3807
3808         bool    flag = TRUE;
3809
3810         char    query;
3811
3812         char    info[80];
3813
3814         cave_type               *c_ptr;
3815
3816         int wid, hgt;
3817
3818
3819         /* Get size */
3820         get_screen_size(&wid, &hgt);
3821
3822         /* Cancel target */
3823         target_who = 0;
3824
3825
3826         /* Cancel tracking */
3827         /* health_track(0); */
3828
3829
3830         /* Prepare the "temp" array */
3831         target_set_prepare(mode);
3832
3833         /* Start near the player */
3834         m = 0;
3835
3836         /* Interact */
3837         while (!done)
3838         {
3839                 /* Interesting grids */
3840                 if (flag && temp_n)
3841                 {
3842                         y = temp_y[m];
3843                         x = temp_x[m];
3844
3845                         if (!(mode & TARGET_LOOK)) prt_path(y, x);
3846
3847                         /* Access */
3848                         c_ptr = &cave[y][x];
3849
3850                         /* Allow target */
3851                         if (target_able(c_ptr->m_idx))
3852                         {
3853 #ifdef JP
3854 strcpy(info, "q»ß t·è p¼« o¸½ +¼¡ -Á°");
3855 #else
3856                                 strcpy(info, "q,t,p,o,+,-,<dir>");
3857 #endif
3858
3859                         }
3860
3861                         /* Dis-allow target */
3862                         else
3863                         {
3864 #ifdef JP
3865 strcpy(info, "q»ß p¼« o¸½ +¼¡ -Á°");
3866 #else
3867                                 strcpy(info, "q,p,o,+,-,<dir>");
3868 #endif
3869
3870                         }
3871
3872                         /* Describe and Prompt */
3873                         while (!(query = target_set_aux(y, x, mode, info)));
3874
3875                         /* Cancel tracking */
3876                         /* health_track(0); */
3877
3878                         /* Assume no "direction" */
3879                         d = 0;
3880
3881                         if (use_menu)
3882                         {
3883                                 if (query == '\r') query = 't';
3884                         }  
3885
3886                         /* Analyze */
3887                         switch (query)
3888                         {
3889                                 case ESCAPE:
3890                                 case 'q':
3891                                 {
3892                                         done = TRUE;
3893                                         break;
3894                                 }
3895
3896                                 case 't':
3897                                 case '.':
3898                                 case '5':
3899                                 case '0':
3900                                 {
3901                                         if (target_able(c_ptr->m_idx))
3902                                         {
3903                                                 health_track(c_ptr->m_idx);
3904                                                 target_who = c_ptr->m_idx;
3905                                                 target_row = y;
3906                                                 target_col = x;
3907                                                 done = TRUE;
3908                                         }
3909                                         else
3910                                         {
3911                                                 bell();
3912                                         }
3913                                         break;
3914                                 }
3915
3916                                 case ' ':
3917                                 case '*':
3918                                 case '+':
3919                                 {
3920                                         if (++m == temp_n)
3921                                         {
3922                                                 m = 0;
3923                                                 if (!expand_list) done = TRUE;
3924                                         }
3925                                         break;
3926                                 }
3927
3928                                 case '-':
3929                                 {
3930                                         if (m-- == 0)
3931                                         {
3932                                                 m = temp_n - 1;
3933                                                 if (!expand_list) done = TRUE;
3934                                         }
3935                                         break;
3936                                 }
3937
3938                                 case 'p':
3939                                 {
3940                                         /* Recenter the map around the player */
3941                                         verify_panel();
3942
3943                                         /* Update stuff */
3944                                         p_ptr->update |= (PU_MONSTERS);
3945
3946                                         /* Redraw map */
3947                                         p_ptr->redraw |= (PR_MAP);
3948
3949                                         /* Window stuff */
3950                                         p_ptr->window |= (PW_OVERHEAD);
3951
3952                                         /* Handle stuff */
3953                                         handle_stuff();
3954
3955                                         /* Recalculate interesting grids */
3956                                         target_set_prepare(mode);
3957
3958                                         y = py;
3959                                         x = px;
3960                                 }
3961
3962                                 case 'o':
3963                                 {
3964                                         flag = FALSE;
3965                                         break;
3966                                 }
3967
3968                                 case 'm':
3969                                 {
3970                                         break;
3971                                 }
3972
3973                                 default:
3974                                 {
3975                                         /* Extract the action (if any) */
3976                                         d = get_keymap_dir(query);
3977
3978                                         if (!d) bell();
3979                                         break;
3980                                 }
3981                         }
3982
3983                         /* Hack -- move around */
3984                         if (d)
3985                         {
3986                                 /* Modified to scroll to monster */
3987                                 int y2 = panel_row_min;
3988                                 int x2 = panel_col_min;
3989
3990                                 /* Find a new monster */
3991                                 i = target_pick(temp_y[m], temp_x[m], ddy[d], ddx[d]);
3992
3993                                 /* Request to target past last interesting grid */
3994                                 while (flag && (i < 0))
3995                                 {
3996                                         /* Note the change */
3997                                         if (change_panel(ddy[d], ddx[d]))
3998                                         {
3999                                                 int v = temp_y[m];
4000                                                 int u = temp_x[m];
4001
4002                                                 /* Recalculate interesting grids */
4003                                                 target_set_prepare(mode);
4004
4005                                                 /* Look at interesting grids */
4006                                                 flag = TRUE;
4007
4008                                                 /* Find a new monster */
4009                                                 i = target_pick(v, u, ddy[d], ddx[d]);
4010
4011                                                 /* Use that grid */
4012                                                 if (i >= 0) m = i;
4013                                         }
4014
4015                                         /* Nothing interesting */
4016                                         else
4017                                         {
4018                                                 int dx = ddx[d];
4019                                                 int dy = ddy[d];
4020
4021                                                 /* Restore previous position */
4022                                                 panel_row_min = y2;
4023                                                 panel_col_min = x2;
4024                                                 panel_bounds_center();
4025
4026                                                 /* Update stuff */
4027                                                 p_ptr->update |= (PU_MONSTERS);
4028
4029                                                 /* Redraw map */
4030                                                 p_ptr->redraw |= (PR_MAP);
4031
4032                                                 /* Window stuff */
4033                                                 p_ptr->window |= (PW_OVERHEAD);
4034
4035                                                 /* Handle stuff */
4036                                                 handle_stuff();
4037
4038                                                 /* Recalculate interesting grids */
4039                                                 target_set_prepare(mode);
4040
4041                                                 /* Look at boring grids */
4042                                                 flag = FALSE;
4043
4044                                                 /* Move */
4045                                                 x += dx;
4046                                                 y += dy;
4047
4048                                                 /* Do not move horizontally if unnecessary */
4049                                                 if (((x < panel_col_min + wid / 2) && (dx > 0)) ||
4050                                                          ((x > panel_col_min + wid / 2) && (dx < 0)))
4051                                                 {
4052                                                         dx = 0;
4053                                                 }
4054
4055                                                 /* Do not move vertically if unnecessary */
4056                                                 if (((y < panel_row_min + hgt / 2) && (dy > 0)) ||
4057                                                          ((y > panel_row_min + hgt / 2) && (dy < 0)))
4058                                                 {
4059                                                         dy = 0;
4060                                                 }
4061
4062                                                 /* Apply the motion */
4063                                                 if ((y >= panel_row_min+hgt) || (y < panel_row_min) ||
4064                                                     (x >= panel_col_min+wid) || (x < panel_col_min))
4065                                                 {
4066                                                         if (change_panel(dy, dx)) target_set_prepare(mode);
4067                                                 }
4068
4069                                                 /* Slide into legality */
4070                                                 if (x >= cur_wid-1) x = cur_wid - 2;
4071                                                 else if (x <= 0) x = 1;
4072
4073                                                 /* Slide into legality */
4074                                                 if (y >= cur_hgt-1) y = cur_hgt- 2;
4075                                                 else if (y <= 0) y = 1;
4076                                         }
4077                                 }
4078
4079                                 /* Use that grid */
4080                                 m = i;
4081                         }
4082                 }
4083
4084                 /* Arbitrary grids */
4085                 else
4086                 {
4087                         bool move_fast = FALSE;
4088
4089                         if (!(mode & TARGET_LOOK)) prt_path(y, x);
4090
4091                         /* Access */
4092                         c_ptr = &cave[y][x];
4093
4094                         /* Default prompt */
4095 #ifdef JP
4096 strcpy(info, "q»ß t·è p¼« m¶á +¼¡ -Á°");
4097 #else
4098                         strcpy(info, "q,t,p,m,+,-,<dir>");
4099 #endif
4100
4101
4102                         /* Describe and Prompt (enable "TARGET_LOOK") */
4103                         while (!(query = target_set_aux(y, x, mode | TARGET_LOOK, info)));
4104
4105                         /* Cancel tracking */
4106                         /* health_track(0); */
4107
4108                         /* Assume no direction */
4109                         d = 0;
4110
4111                         if (use_menu)
4112                         {
4113                                 if (query == '\r') query = 't';
4114                         }  
4115
4116                         /* Analyze the keypress */
4117                         switch (query)
4118                         {
4119                                 case ESCAPE:
4120                                 case 'q':
4121                                 {
4122                                         done = TRUE;
4123                                         break;
4124                                 }
4125
4126                                 case 't':
4127                                 case '.':
4128                                 case '5':
4129                                 case '0':
4130                                 {
4131                                         target_who = -1;
4132                                         target_row = y;
4133                                         target_col = x;
4134                                         done = TRUE;
4135                                         break;
4136                                 }
4137
4138                                 case 'p':
4139                                 {
4140                                         /* Recenter the map around the player */
4141                                         verify_panel();
4142
4143                                         /* Update stuff */
4144                                         p_ptr->update |= (PU_MONSTERS);
4145
4146                                         /* Redraw map */
4147                                         p_ptr->redraw |= (PR_MAP);
4148
4149                                         /* Window stuff */
4150                                         p_ptr->window |= (PW_OVERHEAD);
4151
4152                                         /* Handle stuff */
4153                                         handle_stuff();
4154
4155                                         /* Recalculate interesting grids */
4156                                         target_set_prepare(mode);
4157
4158                                         y = py;
4159                                         x = px;
4160                                 }
4161
4162                                 case 'o':
4163                                 {
4164                                         break;
4165                                 }
4166
4167                                 case ' ':
4168                                 case '*':
4169                                 case '+':
4170                                 case '-':
4171                                 case 'm':
4172                                 {
4173                                         flag = TRUE;
4174
4175                                         m = 0;
4176                                         bd = 999;
4177
4178                                         /* Pick a nearby monster */
4179                                         for (i = 0; i < temp_n; i++)
4180                                         {
4181                                                 t = distance(y, x, temp_y[i], temp_x[i]);
4182
4183                                                 /* Pick closest */
4184                                                 if (t < bd)
4185                                                 {
4186                                                         m = i;
4187                                                         bd = t;
4188                                                 }
4189                                         }
4190
4191                                         /* Nothing interesting */
4192                                         if (bd == 999) flag = FALSE;
4193
4194                                         break;
4195                                 }
4196
4197                                 default:
4198                                 {
4199                                         /* Extract the action (if any) */
4200                                         d = get_keymap_dir(query);
4201
4202                                         /* XTRA HACK MOVEFAST */
4203                                         if (isupper(query)) move_fast = TRUE;
4204
4205                                         if (!d) bell();
4206                                         break;
4207                                 }
4208                         }
4209
4210                         /* Handle "direction" */
4211                         if (d)
4212                         {
4213                                 int dx = ddx[d];
4214                                 int dy = ddy[d];
4215
4216                                 /* XTRA HACK MOVEFAST */
4217                                 if (move_fast)
4218                                 {
4219                                         int mag = MIN(wid / 2, hgt / 2);
4220                                         x += dx * mag;
4221                                         y += dy * mag;
4222                                 }
4223                                 else
4224                                 {
4225                                         x += dx;
4226                                         y += dy;
4227                                 }
4228
4229                                 /* Do not move horizontally if unnecessary */
4230                                 if (((x < panel_col_min + wid / 2) && (dx > 0)) ||
4231                                          ((x > panel_col_min + wid / 2) && (dx < 0)))
4232                                 {
4233                                         dx = 0;
4234                                 }
4235
4236                                 /* Do not move vertically if unnecessary */
4237                                 if (((y < panel_row_min + hgt / 2) && (dy > 0)) ||
4238                                          ((y > panel_row_min + hgt / 2) && (dy < 0)))
4239                                 {
4240                                         dy = 0;
4241                                 }
4242
4243                                 /* Apply the motion */
4244                                 if ((y >= panel_row_min + hgt) || (y < panel_row_min) ||
4245                                          (x >= panel_col_min + wid) || (x < panel_col_min))
4246                                 {
4247                                         if (change_panel(dy, dx)) target_set_prepare(mode);
4248                                 }
4249
4250                                 /* Slide into legality */
4251                                 if (x >= cur_wid-1) x = cur_wid - 2;
4252                                 else if (x <= 0) x = 1;
4253
4254                                 /* Slide into legality */
4255                                 if (y >= cur_hgt-1) y = cur_hgt- 2;
4256                                 else if (y <= 0) y = 1;
4257                         }
4258                 }
4259         }
4260
4261         /* Forget */
4262         temp_n = 0;
4263
4264         /* Clear the top line */
4265         prt("", 0, 0);
4266
4267         /* Recenter the map around the player */
4268         verify_panel();
4269
4270         /* Update stuff */
4271         p_ptr->update |= (PU_MONSTERS);
4272
4273         /* Redraw map */
4274         p_ptr->redraw |= (PR_MAP);
4275
4276         /* Window stuff */
4277         p_ptr->window |= (PW_OVERHEAD);
4278
4279         /* Handle stuff */
4280         handle_stuff();
4281
4282         /* Failure to set target */
4283         if (!target_who) return (FALSE);
4284
4285         /* Success */
4286         return (TRUE);
4287 }
4288
4289
4290 /*
4291  * Get an "aiming direction" from the user.
4292  *
4293  * The "dir" is loaded with 1,2,3,4,6,7,8,9 for "actual direction", and
4294  * "0" for "current target", and "-1" for "entry aborted".
4295  *
4296  * Note that "Force Target", if set, will pre-empt user interaction,
4297  * if there is a usable target already set.
4298  *
4299  * Note that confusion over-rides any (explicit?) user choice.
4300  */
4301 bool get_aim_dir(int *dp)
4302 {
4303         int             dir;
4304
4305         char    command;
4306
4307         cptr    p;
4308
4309         /* Initialize */
4310         (*dp) = 0;
4311
4312         /* Global direction */
4313         dir = command_dir;
4314
4315         /* Hack -- auto-target if requested */
4316         if (use_old_target && target_okay()) dir = 5;
4317
4318 #ifdef ALLOW_REPEAT /* TNB */
4319
4320         if (repeat_pull(dp))
4321         {
4322                 /* Confusion? */
4323
4324                 /* Verify */
4325                 if (!(*dp == 5 && !target_okay()))
4326                 {
4327 /*                      return (TRUE); */
4328                         dir = *dp;
4329                 }
4330         }
4331
4332 #endif /* ALLOW_REPEAT -- TNB */
4333
4334         /* Ask until satisfied */
4335         while (!dir)
4336         {
4337                 /* Choose a prompt */
4338                 if (!target_okay())
4339                 {
4340 #ifdef JP
4341 p = "Êý¸þ ('*'¤Ç¥¿¡¼¥²¥Ã¥ÈÁªÂò, ESC¤ÇÃæÃÇ)? ";
4342 #else
4343                         p = "Direction ('*' to choose a target, Escape to cancel)? ";
4344 #endif
4345
4346                 }
4347                 else
4348                 {
4349 #ifdef JP
4350 p = "Êý¸þ ('5'¤Ç¥¿¡¼¥²¥Ã¥È¤Ø, '*'¤Ç¥¿¡¼¥²¥Ã¥ÈºÆÁªÂò, ESC¤ÇÃæÃÇ)? ";
4351 #else
4352                         p = "Direction ('5' for target, '*' to re-target, Escape to cancel)? ";
4353 #endif
4354
4355                 }
4356
4357                 /* Get a command (or Cancel) */
4358                 if (!get_com(p, &command, TRUE)) break;
4359
4360                 if (use_menu)
4361                 {
4362                         if (command == '\r') command = 't';
4363                 }  
4364
4365                 /* Convert various keys to "standard" keys */
4366                 switch (command)
4367                 {
4368                         /* Use current target */
4369                         case 'T':
4370                         case 't':
4371                         case '.':
4372                         case '5':
4373                         case '0':
4374                         {
4375                                 dir = 5;
4376                                 break;
4377                         }
4378
4379                         /* Set new target */
4380                         case '*':
4381                         case ' ':
4382                         case '\r':
4383                         {
4384                                 if (target_set(TARGET_KILL)) dir = 5;
4385                                 break;
4386                         }
4387
4388                         default:
4389                         {
4390                                 /* Extract the action (if any) */
4391                                 dir = get_keymap_dir(command);
4392
4393                                 break;
4394                         }
4395                 }
4396
4397                 /* Verify requested targets */
4398                 if ((dir == 5) && !target_okay()) dir = 0;
4399
4400                 /* Error */
4401                 if (!dir) bell();
4402         }
4403
4404         /* No direction */
4405         if (!dir)
4406         {
4407                 project_length = 0; /* reset to default */
4408                 return (FALSE);
4409         }
4410
4411         /* Save the direction */
4412         command_dir = dir;
4413
4414         /* Check for confusion */
4415         if (p_ptr->confused)
4416         {
4417                 /* XXX XXX XXX */
4418                 /* Random direction */
4419                 dir = ddd[randint0(8)];
4420         }
4421
4422         /* Notice confusion */
4423         if (command_dir != dir)
4424         {
4425                 /* Warn the user */
4426 #ifdef JP
4427 msg_print("¤¢¤Ê¤¿¤Ïº®Í𤷤Ƥ¤¤ë¡£");
4428 #else
4429                 msg_print("You are confused.");
4430 #endif
4431
4432         }
4433
4434         /* Save direction */
4435         (*dp) = dir;
4436
4437 #ifdef ALLOW_REPEAT /* TNB */
4438
4439 /*      repeat_push(dir); */
4440         repeat_push(command_dir);
4441
4442 #endif /* ALLOW_REPEAT -- TNB */
4443
4444         /* A "valid" direction was entered */
4445         return (TRUE);
4446 }
4447
4448
4449
4450 /*
4451  * Request a "movement" direction (1,2,3,4,6,7,8,9) from the user,
4452  * and place it into "command_dir", unless we already have one.
4453  *
4454  * This function should be used for all "repeatable" commands, such as
4455  * run, walk, open, close, bash, disarm, spike, tunnel, etc, as well
4456  * as all commands which must reference a grid adjacent to the player,
4457  * and which may not reference the grid under the player.  Note that,
4458  * for example, it is no longer possible to "disarm" or "open" chests
4459  * in the same grid as the player.
4460  *
4461  * Direction "5" is illegal and will (cleanly) abort the command.
4462  *
4463  * This function tracks and uses the "global direction", and uses
4464  * that as the "desired direction", to which "confusion" is applied.
4465  */
4466 bool get_rep_dir(int *dp, bool under)
4467 {
4468         int dir;
4469
4470         /* Initialize */
4471         (*dp) = 0;
4472
4473         /* Global direction */
4474         dir = command_dir;
4475
4476 #ifdef ALLOW_REPEAT /* TNB */
4477
4478         if (repeat_pull(dp))
4479         {
4480                 dir = *dp;
4481 /*              return (TRUE); */
4482         }
4483
4484 #endif /* ALLOW_REPEAT -- TNB */
4485
4486         /* Get a direction */
4487         while (!dir)
4488         {
4489                 char ch;
4490
4491                 /* Get a command (or Cancel) */
4492 #ifdef JP
4493 if (!get_com("Êý¸þ (ESC¤ÇÃæÃÇ)? ", &ch, TRUE)) break;
4494 #else
4495                 if (!get_com("Direction (Escape to cancel)? ", &ch, TRUE)) break;
4496 #endif
4497
4498
4499                 /* Look up the direction */
4500                 dir = get_keymap_dir(ch);
4501
4502                 /* Oops */
4503                 if (!dir) bell();
4504         }
4505
4506         /* Prevent weirdness */
4507         if ((dir == 5) && (!under)) dir = 0;
4508
4509         /* Aborted */
4510         if (!dir) return (FALSE);
4511
4512         /* Save desired direction */
4513         command_dir = dir;
4514
4515         /* Apply "confusion" */
4516         if (p_ptr->confused)
4517         {
4518                 /* Standard confusion */
4519                 if (randint0(100) < 75)
4520                 {
4521                         /* Random direction */
4522                         dir = ddd[randint0(8)];
4523                 }
4524         }
4525         else if (p_ptr->riding)
4526         {
4527                 monster_type *m_ptr = &m_list[p_ptr->riding];
4528                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
4529
4530                 if (MON_CONFUSED(m_ptr))
4531                 {
4532                         /* Standard confusion */
4533                         if (randint0(100) < 75)
4534                         {
4535                                 /* Random direction */
4536                                 dir = ddd[randint0(8)];
4537                         }
4538                 }
4539                 else if ((r_ptr->flags1 & RF1_RAND_50) && (r_ptr->flags1 & RF1_RAND_25) && (randint0(100) < 50))
4540                 {
4541                         /* Random direction */
4542                         dir = ddd[randint0(8)];
4543                 }
4544                 else if ((r_ptr->flags1 & RF1_RAND_50) && (randint0(100) < 25))
4545                 {
4546                         /* Random direction */
4547                         dir = ddd[randint0(8)];
4548                 }
4549         }
4550
4551         /* Notice confusion */
4552         if (command_dir != dir)
4553         {
4554                 if (p_ptr->confused)
4555                 {
4556                         /* Warn the user */
4557 #ifdef JP
4558 msg_print("¤¢¤Ê¤¿¤Ïº®Í𤷤Ƥ¤¤ë¡£");
4559 #else
4560                         msg_print("You are confused.");
4561 #endif
4562                 }
4563                 else
4564                 {
4565                         char m_name[80];
4566                         monster_type *m_ptr = &m_list[p_ptr->riding];
4567
4568                         monster_desc(m_name, m_ptr, 0);
4569                         if (MON_CONFUSED(m_ptr))
4570                         {
4571 #ifdef JP
4572 msg_format("%s¤Ïº®Í𤷤Ƥ¤¤ë¡£", m_name);
4573 #else
4574  msg_format("%^s is confusing.", m_name);
4575
4576 #endif
4577                         }
4578                         else
4579                         {
4580 #ifdef JP
4581 msg_format("%s¤Ï»×¤¤Ä̤ê¤ËÆ°¤¤¤Æ¤¯¤ì¤Ê¤¤¡£", m_name);
4582 #else
4583 msg_format("You cannot control %s.", m_name);
4584 #endif
4585                         }
4586                 }
4587         }
4588
4589         /* Save direction */
4590         (*dp) = dir;
4591
4592 #ifdef ALLOW_REPEAT /* TNB */
4593
4594 /*      repeat_push(dir); */
4595         repeat_push(command_dir);
4596
4597 #endif /* ALLOW_REPEAT -- TNB */
4598
4599         /* Success */
4600         return (TRUE);
4601 }
4602
4603
4604 bool get_rep_dir2(int *dp)
4605 {
4606         int dir;
4607
4608         /* Initialize */
4609         (*dp) = 0;
4610
4611         /* Global direction */
4612         dir = command_dir;
4613
4614 #ifdef ALLOW_REPEAT /* TNB */
4615
4616         if (repeat_pull(dp))
4617         {
4618                 dir = *dp;
4619 /*              return (TRUE); */
4620         }
4621
4622 #endif /* ALLOW_REPEAT -- TNB */
4623
4624         /* Get a direction */
4625         while (!dir)
4626         {
4627                 char ch;
4628
4629                 /* Get a command (or Cancel) */
4630 #ifdef JP
4631 if (!get_com("Êý¸þ (ESC¤ÇÃæÃÇ)? ", &ch, TRUE)) break;
4632 #else
4633                 if (!get_com("Direction (Escape to cancel)? ", &ch, TRUE)) break;
4634 #endif
4635
4636
4637                 /* Look up the direction */
4638                 dir = get_keymap_dir(ch);
4639
4640                 /* Oops */
4641                 if (!dir) bell();
4642         }
4643
4644         /* Prevent weirdness */
4645         if (dir == 5) dir = 0;
4646
4647         /* Aborted */
4648         if (!dir) return (FALSE);
4649
4650         /* Save desired direction */
4651         command_dir = dir;
4652
4653         /* Apply "confusion" */
4654         if (p_ptr->confused)
4655         {
4656                 /* Standard confusion */
4657                 if (randint0(100) < 75)
4658                 {
4659                         /* Random direction */
4660                         dir = ddd[randint0(8)];
4661                 }
4662         }
4663
4664         /* Notice confusion */
4665         if (command_dir != dir)
4666         {
4667                 /* Warn the user */
4668 #ifdef JP
4669 msg_print("¤¢¤Ê¤¿¤Ïº®Í𤷤Ƥ¤¤ë¡£");
4670 #else
4671                 msg_print("You are confused.");
4672 #endif
4673
4674         }
4675
4676         /* Save direction */
4677         (*dp) = dir;
4678
4679 #ifdef ALLOW_REPEAT /* TNB */
4680
4681 /*      repeat_push(dir); */
4682         repeat_push(command_dir);
4683
4684 #endif /* ALLOW_REPEAT -- TNB */
4685
4686         /* Success */
4687         return (TRUE);
4688 }
4689
4690
4691 void gain_level_reward(int chosen_reward)
4692 {
4693         object_type *q_ptr;
4694         object_type forge;
4695         char        wrath_reason[32] = "";
4696         int         nasty_chance = 6;
4697         int         dummy = 0, dummy2 = 0;
4698         int         type, effect;
4699         cptr        reward = NULL;
4700         char o_name[MAX_NLEN];
4701
4702         int count = 0;
4703
4704         if (!chosen_reward)
4705         {
4706                 if (multi_rew) return;
4707                 else multi_rew = TRUE;
4708         }
4709
4710
4711         if (p_ptr->lev == 13) nasty_chance = 2;
4712         else if (!(p_ptr->lev % 13)) nasty_chance = 3;
4713         else if (!(p_ptr->lev % 14)) nasty_chance = 12;
4714
4715         if (one_in_(nasty_chance))
4716                 type = randint1(20); /* Allow the 'nasty' effects */
4717         else
4718                 type = randint1(15) + 5; /* Or disallow them */
4719
4720         if (type < 1) type = 1;
4721         if (type > 20) type = 20;
4722         type--;
4723
4724
4725 #ifdef JP
4726 sprintf(wrath_reason, "%s¤ÎÅܤê",
4727                 chaos_patrons[p_ptr->chaos_patron]);
4728 #else
4729         sprintf(wrath_reason, "the Wrath of %s",
4730                 chaos_patrons[p_ptr->chaos_patron]);
4731 #endif
4732
4733
4734         effect = chaos_rewards[p_ptr->chaos_patron][type];
4735
4736         if (one_in_(6) && !chosen_reward)
4737         {
4738 #ifdef JP
4739 msg_format("%^s¤ÏË«Èþ¤È¤·¤Æ¤¢¤Ê¤¿¤òÆÍÁ³ÊÑ°Û¤µ¤»¤¿¡£",
4740                         chaos_patrons[p_ptr->chaos_patron]);
4741 #else
4742                 msg_format("%^s rewards you with a mutation!",
4743                         chaos_patrons[p_ptr->chaos_patron]);
4744 #endif
4745
4746                 (void)gain_random_mutation(0);
4747 #ifdef JP
4748                 reward = "ÊÑ°Û¤·¤¿¡£";
4749 #else
4750                 reward = "mutation";
4751 #endif
4752         }
4753         else
4754         {
4755         switch (chosen_reward ? chosen_reward : effect)
4756         {
4757                 case REW_POLY_SLF:
4758 #ifdef JP
4759 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
4760                                 chaos_patrons[p_ptr->chaos_patron]);
4761 #else
4762                         msg_format("The voice of %s booms out:",
4763                                 chaos_patrons[p_ptr->chaos_patron]);
4764 #endif
4765
4766 #ifdef JP
4767 msg_print("¡ÖÆò¡¢¿·¤¿¤Ê¤ë»Ñ¤òɬÍפȤ»¤ê¡ª¡×");
4768 #else
4769                         msg_print("'Thou needst a new form, mortal!'");
4770 #endif
4771
4772                         do_poly_self();
4773 #ifdef JP
4774                         reward = "ÊÑ°Û¤·¤¿¡£";
4775 #else
4776                         reward = "polymorphing";
4777 #endif
4778                         break;
4779                 case REW_GAIN_EXP:
4780 #ifdef JP
4781 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
4782                                 chaos_patrons[p_ptr->chaos_patron]);
4783 #else
4784                         msg_format("The voice of %s booms out:",
4785                                 chaos_patrons[p_ptr->chaos_patron]);
4786 #endif
4787
4788 #ifdef JP
4789 msg_print("¡ÖÆò¤ÏÎɤ¯¹Ô¤¤¤¿¤ê¡ªÂ³¤±¤è¡ª¡×");
4790 #else
4791                         msg_print("'Well done, mortal! Lead on!'");
4792 #endif
4793
4794                         if (p_ptr->prace == RACE_ANDROID)
4795                         {
4796 #ifdef JP
4797                                 msg_print("¤·¤«¤·²¿¤âµ¯¤³¤é¤Ê¤«¤Ã¤¿¡£");
4798 #else
4799                                 msg_print("But, nothing happen.");
4800 #endif
4801                         }
4802                         else if (p_ptr->exp < PY_MAX_EXP)
4803                         {
4804                                 s32b ee = (p_ptr->exp / 2) + 10;
4805                                 if (ee > 100000L) ee = 100000L;
4806 #ifdef JP
4807 msg_print("¹¹¤Ë·Ð¸³¤òÀѤó¤À¤è¤¦¤Êµ¤¤¬¤¹¤ë¡£");
4808 #else
4809                                 msg_print("You feel more experienced.");
4810 #endif
4811
4812                                 gain_exp(ee);
4813 #ifdef JP
4814                                 reward = "·Ð¸³ÃͤòÆÀ¤¿";
4815 #else
4816                                 reward = "experience";
4817 #endif
4818                         }
4819                         break;
4820                 case REW_LOSE_EXP:
4821 #ifdef JP
4822 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
4823                                 chaos_patrons[p_ptr->chaos_patron]);
4824 #else
4825                         msg_format("The voice of %s booms out:",
4826                                 chaos_patrons[p_ptr->chaos_patron]);
4827 #endif
4828
4829 #ifdef JP
4830 msg_print("¡Ö²¼Ëͤ衢Æò¤½¤ì¤ËÃͤ»¤º¡£¡×");
4831 #else
4832                         msg_print("'Thou didst not deserve that, slave.'");
4833 #endif
4834
4835                         if (p_ptr->prace == RACE_ANDROID)
4836                         {
4837 #ifdef JP
4838                                 msg_print("¤·¤«¤·²¿¤âµ¯¤³¤é¤Ê¤«¤Ã¤¿¡£");
4839 #else
4840                                 msg_print("But, nothing happen.");
4841 #endif
4842                         }
4843                         else
4844                         {
4845                                 lose_exp(p_ptr->exp / 6);
4846 #ifdef JP
4847                                 reward = "·Ð¸³Ãͤò¼º¤Ã¤¿¡£";
4848 #else
4849                                 reward = "losing experience";
4850 #endif
4851                         }
4852                         break;
4853                 case REW_GOOD_OBJ:
4854 #ifdef JP
4855 msg_format("%s¤ÎÀ¼¤¬¤µ¤µ¤ä¤¤¤¿:",
4856                                 chaos_patrons[p_ptr->chaos_patron]);
4857 #else
4858                         msg_format("The voice of %s whispers:",
4859                                 chaos_patrons[p_ptr->chaos_patron]);
4860 #endif
4861
4862 #ifdef JP
4863 msg_print("¡Ö²æ¤¬Í¿¤¨¤·Êª¤ò¸­ÌÀ¤Ë»È¤¦¤Ù¤·¡£¡×");
4864 #else
4865                         msg_print("'Use my gift wisely.'");
4866 #endif
4867
4868                         acquirement(py, px, 1, FALSE, FALSE);
4869 #ifdef JP
4870                         reward = "¾å¼Á¤Ê¥¢¥¤¥Æ¥à¤ò¼ê¤ËÆþ¤ì¤¿¡£";
4871 #else
4872                         reward = "a good item";
4873 #endif
4874                         break;
4875                 case REW_GREA_OBJ:
4876 #ifdef JP
4877 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
4878                                 chaos_patrons[p_ptr->chaos_patron]);
4879 #else
4880                         msg_format("The voice of %s booms out:",
4881                                 chaos_patrons[p_ptr->chaos_patron]);
4882 #endif
4883
4884 #ifdef JP
4885 msg_print("¡Ö²æ¤¬Í¿¤¨¤·Êª¤ò¸­ÌÀ¤Ë»È¤¦¤Ù¤·¡£¡×");
4886 #else
4887                         msg_print("'Use my gift wisely.'");
4888 #endif
4889
4890                         acquirement(py, px, 1, TRUE, FALSE);
4891 #ifdef JP
4892                         reward = "¹âµéÉʤΥ¢¥¤¥Æ¥à¤ò¼ê¤ËÆþ¤ì¤¿¡£";
4893 #else
4894                         reward = "an excellent item";
4895 #endif
4896                         break;
4897                 case REW_CHAOS_WP:
4898 #ifdef JP
4899 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
4900                                 chaos_patrons[p_ptr->chaos_patron]);
4901 #else
4902                         msg_format("The voice of %s booms out:",
4903                                 chaos_patrons[p_ptr->chaos_patron]);
4904 #endif
4905
4906 #ifdef JP
4907 msg_print("¡ÖÆò¤Î¹Ô¤¤¤Ïµ®¤­·õ¤ËÃͤ»¤ê¡£¡×");
4908 #else
4909                         msg_print("'Thy deed hath earned thee a worthy blade.'");
4910 #endif
4911
4912                         /* Get local object */
4913                         q_ptr = &forge;
4914                         dummy = TV_SWORD;
4915                         switch (randint1(p_ptr->lev))
4916                         {
4917                                 case 0: case 1:
4918                                         dummy2 = SV_DAGGER;
4919                                         break;
4920                                 case 2: case 3:
4921                                         dummy2 = SV_MAIN_GAUCHE;
4922                                         break;
4923                                 case 4:
4924                                         dummy2 = SV_TANTO;
4925                                         break;
4926                                 case 5: case 6:
4927                                         dummy2 = SV_RAPIER;
4928                                         break;
4929                                 case 7: case 8:
4930                                         dummy2 = SV_SMALL_SWORD;
4931                                         break;
4932                                 case 9: case 10:
4933                                         dummy2 = SV_BASILLARD;
4934                                         break;
4935                                 case 11: case 12: case 13:
4936                                         dummy2 = SV_SHORT_SWORD;
4937                                         break;
4938                                 case 14: case 15:
4939                                         dummy2 = SV_SABRE;
4940                                         break;
4941                                 case 16: case 17:
4942                                         dummy2 = SV_CUTLASS;
4943                                         break;
4944                                 case 18:
4945                                         dummy2 = SV_WAKIZASHI;
4946                                         break;
4947                                 case 19:
4948                                         dummy2 = SV_KHOPESH;
4949                                         break;
4950                                 case 20:
4951                                         dummy2 = SV_TULWAR;
4952                                         break;
4953                                 case 21:
4954                                         dummy2 = SV_BROAD_SWORD;
4955                                         break;
4956                                 case 22: case 23:
4957                                         dummy2 = SV_LONG_SWORD;
4958                                         break;
4959                                 case 24: case 25:
4960                                         dummy2 = SV_SCIMITAR;
4961                                         break;
4962                                 case 26:
4963                                         dummy2 = SV_NINJATO;
4964                                         break;
4965                                 case 27:
4966                                         dummy2 = SV_KATANA;
4967                                         break;
4968                                 case 28: case 29:
4969                                         dummy2 = SV_BASTARD_SWORD;
4970                                         break;
4971                                 case 30:
4972                                         dummy2 = SV_GREAT_SCIMITAR;
4973                                         break;
4974                                 case 31:
4975                                         dummy2 = SV_CLAYMORE;
4976                                         break;
4977                                 case 32:
4978                                         dummy2 = SV_ESPADON;
4979                                         break;
4980                                 case 33:
4981                                         dummy2 = SV_TWO_HANDED_SWORD;
4982                                         break;
4983                                 case 34:
4984                                         dummy2 = SV_FLAMBERGE;
4985                                         break;
4986                                 case 35:
4987                                         dummy2 = SV_NO_DACHI;
4988                                         break;
4989                                 case 36:
4990                                         dummy2 = SV_EXECUTIONERS_SWORD;
4991                                         break;
4992                                 case 37:
4993                                         dummy2 = SV_ZWEIHANDER;
4994                                         break;
4995                                 case 38:
4996                                         dummy2 = SV_HAYABUSA;
4997                                         break;
4998                                 default:
4999                                         dummy2 = SV_BLADE_OF_CHAOS;
5000                         }
5001
5002                         object_prep(q_ptr, lookup_kind(dummy, dummy2));
5003                         q_ptr->to_h = 3 + randint1(dun_level) % 10;
5004                         q_ptr->to_d = 3 + randint1(dun_level) % 10;
5005                         one_resistance(q_ptr);
5006                         q_ptr->name2 = EGO_CHAOTIC;
5007
5008                         /* Drop it in the dungeon */
5009                         (void)drop_near(q_ptr, -1, py, px);
5010 #ifdef JP
5011                         reward = "(º®ÆÙ)¤ÎÉð´ï¤ò¼ê¤ËÆþ¤ì¤¿¡£";
5012 #else
5013                         reward = "chaos weapon";
5014 #endif
5015                         break;
5016                 case REW_GOOD_OBS:
5017 #ifdef JP
5018 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5019                                 chaos_patrons[p_ptr->chaos_patron]);
5020 #else
5021                         msg_format("The voice of %s booms out:",
5022                                 chaos_patrons[p_ptr->chaos_patron]);
5023 #endif
5024
5025 #ifdef JP
5026 msg_print("¡ÖÆò¤Î¹Ô¤¤¤Ïµ®¤­Ê󤤤ËÃͤ»¤ê¡£¡×");
5027 #else
5028                         msg_print("'Thy deed hath earned thee a worthy reward.'");
5029 #endif
5030
5031                         acquirement(py, px, randint1(2) + 1, FALSE, FALSE);
5032 #ifdef JP
5033                         reward = "¾å¼Á¤Ê¥¢¥¤¥Æ¥à¤ò¼ê¤ËÆþ¤ì¤¿¡£";
5034 #else
5035                         reward = "good items";
5036 #endif
5037                         break;
5038                 case REW_GREA_OBS:
5039 #ifdef JP
5040 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5041                                 chaos_patrons[p_ptr->chaos_patron]);
5042 #else
5043                         msg_format("The voice of %s booms out:",
5044                                 chaos_patrons[p_ptr->chaos_patron]);
5045 #endif
5046
5047 #ifdef JP
5048 msg_print("¡Ö²¼Ëͤ衢Æò¤Î¸¥¿È¤Ø¤Î²æ¤¬Àˤ·¤ß̵¤­Ê󤤤ò¸«¤ë¤¬¤è¤¤¡£¡×");
5049 #else
5050                         msg_print("'Behold, mortal, how generously I reward thy loyalty.'");
5051 #endif
5052
5053                         acquirement(py, px, randint1(2) + 1, TRUE, FALSE);
5054 #ifdef JP
5055                         reward = "¹âµéÉʤΥ¢¥¤¥Æ¥à¤ò¼ê¤ËÆþ¤ì¤¿¡£";
5056 #else
5057                         reward = "excellent items";
5058 #endif
5059                         break;
5060                 case REW_TY_CURSE:
5061 #ifdef JP
5062 msg_format("%s¤ÎÀ¼¤¬¹ì¤­ÅϤä¿:",
5063                                 chaos_patrons[p_ptr->chaos_patron]);
5064 #else
5065                         msg_format("The voice of %s thunders:",
5066                                 chaos_patrons[p_ptr->chaos_patron]);
5067 #endif
5068
5069 #ifdef JP
5070 msg_print("¡Ö²¼Ëͤ衢ÆòÐþËý¤Ê¤ê¡£¡×");
5071 #else
5072                         msg_print("'Thou art growing arrogant, mortal.'");
5073 #endif
5074
5075                         (void)activate_ty_curse(FALSE, &count);
5076 #ifdef JP
5077                         reward = "²Ò¡¹¤·¤¤¼ö¤¤¤ò¤«¤±¤é¤ì¤¿¡£";
5078 #else
5079                         reward = "cursing";
5080 #endif
5081                         break;
5082                 case REW_SUMMON_M:
5083 #ifdef JP
5084 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5085                                 chaos_patrons[p_ptr->chaos_patron]);
5086 #else
5087                         msg_format("The voice of %s booms out:",
5088                                 chaos_patrons[p_ptr->chaos_patron]);
5089 #endif
5090
5091 #ifdef JP
5092 msg_print("¡Ö²æ¤¬²¼Ëͤ¿¤Á¤è¡¢¤«¤ÎÐþËý¤Ê¤ë¼Ô¤òÅݤ¹¤Ù¤·¡ª¡×");
5093 #else
5094                         msg_print("'My pets, destroy the arrogant mortal!'");
5095 #endif
5096
5097                         for (dummy = 0; dummy < randint1(5) + 1; dummy++)
5098                         {
5099                                 (void)summon_specific(0, py, px, dun_level, 0, (PM_ALLOW_GROUP | PM_ALLOW_UNIQUE | PM_NO_PET));
5100                         }
5101 #ifdef JP
5102                         reward = "¥â¥ó¥¹¥¿¡¼¤ò¾¤´­¤µ¤ì¤¿¡£";
5103 #else
5104                         reward = "summoning hostile monsters";
5105 #endif
5106                         break;
5107                 case REW_H_SUMMON:
5108 #ifdef JP
5109 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5110                                 chaos_patrons[p_ptr->chaos_patron]);
5111 #else
5112                         msg_format("The voice of %s booms out:",
5113                                 chaos_patrons[p_ptr->chaos_patron]);
5114 #endif
5115
5116 #ifdef JP
5117 msg_print("¡ÖÆò¡¢¤è¤ê¶¯¤­Å¨¤òɬÍפȤ»¤ê¡ª¡×");
5118 #else
5119                         msg_print("'Thou needst worthier opponents!'");
5120 #endif
5121
5122                         activate_hi_summon(py, px, FALSE);
5123 #ifdef JP
5124                         reward = "¥â¥ó¥¹¥¿¡¼¤ò¾¤´­¤µ¤ì¤¿¡£";
5125 #else
5126                         reward = "summoning many hostile monsters";
5127 #endif
5128                         break;
5129                 case REW_DO_HAVOC:
5130 #ifdef JP
5131 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5132                                 chaos_patrons[p_ptr->chaos_patron]);
5133 #else
5134                         msg_format("The voice of %s booms out:",
5135                                 chaos_patrons[p_ptr->chaos_patron]);
5136 #endif
5137
5138 #ifdef JP
5139 msg_print("¡Ö»à¤ÈÇ˲õ¤³¤½²æ¤¬´î¤Ó¤Ê¤ê¡ª¡×");
5140 #else
5141                         msg_print("'Death and destruction! This pleaseth me!'");
5142 #endif
5143
5144                         call_chaos();
5145 #ifdef JP
5146                         reward = "¥«¥ª¥¹¤ÎÎϤ¬±²´¬¤¤¤¿¡£";
5147 #else
5148                         reward = "calling chaos";
5149 #endif
5150                         break;
5151                 case REW_GAIN_ABL:
5152 #ifdef JP
5153 msg_format("%s¤ÎÀ¼¤¬ÌĤê¶Á¤¤¤¿:",
5154                                 chaos_patrons[p_ptr->chaos_patron]);
5155 #else
5156                         msg_format("The voice of %s rings out:",
5157                                 chaos_patrons[p_ptr->chaos_patron]);
5158 #endif
5159
5160 #ifdef JP
5161 msg_print("¡Öα¤Þ¤ë¤Î¤À¡¢²¼Ëͤ衣;¤¬Æò¤ÎÆùÂΤòÃ䨤󡣡×");
5162 #else
5163                         msg_print("'Stay, mortal, and let me mold thee.'");
5164 #endif
5165
5166                         if (one_in_(3) && !(chaos_stats[p_ptr->chaos_patron] < 0))
5167                                 do_inc_stat(chaos_stats[p_ptr->chaos_patron]);
5168                         else
5169                                 do_inc_stat(randint0(6));
5170 #ifdef JP
5171                         reward = "ǽÎÏÃͤ¬¾å¤¬¤Ã¤¿¡£";
5172 #else
5173                         reward = "increasing a stat";
5174 #endif
5175                         break;
5176                 case REW_LOSE_ABL:
5177 #ifdef JP
5178 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5179                                 chaos_patrons[p_ptr->chaos_patron]);
5180 #else
5181                         msg_format("The voice of %s booms out:",
5182                                 chaos_patrons[p_ptr->chaos_patron]);
5183 #endif
5184
5185 #ifdef JP
5186 msg_print("¡Ö²¼Ëͤ衢;¤ÏÆò¤ËË°¤ß¤¿¤ê¡£¡×");
5187 #else
5188                         msg_print("'I grow tired of thee, mortal.'");
5189 #endif
5190
5191                         if (one_in_(3) && !(chaos_stats[p_ptr->chaos_patron] < 0))
5192                                 do_dec_stat(chaos_stats[p_ptr->chaos_patron]);
5193                         else
5194                                 (void)do_dec_stat(randint0(6));
5195 #ifdef JP
5196                         reward = "ǽÎÏÃͤ¬²¼¤¬¤Ã¤¿¡£";
5197 #else
5198                         reward = "decreasing a stat";
5199 #endif
5200                         break;
5201                 case REW_RUIN_ABL:
5202 #ifdef JP
5203 msg_format("%s¤ÎÀ¼¤¬¹ì¤­ÅϤä¿:",
5204                                 chaos_patrons[p_ptr->chaos_patron]);
5205 #else
5206                         msg_format("The voice of %s thunders:",
5207                                 chaos_patrons[p_ptr->chaos_patron]);
5208 #endif
5209
5210 #ifdef JP
5211 msg_print("¡ÖÆò¡¢¸¬µõ¤¿¤ë¤³¤È¤ò³Ø¤Ö¤Ù¤·¡ª¡×");
5212 msg_print("¤¢¤Ê¤¿¤Ï°ÊÁ°¤è¤ê¼å¤¯¤Ê¤Ã¤¿¡ª");
5213 #else
5214                         msg_print("'Thou needst a lesson in humility, mortal!'");
5215                         msg_print("You feel less powerful!");
5216 #endif
5217
5218                         for (dummy = 0; dummy < 6; dummy++)
5219                         {
5220                                 (void)dec_stat(dummy, 10 + randint1(15), TRUE);
5221                         }
5222 #ifdef JP
5223                         reward = "Á´Ç½ÎÏÃͤ¬²¼¤¬¤Ã¤¿¡£";
5224 #else
5225                         reward = "decreasing all stats";
5226 #endif
5227                         break;
5228                 case REW_POLY_WND:
5229 #ifdef JP
5230 msg_format("%s¤ÎÎϤ¬¿¨¤ì¤ë¤Î¤ò´¶¤¸¤¿¡£",
5231 #else
5232                         msg_format("You feel the power of %s touch you.",
5233 #endif
5234
5235                                 chaos_patrons[p_ptr->chaos_patron]);
5236                         do_poly_wounds();
5237 #ifdef JP
5238                         reward = "½ý¤¬ÊѲ½¤·¤¿¡£";
5239 #else
5240                         reward = "polymorphing wounds";
5241 #endif
5242                         break;
5243                 case REW_AUGM_ABL:
5244 #ifdef JP
5245 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5246                                 chaos_patrons[p_ptr->chaos_patron]);
5247 #else
5248                         msg_format("The voice of %s booms out:",
5249                                 chaos_patrons[p_ptr->chaos_patron]);
5250 #endif
5251
5252 #ifdef JP
5253 msg_print("¡Ö²æ¤¬¤µ¤µ¤ä¤«¤Ê¤ë»òʪ¤ò¼õ¤±¤È¤ë¤¬¤è¤¤¡ª¡×");
5254 #else
5255                         msg_print("'Receive this modest gift from me!'");
5256 #endif
5257
5258                         for (dummy = 0; dummy < 6; dummy++)
5259                         {
5260                                 (void)do_inc_stat(dummy);
5261                         }
5262 #ifdef JP
5263                         reward = "Á´Ç½ÎÏÃͤ¬¾å¤¬¤Ã¤¿¡£";
5264 #else
5265                         reward = "increasing all stats";
5266 #endif
5267                         break;
5268                 case REW_HURT_LOT:
5269 #ifdef JP
5270 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5271                                 chaos_patrons[p_ptr->chaos_patron]);
5272 #else
5273                         msg_format("The voice of %s booms out:",
5274                                 chaos_patrons[p_ptr->chaos_patron]);
5275 #endif
5276
5277 #ifdef JP
5278 msg_print("¡Ö¶ì¤·¤à¤¬¤è¤¤¡¢ÌµÇ½¤Ê¶ò¤«¼Ô¤è¡ª¡×");
5279 #else
5280                         msg_print("'Suffer, pathetic fool!'");
5281 #endif
5282
5283                         fire_ball(GF_DISINTEGRATE, 0, p_ptr->lev * 4, 4);
5284                         take_hit(DAMAGE_NOESCAPE, p_ptr->lev * 4, wrath_reason, -1);
5285 #ifdef JP
5286                         reward = "ʬ²ò¤Îµå¤¬È¯À¸¤·¤¿¡£";
5287 #else
5288                         reward = "generating disintegration ball";
5289 #endif
5290                         break;
5291            case REW_HEAL_FUL:
5292 #ifdef JP
5293 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5294                                 chaos_patrons[p_ptr->chaos_patron]);
5295 #else
5296                         msg_format("The voice of %s booms out:",
5297                                 chaos_patrons[p_ptr->chaos_patron]);
5298 #endif
5299
5300 #ifdef JP
5301 msg_print("¡Öᴤ뤬¤è¤¤¡¢²æ¤¬²¼Ëͤ衪¡×");
5302 #else
5303                         msg_print("'Rise, my servant!'");
5304 #endif
5305
5306                         restore_level();
5307                         (void)set_poisoned(0);
5308                         (void)set_blind(0);
5309                         (void)set_confused(0);
5310                         (void)set_image(0);
5311                         (void)set_stun(0);
5312                         (void)set_cut(0);
5313                         hp_player(5000);
5314                         for (dummy = 0; dummy < 6; dummy++)
5315                         {
5316                                 (void)do_res_stat(dummy);
5317                         }
5318 #ifdef JP
5319                         reward = "ÂÎÎϤ¬²óÉü¤·¤¿¡£";
5320 #else
5321                         reward = "healing";
5322 #endif
5323                         break;
5324                 case REW_CURSE_WP:
5325                         if (!buki_motteruka(INVEN_RARM) && !buki_motteruka(INVEN_LARM)) break;
5326 #ifdef JP
5327 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5328                                 chaos_patrons[p_ptr->chaos_patron]);
5329 #else
5330                         msg_format("The voice of %s booms out:",
5331                                 chaos_patrons[p_ptr->chaos_patron]);
5332 #endif
5333
5334 #ifdef JP
5335 msg_print("¡ÖÆò¡¢Éð´ï¤ËÍê¤ë¤³¤È¤Ê¤«¤ì¡£¡×");
5336 #else
5337                         msg_print("'Thou reliest too much on thy weapon.'");
5338 #endif
5339
5340                         dummy = INVEN_RARM;
5341                         if (buki_motteruka(INVEN_LARM))
5342                         {
5343                                 dummy = INVEN_LARM;
5344                                 if (buki_motteruka(INVEN_RARM) && one_in_(2)) dummy = INVEN_RARM;
5345                         }
5346                         object_desc(o_name, &inventory[dummy], OD_NAME_ONLY);
5347                         (void)curse_weapon(FALSE, dummy);
5348 #ifdef JP
5349                         reward = format("%s¤¬Ç˲õ¤µ¤ì¤¿¡£", o_name);
5350 #else
5351                         reward = format("destroying %s", o_name);
5352 #endif
5353                         break;
5354                 case REW_CURSE_AR:
5355                         if (!inventory[INVEN_BODY].k_idx) break;
5356 #ifdef JP
5357 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5358                                 chaos_patrons[p_ptr->chaos_patron]);
5359 #else
5360                         msg_format("The voice of %s booms out:",
5361                                 chaos_patrons[p_ptr->chaos_patron]);
5362 #endif
5363
5364 #ifdef JP
5365 msg_print("¡ÖÆò¡¢Ëɶñ¤ËÍê¤ë¤³¤È¤Ê¤«¤ì¡£¡×");
5366 #else
5367                         msg_print("'Thou reliest too much on thine equipment.'");
5368 #endif
5369
5370                         object_desc(o_name, &inventory[INVEN_BODY], OD_NAME_ONLY);
5371                         (void)curse_armor();
5372 #ifdef JP
5373                         reward = format("%s¤¬Ç˲õ¤µ¤ì¤¿¡£", o_name);
5374 #else
5375                         reward = format("destroying %s", o_name);
5376 #endif
5377                         break;
5378                 case REW_PISS_OFF:
5379 #ifdef JP
5380 msg_format("%s¤ÎÀ¼¤¬¤µ¤µ¤ä¤¤¤¿:",
5381                                 chaos_patrons[p_ptr->chaos_patron]);
5382 #else
5383                         msg_format("The voice of %s whispers:",
5384                                 chaos_patrons[p_ptr->chaos_patron]);
5385 #endif
5386
5387 #ifdef JP
5388 msg_print("¡Ö²æ¤òÅܤꤷ¤á¤¿ºá¤ò½þ¤¦¤Ù¤·¡£¡×");
5389 #else
5390                         msg_print("'Now thou shalt pay for annoying me.'");
5391 #endif
5392
5393                         switch (randint1(4))
5394                         {
5395                                 case 1:
5396                                         (void)activate_ty_curse(FALSE, &count);
5397 #ifdef JP
5398                                         reward = "²Ò¡¹¤·¤¤¼ö¤¤¤ò¤«¤±¤é¤ì¤¿¡£";
5399 #else
5400                                         reward = "cursing";
5401 #endif
5402                                         break;
5403                                 case 2:
5404                                         activate_hi_summon(py, px, FALSE);
5405 #ifdef JP
5406                                         reward = "¥â¥ó¥¹¥¿¡¼¤ò¾¤´­¤µ¤ì¤¿¡£";
5407 #else
5408                                         reward = "summoning hostile monsters";
5409 #endif
5410                                         break;
5411                                 case 3:
5412                                         if (one_in_(2))
5413                                         {
5414                                                 if (!buki_motteruka(INVEN_RARM) && !buki_motteruka(INVEN_LARM)) break;
5415                                                 dummy = INVEN_RARM;
5416                                                 if (buki_motteruka(INVEN_LARM))
5417                                                 {
5418                                                         dummy = INVEN_LARM;
5419                                                         if (buki_motteruka(INVEN_RARM) && one_in_(2)) dummy = INVEN_RARM;
5420                                                 }
5421                                                 object_desc(o_name, &inventory[dummy], OD_NAME_ONLY);
5422                                                 (void)curse_weapon(FALSE, dummy);
5423 #ifdef JP
5424                                                 reward = format("%s¤¬Ç˲õ¤µ¤ì¤¿¡£", o_name);
5425 #else
5426                                                 reward = format("destroying %s", o_name);
5427 #endif
5428                                         }
5429                                         else
5430                                         {
5431                                                 if (!inventory[INVEN_BODY].k_idx) break;
5432                                                 object_desc(o_name, &inventory[INVEN_BODY], OD_NAME_ONLY);
5433                                                 (void)curse_armor();
5434 #ifdef JP
5435                                                 reward = format("%s¤¬Ç˲õ¤µ¤ì¤¿¡£", o_name);
5436 #else
5437                                                 reward = format("destroying %s", o_name);
5438 #endif
5439                                         }
5440                                         break;
5441                                 default:
5442                                         for (dummy = 0; dummy < 6; dummy++)
5443                                         {
5444                                                 (void)dec_stat(dummy, 10 + randint1(15), TRUE);
5445                                         }
5446 #ifdef JP
5447                                         reward = "Á´Ç½ÎÏÃͤ¬²¼¤¬¤Ã¤¿¡£";
5448 #else
5449                                         reward = "decreasing all stats";
5450 #endif
5451                                         break;
5452                         }
5453                         break;
5454                 case REW_WRATH:
5455 #ifdef JP
5456 msg_format("%s¤ÎÀ¼¤¬¹ì¤­ÅϤä¿:",
5457 #else
5458                         msg_format("The voice of %s thunders:",
5459 #endif
5460
5461                                 chaos_patrons[p_ptr->chaos_patron]);
5462 #ifdef JP
5463 msg_print("¡Ö»à¤Ì¤¬¤è¤¤¡¢²¼Ëͤ衪¡×");
5464 #else
5465                         msg_print("'Die, mortal!'");
5466 #endif
5467
5468                         take_hit(DAMAGE_LOSELIFE, p_ptr->lev * 4, wrath_reason, -1);
5469                         for (dummy = 0; dummy < 6; dummy++)
5470                         {
5471                                 (void)dec_stat(dummy, 10 + randint1(15), FALSE);
5472                         }
5473                         activate_hi_summon(py, px, FALSE);
5474                         (void)activate_ty_curse(FALSE, &count);
5475                         if (one_in_(2))
5476                         {
5477                                 dummy = 0;
5478
5479                                 if (buki_motteruka(INVEN_RARM))
5480                                 {
5481                                         dummy = INVEN_RARM;
5482                                         if (buki_motteruka(INVEN_LARM) && one_in_(2)) dummy = INVEN_LARM;
5483                                 }
5484                                 else if (buki_motteruka(INVEN_LARM)) dummy = INVEN_LARM;
5485
5486                                 if (dummy) (void)curse_weapon(FALSE, dummy);
5487                         }
5488                         if (one_in_(2)) (void)curse_armor();
5489                         break;
5490                 case REW_DESTRUCT:
5491 #ifdef JP
5492 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5493                                 chaos_patrons[p_ptr->chaos_patron]);
5494 #else
5495                         msg_format("The voice of %s booms out:",
5496                                 chaos_patrons[p_ptr->chaos_patron]);
5497 #endif
5498
5499 #ifdef JP
5500 msg_print("¡Ö»à¤ÈÇ˲õ¤³¤½²æ¤¬´î¤Ó¤Ê¤ê¡ª¡×");
5501 #else
5502                         msg_print("'Death and destruction! This pleaseth me!'");
5503 #endif
5504
5505                         (void)destroy_area(py, px, 25, FALSE);
5506 #ifdef JP
5507                         reward = "¥À¥ó¥¸¥ç¥ó¤¬*Ç˲õ*¤µ¤ì¤¿¡£";
5508 #else
5509                         reward = "*destruct*ing dungeon";
5510 #endif
5511                         break;
5512                 case REW_GENOCIDE:
5513 #ifdef JP
5514 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5515                                 chaos_patrons[p_ptr->chaos_patron]);
5516 #else
5517                         msg_format("The voice of %s booms out:",
5518                                 chaos_patrons[p_ptr->chaos_patron]);
5519 #endif
5520
5521 #ifdef JP
5522 msg_print("¡Ö²æ¡¢Æò¤ÎŨ¤òËõ»¦¤»¤ó¡ª¡×");
5523 #else
5524                         msg_print("'Let me relieve thee of thine oppressors!'");
5525 #endif
5526
5527                         (void)symbol_genocide(0, FALSE);
5528 #ifdef JP
5529                         reward = "¥â¥ó¥¹¥¿¡¼¤¬Ëõ»¦¤µ¤ì¤¿¡£";
5530 #else
5531                         reward = "genociding monsters";
5532 #endif
5533                         break;
5534                 case REW_MASS_GEN:
5535 #ifdef JP
5536 msg_format("%s¤ÎÀ¼¤¬¶Á¤­ÅϤä¿:",
5537                                 chaos_patrons[p_ptr->chaos_patron]);
5538 #else
5539                         msg_format("The voice of %s booms out:",
5540                                 chaos_patrons[p_ptr->chaos_patron]);
5541 #endif
5542
5543 #ifdef JP
5544 msg_print("¡Ö²æ¡¢Æò¤ÎŨ¤òËõ»¦¤»¤ó¡ª¡×");
5545 #else
5546                         msg_print("'Let me relieve thee of thine oppressors!'");
5547 #endif
5548
5549                         (void)mass_genocide(0, FALSE);
5550 #ifdef JP
5551                         reward = "¥â¥ó¥¹¥¿¡¼¤¬Ëõ»¦¤µ¤ì¤¿¡£";
5552 #else
5553                         reward = "genociding nearby monsters";
5554 #endif
5555                         break;
5556                 case REW_DISPEL_C:
5557 #ifdef JP
5558 msg_format("%s¤ÎÎϤ¬Å¨¤ò¹¶·â¤¹¤ë¤Î¤ò´¶¤¸¤¿¡ª",
5559                                 chaos_patrons[p_ptr->chaos_patron]);
5560 #else
5561                         msg_format("You can feel the power of %s assault your enemies!",
5562                                 chaos_patrons[p_ptr->chaos_patron]);
5563 #endif
5564
5565                         (void)dispel_monsters(p_ptr->lev * 4);
5566                         break;
5567                 case REW_IGNORE:
5568 #ifdef JP
5569 msg_format("%s¤Ï¤¢¤Ê¤¿¤ò̵»ë¤·¤¿¡£",
5570                                 chaos_patrons[p_ptr->chaos_patron]);
5571 #else
5572                         msg_format("%s ignores you.",
5573                                 chaos_patrons[p_ptr->chaos_patron]);
5574 #endif
5575
5576                         break;
5577                 case REW_SER_DEMO:
5578 #ifdef JP
5579 msg_format("%s¤ÏË«Èþ¤È¤·¤Æ°­Ëâ¤Î»È¤¤¤ò¤è¤³¤·¤¿¡ª",chaos_patrons[p_ptr->chaos_patron]);
5580 #else
5581                         msg_format("%s rewards you with a demonic servant!",chaos_patrons[p_ptr->chaos_patron]);
5582 #endif
5583
5584                         if (!summon_specific(-1, py, px, dun_level, SUMMON_DEMON, PM_FORCE_PET))
5585 #ifdef JP
5586 msg_print("²¿¤â¸½¤ì¤Ê¤«¤Ã¤¿...");
5587 #else
5588                                 msg_print("Nobody ever turns up...");
5589 #endif
5590                         else
5591 #ifdef JP
5592                                 reward = "°­Ë⤬¥Ú¥Ã¥È¤Ë¤Ê¤Ã¤¿¡£";
5593 #else
5594                                 reward = "a demonic servant";
5595 #endif
5596
5597                         break;
5598                 case REW_SER_MONS:
5599 #ifdef JP
5600 msg_format("%s¤ÏË«Èþ¤È¤·¤Æ»È¤¤¤ò¤è¤³¤·¤¿¡ª",chaos_patrons[p_ptr->chaos_patron]);
5601 #else
5602                         msg_format("%s rewards you with a servant!",chaos_patrons[p_ptr->chaos_patron]);
5603 #endif
5604
5605                         if (!summon_specific(-1, py, px, dun_level, 0, PM_FORCE_PET))
5606 #ifdef JP
5607 msg_print("²¿¤â¸½¤ì¤Ê¤«¤Ã¤¿...");
5608 #else
5609                                 msg_print("Nobody ever turns up...");
5610 #endif
5611                         else
5612 #ifdef JP
5613                                 reward = "¥â¥ó¥¹¥¿¡¼¤¬¥Ú¥Ã¥È¤Ë¤Ê¤Ã¤¿¡£";
5614 #else
5615                                 reward = "a servant";
5616 #endif
5617
5618                         break;
5619                 case REW_SER_UNDE:
5620 #ifdef JP
5621 msg_format("%s¤ÏË«Èþ¤È¤·¤Æ¥¢¥ó¥Ç¥Ã¥É¤Î»È¤¤¤ò¤è¤³¤·¤¿¡£",chaos_patrons[p_ptr->chaos_patron]);
5622 #else
5623                         msg_format("%s rewards you with an undead servant!",chaos_patrons[p_ptr->chaos_patron]);
5624 #endif
5625
5626                         if (!summon_specific(-1, py, px, dun_level, SUMMON_UNDEAD, PM_FORCE_PET))
5627 #ifdef JP
5628 msg_print("²¿¤â¸½¤ì¤Ê¤«¤Ã¤¿...");
5629 #else
5630                                 msg_print("Nobody ever turns up...");
5631 #endif
5632                         else
5633 #ifdef JP
5634                                 reward = "¥¢¥ó¥Ç¥Ã¥É¤¬¥Ú¥Ã¥È¤Ë¤Ê¤Ã¤¿¡£";
5635 #else
5636                                 reward = "an undead servant";
5637 #endif
5638
5639                         break;
5640                 default:
5641 #ifdef JP
5642 msg_format("%s¤ÎÀ¼¤¬¤É¤â¤Ã¤¿:",
5643 #else
5644                         msg_format("The voice of %s stammers:",
5645 #endif
5646
5647                                 chaos_patrons[p_ptr->chaos_patron]);
5648 #ifdef JP
5649 msg_format("¡Ö¤¢¡¼¡¢¤¢¡¼¡¢Åú¤¨¤Ï %d/%d¡£¼ÁÌä¤Ï²¿¡©¡×", type, effect);
5650 #else
5651                         msg_format("'Uh... uh... the answer's %d/%d, what's the question?'", type, effect);
5652 #endif
5653
5654         }
5655         }
5656         if (reward)
5657         {
5658 #ifdef JP
5659                 do_cmd_write_nikki(NIKKI_BUNSHOU, 0, format("¥Ñ¥È¥í¥ó¤ÎÊó½·¤Ç%s", reward));
5660 #else
5661                 do_cmd_write_nikki(NIKKI_BUNSHOU, 0, format("The patron rewards you with %s.", reward));
5662 #endif
5663         }
5664 }
5665
5666
5667 /*
5668  * XAngband: determine if a given location is "interesting"
5669  * based on target_set_accept function.
5670  */
5671 static bool tgt_pt_accept(int y, int x)
5672 {
5673         cave_type *c_ptr;
5674
5675         /* Bounds */
5676         if (!(in_bounds(y, x))) return (FALSE);
5677
5678         /* Player grid is always interesting */
5679         if ((y == py) && (x == px)) return (TRUE);
5680
5681         /* Handle hallucination */
5682         if (p_ptr->image) return (FALSE);
5683
5684         /* Examine the grid */
5685         c_ptr = &cave[y][x];
5686
5687         /* Interesting memorized features */
5688         if (c_ptr->info & (CAVE_MARK))
5689         {
5690                 /* Notice stairs */
5691                 if (cave_have_flag_grid(c_ptr, FF_LESS)) return (TRUE);
5692                 if (cave_have_flag_grid(c_ptr, FF_MORE)) return (TRUE);
5693
5694                 /* Notice quest features */
5695                 if (cave_have_flag_grid(c_ptr, FF_QUEST_ENTER)) return (TRUE);
5696                 if (cave_have_flag_grid(c_ptr, FF_QUEST_EXIT)) return (TRUE);
5697         }
5698
5699         /* Nope */
5700         return (FALSE);
5701 }
5702
5703
5704 /*
5705  * XAngband: Prepare the "temp" array for "tget_pt"
5706  * based on target_set_prepare funciton.
5707  */
5708 static void tgt_pt_prepare(void)
5709 {
5710         int y, x;
5711
5712         /* Reset "temp" array */
5713         temp_n = 0;
5714
5715         if (!expand_list) return;
5716
5717         /* Scan the current panel */
5718         for (y = 1; y < cur_hgt; y++)
5719         {
5720                 for (x = 1; x < cur_wid; x++)
5721                 {
5722                         /* Require "interesting" contents */
5723                         if (!tgt_pt_accept(y, x)) continue;
5724
5725                         /* Save the location */
5726                         temp_x[temp_n] = x;
5727                         temp_y[temp_n] = y;
5728                         temp_n++;
5729                 }
5730         }
5731
5732         /* Target the nearest monster for shooting */
5733         ang_sort_comp = ang_sort_comp_distance;
5734         ang_sort_swap = ang_sort_swap_distance;
5735
5736         /* Sort the positions */
5737         ang_sort(temp_x, temp_y, temp_n);
5738 }
5739
5740 /*
5741  * old -- from PsiAngband.
5742  */
5743 bool tgt_pt(int *x_ptr, int *y_ptr)
5744 {
5745         char ch = 0;
5746         int d, x, y, n;
5747         bool success = FALSE;
5748
5749         int wid, hgt;
5750
5751         /* Get size */
5752         get_screen_size(&wid, &hgt);
5753
5754         x = px;
5755         y = py;
5756
5757         if (expand_list) 
5758         {
5759                 tgt_pt_prepare();
5760                 n = 0;
5761         }
5762
5763 #ifdef JP
5764         msg_print("¾ì½ê¤òÁª¤ó¤Ç¥¹¥Ú¡¼¥¹¥­¡¼¤ò²¡¤·¤Æ²¼¤µ¤¤¡£");
5765 #else
5766         msg_print("Select a point and press space.");
5767 #endif
5768         msg_flag = FALSE; /* prevents "-more-" message. */
5769
5770         while ((ch != ESCAPE) && !success)
5771         {
5772                 bool move_fast = FALSE;
5773
5774                 move_cursor_relative(y, x);
5775                 ch = inkey();
5776                 switch (ch)
5777                 {
5778                 case ESCAPE:
5779                         break;
5780                 case ' ':
5781                 case 't':
5782                 case '.':
5783                 case '5':
5784                 case '0':
5785                         /* illegal place */
5786                         if (player_bold(y, x)) ch = 0;
5787
5788                         /* okay place */
5789                         else success = TRUE;
5790
5791                         break;
5792
5793                 /* XAngband: Move cursor to stairs */
5794                 case '>':
5795                 case '<':
5796                         if (expand_list && temp_n)
5797                         {
5798                                 int dx, dy;
5799                                 int cx = (panel_col_min + panel_col_max) / 2;
5800                                 int cy = (panel_row_min + panel_row_max) / 2;
5801
5802                                 n++;
5803
5804                                 while(n < temp_n)       /* Skip stairs which have defferent distance */
5805                                 {
5806                                         cave_type *c_ptr = &cave[temp_y[n]][temp_x[n]];
5807
5808                                         if (ch == '>')
5809                                         {
5810                                                 if (cave_have_flag_grid(c_ptr, FF_LESS) ||
5811                                                         cave_have_flag_grid(c_ptr, FF_QUEST_ENTER))
5812                                                         n++;
5813                                                 else
5814                                                         break;
5815                                         }
5816                                         else /* if (ch == '<') */
5817                                         {
5818                                                 if (cave_have_flag_grid(c_ptr, FF_MORE) ||
5819                                                         cave_have_flag_grid(c_ptr, FF_QUEST_EXIT))
5820                                                         n++;
5821                                                 else
5822                                                         break;
5823                                         }
5824                                 }
5825
5826                                 if (n == temp_n)        /* Loop out taget list */
5827                                 {
5828                                         n = 0;
5829                                         y = py;
5830                                         x = px;
5831                                         verify_panel(); /* Move cursor to player */
5832
5833                                         /* Update stuff */
5834                                         p_ptr->update |= (PU_MONSTERS);
5835
5836                                         /* Redraw map */
5837                                         p_ptr->redraw |= (PR_MAP);
5838
5839                                         /* Window stuff */
5840                                         p_ptr->window |= (PW_OVERHEAD);
5841
5842                                         /* Handle stuff */
5843                                         handle_stuff();
5844                                 }
5845                                 else    /* move cursor to next stair and change panel */
5846                                 {
5847                                         y = temp_y[n];
5848                                         x = temp_x[n];
5849
5850                                         dy = 2 * (y - cy) / hgt;
5851                                         dx = 2 * (x - cx) / wid;
5852                                         if (dy || dx) change_panel(dy, dx);
5853                                 }
5854                         }
5855                         break;
5856
5857                 default:
5858                         /* Look up the direction */
5859                         d = get_keymap_dir(ch);
5860
5861                         /* XTRA HACK MOVEFAST */
5862                         if (isupper(ch)) move_fast = TRUE;
5863
5864                         /* Handle "direction" */
5865                         if (d)
5866                         {
5867                                 int dx = ddx[d];
5868                                 int dy = ddy[d];
5869
5870                                 /* XTRA HACK MOVEFAST */
5871                                 if (move_fast)
5872                                 {
5873                                         int mag = MIN(wid / 2, hgt / 2);
5874                                         x += dx * mag;
5875                                         y += dy * mag;
5876                                 }
5877                                 else
5878                                 {
5879                                         x += dx;
5880                                         y += dy;
5881                                 }
5882
5883                                 /* Do not move horizontally if unnecessary */
5884                                 if (((x < panel_col_min + wid / 2) && (dx > 0)) ||
5885                                          ((x > panel_col_min + wid / 2) && (dx < 0)))
5886                                 {
5887                                         dx = 0;
5888                                 }
5889
5890                                 /* Do not move vertically if unnecessary */
5891                                 if (((y < panel_row_min + hgt / 2) && (dy > 0)) ||
5892                                          ((y > panel_row_min + hgt / 2) && (dy < 0)))
5893                                 {
5894                                         dy = 0;
5895                                 }
5896
5897                                 /* Apply the motion */
5898                                 if ((y >= panel_row_min + hgt) || (y < panel_row_min) ||
5899                                          (x >= panel_col_min + wid) || (x < panel_col_min))
5900                                 {
5901                                         /* if (change_panel(dy, dx)) target_set_prepare(mode); */
5902                                         change_panel(dy, dx);
5903                                 }
5904
5905                                 /* Slide into legality */
5906                                 if (x >= cur_wid-1) x = cur_wid - 2;
5907                                 else if (x <= 0) x = 1;
5908
5909                                 /* Slide into legality */
5910                                 if (y >= cur_hgt-1) y = cur_hgt- 2;
5911                                 else if (y <= 0) y = 1;
5912
5913                         }
5914                         break;
5915                 }
5916         }
5917
5918         /* Clear the top line */
5919         prt("", 0, 0);
5920
5921         /* Recenter the map around the player */
5922         verify_panel();
5923
5924         /* Update stuff */
5925         p_ptr->update |= (PU_MONSTERS);
5926
5927         /* Redraw map */
5928         p_ptr->redraw |= (PR_MAP);
5929
5930         /* Window stuff */
5931         p_ptr->window |= (PW_OVERHEAD);
5932
5933         /* Handle stuff */
5934         handle_stuff();
5935
5936         *x_ptr = x;
5937         *y_ptr = y;
5938         return success;
5939 }
5940
5941
5942 bool get_hack_dir(int *dp)
5943 {
5944         int             dir;
5945         cptr    p;
5946         char    command;
5947
5948
5949         /* Initialize */
5950         (*dp) = 0;
5951
5952         /* Global direction */
5953         dir = 0;
5954
5955         /* (No auto-targeting) */
5956
5957         /* Ask until satisfied */
5958         while (!dir)
5959         {
5960                 /* Choose a prompt */
5961                 if (!target_okay())
5962                 {
5963 #ifdef JP
5964 p = "Êý¸þ ('*'¤Ç¥¿¡¼¥²¥Ã¥ÈÁªÂò, ESC¤ÇÃæÃÇ)? ";
5965 #else
5966                         p = "Direction ('*' to choose a target, Escape to cancel)? ";
5967 #endif
5968
5969                 }
5970                 else
5971                 {
5972 #ifdef JP
5973 p = "Êý¸þ ('5'¤Ç¥¿¡¼¥²¥Ã¥È¤Ø, '*'¤Ç¥¿¡¼¥²¥Ã¥ÈºÆÁªÂò, ESC¤ÇÃæÃÇ)? ";
5974 #else
5975                         p = "Direction ('5' for target, '*' to re-target, Escape to cancel)? ";
5976 #endif
5977
5978                 }
5979
5980                 /* Get a command (or Cancel) */
5981                 if (!get_com(p, &command, TRUE)) break;
5982
5983                 if (use_menu)
5984                 {
5985                         if (command == '\r') command = 't';
5986                 }  
5987
5988                 /* Convert various keys to "standard" keys */
5989                 switch (command)
5990                 {
5991                         /* Use current target */
5992                         case 'T':
5993                         case 't':
5994                         case '.':
5995                         case '5':
5996                         case '0':
5997                         {
5998                                 dir = 5;
5999                                 break;
6000                         }
6001
6002                         /* Set new target */
6003                         case '*':
6004                         case ' ':
6005                         case '\r':
6006                         {
6007                                 if (target_set(TARGET_KILL)) dir = 5;
6008                                 break;
6009                         }
6010
6011                         default:
6012                         {
6013                                 /* Look up the direction */
6014                                 dir = get_keymap_dir(command);
6015
6016                                 break;
6017                         }
6018                 }
6019
6020                 /* Verify requested targets */
6021                 if ((dir == 5) && !target_okay()) dir = 0;
6022
6023                 /* Error */
6024                 if (!dir) bell();
6025         }
6026
6027         /* No direction */
6028         if (!dir) return (FALSE);
6029
6030         /* Save the direction */
6031         command_dir = dir;
6032
6033         /* Check for confusion */
6034         if (p_ptr->confused)
6035         {
6036                 /* XXX XXX XXX */
6037                 /* Random direction */
6038                 dir = ddd[randint0(8)];
6039         }
6040
6041         /* Notice confusion */
6042         if (command_dir != dir)
6043         {
6044                 /* Warn the user */
6045 #ifdef JP
6046 msg_print("¤¢¤Ê¤¿¤Ïº®Í𤷤Ƥ¤¤ë¡£");
6047 #else
6048                 msg_print("You are confused.");
6049 #endif
6050
6051         }
6052
6053         /* Save direction */
6054         (*dp) = dir;
6055
6056         /* A "valid" direction was entered */
6057         return (TRUE);
6058 }
6059
6060
6061 /*
6062  * ¥¨¥Í¥ë¥®¡¼¤ÎÁý²ÃÎÌ10d5¤ò®¤¯·×»»¤¹¤ë¤¿¤á¤Î´Ø¿ô
6063  */
6064
6065 #define Go_no_JuuJou 5*5*5*5*5*5*5*5*5*5
6066
6067 s16b gain_energy(void)
6068 {
6069         int i;
6070         s32b energy_result = 10;
6071         s32b tmp;
6072
6073         tmp = randint0(Go_no_JuuJou);
6074
6075         for (i = 0; i < 9; i ++){
6076                 energy_result += tmp % 5;
6077                 tmp /= 5;
6078         }
6079
6080         return (s16b)(energy_result + tmp);
6081 }
6082
6083
6084 /*
6085  * Return bow energy 
6086  */
6087 s16b bow_energy(int sval)
6088 {
6089         int energy = 100;
6090
6091         /* Analyze the launcher */
6092         switch (sval)
6093         {
6094                 /* Sling and ammo */
6095                 case SV_SLING:
6096                 {
6097                         energy = 8000;
6098                         break;
6099                 }
6100
6101                 /* Short Bow and Arrow */
6102                 case SV_SHORT_BOW:
6103                 {
6104                         energy = 10000;
6105                         break;
6106                 }
6107
6108                 /* Long Bow and Arrow */
6109                 case SV_LONG_BOW:
6110                 {
6111                         energy = 10000;
6112                         break;
6113                 }
6114
6115                 /* Bow of irresponsiblity and Arrow */
6116                 case SV_NAMAKE_BOW:
6117                 {
6118                         energy = 7777;
6119                         break;
6120                 }
6121
6122                 /* Light Crossbow and Bolt */
6123                 case SV_LIGHT_XBOW:
6124                 {
6125                         energy = 12000;
6126                         break;
6127                 }
6128
6129                 /* Heavy Crossbow and Bolt */
6130                 case SV_HEAVY_XBOW:
6131                 {
6132                         energy = 13333;
6133                         break;
6134                 }
6135         }
6136
6137         return (energy);
6138 }
6139
6140
6141 /*
6142  * Return bow tmul
6143  */
6144 int bow_tmul(int sval)
6145 {
6146         int tmul = 0;
6147
6148         /* Analyze the launcher */
6149         switch (sval)
6150         {
6151                 /* Sling and ammo */
6152                 case SV_SLING:
6153                 {
6154                         tmul = 2;
6155                         break;
6156                 }
6157
6158                 /* Short Bow and Arrow */
6159                 case SV_SHORT_BOW:
6160                 {
6161                         tmul = 2;
6162                         break;
6163                 }
6164
6165                 /* Long Bow and Arrow */
6166                 case SV_LONG_BOW:
6167                 {
6168                         tmul = 3;
6169                         break;
6170                 }
6171
6172                 /* Bow of irresponsiblity and Arrow */
6173                 case SV_NAMAKE_BOW:
6174                 {
6175                         tmul = 3;
6176                         break;
6177                 }
6178
6179                 /* Light Crossbow and Bolt */
6180                 case SV_LIGHT_XBOW:
6181                 {
6182                         tmul = 3;
6183                         break;
6184                 }
6185
6186                 /* Heavy Crossbow and Bolt */
6187                 case SV_HEAVY_XBOW:
6188                 {
6189                         tmul = 4;
6190                         break;
6191                 }
6192         }
6193
6194         return (tmul);
6195 }
6196
6197 /*
6198  * Return alignment title
6199  */
6200 cptr your_alignment(void)
6201 {
6202 #ifdef JP
6203         if (p_ptr->align > 150) return "ÂçÁ±";
6204         else if (p_ptr->align > 50) return "ÃæÁ±";
6205         else if (p_ptr->align > 10) return "¾®Á±";
6206         else if (p_ptr->align > -11) return "ÃæΩ";
6207         else if (p_ptr->align > -51) return "¾®°­";
6208         else if (p_ptr->align > -151) return "Ãæ°­";
6209         else return "Âç°­";
6210 #else
6211         if (p_ptr->align > 150) return "Lawful";
6212         else if (p_ptr->align > 50) return "Good";
6213         else if (p_ptr->align > 10) return "Neutral Good";
6214         else if (p_ptr->align > -11) return "Neutral";
6215         else if (p_ptr->align > -51) return "Neutral Evil";
6216         else if (p_ptr->align > -151) return "Evil";
6217         else return "Chaotic";
6218 #endif
6219 }
6220
6221
6222 /*
6223  * Return proficiency level of weapons and misc. skills (except riding)
6224  */
6225 int weapon_exp_level(int weapon_exp)
6226 {
6227         if (weapon_exp < WEAPON_EXP_BEGINNER) return EXP_LEVEL_UNSKILLED;
6228         else if (weapon_exp < WEAPON_EXP_SKILLED) return EXP_LEVEL_BEGINNER;
6229         else if (weapon_exp < WEAPON_EXP_EXPERT) return EXP_LEVEL_SKILLED;
6230         else if (weapon_exp < WEAPON_EXP_MASTER) return EXP_LEVEL_EXPERT;
6231         else return EXP_LEVEL_MASTER;
6232 }
6233
6234
6235 /*
6236  * Return proficiency level of riding
6237  */
6238 int riding_exp_level(int riding_exp)
6239 {
6240         if (riding_exp < RIDING_EXP_BEGINNER) return EXP_LEVEL_UNSKILLED;
6241         else if (riding_exp < RIDING_EXP_SKILLED) return EXP_LEVEL_BEGINNER;
6242         else if (riding_exp < RIDING_EXP_EXPERT) return EXP_LEVEL_SKILLED;
6243         else if (riding_exp < RIDING_EXP_MASTER) return EXP_LEVEL_EXPERT;
6244         else return EXP_LEVEL_MASTER;
6245 }
6246
6247
6248 /*
6249  * Return proficiency level of spells
6250  */
6251 int spell_exp_level(int spell_exp)
6252 {
6253         if (spell_exp < SPELL_EXP_BEGINNER) return EXP_LEVEL_UNSKILLED;
6254         else if (spell_exp < SPELL_EXP_SKILLED) return EXP_LEVEL_BEGINNER;
6255         else if (spell_exp < SPELL_EXP_EXPERT) return EXP_LEVEL_SKILLED;
6256         else if (spell_exp < SPELL_EXP_MASTER) return EXP_LEVEL_EXPERT;
6257         else return EXP_LEVEL_MASTER;
6258 }