OSDN Git Service

[Refactor] #40634 Separated activate_ball_*() from switch_activation()
[hengbandforosx/hengbandosx.git] / src / object-activation / activation-switcher.c
1 /*!
2  * @brief プレイヤーの発動コマンド実装
3  * @date 2018/09/07
4  * @author deskull
5  */
6
7 #include "object-activation/activation-switcher.h"
8 #include "action/action-limited.h"
9 #include "action/activation-execution.h"
10 #include "art-definition/art-bow-types.h"
11 #include "art-definition/art-sword-types.h"
12 #include "art-definition/art-weapon-types.h"
13 #include "art-definition/random-art-effects.h"
14 #include "artifact/artifact-info.h"
15 #include "cmd-io/cmd-save.h"
16 #include "core/asking-player.h"
17 #include "core/hp-mp-processor.h"
18 #include "core/player-update-types.h"
19 #include "core/window-redrawer.h"
20 #include "effect/effect-characteristics.h"
21 #include "effect/spells-effect-util.h"
22 #include "floor/cave.h"
23 #include "floor/floor-object.h"
24 #include "floor/floor.h"
25 #include "game-option/disturbance-options.h"
26 #include "game-option/input-options.h"
27 #include "game-option/special-options.h"
28 #include "grid/feature-flag-types.h"
29 #include "grid/grid.h"
30 #include "main/sound-definitions-table.h"
31 #include "main/sound-of-music.h"
32 #include "monster-floor/monster-generator.h"
33 #include "monster-floor/monster-summon.h"
34 #include "monster-floor/place-monster-types.h"
35 #include "monster-race/monster-race.h"
36 #include "monster-race/race-flags1.h"
37 #include "monster/monster-info.h"
38 #include "monster/monster-status.h"
39 #include "monster/monster-util.h"
40 #include "monster/smart-learn-types.h"
41 #include "object-activation/activation-breath.h"
42 #include "object-enchant/activation-info-table.h"
43 #include "object-enchant/dragon-breaths-table.h"
44 #include "object-enchant/object-ego.h"
45 #include "object-hook/hook-enchant.h"
46 #include "object-hook/hook-magic.h"
47 #include "object/item-tester-hooker.h"
48 #include "object/item-use-flags.h"
49 #include "object/object-flags.h"
50 #include "object/object-info.h"
51 #include "object/object-kind.h"
52 #include "player-attack/player-attack.h"
53 #include "player/attack-defense-types.h"
54 #include "player/avatar.h"
55 #include "player/digestion-processor.h"
56 #include "player/player-damage.h"
57 #include "player/player-race-types.h"
58 #include "player/special-defense-types.h"
59 #include "racial/racial-android.h"
60 #include "specific-object/death-crimson.h"
61 #include "spell-kind/earthquake.h"
62 #include "spell-kind/magic-item-recharger.h"
63 #include "spell-kind/spells-beam.h"
64 #include "spell-kind/spells-charm.h"
65 #include "spell-kind/spells-curse-removal.h"
66 #include "spell-kind/spells-detection.h"
67 #include "spell-kind/spells-fetcher.h"
68 #include "spell-kind/spells-floor.h"
69 #include "spell-kind/spells-genocide.h"
70 #include "spell-kind/spells-grid.h"
71 #include "spell-kind/spells-launcher.h"
72 #include "spell-kind/spells-lite.h"
73 #include "spell-kind/spells-neighbor.h"
74 #include "spell-kind/spells-perception.h"
75 #include "spell-kind/spells-random.h"
76 #include "spell-kind/spells-sight.h"
77 #include "spell-kind/spells-specific-bolt.h"
78 #include "spell-kind/spells-teleport.h"
79 #include "spell-kind/spells-world.h"
80 #include "spell-realm/spells-hex.h"
81 #include "spell-realm/spells-sorcery.h"
82 #include "spell/process-effect.h"
83 #include "spell/spell-types.h"
84 #include "spell/spells-object.h"
85 #include "spell/spells-status.h"
86 #include "spell/spells-summon.h"
87 #include "status/action-setter.h"
88 #include "status/bad-status-setter.h"
89 #include "status/base-status.h"
90 #include "status/body-improvement.h"
91 #include "status/buff-setter.h"
92 #include "status/element-resistance.h"
93 #include "status/experience.h"
94 #include "status/shape-changer.h"
95 #include "status/sight-setter.h"
96 #include "status/temporary-resistance.h"
97 #include "sv-definition/sv-lite-types.h"
98 #include "sv-definition/sv-ring-types.h"
99 #include "system/artifact-type-definition.h"
100 #include "system/floor-type-definition.h"
101 #include "target/target-getter.h"
102 #include "term/screen-processor.h"
103 #include "util/bit-flags-calculator.h"
104 #include "util/quarks.h"
105 #include "util/sort.h"
106 #include "view/display-messages.h"
107 #include "world/world.h"
108
109 bool activate_sunlight(player_type *user_ptr)
110 {
111     DIRECTION dir;
112     if (!get_aim_dir(user_ptr, &dir))
113         return FALSE;
114
115     msg_print(_("太陽光線が放たれた。", "A line of sunlight appears."));
116     (void)lite_line(user_ptr, dir, damroll(6, 8));
117     return TRUE;
118 }
119
120 bool activate_missile_1(player_type *user_ptr)
121 {
122     DIRECTION dir;
123     msg_print(_("それは眩しいくらいに明るく輝いている...", "It glows extremely brightly..."));
124     if (!get_aim_dir(user_ptr, &dir))
125         return FALSE;
126
127     (void)fire_bolt(user_ptr, GF_MISSILE, dir, damroll(2, 6));
128     return TRUE;
129 }
130
131 bool activate_ball_pois_1(player_type *user_ptr)
132 {
133     DIRECTION dir;
134     msg_print(_("それは濃緑色に脈動している...", "It throbs deep green..."));
135     if (!get_aim_dir(user_ptr, &dir))
136         return FALSE;
137
138     (void)fire_ball(user_ptr, GF_POIS, dir, 12, 3);
139     return TRUE;
140 }
141
142 bool activate_bolt_elec_1(player_type *user_ptr)
143 {
144     DIRECTION dir;
145     msg_print(_("それは火花に覆われた...", "It is covered in sparks..."));
146     if (!get_aim_dir(user_ptr, &dir))
147         return FALSE;
148
149     (void)fire_bolt(user_ptr, GF_ELEC, dir, damroll(4, 8));
150     return TRUE;
151 }
152
153 bool activate_bolt_acid_1(player_type *user_ptr)
154 {
155     DIRECTION dir;
156     msg_print(_("それは酸に覆われた...", "It is covered in acid..."));
157     if (!get_aim_dir(user_ptr, &dir))
158         return FALSE;
159
160     (void)fire_bolt(user_ptr, GF_ACID, dir, damroll(5, 8));
161     return TRUE;
162 }
163
164 bool activate_bolt_cold_1(player_type *user_ptr)
165 {
166     DIRECTION dir;
167     msg_print(_("それは霜に覆われた...", "It is covered in frost..."));
168     if (!get_aim_dir(user_ptr, &dir))
169         return FALSE;
170
171     (void)fire_bolt(user_ptr, GF_COLD, dir, damroll(6, 8));
172     return TRUE;
173 }
174
175 bool activate_bolt_fire_1(player_type *user_ptr)
176 {
177     DIRECTION dir;
178     msg_print(_("それは炎に覆われた...", "It is covered in fire..."));
179     if (!get_aim_dir(user_ptr, &dir))
180         return FALSE;
181
182     (void)fire_bolt(user_ptr, GF_FIRE, dir, damroll(9, 8));
183     return TRUE;
184 }
185
186 bool activate_ball_cold_1(player_type *user_ptr)
187 {
188     DIRECTION dir;
189     msg_print(_("それは霜に覆われた...", "It is covered in frost..."));
190     if (!get_aim_dir(user_ptr, &dir))
191         return FALSE;
192
193     (void)fire_ball(user_ptr, GF_COLD, dir, 48, 2);
194     return TRUE;
195 }
196
197 bool activate_ball_cold_2(player_type *user_ptr)
198 {
199     DIRECTION dir;
200     msg_print(_("それは青く激しく輝いた...", "It glows an intense blue..."));
201     if (!get_aim_dir(user_ptr, &dir))
202         return FALSE;
203
204     (void)fire_ball(user_ptr, GF_COLD, dir, 100, 2);
205     return TRUE;
206 }
207
208 bool activate_ball_cold_3(player_type *user_ptr)
209 {
210     DIRECTION dir;
211     msg_print(_("明るく白色に輝いている...", "It glows bright white..."));
212     if (!get_aim_dir(user_ptr, &dir))
213         return FALSE;
214
215     (void)fire_ball(user_ptr, GF_COLD, dir, 400, 3);
216     return TRUE;
217 }
218
219 bool activate_ball_fire_1(player_type *user_ptr)
220 {
221     DIRECTION dir;
222     msg_print(_("それは赤く激しく輝いた...", "It glows an intense red..."));
223     if (!get_aim_dir(user_ptr, &dir))
224         return FALSE;
225
226     (void)fire_ball(user_ptr, GF_FIRE, dir, 72, 2);
227     return TRUE;
228 }
229
230 bool activate_ball_fire_2(player_type *user_ptr, concptr name)
231 {
232     DIRECTION dir;
233     msg_format(_("%sから炎が吹き出した...", "The %s rages in fire..."), name);
234     if (!get_aim_dir(user_ptr, &dir))
235         return FALSE;
236
237     (void)fire_ball(user_ptr, GF_FIRE, dir, 120, 3);
238     return TRUE;
239 }
240
241 bool activate_ball_fire_3(player_type *user_ptr)
242 {
243     DIRECTION dir;
244     msg_print(_("深赤色に輝いている...", "It glows deep red..."));
245     if (!get_aim_dir(user_ptr, &dir))
246         return FALSE;
247
248     (void)fire_ball(user_ptr, GF_FIRE, dir, 300, 3);
249     return TRUE;
250 }
251
252 bool activate_ball_fire_4(player_type *user_ptr)
253 {
254     DIRECTION dir;
255     msg_print(_("それは赤く激しく輝いた...", "It glows an intense red..."));
256     if (!get_aim_dir(user_ptr, &dir))
257         return FALSE;
258
259     (void)fire_ball(user_ptr, GF_FIRE, dir, 100, 2);
260     return TRUE;
261 }
262
263 bool activate_ball_elec_2(player_type *user_ptr)
264 {
265     DIRECTION dir;
266     msg_print(_("電気がパチパチ音を立てた...", "It crackles with electricity..."));
267     if (!get_aim_dir(user_ptr, &dir))
268         return FALSE;
269
270     (void)fire_ball(user_ptr, GF_ELEC, dir, 100, 3);
271     return TRUE;
272 }
273
274 bool activate_ball_elec_3(player_type *user_ptr)
275 {
276     DIRECTION dir;
277     msg_print(_("深青色に輝いている...", "It glows deep blue..."));
278     if (!get_aim_dir(user_ptr, &dir))
279         return FALSE;
280
281     (void)fire_ball(user_ptr, GF_ELEC, dir, 500, 3);
282     return TRUE;
283 }
284
285 bool activate_ball_acid_1(player_type *user_ptr)
286 {
287     DIRECTION dir;
288     msg_print(_("それは黒く激しく輝いた...", "It glows an intense black..."));
289     if (!get_aim_dir(user_ptr, &dir))
290         return FALSE;
291
292     (void)fire_ball(user_ptr, GF_ACID, dir, 100, 2);
293     return TRUE;
294 }
295
296 bool activate_ball_nuke_1(player_type *user_ptr)
297 {
298     DIRECTION dir;
299     msg_print(_("それは緑に激しく輝いた...", "It glows an intense green..."));
300     if (!get_aim_dir(user_ptr, &dir))
301         return FALSE;
302
303     (void)fire_ball(user_ptr, GF_NUKE, dir, 100, 2);
304     return TRUE;
305 }
306
307 bool activate_bolt_hypodynamia_1(player_type *user_ptr, concptr name)
308 {
309     DIRECTION dir;
310     msg_format(_("あなたは%sに敵を締め殺すよう命じた。", "You order the %s to strangle your opponent."), name);
311     if (!get_aim_dir(user_ptr, &dir))
312         return FALSE;
313
314     hypodynamic_bolt(user_ptr, dir, 100);
315     return TRUE;
316 }
317
318 bool activate_bolt_hypodynamia_2(player_type *user_ptr)
319 {
320     DIRECTION dir;
321     msg_print(_("黒く輝いている...", "It glows black..."));
322     if (!get_aim_dir(user_ptr, &dir))
323         return FALSE;
324
325     hypodynamic_bolt(user_ptr, dir, 120);
326     return TRUE;
327 }
328
329 bool activate_bolt_drain_1(player_type *user_ptr)
330 {
331     DIRECTION dir;
332     if (!get_aim_dir(user_ptr, &dir))
333         return FALSE;
334
335     for (int dummy = 0; dummy < 3; dummy++)
336         if (hypodynamic_bolt(user_ptr, dir, 50))
337             hp_player(user_ptr, 50);
338
339     return TRUE;
340 }
341
342 bool activate_missile_2(player_type *user_ptr)
343 {
344     DIRECTION dir;
345     msg_print(_("魔法のトゲが現れた...", "It grows magical spikes..."));
346     if (!get_aim_dir(user_ptr, &dir))
347         return FALSE;
348
349     (void)fire_bolt(user_ptr, GF_ARROW, dir, 150);
350     return TRUE;
351 }
352
353 bool activate_bolt_drain_2(player_type *user_ptr)
354 {
355     DIRECTION dir;
356     if (!get_aim_dir(user_ptr, &dir))
357         return FALSE;
358
359     for (int dummy = 0; dummy < 3; dummy++)
360         if (hypodynamic_bolt(user_ptr, dir, 100))
361             hp_player(user_ptr, 100);
362
363     return TRUE;
364 }
365
366 bool activate_rocket(player_type *user_ptr)
367 {
368     DIRECTION dir;
369     if (!get_aim_dir(user_ptr, &dir))
370         return FALSE;
371
372     msg_print(_("ロケットを発射した!", "You launch a rocket!"));
373     (void)fire_ball(user_ptr, GF_ROCKET, dir, 250 + user_ptr->lev * 3, 2);
374     return TRUE;
375 }
376
377 bool activate_missile_3(player_type *user_ptr)
378 {
379     DIRECTION dir;
380     if (!get_aim_dir(user_ptr, &dir))
381         return FALSE;
382
383     msg_print(_("あなたはエレメントのブレスを吐いた。", "You breathe the elements."));
384     fire_breath(user_ptr, GF_MISSILE, dir, 300, 4);
385     return TRUE;
386 }
387
388 bool activate_bolt_mana(player_type *user_ptr, concptr name)
389 {
390     DIRECTION dir;
391     msg_format(_("%sに魔法のトゲが現れた...", "The %s grows magical spikes..."), name);
392     if (!get_aim_dir(user_ptr, &dir))
393         return FALSE;
394
395     (void)fire_bolt(user_ptr, GF_ARROW, dir, 150);
396     return TRUE;
397 }
398
399 bool activate_ball_water(player_type *user_ptr, concptr name)
400 {
401     DIRECTION dir;
402     msg_format(_("%sが深い青色に鼓動している...", "The %s throbs deep blue..."), name);
403     if (!get_aim_dir(user_ptr, &dir))
404         return FALSE;
405
406     (void)fire_ball(user_ptr, GF_WATER, dir, 200, 3);
407     return TRUE;
408 }
409
410 bool activate_ball_dark(player_type *user_ptr, concptr name)
411 {
412     DIRECTION dir;
413     msg_format(_("%sが深い闇に覆われた...", "The %s is coverd in pitch-darkness..."), name);
414     if (!get_aim_dir(user_ptr, &dir))
415         return FALSE;
416
417     (void)fire_ball(user_ptr, GF_DARK, dir, 250, 4);
418     return TRUE;
419 }
420
421 bool activate_ball_mana(player_type *user_ptr, concptr name)
422 {
423     DIRECTION dir;
424     msg_format(_("%sが青白く光った...", "The %s glows pale..."), name);
425     if (!get_aim_dir(user_ptr, &dir))
426         return FALSE;
427
428     (void)fire_ball(user_ptr, GF_MANA, dir, 250, 4);
429     return TRUE;
430 }
431
432 bool activate_ring_of_power(player_type *user_ptr, concptr name)
433 {
434     DIRECTION dir;
435     msg_format(_("%sは漆黒に輝いた...", "The %s glows intensely black..."), name);
436     if (!get_aim_dir(user_ptr, &dir))
437         return FALSE;
438
439     ring_of_power(user_ptr, dir);
440     return TRUE;
441 }
442
443 bool activate_ball_lite(player_type *user_ptr, concptr name)
444 {
445     DIRECTION dir;
446     HIT_POINT num = damroll(5, 3);
447     POSITION y = 0, x = 0;
448     msg_format(_("%sが稲妻で覆われた...", "The %s is surrounded by lightning..."), name);
449     for (int k = 0; k < num; k++) {
450         int attempts = 1000;
451         while (attempts--) {
452             scatter(user_ptr, &y, &x, user_ptr->y, user_ptr->x, 4, 0);
453             if (!cave_have_flag_bold(user_ptr->current_floor_ptr, y, x, FF_PROJECT))
454                 continue;
455
456             if (!player_bold(user_ptr, y, x))
457                 break;
458         }
459
460         project(user_ptr, 0, 3, y, x, 150, GF_ELEC, (PROJECT_THRU | PROJECT_STOP | PROJECT_GRID | PROJECT_ITEM | PROJECT_KILL), -1);
461     }
462
463     return TRUE;
464 }
465
466 bool activate_bladeturner(player_type *user_ptr)
467 {
468     DIRECTION dir;
469     if (!get_aim_dir(user_ptr, &dir))
470         return FALSE;
471
472     msg_print(_("あなたはエレメントのブレスを吐いた。", "You breathe the elements."));
473     fire_breath(user_ptr, GF_MISSILE, dir, 300, 4);
474     msg_print(_("鎧が様々な色に輝いた...", "Your armor glows many colours..."));
475     (void)set_afraid(user_ptr, 0);
476     (void)set_hero(user_ptr, randint1(50) + 50, FALSE);
477     (void)hp_player(user_ptr, 10);
478     (void)set_blessed(user_ptr, randint1(50) + 50, FALSE);
479     (void)set_oppose_acid(user_ptr, randint1(50) + 50, FALSE);
480     (void)set_oppose_elec(user_ptr, randint1(50) + 50, FALSE);
481     (void)set_oppose_fire(user_ptr, randint1(50) + 50, FALSE);
482     (void)set_oppose_cold(user_ptr, randint1(50) + 50, FALSE);
483     (void)set_oppose_pois(user_ptr, randint1(50) + 50, FALSE);
484     return TRUE;
485 }
486
487 bool switch_activation(player_type *user_ptr, object_type *o_ptr, const activation_type *const act_ptr, concptr name)
488 {
489     DIRECTION dir;
490     switch (act_ptr->index) {
491     case ACT_SUNLIGHT:
492         return activate_sunlight(user_ptr);
493     case ACT_BO_MISS_1:
494         return activate_missile_1(user_ptr);
495     case ACT_BA_POIS_1:
496         return activate_ball_pois_1(user_ptr);
497     case ACT_BO_ELEC_1:
498         return activate_bolt_elec_1(user_ptr);
499     case ACT_BO_ACID_1:
500         return activate_bolt_acid_1(user_ptr);
501     case ACT_BO_COLD_1:
502         return activate_bolt_cold_1(user_ptr);
503     case ACT_BO_FIRE_1:
504         return activate_bolt_fire_1(user_ptr);
505     case ACT_BA_COLD_1:
506         return activate_ball_cold_1(user_ptr);
507     case ACT_BA_COLD_2:
508         return activate_ball_cold_2(user_ptr);
509     case ACT_BA_COLD_3:
510         return activate_ball_cold_2(user_ptr);
511     case ACT_BA_FIRE_1:
512         return activate_ball_fire_1(user_ptr);
513     case ACT_BA_FIRE_2:
514         return activate_ball_fire_2(user_ptr, name);
515     case ACT_BA_FIRE_3:
516         return activate_ball_fire_3(user_ptr);
517     case ACT_BA_FIRE_4:
518         return activate_ball_fire_4(user_ptr);
519     case ACT_BA_ELEC_2:
520         return activate_ball_elec_2(user_ptr);
521     case ACT_BA_ELEC_3:
522         return activate_ball_elec_3(user_ptr);
523     case ACT_BA_ACID_1:
524         return activate_ball_acid_1(user_ptr);
525     case ACT_BA_NUKE_1:
526         return activate_ball_nuke_1(user_ptr);
527     case ACT_HYPODYNAMIA_1:
528         return activate_bolt_hypodynamia_1(user_ptr, name);
529     case ACT_HYPODYNAMIA_2:
530         return activate_bolt_hypodynamia_2(user_ptr);
531     case ACT_DRAIN_1:
532         return activate_bolt_drain_1(user_ptr);
533     case ACT_BO_MISS_2:
534         return activate_missile_2(user_ptr);
535     case ACT_WHIRLWIND:
536         massacre(user_ptr);
537         return TRUE;
538     case ACT_DRAIN_2:
539         return activate_bolt_drain_2(user_ptr);
540     case ACT_CALL_CHAOS:
541         msg_print(_("様々な色の火花を発している...", "It glows in scintillating colours..."));
542         call_chaos(user_ptr);
543         return TRUE;
544     case ACT_ROCKET:
545         return activate_rocket(user_ptr);
546     case ACT_DISP_EVIL:
547         msg_print(_("神聖な雰囲気が充満した...", "It floods the area with goodness..."));
548         dispel_evil(user_ptr, user_ptr->lev * 5);
549         return TRUE;
550     case ACT_BA_MISS_3:
551         return activate_missile_3(user_ptr);
552     case ACT_DISP_GOOD:
553         msg_print(_("邪悪な雰囲気が充満した...", "It floods the area with evil..."));
554         dispel_good(user_ptr, user_ptr->lev * 5);
555         return TRUE;
556     case ACT_BO_MANA:
557         return activate_bolt_mana(user_ptr, name);
558     case ACT_BA_WATER:
559         return activate_ball_water(user_ptr, name);
560     case ACT_BA_DARK:
561         return activate_ball_dark(user_ptr, name);
562     case ACT_BA_MANA:
563         return activate_ball_mana(user_ptr, name);
564     case ACT_PESTICIDE:
565         msg_print(_("あなたは害虫を一掃した。", "You exterminate small life."));
566         (void)dispel_monsters(user_ptr, 4);
567         return TRUE;
568     case ACT_BLINDING_LIGHT:
569         msg_format(_("%sが眩しい光で輝いた...", "The %s gleams with blinding light..."), name);
570         (void)fire_ball(user_ptr, GF_LITE, 0, 300, 6);
571         confuse_monsters(user_ptr, 3 * user_ptr->lev / 2);
572         return TRUE;
573     case ACT_BIZARRE:
574         return activate_ring_of_power(user_ptr, name);
575     case ACT_CAST_BA_STAR:
576         return activate_ball_lite(user_ptr, name);
577     case ACT_BLADETURNER:
578         return activate_bladeturner(user_ptr);
579     case ACT_BR_FIRE:
580         if (!get_aim_dir(user_ptr, &dir))
581             return FALSE;
582
583         fire_breath(user_ptr, GF_FIRE, dir, 200, 2);
584         if ((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_FLAMES))
585             (void)set_oppose_fire(user_ptr, randint1(20) + 20, FALSE);
586
587         return TRUE;
588     case ACT_BR_COLD:
589         if (!get_aim_dir(user_ptr, &dir))
590             return FALSE;
591
592         fire_breath(user_ptr, GF_COLD, dir, 200, 2);
593         if ((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_ICE))
594             (void)set_oppose_cold(user_ptr, randint1(20) + 20, FALSE);
595
596         return TRUE;
597     case ACT_BR_DRAGON:
598         if (!activate_dragon_breath(user_ptr, o_ptr))
599             return FALSE;
600
601         return TRUE;
602     case ACT_CONFUSE:
603         msg_print(_("様々な色の火花を発している...", "It glows in scintillating colours..."));
604         if (!get_aim_dir(user_ptr, &dir))
605             return FALSE;
606
607         confuse_monster(user_ptr, dir, 20);
608         return TRUE;
609     case ACT_SLEEP:
610         msg_print(_("深青色に輝いている...", "It glows deep blue..."));
611         sleep_monsters_touch(user_ptr);
612         return TRUE;
613     case ACT_QUAKE:
614         earthquake(user_ptr, user_ptr->y, user_ptr->x, 5, 0);
615         return TRUE;
616     case ACT_TERROR:
617         turn_monsters(user_ptr, 40 + user_ptr->lev);
618         return TRUE;
619     case ACT_TELE_AWAY:
620         if (!get_aim_dir(user_ptr, &dir))
621             return FALSE;
622
623         (void)fire_beam(user_ptr, GF_AWAY_ALL, dir, user_ptr->lev);
624         return TRUE;
625     case ACT_BANISH_EVIL:
626         if (banish_evil(user_ptr, 100))
627             msg_print(_("アーティファクトの力が邪悪を打ち払った!", "The power of the artifact banishes evil!"));
628
629         return TRUE;
630     case ACT_GENOCIDE:
631         msg_print(_("深青色に輝いている...", "It glows deep blue..."));
632         (void)symbol_genocide(user_ptr, 200, TRUE);
633         return TRUE;
634     case ACT_MASS_GENO:
635         msg_print(_("ひどく鋭い音が流れ出た...", "It lets out a long, shrill note..."));
636         (void)mass_genocide(user_ptr, 200, TRUE);
637         return TRUE;
638     case ACT_SCARE_AREA:
639         if (music_singing_any(user_ptr))
640             stop_singing(user_ptr);
641
642         if (hex_spelling_any(user_ptr))
643             stop_hex_spell_all(user_ptr);
644
645         msg_print(_("あなたは力強い突風を吹き鳴らした。周囲の敵が震え上っている!", "You wind a mighty blast; your enemies tremble!"));
646         (void)turn_monsters(user_ptr, (3 * user_ptr->lev / 2) + 10);
647         return TRUE;
648     case ACT_AGGRAVATE:
649         if (o_ptr->name1 == ART_HYOUSIGI)
650             msg_print(_("拍子木を打った。", "You beat your wooden clappers."));
651         else
652             msg_format(_("%sは不快な物音を立てた。", "The %s sounds an unpleasant noise."), name);
653
654         aggravate_monsters(user_ptr, 0);
655         return TRUE;
656     case ACT_CHARM_ANIMAL:
657         if (!get_aim_dir(user_ptr, &dir))
658             return FALSE;
659
660         (void)charm_animal(user_ptr, dir, user_ptr->lev);
661         return TRUE;
662     case ACT_CHARM_UNDEAD:
663         if (!get_aim_dir(user_ptr, &dir))
664             return FALSE;
665
666         (void)control_one_undead(user_ptr, dir, user_ptr->lev);
667         return TRUE;
668     case ACT_CHARM_OTHER:
669         if (!get_aim_dir(user_ptr, &dir))
670             return FALSE;
671
672         (void)charm_monster(user_ptr, dir, user_ptr->lev * 2);
673         return TRUE;
674     case ACT_CHARM_ANIMALS:
675         (void)charm_animals(user_ptr, user_ptr->lev * 2);
676         return TRUE;
677     case ACT_CHARM_OTHERS:
678         (void)charm_monsters(user_ptr, user_ptr->lev * 2);
679         return TRUE;
680     case ACT_SUMMON_ANIMAL:
681         (void)summon_specific(user_ptr, -1, user_ptr->y, user_ptr->x, user_ptr->lev, SUMMON_ANIMAL_RANGER, (PM_ALLOW_GROUP | PM_FORCE_PET));
682         return TRUE;
683     case ACT_SUMMON_PHANTOM:
684         msg_print(_("幻霊を召喚した。", "You summon a phantasmal servant."));
685         (void)summon_specific(user_ptr, -1, user_ptr->y, user_ptr->x, user_ptr->current_floor_ptr->dun_level, SUMMON_PHANTOM, (PM_ALLOW_GROUP | PM_FORCE_PET));
686         return TRUE;
687     case ACT_SUMMON_ELEMENTAL:
688         return cast_summon_elemental(user_ptr, (user_ptr->lev * 3) / 2);
689     case ACT_SUMMON_DEMON:
690         cast_summon_demon(user_ptr, (user_ptr->lev * 3) / 2);
691         return TRUE;
692     case ACT_SUMMON_UNDEAD:
693         return cast_summon_undead(user_ptr, (user_ptr->lev * 3) / 2);
694     case ACT_SUMMON_HOUND:
695         return cast_summon_hound(user_ptr, (user_ptr->lev * 3) / 2);
696     case ACT_SUMMON_DAWN:
697         msg_print(_("暁の師団を召喚した。", "You summon the Legion of the Dawn."));
698         (void)summon_specific(user_ptr, -1, user_ptr->y, user_ptr->x, user_ptr->current_floor_ptr->dun_level, SUMMON_DAWN, (PM_ALLOW_GROUP | PM_FORCE_PET));
699         return TRUE;
700     case ACT_SUMMON_OCTOPUS:
701         return cast_summon_octopus(user_ptr);
702     case ACT_CHOIR_SINGS:
703         msg_print(_("天国の歌が聞こえる...", "A heavenly choir sings..."));
704         (void)cure_critical_wounds(user_ptr, 777);
705         (void)set_hero(user_ptr, randint1(25) + 25, FALSE);
706         return TRUE;
707     case ACT_CURE_LW:
708         (void)set_afraid(user_ptr, 0);
709         (void)hp_player(user_ptr, 30);
710         return TRUE;
711     case ACT_CURE_MW:
712         msg_print(_("深紫色の光を発している...", "It radiates deep purple..."));
713         (void)cure_serious_wounds(user_ptr, 4, 8);
714         return TRUE;
715     case ACT_CURE_POISON:
716         msg_print(_("深青色に輝いている...", "It glows deep blue..."));
717         (void)set_afraid(user_ptr, 0);
718         (void)set_poisoned(user_ptr, 0);
719         return TRUE;
720     case ACT_REST_EXP:
721         msg_print(_("深紅に輝いている...", "It glows a deep red..."));
722         restore_level(user_ptr);
723         return TRUE;
724     case ACT_REST_ALL:
725         msg_print(_("濃緑色に輝いている...", "It glows a deep green..."));
726         (void)restore_all_status(user_ptr);
727         (void)restore_level(user_ptr);
728         return TRUE;
729     case ACT_CURE_700:
730         msg_print(_("深青色に輝いている...", "It glows deep blue..."));
731         msg_print(_("体内に暖かい鼓動が感じられる...", "You feel a warm tingling inside..."));
732         (void)cure_critical_wounds(user_ptr, 700);
733         return TRUE;
734     case ACT_CURE_1000:
735         msg_print(_("白く明るく輝いている...", "It glows a bright white..."));
736         msg_print(_("ひじょうに気分がよい...", "You feel much better..."));
737         (void)cure_critical_wounds(user_ptr, 1000);
738         return TRUE;
739     case ACT_CURING:
740         msg_format(_("%sの優しさに癒される...", "the %s cures you affectionately ..."), name);
741         true_healing(user_ptr, 0);
742         return TRUE;
743     case ACT_CURE_MANA_FULL:
744         msg_format(_("%sが青白く光った...", "The %s glows pale..."), name);
745         restore_mana(user_ptr, TRUE);
746         return TRUE;
747     case ACT_ESP:
748         (void)set_tim_esp(user_ptr, randint1(30) + 25, FALSE);
749         return TRUE;
750     case ACT_BERSERK:
751         (void)berserk(user_ptr, randint1(25) + 25);
752         return TRUE;
753     case ACT_PROT_EVIL:
754         msg_format(_("%sから鋭い音が流れ出た...", "The %s lets out a shrill wail..."), name);
755         (void)set_protevil(user_ptr, randint1(25) + user_ptr->lev * 3, FALSE);
756         return TRUE;
757     case ACT_RESIST_ALL:
758         msg_print(_("様々な色に輝いている...", "It glows many colours..."));
759         (void)set_oppose_acid(user_ptr, randint1(40) + 40, FALSE);
760         (void)set_oppose_elec(user_ptr, randint1(40) + 40, FALSE);
761         (void)set_oppose_fire(user_ptr, randint1(40) + 40, FALSE);
762         (void)set_oppose_cold(user_ptr, randint1(40) + 40, FALSE);
763         (void)set_oppose_pois(user_ptr, randint1(40) + 40, FALSE);
764         return TRUE;
765     case ACT_SPEED:
766         msg_print(_("明るく緑色に輝いている...", "It glows bright green..."));
767         (void)set_fast(user_ptr, randint1(20) + 20, FALSE);
768         return TRUE;
769     case ACT_XTRA_SPEED:
770         msg_print(_("明るく輝いている...", "It glows brightly..."));
771         (void)set_fast(user_ptr, randint1(75) + 75, FALSE);
772         return TRUE;
773     case ACT_WRAITH:
774         set_wraith_form(user_ptr, randint1(user_ptr->lev / 2) + (user_ptr->lev / 2), FALSE);
775         return TRUE;
776     case ACT_INVULN:
777         (void)set_invuln(user_ptr, randint1(8) + 8, FALSE);
778         return TRUE;
779     case ACT_HERO:
780         (void)heroism(user_ptr, 25);
781         return TRUE;
782     case ACT_HERO_SPEED:
783         (void)set_fast(user_ptr, randint1(50) + 50, FALSE);
784         (void)heroism(user_ptr, 50);
785         return TRUE;
786     case ACT_RESIST_ACID:
787         msg_format(_("%sが黒く輝いた...", "The %s grows black."), name);
788         if ((o_ptr->tval != TV_RING) || (o_ptr->sval != SV_RING_ACID))
789             return TRUE;
790
791         if (!get_aim_dir(user_ptr, &dir))
792             return FALSE;
793
794         (void)fire_ball(user_ptr, GF_ACID, dir, 100, 2);
795         (void)set_oppose_acid(user_ptr, randint1(20) + 20, FALSE);
796         return TRUE;
797     case ACT_RESIST_FIRE:
798         msg_format(_("%sが赤く輝いた...", "The %s grows red."), name);
799         if ((o_ptr->tval != TV_RING) || (o_ptr->sval != SV_RING_FLAMES))
800             return TRUE;
801
802         if (!get_aim_dir(user_ptr, &dir))
803             return FALSE;
804
805         (void)fire_ball(user_ptr, GF_FIRE, dir, 100, 2);
806         (void)set_oppose_fire(user_ptr, randint1(20) + 20, FALSE);
807         return TRUE;
808     case ACT_RESIST_COLD:
809         msg_format(_("%sが白く輝いた...", "The %s grows white."), name);
810         if ((o_ptr->tval != TV_RING) || (o_ptr->sval != SV_RING_ICE))
811             return TRUE;
812
813         if (!get_aim_dir(user_ptr, &dir))
814             return FALSE;
815
816         (void)fire_ball(user_ptr, GF_COLD, dir, 100, 2);
817         (void)set_oppose_cold(user_ptr, randint1(20) + 20, FALSE);
818         return TRUE;
819     case ACT_RESIST_ELEC:
820         msg_format(_("%sが青く輝いた...", "The %s grows blue."), name);
821         if ((o_ptr->tval != TV_RING) || (o_ptr->sval != SV_RING_ELEC))
822             return TRUE;
823
824         if (!get_aim_dir(user_ptr, &dir))
825             return FALSE;
826
827         (void)fire_ball(user_ptr, GF_ELEC, dir, 100, 2);
828         (void)set_oppose_elec(user_ptr, randint1(20) + 20, FALSE);
829         return TRUE;
830     case ACT_RESIST_POIS:
831         msg_format(_("%sが緑に輝いた...", "The %s grows green."), name);
832         (void)set_oppose_pois(user_ptr, randint1(20) + 20, FALSE);
833         return TRUE;
834     case ACT_LIGHT:
835         msg_format(_("%sから澄んだ光があふれ出た...", "The %s wells with clear light..."), name);
836         lite_area(user_ptr, damroll(2, 15), 3);
837         return TRUE;
838     case ACT_MAP_LIGHT:
839         msg_print(_("眩しく輝いた...", "It shines brightly..."));
840         map_area(user_ptr, DETECT_RAD_MAP);
841         lite_area(user_ptr, damroll(2, 15), 3);
842         return TRUE;
843     case ACT_DETECT_ALL:
844         msg_print(_("白く明るく輝いている...", "It glows bright white..."));
845         msg_print(_("心にイメージが浮かんできた...", "An image forms in your mind..."));
846         detect_all(user_ptr, DETECT_RAD_DEFAULT);
847         return TRUE;
848     case ACT_DETECT_XTRA:
849         msg_print(_("明るく輝いている...", "It glows brightly..."));
850         detect_all(user_ptr, DETECT_RAD_DEFAULT);
851         probing(user_ptr);
852         identify_fully(user_ptr, FALSE, 0);
853         return TRUE;
854     case ACT_ID_FULL:
855         msg_print(_("黄色く輝いている...", "It glows yellow..."));
856         identify_fully(user_ptr, FALSE, 0);
857         return TRUE;
858     case ACT_ID_PLAIN:
859         return ident_spell(user_ptr, FALSE, 0);
860     case ACT_RUNE_EXPLO:
861         msg_print(_("明るい赤色に輝いている...", "It glows bright red..."));
862         explosive_rune(user_ptr, user_ptr->y, user_ptr->x);
863         return TRUE;
864     case ACT_RUNE_PROT:
865         msg_print(_("ブルーに明るく輝いている...", "It glows light blue..."));
866         warding_glyph(user_ptr);
867         return TRUE;
868     case ACT_SATIATE:
869         (void)set_food(user_ptr, PY_FOOD_MAX - 1);
870         return TRUE;
871     case ACT_DEST_DOOR:
872         msg_print(_("明るい赤色に輝いている...", "It glows bright red..."));
873         destroy_doors_touch(user_ptr);
874         return TRUE;
875     case ACT_STONE_MUD:
876         msg_print(_("鼓動している...", "It pulsates..."));
877         if (!get_aim_dir(user_ptr, &dir))
878             return FALSE;
879
880         wall_to_mud(user_ptr, dir, 20 + randint1(30));
881         return TRUE;
882     case ACT_RECHARGE:
883         recharge(user_ptr, 130);
884         return TRUE;
885     case ACT_ALCHEMY:
886         msg_print(_("明るい黄色に輝いている...", "It glows bright yellow..."));
887         (void)alchemy(user_ptr);
888         return TRUE;
889     case ACT_DIM_DOOR:
890         msg_print(_("次元の扉が開いた。目的地を選んで下さい。", "You open a dimensional gate. Choose a destination."));
891         return dimension_door(user_ptr);
892     case ACT_TELEPORT:
893         msg_print(_("周りの空間が歪んでいる...", "It twists space around you..."));
894         teleport_player(user_ptr, 100, TELEPORT_SPONTANEOUS);
895         return TRUE;
896     case ACT_RECALL:
897         msg_print(_("やわらかな白色に輝いている...", "It glows soft white..."));
898         return recall_player(user_ptr, randint0(21) + 15);
899     case ACT_JUDGE:
900         msg_format(_("%sは赤く明るく光った!", "The %s flashes bright red!"), name);
901         chg_virtue(user_ptr, V_KNOWLEDGE, 1);
902         chg_virtue(user_ptr, V_ENLIGHTEN, 1);
903         wiz_lite(user_ptr, FALSE);
904
905         msg_format(_("%sはあなたの体力を奪った...", "The %s drains your vitality..."), name);
906         take_hit(user_ptr, DAMAGE_LOSELIFE, damroll(3, 8), _("審判の宝石", "the Jewel of Judgement"), -1);
907
908         (void)detect_traps(user_ptr, DETECT_RAD_DEFAULT, TRUE);
909         (void)detect_doors(user_ptr, DETECT_RAD_DEFAULT);
910         (void)detect_stairs(user_ptr, DETECT_RAD_DEFAULT);
911
912         if (get_check(_("帰還の力を使いますか?", "Activate recall? ")))
913             (void)recall_player(user_ptr, randint0(21) + 15);
914
915         return TRUE;
916     case ACT_TELEKINESIS:
917         if (!get_aim_dir(user_ptr, &dir))
918             return FALSE;
919
920         msg_format(_("%sを伸ばした。", "You stretched your %s."), name);
921         fetch_item(user_ptr, dir, 500, TRUE);
922         return TRUE;
923     case ACT_DETECT_UNIQUE: {
924         monster_type *m_ptr;
925         monster_race *r_ptr;
926         msg_print(_("奇妙な場所が頭の中に浮かんだ...", "Some strange places show up in your mind. And you see ..."));
927         for (int i = user_ptr->current_floor_ptr->m_max - 1; i >= 1; i--) {
928             m_ptr = &user_ptr->current_floor_ptr->m_list[i];
929             if (!monster_is_valid(m_ptr))
930                 continue;
931
932             r_ptr = &r_info[m_ptr->r_idx];
933             if (r_ptr->flags1 & RF1_UNIQUE)
934                 msg_format(_("%s. ", "%s. "), r_name + r_ptr->name);
935         }
936
937         return TRUE;
938     }
939     case ACT_ESCAPE:
940         switch (randint1(13)) {
941         case 1:
942         case 2:
943         case 3:
944         case 4:
945         case 5:
946             teleport_player(user_ptr, 10, TELEPORT_SPONTANEOUS);
947             return TRUE;
948         case 6:
949         case 7:
950         case 8:
951         case 9:
952         case 10:
953             teleport_player(user_ptr, 222, TELEPORT_SPONTANEOUS);
954             return TRUE;
955         case 11:
956         case 12:
957             (void)stair_creation(user_ptr);
958             return TRUE;
959         default:
960             if (!get_check(_("この階を去りますか?", "Leave this level? ")))
961                 return TRUE;
962
963             if (autosave_l)
964                 do_cmd_save_game(user_ptr, TRUE);
965
966             user_ptr->leaving = TRUE;
967             return TRUE;
968         }
969     case ACT_DISP_CURSE_XTRA:
970         msg_format(_("%sが真実を照らし出す...", "The %s exhibits the truth..."), name);
971         (void)remove_all_curse(user_ptr);
972         (void)probing(user_ptr);
973         return TRUE;
974     case ACT_BRAND_FIRE_BOLTS:
975         msg_format(_("%sが深紅に輝いた...", "Your %s glows deep red..."), name);
976         brand_bolts(user_ptr);
977         return TRUE;
978     case ACT_RECHARGE_XTRA:
979         msg_format(_("%sが白く輝いた...", "The %s gleams with blinding light..."), name);
980         return recharge(user_ptr, 1000);
981     case ACT_LORE:
982         msg_print(_("石が隠された秘密を写し出した...", "The stone reveals hidden mysteries..."));
983         return perilous_secrets(user_ptr);
984     case ACT_SHIKOFUMI:
985         msg_print(_("力強く四股を踏んだ。", "You stamp. (as if you are in a ring.)"));
986         (void)set_afraid(user_ptr, 0);
987         (void)set_hero(user_ptr, randint1(20) + 20, FALSE);
988         (void)dispel_evil(user_ptr, user_ptr->lev * 3);
989         return TRUE;
990     case ACT_PHASE_DOOR:
991         teleport_player(user_ptr, 10, TELEPORT_SPONTANEOUS);
992         return TRUE;
993     case ACT_DETECT_ALL_MONS:
994         (void)detect_monsters_invis(user_ptr, 255);
995         (void)detect_monsters_normal(user_ptr, 255);
996         return TRUE;
997     case ACT_ULTIMATE_RESIST: {
998         TIME_EFFECT v = randint1(25) + 25;
999         (void)set_afraid(user_ptr, 0);
1000         (void)set_hero(user_ptr, v, FALSE);
1001         (void)hp_player(user_ptr, 10);
1002         (void)set_blessed(user_ptr, v, FALSE);
1003         (void)set_oppose_acid(user_ptr, v, FALSE);
1004         (void)set_oppose_elec(user_ptr, v, FALSE);
1005         (void)set_oppose_fire(user_ptr, v, FALSE);
1006         (void)set_oppose_cold(user_ptr, v, FALSE);
1007         (void)set_oppose_pois(user_ptr, v, FALSE);
1008         (void)set_ultimate_res(user_ptr, v, FALSE);
1009         return TRUE;
1010     }
1011     case ACT_CAST_OFF:
1012         cosmic_cast_off(user_ptr, o_ptr);
1013         return TRUE;
1014     case ACT_FALLING_STAR:
1015         msg_print(_("あなたは妖刀に魅入られた…", "You are enchanted by cursed blade..."));
1016         msg_print(_("「狂ほしく 血のごとき 月はのぼれり 秘めおきし 魔剣 いずこぞや」", "'Behold the blade arts.'"));
1017         massacre(user_ptr);
1018         return TRUE;
1019     case ACT_GRAND_CROSS:
1020         msg_print(_("「闇に還れ!」", "You say, 'Return to darkness!'"));
1021         project(user_ptr, 0, 8, user_ptr->y, user_ptr->x, (randint1(100) + 200) * 2, GF_HOLY_FIRE, PROJECT_KILL | PROJECT_ITEM | PROJECT_GRID, -1);
1022         return TRUE;
1023     case ACT_TELEPORT_LEVEL:
1024         if (!get_check(_("本当に他の階にテレポートしますか?", "Are you sure? (Teleport Level)")))
1025             return FALSE;
1026
1027         teleport_level(user_ptr, 0);
1028         return TRUE;
1029     case ACT_STRAIN_HASTE:
1030         msg_format(_("%sはあなたの体力を奪った...", "The %s drains your vitality..."), name);
1031         take_hit(user_ptr, DAMAGE_LOSELIFE, damroll(3, 8), _("加速した疲労", "the strain of haste"), -1);
1032         (void)set_fast(user_ptr, user_ptr->fast + 25 + randint1(25), FALSE);
1033         return TRUE;
1034     case ACT_FISHING:
1035         return fishing(user_ptr);
1036     case ACT_INROU:
1037         mitokohmon(user_ptr);
1038         return TRUE;
1039     case ACT_MURAMASA:
1040         if (o_ptr->name1 != ART_MURAMASA)
1041             return FALSE;
1042
1043         if (!get_check(_("本当に使いますか?", "Are you sure?!")))
1044             return TRUE;
1045
1046         msg_print(_("村正が震えた...", "The Muramasa pulsates..."));
1047         do_inc_stat(user_ptr, A_STR);
1048         if (one_in_(2)) {
1049             msg_print(_("村正は壊れた!", "The Muramasa is destroyed!"));
1050             curse_weapon_object(user_ptr, TRUE, o_ptr);
1051         }
1052
1053         return TRUE;
1054     case ACT_BLOODY_MOON:
1055         if (o_ptr->name1 != ART_BLOOD)
1056             return FALSE;
1057
1058         msg_print(_("鎌が明るく輝いた...", "Your scythe glows brightly!"));
1059         get_bloody_moon_flags(o_ptr);
1060         if (user_ptr->prace == RACE_ANDROID)
1061             calc_android_exp(user_ptr);
1062
1063         user_ptr->update |= (PU_BONUS | PU_HP);
1064         return TRUE;
1065     case ACT_CRIMSON:
1066         if (o_ptr->name1 != ART_CRIMSON)
1067             return FALSE;
1068
1069         msg_print(_("せっかくだから『クリムゾン』をぶっぱなすぜ!", "I'll fire CRIMSON! SEKKAKUDAKARA!"));
1070         return fire_crimson(user_ptr);
1071     default:
1072         msg_format(_("Unknown activation effect: %d.", "Unknown activation effect: %d."), act_ptr->index);
1073         return FALSE;
1074     }
1075 }
1076
1077 /*!
1078  * @brief アイテムの発動効果を処理する。
1079  * @param user_ptr プレーヤーへの参照ポインタ
1080  * @param o_ptr 対象のオブジェクト構造体ポインタ
1081  * @return 発動実行の是非を返す。
1082  */
1083 bool activate_artifact(player_type *user_ptr, object_type *o_ptr)
1084 {
1085     concptr name = k_name + k_info[o_ptr->k_idx].name;
1086     const activation_type *const act_ptr = find_activation_info(user_ptr, o_ptr);
1087     if (!act_ptr) {
1088         msg_print("Activation information is not found.");
1089         return FALSE;
1090     }
1091
1092     if (!switch_activation(user_ptr, o_ptr, act_ptr, name))
1093         return FALSE;
1094
1095     if (act_ptr->timeout.constant >= 0) {
1096         o_ptr->timeout = (s16b)act_ptr->timeout.constant;
1097         if (act_ptr->timeout.dice > 0)
1098             o_ptr->timeout += randint1(act_ptr->timeout.dice);
1099
1100         return TRUE;
1101     }
1102
1103     switch (act_ptr->index) {
1104     case ACT_BR_FIRE:
1105         o_ptr->timeout = ((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_FLAMES)) ? 200 : 250;
1106         return TRUE;
1107     case ACT_BR_COLD:
1108         o_ptr->timeout = ((o_ptr->tval == TV_RING) && (o_ptr->sval == SV_RING_ICE)) ? 200 : 250;
1109         return TRUE;
1110     case ACT_TERROR:
1111         o_ptr->timeout = 3 * (user_ptr->lev + 10);
1112         return TRUE;
1113     case ACT_MURAMASA:
1114         return TRUE;
1115     default:
1116         msg_format("Special timeout is not implemented: %d.", act_ptr->index);
1117         return FALSE;
1118     }
1119 }