OSDN Git Service

58c118aa465567a49bb2475e347eb52739d14ba1
[hengband/hengband.git] / src / combat / shoot.c
1 #include "combat/shoot.h"
2 #include "art-definition/fixed-art-types.h"
3 #include "core/player-redraw-types.h"
4 #include "core/player-update-types.h"
5 #include "core/stuff-handler.h"
6 #include "effect/effect-characteristics.h"
7 #include "effect/effect-processor.h"
8 #include "effect/spells-effect-util.h"
9 #include "flavor/flavor-describer.h"
10 #include "flavor/object-flavor-types.h"
11 #include "floor/cave.h"
12 #include "floor/floor-object.h"
13 #include "game-option/cheat-types.h"
14 #include "game-option/special-options.h"
15 #include "grid/feature-flag-types.h"
16 #include "grid/feature.h"
17 #include "grid/grid.h"
18 #include "inventory/inventory-object.h"
19 #include "inventory/inventory-slot-types.h"
20 #include "io/cursor.h"
21 #include "io/screen-util.h"
22 #include "main/sound-definitions-table.h"
23 #include "main/sound-of-music.h"
24 #include "mind/mind-sniper.h"
25 #include "mind/snipe-types.h"
26 #include "monster-floor/monster-death.h"
27 #include "monster-floor/monster-move.h"
28 #include "monster-race/monster-race.h"
29 #include "monster-race/race-flags-resistance.h"
30 #include "monster-race/race-flags1.h"
31 #include "monster-race/race-flags2.h"
32 #include "monster-race/race-flags3.h"
33 #include "monster-race/race-flags7.h"
34 #include "monster-race/race-indice-types.h"
35 #include "monster/monster-describer.h"
36 #include "monster/monster-info.h"
37 #include "monster/monster-status-setter.h"
38 #include "monster/monster-status.h"
39 #include "monster/monster-update.h"
40 #include "object-enchant/tr-types.h"
41 #include "object-hook/hook-enchant.h"
42 #include "object/object-broken.h"
43 #include "object/object-flags.h"
44 #include "object/object-generator.h"
45 #include "object/object-info.h"
46 #include "object/object-kind.h"
47 #include "object/object-mark-types.h"
48 #include "player-info/avatar.h"
49 #include "player/player-class.h"
50 #include "player/player-personalities-types.h"
51 #include "player/player-skill.h"
52 #include "player/player-status-table.h"
53 #include "player/player-status.h"
54 #include "spell/spell-types.h"
55 #include "sv-definition/sv-bow-types.h"
56 #include "system/artifact-type-definition.h"
57 #include "system/floor-type-definition.h"
58 #include "target/projection-path-calculator.h"
59 #include "target/target-checker.h"
60 #include "target/target-getter.h"
61 #include "util/bit-flags-calculator.h"
62 #include "view/display-messages.h"
63 #include "wizard/wizard-messages.h"
64 #include "world/world-object.h"
65
66 /*!
67  * @brief 矢弾を射撃した際のスレイ倍率をかけた結果を返す /
68  * Determines the odds of an object breaking when thrown at a monster
69  * @param o_ptr 矢弾のオブジェクト構造体参照ポインタ
70  * @param tdam 計算途中のダメージ量
71  * @param m_ptr 目標モンスターの構造体参照ポインタ
72  * @return スレイ倍率をかけたダメージ量
73  */
74 static MULTIPLY calc_shot_damage_with_slay(player_type *sniper_ptr, object_type *o_ptr, HIT_POINT tdam, monster_type *m_ptr, SPELL_IDX snipe_type)
75 {
76     MULTIPLY mult = 10;
77
78     monster_race *r_ptr = &r_info[m_ptr->r_idx];
79
80     BIT_FLAGS flgs[TR_FLAG_SIZE];
81     object_flags(sniper_ptr, o_ptr, flgs);
82
83     /* Some "weapons" and "ammo" do extra damage */
84     switch (o_ptr->tval) {
85     case TV_SHOT:
86     case TV_ARROW:
87     case TV_BOLT: {
88         if ((has_flag(flgs, TR_SLAY_ANIMAL)) && (r_ptr->flags3 & RF3_ANIMAL)) {
89             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
90                 r_ptr->r_flags3 |= RF3_ANIMAL;
91             }
92             if (mult < 17)
93                 mult = 17;
94         }
95
96         if ((has_flag(flgs, TR_KILL_ANIMAL)) && (r_ptr->flags3 & RF3_ANIMAL)) {
97             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
98                 r_ptr->r_flags3 |= RF3_ANIMAL;
99             }
100             if (mult < 27)
101                 mult = 27;
102         }
103
104         if ((has_flag(flgs, TR_SLAY_EVIL)) && (r_ptr->flags3 & RF3_EVIL)) {
105             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
106                 r_ptr->r_flags3 |= RF3_EVIL;
107             }
108             if (mult < 15)
109                 mult = 15;
110         }
111
112         if ((has_flag(flgs, TR_KILL_EVIL)) && (r_ptr->flags3 & RF3_EVIL)) {
113             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
114                 r_ptr->r_flags3 |= RF3_EVIL;
115             }
116             if (mult < 25)
117                 mult = 25;
118         }
119
120         if ((has_flag(flgs, TR_SLAY_HUMAN)) && (r_ptr->flags2 & RF2_HUMAN)) {
121             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
122                 r_ptr->r_flags2 |= RF2_HUMAN;
123             }
124             if (mult < 17)
125                 mult = 17;
126         }
127
128         if ((has_flag(flgs, TR_KILL_HUMAN)) && (r_ptr->flags2 & RF2_HUMAN)) {
129             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
130                 r_ptr->r_flags2 |= RF2_HUMAN;
131             }
132             if (mult < 27)
133                 mult = 27;
134         }
135
136         if ((has_flag(flgs, TR_SLAY_UNDEAD)) && (r_ptr->flags3 & RF3_UNDEAD)) {
137             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
138                 r_ptr->r_flags3 |= RF3_UNDEAD;
139             }
140             if (mult < 20)
141                 mult = 20;
142         }
143
144         if ((has_flag(flgs, TR_KILL_UNDEAD)) && (r_ptr->flags3 & RF3_UNDEAD)) {
145             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
146                 r_ptr->r_flags3 |= RF3_UNDEAD;
147             }
148             if (mult < 30)
149                 mult = 30;
150         }
151
152         if ((has_flag(flgs, TR_SLAY_DEMON)) && (r_ptr->flags3 & RF3_DEMON)) {
153             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
154                 r_ptr->r_flags3 |= RF3_DEMON;
155             }
156             if (mult < 20)
157                 mult = 20;
158         }
159
160         if ((has_flag(flgs, TR_KILL_DEMON)) && (r_ptr->flags3 & RF3_DEMON)) {
161             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
162                 r_ptr->r_flags3 |= RF3_DEMON;
163             }
164             if (mult < 30)
165                 mult = 30;
166         }
167
168         if ((has_flag(flgs, TR_SLAY_ORC)) && (r_ptr->flags3 & RF3_ORC)) {
169             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
170                 r_ptr->r_flags3 |= RF3_ORC;
171             }
172             if (mult < 20)
173                 mult = 20;
174         }
175
176         if ((has_flag(flgs, TR_KILL_ORC)) && (r_ptr->flags3 & RF3_ORC)) {
177             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
178                 r_ptr->r_flags3 |= RF3_ORC;
179             }
180             if (mult < 30)
181                 mult = 30;
182         }
183
184         if ((has_flag(flgs, TR_SLAY_TROLL)) && (r_ptr->flags3 & RF3_TROLL)) {
185             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
186                 r_ptr->r_flags3 |= RF3_TROLL;
187             }
188
189             if (mult < 20)
190                 mult = 20;
191         }
192
193         if ((has_flag(flgs, TR_KILL_TROLL)) && (r_ptr->flags3 & RF3_TROLL)) {
194             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
195                 r_ptr->r_flags3 |= RF3_TROLL;
196             }
197             if (mult < 30)
198                 mult = 30;
199         }
200
201         if ((has_flag(flgs, TR_SLAY_GIANT)) && (r_ptr->flags3 & RF3_GIANT)) {
202             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
203                 r_ptr->r_flags3 |= RF3_GIANT;
204             }
205             if (mult < 20)
206                 mult = 20;
207         }
208
209         if ((has_flag(flgs, TR_KILL_GIANT)) && (r_ptr->flags3 & RF3_GIANT)) {
210             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
211                 r_ptr->r_flags3 |= RF3_GIANT;
212             }
213             if (mult < 30)
214                 mult = 30;
215         }
216
217         if ((has_flag(flgs, TR_SLAY_DRAGON)) && (r_ptr->flags3 & RF3_DRAGON)) {
218             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
219                 r_ptr->r_flags3 |= RF3_DRAGON;
220             }
221             if (mult < 20)
222                 mult = 20;
223         }
224
225         if ((has_flag(flgs, TR_KILL_DRAGON)) && (r_ptr->flags3 & RF3_DRAGON)) {
226             if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
227                 r_ptr->r_flags3 |= RF3_DRAGON;
228             }
229             if (mult < 30)
230                 mult = 30;
231             if ((o_ptr->name1 == ART_BARD_ARROW) && (m_ptr->r_idx == MON_SMAUG) && (sniper_ptr->inventory_list[INVEN_BOW].name1 == ART_BARD))
232                 mult *= 5;
233         }
234
235         if (has_flag(flgs, TR_BRAND_ACID)) {
236             /* Notice immunity */
237             if (r_ptr->flagsr & RFR_EFF_IM_ACID_MASK) {
238                 if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
239                     r_ptr->r_flagsr |= (r_ptr->flagsr & RFR_EFF_IM_ACID_MASK);
240                 }
241             } else {
242                 if (mult < 17)
243                     mult = 17;
244             }
245         }
246
247         if (has_flag(flgs, TR_BRAND_ELEC)) {
248             /* Notice immunity */
249             if (r_ptr->flagsr & RFR_EFF_IM_ELEC_MASK) {
250                 if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
251                     r_ptr->r_flagsr |= (r_ptr->flagsr & RFR_EFF_IM_ELEC_MASK);
252                 }
253             } else {
254                 if (mult < 17)
255                     mult = 17;
256             }
257         }
258
259         if (has_flag(flgs, TR_BRAND_FIRE)) {
260             /* Notice immunity */
261             if (r_ptr->flagsr & RFR_EFF_IM_FIRE_MASK) {
262                 if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
263                     r_ptr->r_flagsr |= (r_ptr->flagsr & RFR_EFF_IM_FIRE_MASK);
264                 }
265             }
266             /* Otherwise, take the damage */
267             else {
268                 if (r_ptr->flags3 & RF3_HURT_FIRE) {
269                     if (mult < 25)
270                         mult = 25;
271                     if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
272                         r_ptr->r_flags3 |= RF3_HURT_FIRE;
273                     }
274                 } else if (mult < 17)
275                     mult = 17;
276             }
277         }
278
279         if (has_flag(flgs, TR_BRAND_COLD)) {
280             /* Notice immunity */
281             if (r_ptr->flagsr & RFR_EFF_IM_COLD_MASK) {
282                 if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
283                     r_ptr->r_flagsr |= (r_ptr->flagsr & RFR_EFF_IM_COLD_MASK);
284                 }
285             }
286             /* Otherwise, take the damage */
287             else {
288                 if (r_ptr->flags3 & RF3_HURT_COLD) {
289                     if (mult < 25)
290                         mult = 25;
291                     if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
292                         r_ptr->r_flags3 |= RF3_HURT_COLD;
293                     }
294                 } else if (mult < 17)
295                     mult = 17;
296             }
297         }
298
299         if (has_flag(flgs, TR_BRAND_POIS)) {
300             /* Notice immunity */
301             if (r_ptr->flagsr & RFR_EFF_IM_POIS_MASK) {
302                 if (is_original_ap_and_seen(sniper_ptr, m_ptr)) {
303                     r_ptr->r_flagsr |= (r_ptr->flagsr & RFR_EFF_IM_POIS_MASK);
304                 }
305             }
306             /* Otherwise, take the damage */
307             else {
308                 if (mult < 17)
309                     mult = 17;
310             }
311         }
312
313         if ((has_flag(flgs, TR_FORCE_WEAPON)) && (sniper_ptr->csp > (sniper_ptr->msp / 30))) {
314             sniper_ptr->csp -= (1 + (sniper_ptr->msp / 30));
315             sniper_ptr->redraw |= (PR_MANA);
316             mult = mult * 5 / 2;
317         }
318         break;
319     }
320     }
321
322     /* Sniper */
323     if (snipe_type)
324         mult = calc_snipe_damage_with_slay(sniper_ptr, mult, m_ptr, snipe_type);
325
326     /* Return the total damage */
327     return (tdam * mult / 10);
328 }
329
330 /*!
331  * @brief 射撃処理実行 /
332  * Fire an object from the pack or floor.
333  * @param item 射撃するオブジェクトの所持ID
334  * @param j_ptr 射撃武器のオブジェクト参照ポインタ
335  * @return なし
336  * @details
337  * <pre>
338  * You may only fire items that "match" your missile launcher.
339  * You must use slings + pebbles/shots, bows + arrows, xbows + bolts.
340  * See "calc_bonuses()" for more calculations and such.
341  * Note that "firing" a missile is MUCH better than "throwing" it.
342  * Note: "unseen" monsters are very hard to hit.
343  * Objects are more likely to break if they "attempt" to hit a monster.
344  * Rangers (with Bows) and Anyone (with "Extra Shots") get extra shots.
345  * The "extra shot" code works by decreasing the amount of energy
346  * required to make each shot, spreading the shots out over time.
347  * Note that when firing missiles, the launcher multiplier is applied
348  * after all the bonuses are added in, making multipliers very useful.
349  * Note that Bows of "Extra Might" get extra range and an extra bonus
350  * for the damage multiplier.
351  * Note that Bows of "Extra Shots" give an extra shot.
352  * </pre>
353  */
354 void exe_fire(player_type *shooter_ptr, INVENTORY_IDX item, object_type *j_ptr, SPELL_IDX snipe_type)
355 {
356     DIRECTION dir;
357     int i;
358     POSITION y, x, ny, nx, ty, tx, prev_y, prev_x;
359     int tdam_base, tdis, thits, tmul;
360     int bonus, chance;
361     int cur_dis, visible;
362     PERCENTAGE j;
363
364     object_type forge;
365     object_type *q_ptr;
366
367     object_type *o_ptr;
368
369     bool hit_body = FALSE;
370
371     GAME_TEXT o_name[MAX_NLEN];
372
373     u16b path_g[512]; /* For calcuration of path length */
374
375     int msec = delay_factor * delay_factor * delay_factor;
376
377     /* STICK TO */
378     bool stick_to = FALSE;
379
380     /* Access the item (if in the pack) */
381     if (item >= 0) {
382         o_ptr = &shooter_ptr->inventory_list[item];
383     } else {
384         o_ptr = &shooter_ptr->current_floor_ptr->o_list[0 - item];
385     }
386
387     /* Sniper - Cannot shot a single arrow twice */
388     if ((snipe_type == SP_DOUBLE) && (o_ptr->number < 2))
389         snipe_type = SP_NONE;
390
391     describe_flavor(shooter_ptr, o_name, o_ptr, OD_OMIT_PREFIX);
392
393     /* Use the proper number of shots */
394     thits = shooter_ptr->num_fire;
395
396     /* Use a base distance */
397     tdis = 10;
398
399     /* Base damage from thrown object plus launcher bonus */
400     tdam_base = damroll(o_ptr->dd, o_ptr->ds) + o_ptr->to_d + j_ptr->to_d;
401
402     /* Actually "fire" the object */
403     bonus = (shooter_ptr->to_h_b + o_ptr->to_h + j_ptr->to_h);
404     if ((j_ptr->sval == SV_LIGHT_XBOW) || (j_ptr->sval == SV_HEAVY_XBOW))
405         chance = (shooter_ptr->skill_thb + (shooter_ptr->weapon_exp[0][j_ptr->sval] / 400 + bonus) * BTH_PLUS_ADJ);
406     else
407         chance = (shooter_ptr->skill_thb + ((shooter_ptr->weapon_exp[0][j_ptr->sval] - (WEAPON_EXP_MASTER / 2)) / 200 + bonus) * BTH_PLUS_ADJ);
408
409     shooter_ptr->energy_use = bow_energy(j_ptr->sval);
410     tmul = bow_tmul(j_ptr->sval);
411
412     /* Get extra "power" from "extra might" */
413     if (shooter_ptr->xtra_might)
414         tmul++;
415
416     tmul = tmul * (100 + (int)(adj_str_td[shooter_ptr->stat_ind[A_STR]]) - 128);
417
418     /* Boost the damage */
419     tdam_base *= tmul;
420     tdam_base /= 100;
421
422     /* Base range */
423     tdis = 13 + tmul / 80;
424     if ((j_ptr->sval == SV_LIGHT_XBOW) || (j_ptr->sval == SV_HEAVY_XBOW)) {
425         if (shooter_ptr->concent)
426             tdis -= (5 - (shooter_ptr->concent + 1) / 2);
427         else
428             tdis -= 5;
429     }
430
431     project_length = tdis + 1;
432
433     /* Get a direction (or cancel) */
434     if (!get_aim_dir(shooter_ptr, &dir)) {
435         free_turn(shooter_ptr);
436
437         if (snipe_type == SP_AWAY)
438             snipe_type = SP_NONE;
439
440         /* need not to reset project_length (already did)*/
441
442         return;
443     }
444
445     /* Predict the "target" location */
446     tx = shooter_ptr->x + 99 * ddx[dir];
447     ty = shooter_ptr->y + 99 * ddy[dir];
448
449     /* Check for "target request" */
450     if ((dir == 5) && target_okay(shooter_ptr)) {
451         tx = target_col;
452         ty = target_row;
453     }
454
455     /* Get projection path length */
456     tdis = projection_path(shooter_ptr, path_g, project_length, shooter_ptr->y, shooter_ptr->x, ty, tx, PROJECT_PATH | PROJECT_THRU) - 1;
457
458     project_length = 0; /* reset to default */
459
460     /* Don't shoot at my feet */
461     if (tx == shooter_ptr->x && ty == shooter_ptr->y) {
462         free_turn(shooter_ptr);
463
464         /* project_length is already reset to 0 */
465
466         return;
467     }
468
469     /* Take a (partial) turn */
470     shooter_ptr->energy_use = (shooter_ptr->energy_use / thits);
471     shooter_ptr->is_fired = TRUE;
472
473     /* Sniper - Difficult to shot twice at 1 turn */
474     if (snipe_type == SP_DOUBLE)
475         shooter_ptr->concent = (shooter_ptr->concent + 1) / 2;
476
477     /* Sniper - Repeat shooting when double shots */
478     for (i = 0; i < ((snipe_type == SP_DOUBLE) ? 2 : 1); i++) {
479
480         /* Start at the player */
481         y = shooter_ptr->y;
482         x = shooter_ptr->x;
483         q_ptr = &forge;
484         object_copy(q_ptr, o_ptr);
485
486         /* Single object */
487         q_ptr->number = 1;
488
489         vary_item(shooter_ptr, item, -1);
490
491         sound(SOUND_SHOOT);
492         handle_stuff(shooter_ptr);
493
494         prev_y = y;
495         prev_x = x;
496
497         /* The shot does not hit yet */
498         hit_body = FALSE;
499
500         /* Travel until stopped */
501         for (cur_dis = 0; cur_dis <= tdis;) {
502             grid_type *g_ptr;
503
504             /* Hack -- Stop at the target */
505             if ((y == ty) && (x == tx))
506                 break;
507
508             /* Calculate the new location (see "project()") */
509             ny = y;
510             nx = x;
511             mmove2(&ny, &nx, shooter_ptr->y, shooter_ptr->x, ty, tx);
512
513             /* Shatter Arrow */
514             if (snipe_type == SP_KILL_WALL) {
515                 g_ptr = &shooter_ptr->current_floor_ptr->grid_array[ny][nx];
516
517                 if (cave_has_flag_grid(g_ptr, FF_HURT_ROCK) && !g_ptr->m_idx) {
518                     if (g_ptr->info & (CAVE_MARK))
519                         msg_print(_("岩が砕け散った。", "Wall rocks were shattered."));
520                     /* Forget the wall */
521                     g_ptr->info &= ~(CAVE_MARK);
522                     shooter_ptr->update |= (PU_VIEW | PU_LITE | PU_FLOW | PU_MON_LITE);
523
524                     /* Destroy the wall */
525                     cave_alter_feat(shooter_ptr, ny, nx, FF_HURT_ROCK);
526
527                     hit_body = TRUE;
528                     break;
529                 }
530             }
531
532             /* Stopped by walls/doors */
533             if (!cave_has_flag_bold(shooter_ptr->current_floor_ptr, ny, nx, FF_PROJECT) && !shooter_ptr->current_floor_ptr->grid_array[ny][nx].m_idx)
534                 break;
535
536             /* Advance the distance */
537             cur_dis++;
538
539             /* Sniper */
540             if (snipe_type == SP_LITE) {
541                 shooter_ptr->current_floor_ptr->grid_array[ny][nx].info |= (CAVE_GLOW);
542                 note_spot(shooter_ptr, ny, nx);
543                 lite_spot(shooter_ptr, ny, nx);
544             }
545
546             /* The player can see the (on screen) missile */
547             if (panel_contains(ny, nx) && player_can_see_bold(shooter_ptr, ny, nx)) {
548                 SYMBOL_CODE c = object_char(q_ptr);
549                 byte a = object_attr(q_ptr);
550
551                 /* Draw, Hilite, Fresh, Pause, Erase */
552                 print_rel(shooter_ptr, c, a, ny, nx);
553                 move_cursor_relative(ny, nx);
554                 term_fresh();
555                 term_xtra(TERM_XTRA_DELAY, msec);
556                 lite_spot(shooter_ptr, ny, nx);
557                 term_fresh();
558             }
559
560             /* The player cannot see the missile */
561             else {
562                 /* Pause anyway, for consistancy */
563                 term_xtra(TERM_XTRA_DELAY, msec);
564             }
565
566             /* Sniper */
567             if (snipe_type == SP_KILL_TRAP) {
568                 project(shooter_ptr, 0, 0, ny, nx, 0, GF_KILL_TRAP, (PROJECT_JUMP | PROJECT_HIDE | PROJECT_GRID | PROJECT_ITEM), -1);
569             }
570
571             /* Sniper */
572             if (snipe_type == SP_EVILNESS) {
573                 shooter_ptr->current_floor_ptr->grid_array[ny][nx].info &= ~(CAVE_GLOW | CAVE_MARK);
574                 note_spot(shooter_ptr, ny, nx);
575                 lite_spot(shooter_ptr, ny, nx);
576             }
577
578             prev_y = y;
579             prev_x = x;
580
581             /* Save the new location */
582             x = nx;
583             y = ny;
584
585             /* Monster here, Try to hit it */
586             if (shooter_ptr->current_floor_ptr->grid_array[y][x].m_idx) {
587                 grid_type *c_mon_ptr = &shooter_ptr->current_floor_ptr->grid_array[y][x];
588
589                 monster_type *m_ptr = &shooter_ptr->current_floor_ptr->m_list[c_mon_ptr->m_idx];
590                 monster_race *r_ptr = &r_info[m_ptr->r_idx];
591
592                 /* Check the visibility */
593                 visible = m_ptr->ml;
594
595                 /* Note the collision */
596                 hit_body = TRUE;
597
598                 if (monster_csleep_remaining(m_ptr)) {
599                     if (!(r_ptr->flags3 & RF3_EVIL) || one_in_(5))
600                         chg_virtue(shooter_ptr, V_COMPASSION, -1);
601                     if (!(r_ptr->flags3 & RF3_EVIL) || one_in_(5))
602                         chg_virtue(shooter_ptr, V_HONOUR, -1);
603                 }
604
605                 if ((r_ptr->level + 10) > shooter_ptr->lev) {
606                     int now_exp = shooter_ptr->weapon_exp[0][j_ptr->sval];
607                     if (now_exp < s_info[shooter_ptr->pclass].w_max[0][j_ptr->sval]) {
608                         SUB_EXP amount = 0;
609                         if (now_exp < WEAPON_EXP_BEGINNER)
610                             amount = 80;
611                         else if (now_exp < WEAPON_EXP_SKILLED)
612                             amount = 25;
613                         else if ((now_exp < WEAPON_EXP_EXPERT) && (shooter_ptr->lev > 19))
614                             amount = 10;
615                         else if (shooter_ptr->lev > 34)
616                             amount = 2;
617                         shooter_ptr->weapon_exp[0][j_ptr->sval] += amount;
618                         shooter_ptr->update |= (PU_BONUS);
619                     }
620                 }
621
622                 if (shooter_ptr->riding) {
623                     if ((shooter_ptr->skill_exp[GINOU_RIDING] < s_info[shooter_ptr->pclass].s_max[GINOU_RIDING])
624                         && ((shooter_ptr->skill_exp[GINOU_RIDING] - (RIDING_EXP_BEGINNER * 2)) / 200
625                             < r_info[shooter_ptr->current_floor_ptr->m_list[shooter_ptr->riding].r_idx].level)
626                         && one_in_(2)) {
627                         shooter_ptr->skill_exp[GINOU_RIDING] += 1;
628                         shooter_ptr->update |= (PU_BONUS);
629                     }
630                 }
631
632                 /* Did we hit it (penalize range) */
633                 if (test_hit_fire(shooter_ptr, chance - cur_dis, m_ptr, m_ptr->ml, o_name)) {
634                     bool fear = FALSE;
635                     int tdam = tdam_base;
636
637                     /* Get extra damage from concentration */
638                     if (shooter_ptr->concent)
639                         tdam = boost_concentration_damage(shooter_ptr, tdam);
640
641                     /* Handle unseen monster */
642                     if (!visible) {
643                         /* Invisible monster */
644                         msg_format(_("%sが敵を捕捉した。", "The %s finds a mark."), o_name);
645                     }
646
647                     /* Handle visible monster */
648                     else {
649                         GAME_TEXT m_name[MAX_NLEN];
650
651                         /* Get "the monster" or "it" */
652                         monster_desc(shooter_ptr, m_name, m_ptr, 0);
653
654                         msg_format(_("%sが%sに命中した。", "The %s hits %s."), o_name, m_name);
655
656                         if (m_ptr->ml) {
657                             if (!shooter_ptr->image)
658                                 monster_race_track(shooter_ptr, m_ptr->ap_r_idx);
659                             health_track(shooter_ptr, c_mon_ptr->m_idx);
660                         }
661                     }
662
663                     if (snipe_type == SP_NEEDLE) {
664                         if ((randint1(randint1(r_ptr->level / (3 + shooter_ptr->concent)) + (8 - shooter_ptr->concent)) == 1) && !(r_ptr->flags1 & RF1_UNIQUE)
665                             && !(r_ptr->flags7 & RF7_UNIQUE2)) {
666                             GAME_TEXT m_name[MAX_NLEN];
667
668                             /* Get "the monster" or "it" */
669                             monster_desc(shooter_ptr, m_name, m_ptr, 0);
670
671                             tdam = m_ptr->hp + 1;
672                             msg_format(_("%sの急所に突き刺さった!", "Your shot hit a fatal spot of %s!"), m_name);
673                         } else
674                             tdam = 1;
675                     } else {
676                         /* Apply special damage */
677                         tdam = calc_shot_damage_with_slay(shooter_ptr, q_ptr, tdam, m_ptr, snipe_type);
678                         tdam = critical_shot(shooter_ptr, q_ptr->weight, q_ptr->to_h, j_ptr->to_h, tdam);
679
680                         /* No negative damage */
681                         if (tdam < 0)
682                             tdam = 0;
683
684                         /* Modify the damage */
685                         tdam = mon_damage_mod(shooter_ptr, m_ptr, tdam, FALSE);
686                     }
687
688                     msg_format_wizard(shooter_ptr, CHEAT_MONSTER, _("%dのダメージを与えた。(残りHP %d/%d(%d))", "You do %d damage. (left HP %d/%d(%d))"), tdam,
689                         m_ptr->hp - tdam, m_ptr->maxhp, m_ptr->max_maxhp);
690
691                     /* Sniper */
692                     if (snipe_type == SP_EXPLODE) {
693                         u16b flg = (PROJECT_STOP | PROJECT_JUMP | PROJECT_KILL | PROJECT_GRID);
694
695                         sound(SOUND_EXPLODE); /* No explode sound - use breath fire instead */
696                         project(shooter_ptr, 0, ((shooter_ptr->concent + 1) / 2 + 1), ny, nx, tdam, GF_MISSILE, flg, -1);
697                         break;
698                     }
699
700                     /* Sniper */
701                     if (snipe_type == SP_HOLYNESS) {
702                         shooter_ptr->current_floor_ptr->grid_array[ny][nx].info |= (CAVE_GLOW);
703                         note_spot(shooter_ptr, ny, nx);
704                         lite_spot(shooter_ptr, ny, nx);
705                     }
706
707                     /* Hit the monster, check for death */
708                     if (mon_take_hit(shooter_ptr, c_mon_ptr->m_idx, tdam, &fear, extract_note_dies(real_r_idx(m_ptr)))) {
709                         /* Dead monster */
710                     }
711
712                     /* No death */
713                     else {
714                         /* STICK TO */
715                         if (object_is_fixed_artifact(q_ptr) && (shooter_ptr->pclass != CLASS_SNIPER || shooter_ptr->concent == 0)) {
716                             GAME_TEXT m_name[MAX_NLEN];
717
718                             monster_desc(shooter_ptr, m_name, m_ptr, 0);
719
720                             stick_to = TRUE;
721                             msg_format(_("%sは%sに突き刺さった!", "%^s is stuck in %s!"), o_name, m_name);
722                         }
723
724                         message_pain(shooter_ptr, c_mon_ptr->m_idx, tdam);
725
726                         /* Anger the monster */
727                         if (tdam > 0)
728                             anger_monster(shooter_ptr, m_ptr);
729
730                         if (fear && m_ptr->ml) {
731                             GAME_TEXT m_name[MAX_NLEN];
732                             sound(SOUND_FLEE);
733                             monster_desc(shooter_ptr, m_name, m_ptr, 0);
734                             msg_format(_("%^sは恐怖して逃げ出した!", "%^s flees in terror!"), m_name);
735                         }
736
737                         set_target(m_ptr, shooter_ptr->y, shooter_ptr->x);
738
739                         /* Sniper */
740                         if (snipe_type == SP_RUSH) {
741                             int n = randint1(5) + 3;
742                             MONSTER_IDX m_idx = c_mon_ptr->m_idx;
743
744                             for (; cur_dis <= tdis;) {
745                                 POSITION ox = nx;
746                                 POSITION oy = ny;
747
748                                 if (!n)
749                                     break;
750
751                                 /* Calculate the new location (see "project()") */
752                                 mmove2(&ny, &nx, shooter_ptr->y, shooter_ptr->x, ty, tx);
753
754                                 /* Stopped by wilderness boundary */
755                                 if (!in_bounds2(shooter_ptr->current_floor_ptr, ny, nx))
756                                     break;
757
758                                 /* Stopped by walls/doors */
759                                 if (!player_can_enter(shooter_ptr, shooter_ptr->current_floor_ptr->grid_array[ny][nx].feat, 0))
760                                     break;
761
762                                 /* Stopped by monsters */
763                                 if (!is_cave_empty_bold(shooter_ptr, ny, nx))
764                                     break;
765
766                                 shooter_ptr->current_floor_ptr->grid_array[ny][nx].m_idx = m_idx;
767                                 shooter_ptr->current_floor_ptr->grid_array[oy][ox].m_idx = 0;
768
769                                 m_ptr->fx = nx;
770                                 m_ptr->fy = ny;
771
772                                 update_monster(shooter_ptr, c_mon_ptr->m_idx, TRUE);
773
774                                 lite_spot(shooter_ptr, ny, nx);
775                                 lite_spot(shooter_ptr, oy, ox);
776
777                                 term_fresh();
778                                 term_xtra(TERM_XTRA_DELAY, msec);
779
780                                 x = nx;
781                                 y = ny;
782                                 cur_dis++;
783                                 n--;
784                             }
785                         }
786                     }
787                 }
788
789                 /* Sniper */
790                 if (snipe_type == SP_PIERCE) {
791                     if (shooter_ptr->concent < 1)
792                         break;
793                     shooter_ptr->concent--;
794                     continue;
795                 }
796
797                 /* Stop looking */
798                 break;
799             }
800         }
801
802         /* Chance of breakage (during attacks) */
803         j = (hit_body ? breakage_chance(shooter_ptr, q_ptr, shooter_ptr->pclass == CLASS_ARCHER, snipe_type) : 0);
804
805         if (stick_to) {
806             MONSTER_IDX m_idx = shooter_ptr->current_floor_ptr->grid_array[y][x].m_idx;
807             monster_type *m_ptr = &shooter_ptr->current_floor_ptr->m_list[m_idx];
808             OBJECT_IDX o_idx = o_pop(shooter_ptr->current_floor_ptr);
809
810             if (!o_idx) {
811                 msg_format(_("%sはどこかへ行った。", "The %s went somewhere."), o_name);
812                 if (object_is_fixed_artifact(q_ptr)) {
813                     a_info[j_ptr->name1].cur_num = 0;
814                 }
815                 return;
816             }
817
818             o_ptr = &shooter_ptr->current_floor_ptr->o_list[o_idx];
819             object_copy(o_ptr, q_ptr);
820
821             /* Forget mark */
822             o_ptr->marked &= OM_TOUCHED;
823
824             /* Forget location */
825             o_ptr->iy = o_ptr->ix = 0;
826
827             /* Memorize monster */
828             o_ptr->held_m_idx = m_idx;
829
830             /* Build a stack */
831             o_ptr->next_o_idx = m_ptr->hold_o_idx;
832
833             /* Carry object */
834             m_ptr->hold_o_idx = o_idx;
835         } else if (cave_has_flag_bold(shooter_ptr->current_floor_ptr, y, x, FF_PROJECT)) {
836             /* Drop (or break) near that location */
837             (void)drop_near(shooter_ptr, q_ptr, j, y, x);
838         } else {
839             /* Drop (or break) near that location */
840             (void)drop_near(shooter_ptr, q_ptr, j, prev_y, prev_x);
841         }
842
843         /* Sniper - Repeat shooting when double shots */
844     }
845
846     /* Sniper - Loose his/her concentration after any shot */
847     if (shooter_ptr->concent)
848         reset_concentration(shooter_ptr, FALSE);
849 }
850
851 /*!
852  * @brief プレイヤーからモンスターへの射撃命中判定 /
853  * Determine if the player "hits" a monster (normal combat).
854  * @param chance 基本命中値
855  * @param m_ptr モンスターの構造体参照ポインタ
856  * @param vis 目標を視界に捕らえているならばTRUEを指定
857  * @param o_name メッセージ表示時のモンスター名
858  * @return 命中と判定された場合TRUEを返す
859  * @note Always miss 5%, always hit 5%, otherwise random.
860  */
861 bool test_hit_fire(player_type *shooter_ptr, int chance, monster_type *m_ptr, int vis, char *o_name)
862 {
863     int k;
864     ARMOUR_CLASS ac;
865     monster_race *r_ptr = &r_info[m_ptr->r_idx];
866
867     /* Percentile dice */
868     k = randint1(100);
869
870     /* Snipers with high-concentration reduce instant miss percentage.*/
871     k += shooter_ptr->concent;
872
873     /* Hack -- Instant miss or hit */
874     if (k <= 5)
875         return FALSE;
876     if (k > 95)
877         return TRUE;
878
879     if (shooter_ptr->pseikaku == PERSONALITY_LAZY)
880         if (one_in_(20))
881             return FALSE;
882
883     /* Never hit */
884     if (chance <= 0)
885         return FALSE;
886
887     ac = r_ptr->ac;
888     if (shooter_ptr->concent) {
889         ac *= (8 - shooter_ptr->concent);
890         ac /= 8;
891     }
892
893     if (m_ptr->r_idx == MON_GOEMON && !monster_csleep_remaining(m_ptr))
894         ac *= 3;
895
896     /* Invisible monsters are harder to hit */
897     if (!vis)
898         chance = (chance + 1) / 2;
899
900     /* Power competes against armor */
901     if (randint0(chance) < (ac * 3 / 4)) {
902         if (m_ptr->r_idx == MON_GOEMON && !monster_csleep_remaining(m_ptr)) {
903             GAME_TEXT m_name[MAX_NLEN];
904             monster_desc(shooter_ptr, m_name, m_ptr, 0);
905             msg_format(_("%sは%sを斬り捨てた!", "%s cuts down %s!"), m_name, o_name);
906         }
907         return FALSE;
908     }
909
910     /* Assume hit */
911     return TRUE;
912 }
913
914 /*!
915  * @brief プレイヤーからモンスターへの射撃クリティカル判定 /
916  * Critical hits (from objects thrown by player) Factor in item weight, total plusses, and player level.
917  * @param weight 矢弾の重量
918  * @param plus_ammo 矢弾の命中修正
919  * @param plus_bow 弓の命中修正
920  * @param dam 現在算出中のダメージ値
921  * @return クリティカル修正が入ったダメージ値
922  */
923 HIT_POINT critical_shot(player_type *shooter_ptr, WEIGHT weight, int plus_ammo, int plus_bow, HIT_POINT dam)
924 {
925     int i, k;
926     object_type *j_ptr = &shooter_ptr->inventory_list[INVEN_BOW];
927
928     /* Extract "shot" power */
929     i = shooter_ptr->to_h_b + plus_ammo;
930
931     if (shooter_ptr->tval_ammo == TV_BOLT)
932         i = (shooter_ptr->skill_thb + (shooter_ptr->weapon_exp[0][j_ptr->sval] / 400 + i) * BTH_PLUS_ADJ);
933     else
934         i = (shooter_ptr->skill_thb + ((shooter_ptr->weapon_exp[0][j_ptr->sval] - (WEAPON_EXP_MASTER / 2)) / 200 + i) * BTH_PLUS_ADJ);
935
936     /* Snipers can shot more critically with crossbows */
937     if (shooter_ptr->concent)
938         i += ((i * shooter_ptr->concent) / 5);
939     if ((shooter_ptr->pclass == CLASS_SNIPER) && (shooter_ptr->tval_ammo == TV_BOLT))
940         i *= 2;
941
942     /* Good bow makes more critical */
943     i += plus_bow * 8 * (shooter_ptr->concent ? shooter_ptr->concent + 5 : 5);
944
945     /* Critical hit */
946     if (randint1(10000) <= i) {
947         k = weight * randint1(500);
948
949         if (k < 900) {
950             msg_print(_("手ごたえがあった!", "It was a good hit!"));
951             dam += (dam / 2);
952         } else if (k < 1350) {
953             msg_print(_("かなりの手ごたえがあった!", "It was a great hit!"));
954             dam *= 2;
955         } else {
956             msg_print(_("会心の一撃だ!", "It was a superb hit!"));
957             dam *= 3;
958         }
959     }
960
961     return (dam);
962 }
963
964 /*!
965  * @brief 射撃武器の攻撃に必要な基本消費エネルギーを返す/Return bow energy
966  * @param sval 射撃武器のアイテム副分類ID
967  * @return 消費する基本エネルギー
968  */
969 ENERGY bow_energy(OBJECT_SUBTYPE_VALUE sval)
970 {
971     ENERGY energy = 10000;
972
973     /* Analyze the launcher */
974     switch (sval) {
975         /* Sling and ammo */
976     case SV_SLING: {
977         energy = 8000;
978         break;
979     }
980
981     /* Short Bow and Arrow */
982     case SV_SHORT_BOW: {
983         energy = 10000;
984         break;
985     }
986
987     /* Long Bow and Arrow */
988     case SV_LONG_BOW: {
989         energy = 10000;
990         break;
991     }
992
993     /* Bow of irresponsiblity and Arrow */
994     case SV_NAMAKE_BOW: {
995         energy = 7777;
996         break;
997     }
998
999     /* Light Crossbow and Bolt */
1000     case SV_LIGHT_XBOW: {
1001         energy = 12000;
1002         break;
1003     }
1004
1005     /* Heavy Crossbow and Bolt */
1006     case SV_HEAVY_XBOW: {
1007         energy = 13333;
1008         break;
1009     }
1010     }
1011
1012     return (energy);
1013 }
1014
1015 /*
1016  * Return bow tmul
1017  */
1018 int bow_tmul(OBJECT_SUBTYPE_VALUE sval)
1019 {
1020     int tmul = 0;
1021
1022     /* Analyze the launcher */
1023     switch (sval) {
1024         /* Sling and ammo */
1025     case SV_SLING: {
1026         tmul = 2;
1027         break;
1028     }
1029
1030     /* Short Bow and Arrow */
1031     case SV_SHORT_BOW: {
1032         tmul = 2;
1033         break;
1034     }
1035
1036     /* Long Bow and Arrow */
1037     case SV_LONG_BOW: {
1038         tmul = 3;
1039         break;
1040     }
1041
1042     /* Bow of irresponsiblity and Arrow */
1043     case SV_NAMAKE_BOW: {
1044         tmul = 3;
1045         break;
1046     }
1047
1048     /* Light Crossbow and Bolt */
1049     case SV_LIGHT_XBOW: {
1050         tmul = 3;
1051         break;
1052     }
1053
1054     /* Heavy Crossbow and Bolt */
1055     case SV_HEAVY_XBOW: {
1056         tmul = 4;
1057         break;
1058     }
1059     }
1060
1061     return (tmul);
1062 }
1063
1064 /*!
1065  * @brief 射撃時クリティカルによるダメージ期待値修正計算(スナイパーの集中処理と武器経験値) / critical happens at i / 10000
1066  * @param shooter_ptr 射撃を行うクリーチャー参照ポインタ
1067  * @param plus_ammo 矢弾のダメージ修正
1068  * @param plus_bow 弓のダメージ修正
1069  * @return ダメージ期待値
1070  * @note 基本ダメージ量と重量はこの部位では計算に加わらない。
1071  */
1072 HIT_POINT calc_crit_ratio_shot(player_type *shooter_ptr, HIT_POINT plus_ammo, HIT_POINT plus_bow)
1073 {
1074     HIT_POINT i;
1075     object_type *j_ptr = &shooter_ptr->inventory_list[INVEN_BOW];
1076
1077     /* Extract "shot" power */
1078     i = shooter_ptr->to_h_b + plus_ammo;
1079
1080     if (shooter_ptr->tval_ammo == TV_BOLT)
1081         i = (shooter_ptr->skill_thb + (shooter_ptr->weapon_exp[0][j_ptr->sval] / 400 + i) * BTH_PLUS_ADJ);
1082     else
1083         i = (shooter_ptr->skill_thb + ((shooter_ptr->weapon_exp[0][j_ptr->sval] - (WEAPON_EXP_MASTER / 2)) / 200 + i) * BTH_PLUS_ADJ);
1084
1085     /* Snipers can shot more critically with crossbows */
1086     if (shooter_ptr->concent)
1087         i += ((i * shooter_ptr->concent) / 5);
1088     if ((shooter_ptr->pclass == CLASS_SNIPER) && (shooter_ptr->tval_ammo == TV_BOLT))
1089         i *= 2;
1090
1091     /* Good bow makes more critical */
1092     i += plus_bow * 8 * (shooter_ptr->concent ? shooter_ptr->concent + 5 : 5);
1093
1094     if (i < 0)
1095         i = 0;
1096
1097     return i;
1098 }
1099
1100 /*!
1101  * @brief 射撃時クリティカルによるダメージ期待値修正計算(重量依存部分) / critical happens at i / 10000
1102  * @param weight 武器の重量
1103  * @param plus_ammo 矢弾のダメージ修正
1104  * @param plus_bow 弓のダメージ修正
1105  * @param dam 基本ダメージ量
1106  * @return ダメージ期待値
1107  */
1108 HIT_POINT calc_expect_crit_shot(player_type *shooter_ptr, WEIGHT weight, int plus_ammo, int plus_bow, HIT_POINT dam)
1109 {
1110     u32b num;
1111     int i, k, crit;
1112     i = calc_crit_ratio_shot(shooter_ptr, plus_ammo, plus_bow);
1113
1114     k = 0;
1115     num = 0;
1116
1117     crit = MIN(500, 900 / weight);
1118     num += dam * 3 / 2 * crit;
1119     k = crit;
1120
1121     crit = MIN(500, 1350 / weight);
1122     crit -= k;
1123     num += dam * 2 * crit;
1124     k += crit;
1125
1126     if (k < 500) {
1127         crit = 500 - k;
1128         num += dam * 3 * crit;
1129     }
1130
1131     num /= 500;
1132
1133     num *= i;
1134     num += (10000 - i) * dam;
1135     num /= 10000;
1136
1137     return num;
1138 }
1139
1140 /*!
1141  * @brief 攻撃時クリティカルによるダメージ期待値修正計算(重量と毒針処理) / critical happens at i / 10000
1142  * @param shooter_ptr プレーヤーへの参照ポインタ
1143  * @param weight 武器の重量
1144  * @param plus 武器のダメージ修正
1145  * @param dam 基本ダメージ
1146  * @param meichuu 命中値
1147  * @param dokubari 毒針処理か否か
1148  * @return ダメージ期待値
1149  */
1150 HIT_POINT calc_expect_crit(player_type *shooter_ptr, WEIGHT weight, int plus, HIT_POINT dam, s16b meichuu, bool dokubari)
1151 {
1152     u32b k, num;
1153     if (dokubari)
1154         return dam;
1155
1156     int i = (weight + (meichuu * 3 + plus * 5) + shooter_ptr->skill_thn);
1157     if (i < 0)
1158         i = 0;
1159
1160     k = weight;
1161     num = 0;
1162
1163     if (k < 400)
1164         num += (2 * dam + 5) * (400 - k);
1165     if (k < 700)
1166         num += (2 * dam + 10) * (MIN(700, k + 650) - MAX(400, k));
1167     if (k > (700 - 650) && k < 900)
1168         num += (3 * dam + 15) * (MIN(900, k + 650) - MAX(700, k));
1169     if (k > (900 - 650) && k < 1300)
1170         num += (3 * dam + 20) * (MIN(1300, k + 650) - MAX(900, k));
1171     if (k > (1300 - 650))
1172         num += (7 * dam / 2 + 25) * MIN(650, k - (1300 - 650));
1173
1174     num /= 650;
1175     if (shooter_ptr->pclass == CLASS_NINJA) {
1176         num *= i;
1177         num += (4444 - i) * dam;
1178         num /= 4444;
1179     } else {
1180         num *= i;
1181         num += (5000 - i) * dam;
1182         num /= 5000;
1183     }
1184
1185     return num;
1186 }