OSDN Git Service

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