OSDN Git Service

Merge remote-tracking branch 'remotes/hengbandosx/english-market-edits' into feature...
[hengband/hengband.git] / src / effect / effect-processor.c
1 #include "effect/effect-processor.h"
2 #include "core/stuff-handler.h"
3 #include "effect/effect-characteristics.h"
4 #include "effect/effect-feature.h"
5 #include "effect/effect-item.h"
6 #include "effect/effect-monster.h"
7 #include "effect/effect-player.h"
8 #include "effect/spells-effect-util.h"
9 #include "floor/cave.h"
10 #include "floor/line-of-sight.h"
11 #include "game-option/special-options.h"
12 #include "grid/feature-flag-types.h"
13 #include "io/cursor.h"
14 #include "io/screen-util.h"
15 #include "main/sound-definitions-table.h"
16 #include "main/sound-of-music.h"
17 #include "monster-race/monster-race.h"
18 #include "monster-race/race-flags2.h"
19 #include "monster-race/race-indice-types.h"
20 #include "monster/monster-describer.h"
21 #include "monster/monster-description-types.h"
22 #include "monster/monster-info.h"
23 #include "pet/pet-fall-off.h"
24 #include "spell/range-calc.h"
25 #include "spell/spell-types.h"
26 #include "system/floor-type-definition.h"
27 #include "target/projection-path-calculator.h"
28 #include "term/gameterm.h"
29 #include "util/bit-flags-calculator.h"
30 #include "view/display-messages.h"
31
32 /*!
33  * @brief 配置した鏡リストの次を取得する /
34  * Get another mirror. for SEEKER
35  * @param next_y 次の鏡のy座標を返す参照ポインタ
36  * @param next_x 次の鏡のx座標を返す参照ポインタ
37  * @param cury 現在の鏡のy座標
38  * @param curx 現在の鏡のx座標
39  */
40 static void next_mirror(player_type *creature_ptr, POSITION *next_y, POSITION *next_x, POSITION cury, POSITION curx)
41 {
42     POSITION mirror_x[10], mirror_y[10]; /* 鏡はもっと少ない */
43     int mirror_num = 0; /* 鏡の数 */
44     for (POSITION x = 0; x < creature_ptr->current_floor_ptr->width; x++) {
45         for (POSITION y = 0; y < creature_ptr->current_floor_ptr->height; y++) {
46             if (is_mirror_grid(&creature_ptr->current_floor_ptr->grid_array[y][x])) {
47                 mirror_y[mirror_num] = y;
48                 mirror_x[mirror_num] = x;
49                 mirror_num++;
50             }
51         }
52     }
53
54     if (mirror_num) {
55         int num = randint0(mirror_num);
56         *next_y = mirror_y[num];
57         *next_x = mirror_x[num];
58         return;
59     }
60
61     *next_y = cury + randint0(5) - 2;
62     *next_x = curx + randint0(5) - 2;
63 }
64
65 /*!
66  * todo 似たような処理が山ほど並んでいる、何とかならないものか
67  * todo 引数にそのまま再代入していてカオスすぎる。直すのは簡単ではない
68  * @brief 汎用的なビーム/ボルト/ボール系処理のルーチン Generic
69  * "beam"/"bolt"/"ball" projection routine.
70  * @param who 魔法を発動したモンスター(0ならばプレイヤー) / Index of "source"
71  * monster (zero for "player")
72  * @param rad 効果半径(ビーム/ボルト = 0 / ボール = 1以上) / Radius of explosion
73  * (0 = beam/bolt, 1 to 9 = ball)
74  * @param y 目標Y座標 / Target y location (or location to travel "towards")
75  * @param x 目標X座標 / Target x location (or location to travel "towards")
76  * @param dam 基本威力 / Base damage roll to apply to affected monsters (or
77  * player)
78  * @param typ 効果属性 / Type of damage to apply to monsters (and objects)
79  * @param flag 効果フラグ / Extra bit flags (see PROJECT_xxxx)
80  * @param monspell 効果元のモンスター魔法ID
81  * @return 何か一つでも効力があればTRUEを返す / TRUE if any "effects" of the
82  * projection were observed, else FALSE
83  */
84 bool project(player_type *caster_ptr, const MONSTER_IDX who, POSITION rad, POSITION y, POSITION x, const HIT_POINT dam, const EFFECT_ID typ, BIT_FLAGS flag,
85     const int monspell)
86 {
87     int dist;
88     POSITION y1;
89     POSITION x1;
90     POSITION y2;
91     POSITION x2;
92     POSITION y_saver;
93     POSITION x_saver;
94     int msec = delay_factor * delay_factor * delay_factor;
95     bool notice = FALSE;
96     bool visual = FALSE;
97     bool drawn = FALSE;
98     bool breath = FALSE;
99     bool blind = caster_ptr->blind != 0;
100     bool old_hide = FALSE;
101     int path_n = 0;
102     u16b path_g[512];
103     int grids = 0;
104     POSITION gx[1024];
105     POSITION gy[1024];
106     POSITION gm[32];
107     POSITION gm_rad = rad;
108     bool jump = FALSE;
109     GAME_TEXT who_name[MAX_NLEN];
110     bool see_s_msg = TRUE;
111     who_name[0] = '\0';
112     rakubadam_p = 0;
113     rakubadam_m = 0;
114     monster_target_y = caster_ptr->y;
115     monster_target_x = caster_ptr->x;
116
117     if (flag & (PROJECT_JUMP)) {
118         x1 = x;
119         y1 = y;
120         flag &= ~(PROJECT_JUMP);
121         jump = TRUE;
122     } else if (who <= 0) {
123         x1 = caster_ptr->x;
124         y1 = caster_ptr->y;
125     } else if (who > 0) {
126         x1 = caster_ptr->current_floor_ptr->m_list[who].fx;
127         y1 = caster_ptr->current_floor_ptr->m_list[who].fy;
128         monster_desc(caster_ptr, who_name, &caster_ptr->current_floor_ptr->m_list[who], MD_WRONGDOER_NAME);
129     } else {
130         x1 = x;
131         y1 = y;
132     }
133
134     y_saver = y1;
135     x_saver = x1;
136     y2 = y;
137     x2 = x;
138
139     if (flag & (PROJECT_THRU)) {
140         if ((x1 == x2) && (y1 == y2)) {
141             flag &= ~(PROJECT_THRU);
142         }
143     }
144
145     if (rad < 0) {
146         rad = 0 - rad;
147         breath = TRUE;
148         if (flag & PROJECT_HIDE)
149             old_hide = TRUE;
150         flag |= PROJECT_HIDE;
151     }
152
153     for (dist = 0; dist < 32; dist++)
154         gm[dist] = 0;
155
156     y = y1;
157     x = x1;
158     dist = 0;
159     if (flag & (PROJECT_BEAM)) {
160         gy[grids] = y;
161         gx[grids] = x;
162         grids++;
163     }
164
165     switch (typ) {
166     case GF_LITE:
167     case GF_LITE_WEAK:
168         if (breath || (flag & PROJECT_BEAM))
169             flag |= (PROJECT_LOS);
170         break;
171     case GF_DISINTEGRATE:
172         flag |= (PROJECT_GRID);
173         if (breath || (flag & PROJECT_BEAM))
174             flag |= (PROJECT_DISI);
175         break;
176     }
177
178     /* Calculate the projection path */
179     path_n = projection_path(caster_ptr, path_g, (project_length ? project_length : get_max_range(caster_ptr)), y1, x1, y2, x2, flag);
180     handle_stuff(caster_ptr);
181
182     if (typ == GF_SEEKER) {
183         int j;
184         int last_i = 0;
185         project_m_n = 0;
186         project_m_x = 0;
187         project_m_y = 0;
188         for (int i = 0; i < path_n; ++i) {
189             POSITION oy = y;
190             POSITION ox = x;
191             POSITION ny = get_grid_y(path_g[i]);
192             POSITION nx = get_grid_x(path_g[i]);
193             y = ny;
194             x = nx;
195             gy[grids] = y;
196             gx[grids] = x;
197             grids++;
198
199             if (msec > 0) {
200                 if (!blind && !(flag & (PROJECT_HIDE))) {
201                     if (panel_contains(y, x) && player_has_los_bold(caster_ptr, y, x)) {
202                         u16b p = bolt_pict(oy, ox, y, x, typ);
203                         TERM_COLOR a = PICT_A(p);
204                         SYMBOL_CODE c = PICT_C(p);
205                         print_rel(caster_ptr, c, a, y, x);
206                         move_cursor_relative(y, x);
207                         term_fresh();
208                         term_xtra(TERM_XTRA_DELAY, msec);
209                         lite_spot(caster_ptr, y, x);
210                         term_fresh();
211                         if (flag & (PROJECT_BEAM)) {
212                             p = bolt_pict(y, x, y, x, typ);
213                             a = PICT_A(p);
214                             c = PICT_C(p);
215                             print_rel(caster_ptr, c, a, y, x);
216                         }
217
218                         visual = TRUE;
219                     } else if (visual) {
220                         term_xtra(TERM_XTRA_DELAY, msec);
221                     }
222                 }
223             }
224
225             if (affect_item(caster_ptr, 0, 0, y, x, dam, GF_SEEKER))
226                 notice = TRUE;
227             if (!is_mirror_grid(&caster_ptr->current_floor_ptr->grid_array[y][x]))
228                 continue;
229
230             monster_target_y = y;
231             monster_target_x = x;
232             remove_mirror(caster_ptr, y, x);
233             next_mirror(caster_ptr, &oy, &ox, y, x);
234             path_n = i + projection_path(caster_ptr, &(path_g[i + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, oy, ox, flag);
235             for (j = last_i; j <= i; j++) {
236                 y = get_grid_y(path_g[j]);
237                 x = get_grid_x(path_g[j]);
238                 if (affect_monster(caster_ptr, 0, 0, y, x, dam, GF_SEEKER, flag, TRUE))
239                     notice = TRUE;
240                 if (!who && (project_m_n == 1) && !jump && (caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx > 0)) {
241                     monster_type *m_ptr = &caster_ptr->current_floor_ptr->m_list[caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx];
242                     if (m_ptr->ml) {
243                         if (!caster_ptr->image)
244                             monster_race_track(caster_ptr, m_ptr->ap_r_idx);
245                         health_track(caster_ptr, caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx);
246                     }
247                 }
248
249                 (void)affect_feature(caster_ptr, 0, 0, y, x, dam, GF_SEEKER);
250             }
251
252             last_i = i;
253         }
254
255         for (int i = last_i; i < path_n; i++) {
256             POSITION py, px;
257             py = get_grid_y(path_g[i]);
258             px = get_grid_x(path_g[i]);
259             if (affect_monster(caster_ptr, 0, 0, py, px, dam, GF_SEEKER, flag, TRUE))
260                 notice = TRUE;
261             if (!who && (project_m_n == 1) && !jump) {
262                 if (caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx > 0) {
263                     monster_type *m_ptr = &caster_ptr->current_floor_ptr->m_list[caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx];
264
265                     if (m_ptr->ml) {
266                         if (!caster_ptr->image)
267                             monster_race_track(caster_ptr, m_ptr->ap_r_idx);
268                         health_track(caster_ptr, caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx);
269                     }
270                 }
271             }
272
273             (void)affect_feature(caster_ptr, 0, 0, py, px, dam, GF_SEEKER);
274         }
275
276         return notice;
277     } else if (typ == GF_SUPER_RAY) {
278         int j;
279         int second_step = 0;
280         project_m_n = 0;
281         project_m_x = 0;
282         project_m_y = 0;
283         for (int i = 0; i < path_n; ++i) {
284             POSITION oy = y;
285             POSITION ox = x;
286             POSITION ny = get_grid_y(path_g[i]);
287             POSITION nx = get_grid_x(path_g[i]);
288             y = ny;
289             x = nx;
290             gy[grids] = y;
291             gx[grids] = x;
292             grids++;
293             {
294                 if (msec > 0) {
295                     if (panel_contains(y, x) && player_has_los_bold(caster_ptr, y, x)) {
296                         u16b p;
297                         TERM_COLOR a;
298                         SYMBOL_CODE c;
299                         p = bolt_pict(oy, ox, y, x, typ);
300                         a = PICT_A(p);
301                         c = PICT_C(p);
302                         print_rel(caster_ptr, c, a, y, x);
303                         move_cursor_relative(y, x);
304                         term_fresh();
305                         term_xtra(TERM_XTRA_DELAY, msec);
306                         lite_spot(caster_ptr, y, x);
307                         term_fresh();
308                         if (flag & (PROJECT_BEAM)) {
309                             p = bolt_pict(y, x, y, x, typ);
310                             a = PICT_A(p);
311                             c = PICT_C(p);
312                             print_rel(caster_ptr, c, a, y, x);
313                         }
314
315                         visual = TRUE;
316                     } else if (visual) {
317                         term_xtra(TERM_XTRA_DELAY, msec);
318                     }
319                 }
320             }
321
322             if (affect_item(caster_ptr, 0, 0, y, x, dam, GF_SUPER_RAY))
323                 notice = TRUE;
324             if (!cave_has_flag_bold(caster_ptr->current_floor_ptr, y, x, FF_PROJECT)) {
325                 if (second_step)
326                     continue;
327                 break;
328             }
329
330             if (is_mirror_grid(&caster_ptr->current_floor_ptr->grid_array[y][x]) && !second_step) {
331                 monster_target_y = y;
332                 monster_target_x = x;
333                 remove_mirror(caster_ptr, y, x);
334                 for (j = 0; j <= i; j++) {
335                     y = get_grid_y(path_g[j]);
336                     x = get_grid_x(path_g[j]);
337                     (void)affect_feature(caster_ptr, 0, 0, y, x, dam, GF_SUPER_RAY);
338                 }
339
340                 path_n = i;
341                 second_step = i + 1;
342                 path_n += projection_path(
343                     caster_ptr, &(path_g[path_n + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, y - 1, x - 1, flag);
344                 path_n
345                     += projection_path(caster_ptr, &(path_g[path_n + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, y - 1, x, flag);
346                 path_n += projection_path(
347                     caster_ptr, &(path_g[path_n + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, y - 1, x + 1, flag);
348                 path_n
349                     += projection_path(caster_ptr, &(path_g[path_n + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, y, x - 1, flag);
350                 path_n
351                     += projection_path(caster_ptr, &(path_g[path_n + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, y, x + 1, flag);
352                 path_n += projection_path(
353                     caster_ptr, &(path_g[path_n + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, y + 1, x - 1, flag);
354                 path_n
355                     += projection_path(caster_ptr, &(path_g[path_n + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, y + 1, x, flag);
356                 path_n += projection_path(
357                     caster_ptr, &(path_g[path_n + 1]), (project_length ? project_length : get_max_range(caster_ptr)), y, x, y + 1, x + 1, flag);
358             }
359         }
360
361         for (int i = 0; i < path_n; i++) {
362             POSITION py = get_grid_y(path_g[i]);
363             POSITION px = get_grid_x(path_g[i]);
364             (void)affect_monster(caster_ptr, 0, 0, py, px, dam, GF_SUPER_RAY, flag, TRUE);
365             if (!who && (project_m_n == 1) && !jump) {
366                 if (caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx > 0) {
367                     monster_type *m_ptr = &caster_ptr->current_floor_ptr->m_list[caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx];
368
369                     if (m_ptr->ml) {
370                         if (!caster_ptr->image)
371                             monster_race_track(caster_ptr, m_ptr->ap_r_idx);
372                         health_track(caster_ptr, caster_ptr->current_floor_ptr->grid_array[project_m_y][project_m_x].m_idx);
373                     }
374                 }
375             }
376
377             (void)affect_feature(caster_ptr, 0, 0, py, px, dam, GF_SUPER_RAY);
378         }
379
380         return notice;
381     }
382
383     int k;
384     for (k = 0; k < path_n; ++k) {
385         POSITION oy = y;
386         POSITION ox = x;
387         POSITION ny = get_grid_y(path_g[k]);
388         POSITION nx = get_grid_x(path_g[k]);
389         if (flag & PROJECT_DISI) {
390             if (cave_stop_disintegration(caster_ptr->current_floor_ptr, ny, nx) && (rad > 0))
391                 break;
392         } else if (flag & PROJECT_LOS) {
393             if (!cave_los_bold(caster_ptr->current_floor_ptr, ny, nx) && (rad > 0))
394                 break;
395         } else {
396             if (!cave_has_flag_bold(caster_ptr->current_floor_ptr, ny, nx, FF_PROJECT) && (rad > 0))
397                 break;
398         }
399
400         y = ny;
401         x = nx;
402         if (flag & (PROJECT_BEAM)) {
403             gy[grids] = y;
404             gx[grids] = x;
405             grids++;
406         }
407
408         if (msec > 0) {
409             if (!blind && !(flag & (PROJECT_HIDE | PROJECT_FAST))) {
410                 if (panel_contains(y, x) && player_has_los_bold(caster_ptr, y, x)) {
411                     u16b p;
412                     TERM_COLOR a;
413                     SYMBOL_CODE c;
414                     p = bolt_pict(oy, ox, y, x, typ);
415                     a = PICT_A(p);
416                     c = PICT_C(p);
417                     print_rel(caster_ptr, c, a, y, x);
418                     move_cursor_relative(y, x);
419                     term_fresh();
420                     term_xtra(TERM_XTRA_DELAY, msec);
421                     lite_spot(caster_ptr, y, x);
422                     term_fresh();
423                     if (flag & (PROJECT_BEAM)) {
424                         p = bolt_pict(y, x, y, x, typ);
425                         a = PICT_A(p);
426                         c = PICT_C(p);
427                         print_rel(caster_ptr, c, a, y, x);
428                     }
429
430                     visual = TRUE;
431                 } else if (visual) {
432                     term_xtra(TERM_XTRA_DELAY, msec);
433                 }
434             }
435         }
436     }
437
438     path_n = k;
439     POSITION by = y;
440     POSITION bx = x;
441     if (breath && !path_n) {
442         breath = FALSE;
443         gm_rad = rad;
444         if (!old_hide) {
445             flag &= ~(PROJECT_HIDE);
446         }
447     }
448
449     gm[0] = 0;
450     gm[1] = grids;
451     dist = path_n;
452     int dist_hack = dist;
453     project_length = 0;
454
455     /* If we found a "target", explode there */
456     if (dist <= get_max_range(caster_ptr)) {
457         if ((flag & (PROJECT_BEAM)) && (grids > 0))
458             grids--;
459
460         /*
461          * Create a conical breath attack
462          *
463          *       ***
464          *   ********
465          * D********@**
466          *   ********
467          *       ***
468          */
469         if (breath) {
470             flag &= ~(PROJECT_HIDE);
471             breath_shape(caster_ptr, path_g, dist, &grids, gx, gy, gm, &gm_rad, rad, y1, x1, by, bx, typ);
472         } else {
473             for (dist = 0; dist <= rad; dist++) {
474                 for (y = by - dist; y <= by + dist; y++) {
475                     for (x = bx - dist; x <= bx + dist; x++) {
476                         if (!in_bounds2(caster_ptr->current_floor_ptr, y, x))
477                             continue;
478                         if (distance(by, bx, y, x) != dist)
479                             continue;
480
481                         switch (typ) {
482                         case GF_LITE:
483                         case GF_LITE_WEAK:
484                             if (!los(caster_ptr, by, bx, y, x))
485                                 continue;
486                             break;
487                         case GF_DISINTEGRATE:
488                             if (!in_disintegration_range(caster_ptr->current_floor_ptr, by, bx, y, x))
489                                 continue;
490                             break;
491                         default:
492                             if (!projectable(caster_ptr, by, bx, y, x))
493                                 continue;
494                             break;
495                         }
496
497                         gy[grids] = y;
498                         gx[grids] = x;
499                         grids++;
500                     }
501                 }
502
503                 gm[dist + 1] = grids;
504             }
505         }
506     }
507
508     if (!grids)
509         return FALSE;
510
511     if (!blind && !(flag & (PROJECT_HIDE)) && (msec > 0)) {
512         for (int t = 0; t <= gm_rad; t++) {
513             for (int i = gm[t]; i < gm[t + 1]; i++) {
514                 y = gy[i];
515                 x = gx[i];
516                 if (panel_contains(y, x) && player_has_los_bold(caster_ptr, y, x)) {
517                     u16b p;
518                     TERM_COLOR a;
519                     SYMBOL_CODE c;
520                     drawn = TRUE;
521                     p = bolt_pict(y, x, y, x, typ);
522                     a = PICT_A(p);
523                     c = PICT_C(p);
524                     print_rel(caster_ptr, c, a, y, x);
525                 }
526             }
527
528             move_cursor_relative(by, bx);
529             term_fresh();
530             if (visual || drawn) {
531                 term_xtra(TERM_XTRA_DELAY, msec);
532             }
533         }
534
535         if (drawn) {
536             for (int i = 0; i < grids; i++) {
537                 y = gy[i];
538                 x = gx[i];
539                 if (panel_contains(y, x) && player_has_los_bold(caster_ptr, y, x)) {
540                     lite_spot(caster_ptr, y, x);
541                 }
542             }
543
544             move_cursor_relative(by, bx);
545             if (need_term_fresh(caster_ptr))
546                 term_fresh();
547         }
548     }
549
550     update_creature(caster_ptr);
551
552     if (flag & PROJECT_KILL) {
553         see_s_msg = (who > 0) ? is_seen(caster_ptr, &caster_ptr->current_floor_ptr->m_list[who])
554                               : (!who ? TRUE : (player_can_see_bold(caster_ptr, y1, x1) && projectable(caster_ptr, caster_ptr->y, caster_ptr->x, y1, x1)));
555     }
556
557     if (flag & (PROJECT_GRID)) {
558         dist = 0;
559         for (int i = 0; i < grids; i++) {
560             if (gm[dist + 1] == i)
561                 dist++;
562             y = gy[i];
563             x = gx[i];
564             if (breath) {
565                 int d = dist_to_line(y, x, y1, x1, by, bx);
566                 if (affect_feature(caster_ptr, who, d, y, x, dam, typ))
567                     notice = TRUE;
568             } else {
569                 if (affect_feature(caster_ptr, who, dist, y, x, dam, typ))
570                     notice = TRUE;
571             }
572         }
573     }
574
575     update_creature(caster_ptr);
576     if (flag & (PROJECT_ITEM)) {
577         dist = 0;
578         for (int i = 0; i < grids; i++) {
579             if (gm[dist + 1] == i)
580                 dist++;
581
582             y = gy[i];
583             x = gx[i];
584             if (breath) {
585                 int d = dist_to_line(y, x, y1, x1, by, bx);
586                 if (affect_item(caster_ptr, who, d, y, x, dam, typ))
587                     notice = TRUE;
588             } else {
589                 if (affect_item(caster_ptr, who, dist, y, x, dam, typ))
590                     notice = TRUE;
591             }
592         }
593     }
594
595     if (flag & (PROJECT_KILL)) {
596         project_m_n = 0;
597         project_m_x = 0;
598         project_m_y = 0;
599         dist = 0;
600         for (int i = 0; i < grids; i++) {
601             int effective_dist;
602             if (gm[dist + 1] == i)
603                 dist++;
604
605             y = gy[i];
606             x = gx[i];
607             if (grids <= 1) {
608                 monster_type *m_ptr = &caster_ptr->current_floor_ptr->m_list[caster_ptr->current_floor_ptr->grid_array[y][x].m_idx];
609                 monster_race *ref_ptr = &r_info[m_ptr->r_idx];
610                 if ((flag & PROJECT_REFLECTABLE) && caster_ptr->current_floor_ptr->grid_array[y][x].m_idx && (ref_ptr->flags2 & RF2_REFLECTING)
611                     && ((caster_ptr->current_floor_ptr->grid_array[y][x].m_idx != caster_ptr->riding) || !(flag & PROJECT_PLAYER)) && (!who || dist_hack > 1)
612                     && !one_in_(10)) {
613                     POSITION t_y, t_x;
614                     int max_attempts = 10;
615                     do {
616                         t_y = y_saver - 1 + randint1(3);
617                         t_x = x_saver - 1 + randint1(3);
618                         max_attempts--;
619                     } while (max_attempts && in_bounds2u(caster_ptr->current_floor_ptr, t_y, t_x) && !projectable(caster_ptr, y, x, t_y, t_x));
620
621                     if (max_attempts < 1) {
622                         t_y = y_saver;
623                         t_x = x_saver;
624                     }
625
626                     sound(SOUND_REFLECT);
627                     if (is_seen(caster_ptr, m_ptr)) {
628                         if ((m_ptr->r_idx == MON_KENSHIROU) || (m_ptr->r_idx == MON_RAOU))
629                             msg_print(_("「北斗神拳奥義・二指真空把!」", "The attack bounces!"));
630                         else if (m_ptr->r_idx == MON_DIO)
631                             msg_print(_("ディオ・ブランドーは指一本で攻撃を弾き返した!", "The attack bounces!"));
632                         else
633                             msg_print(_("攻撃は跳ね返った!", "The attack bounces!"));
634                     }
635
636                     if (is_original_ap_and_seen(caster_ptr, m_ptr))
637                         ref_ptr->r_flags2 |= RF2_REFLECTING;
638
639                     if (player_bold(caster_ptr, y, x) || one_in_(2))
640                         flag &= ~(PROJECT_PLAYER);
641                     else
642                         flag |= PROJECT_PLAYER;
643
644                     project(caster_ptr, caster_ptr->current_floor_ptr->grid_array[y][x].m_idx, 0, t_y, t_x, dam, typ, flag, monspell);
645                     continue;
646                 }
647             }
648
649             /* Find the closest point in the blast */
650             if (breath) {
651                 effective_dist = dist_to_line(y, x, y1, x1, by, bx);
652             } else {
653                 effective_dist = dist;
654             }
655
656             if (caster_ptr->riding && player_bold(caster_ptr, y, x)) {
657                 if (flag & PROJECT_PLAYER) {
658                     if (flag & (PROJECT_BEAM | PROJECT_REFLECTABLE | PROJECT_AIMED)) {
659                         /*
660                          * A beam or bolt is well aimed
661                          * at the PLAYER!
662                          * So don't affects the mount.
663                          */
664                         continue;
665                     } else {
666                         /*
667                          * The spell is not well aimed,
668                          * So partly affect the mount too.
669                          */
670                         effective_dist++;
671                     }
672                 }
673
674                 /*
675                  * This grid is the original target.
676                  * Or aimed on your horse.
677                  */
678                 else if (((y == y2) && (x == x2)) || (flag & PROJECT_AIMED)) {
679                     /* Hit the mount with full damage */
680                 }
681
682                 /*
683                  * Otherwise this grid is not the
684                  * original target, it means that line
685                  * of fire is obstructed by this
686                  * monster.
687                  */
688                 /*
689                  * A beam or bolt will hit either
690                  * player or mount.  Choose randomly.
691                  */
692                 else if (flag & (PROJECT_BEAM | PROJECT_REFLECTABLE)) {
693                     if (one_in_(2)) {
694                         /* Hit the mount with full damage */
695                     } else {
696                         flag |= PROJECT_PLAYER;
697                         continue;
698                     }
699                 }
700
701                 /*
702                  * The spell is not well aimed, so
703                  * partly affect both player and
704                  * mount.
705                  */
706                 else {
707                     effective_dist++;
708                 }
709             }
710
711             if (affect_monster(caster_ptr, who, effective_dist, y, x, dam, typ, flag, see_s_msg))
712                 notice = TRUE;
713         }
714
715         /* Player affected one monster (without "jumping") */
716         if (!who && (project_m_n == 1) && !jump) {
717             x = project_m_x;
718             y = project_m_y;
719             if (caster_ptr->current_floor_ptr->grid_array[y][x].m_idx > 0) {
720                 monster_type *m_ptr = &caster_ptr->current_floor_ptr->m_list[caster_ptr->current_floor_ptr->grid_array[y][x].m_idx];
721
722                 if (m_ptr->ml) {
723                     if (!caster_ptr->image)
724                         monster_race_track(caster_ptr, m_ptr->ap_r_idx);
725                     health_track(caster_ptr, caster_ptr->current_floor_ptr->grid_array[y][x].m_idx);
726                 }
727             }
728         }
729     }
730
731     if (flag & (PROJECT_KILL)) {
732         dist = 0;
733         for (int i = 0; i < grids; i++) {
734             int effective_dist;
735             if (gm[dist + 1] == i)
736                 dist++;
737
738             y = gy[i];
739             x = gx[i];
740             if (!player_bold(caster_ptr, y, x))
741                 continue;
742
743             /* Find the closest point in the blast */
744             if (breath) {
745                 effective_dist = dist_to_line(y, x, y1, x1, by, bx);
746             } else {
747                 effective_dist = dist;
748             }
749
750             if (caster_ptr->riding) {
751                 if (flag & PROJECT_PLAYER) {
752                     /* Hit the player with full damage */
753                 }
754
755                 /*
756                  * Hack -- When this grid was not the
757                  * original target, a beam or bolt
758                  * would hit either player or mount,
759                  * and should be choosen randomly.
760                  *
761                  * But already choosen to hit the
762                  * mount at this point.
763                  *
764                  * Or aimed on your horse.
765                  */
766                 else if (flag & (PROJECT_BEAM | PROJECT_REFLECTABLE | PROJECT_AIMED)) {
767                     /*
768                      * A beam or bolt is well aimed
769                      * at the mount!
770                      * So don't affects the player.
771                      */
772                     continue;
773                 } else {
774                     /*
775                      * The spell is not well aimed,
776                      * So partly affect the player too.
777                      */
778                     effective_dist++;
779                 }
780             }
781
782             if (affect_player(who, caster_ptr, who_name, effective_dist, y, x, dam, typ, flag, monspell, project))
783                 notice = TRUE;
784         }
785     }
786
787     if (caster_ptr->riding) {
788         GAME_TEXT m_name[MAX_NLEN];
789         monster_desc(caster_ptr, m_name, &caster_ptr->current_floor_ptr->m_list[caster_ptr->riding], 0);
790         if (rakubadam_m > 0) {
791             if (process_fall_off_horse(caster_ptr, rakubadam_m, FALSE)) {
792                 msg_format(_("%^sに振り落とされた!", "%^s has thrown you off!"), m_name);
793             }
794         }
795
796         if (caster_ptr->riding && rakubadam_p > 0) {
797             if (process_fall_off_horse(caster_ptr, rakubadam_p, FALSE)) {
798                 msg_format(_("%^sから落ちてしまった!", "You have fallen from %s."), m_name);
799             }
800         }
801     }
802
803     return (notice);
804 }