OSDN Git Service

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