OSDN Git Service

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