OSDN Git Service

upgrade to 3.6.1
[jnethack/source.git] / src / music.c
1 /* NetHack 3.6  music.c $NHDT-Date: 1517877381 2018/02/06 00:36:21 $  $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.47 $ */
2 /*      Copyright (c) 1989 by Jean-Christophe Collet */
3 /* NetHack may be freely redistributed.  See license for details. */
4
5 /* JNetHack Copyright */
6 /* (c) Issei Numata, Naoki Hamada, Shigehiro Miyashita, 1994-2000  */
7 /* For 3.4-, Copyright (c) SHIRAKATA Kentaro, 2002-2016            */
8 /* JNetHack may be freely redistributed.  See license for details. */
9
10 /*
11  * This file contains the different functions designed to manipulate the
12  * musical instruments and their various effects.
13  *
14  * The list of instruments / effects is :
15  *
16  * (wooden) flute       may calm snakes if player has enough dexterity
17  * magic flute          may put monsters to sleep:  area of effect depends
18  *                      on player level.
19  * (tooled) horn        Will awaken monsters:  area of effect depends on
20  *                      player level.  May also scare monsters.
21  * fire horn            Acts like a wand of fire.
22  * frost horn           Acts like a wand of cold.
23  * bugle                Will awaken soldiers (if any):  area of effect depends
24  *                      on player level.
25  * (wooden) harp        May calm nymph if player has enough dexterity.
26  * magic harp           Charm monsters:  area of effect depends on player
27  *                      level.
28  * (leather) drum       Will awaken monsters like the horn.
29  * drum of earthquake   Will initiate an earthquake whose intensity depends
30  *                      on player level.  That is, it creates random pits
31  *                      called here chasms.
32  */
33
34 #include "hack.h"
35
36 STATIC_DCL void FDECL(awaken_monsters, (int));
37 STATIC_DCL void FDECL(put_monsters_to_sleep, (int));
38 STATIC_DCL void FDECL(charm_snakes, (int));
39 STATIC_DCL void FDECL(calm_nymphs, (int));
40 STATIC_DCL void FDECL(charm_monsters, (int));
41 STATIC_DCL void FDECL(do_earthquake, (int));
42 STATIC_DCL int FDECL(do_improvisation, (struct obj *));
43
44 #ifdef UNIX386MUSIC
45 STATIC_DCL int NDECL(atconsole);
46 STATIC_DCL void FDECL(speaker, (struct obj *, char *));
47 #endif
48 #ifdef VPIX_MUSIC
49 extern int sco_flag_console; /* will need changing if not _M_UNIX */
50 STATIC_DCL void NDECL(playinit);
51 STATIC_DCL void FDECL(playstring, (char *, size_t));
52 STATIC_DCL void FDECL(speaker, (struct obj *, char *));
53 #endif
54 #ifdef PCMUSIC
55 void FDECL(pc_speaker, (struct obj *, char *));
56 #endif
57 #ifdef AMIGA
58 void FDECL(amii_speaker, (struct obj *, char *, int));
59 #endif
60
61 /*
62  * Wake every monster in range...
63  */
64
65 STATIC_OVL void
66 awaken_monsters(distance)
67 int distance;
68 {
69     register struct monst *mtmp;
70     register int distm;
71
72     for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
73         if (DEADMONSTER(mtmp))
74             continue;
75         if ((distm = distu(mtmp->mx, mtmp->my)) < distance) {
76             mtmp->msleeping = 0;
77             mtmp->mcanmove = 1;
78             mtmp->mfrozen = 0;
79             /* may scare some monsters -- waiting monsters excluded */
80             if (!unique_corpstat(mtmp->data)
81                 && (mtmp->mstrategy & STRAT_WAITMASK) != 0)
82                 mtmp->mstrategy &= ~STRAT_WAITMASK;
83             else if (distm < distance / 3
84                      && !resist(mtmp, TOOL_CLASS, 0, NOTELL)
85                      /* some monsters are immune */
86                      && onscary(0, 0, mtmp))
87                 monflee(mtmp, 0, FALSE, TRUE);
88         }
89     }
90 }
91
92 /*
93  * Make monsters fall asleep.  Note that they may resist the spell.
94  */
95
96 STATIC_OVL void
97 put_monsters_to_sleep(distance)
98 int distance;
99 {
100     register struct monst *mtmp;
101
102     for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
103         if (DEADMONSTER(mtmp))
104             continue;
105         if (distu(mtmp->mx, mtmp->my) < distance
106             && sleep_monst(mtmp, d(10, 10), TOOL_CLASS)) {
107             mtmp->msleeping = 1; /* 10d10 turns + wake_nearby to rouse */
108             slept_monst(mtmp);
109         }
110     }
111 }
112
113 /*
114  * Charm snakes in range.  Note that the snakes are NOT tamed.
115  */
116
117 STATIC_OVL void
118 charm_snakes(distance)
119 int distance;
120 {
121     register struct monst *mtmp;
122     int could_see_mon, was_peaceful;
123
124     for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
125         if (DEADMONSTER(mtmp))
126             continue;
127         if (mtmp->data->mlet == S_SNAKE && mtmp->mcanmove
128             && distu(mtmp->mx, mtmp->my) < distance) {
129             was_peaceful = mtmp->mpeaceful;
130             mtmp->mpeaceful = 1;
131             mtmp->mavenge = 0;
132             mtmp->mstrategy &= ~STRAT_WAITMASK;
133             could_see_mon = canseemon(mtmp);
134             mtmp->mundetected = 0;
135             newsym(mtmp->mx, mtmp->my);
136             if (canseemon(mtmp)) {
137                 if (!could_see_mon)
138 /*JP
139                     You("notice %s, swaying with the music.", a_monnam(mtmp));
140 */
141                     You("%s\82ª\89¹\8ay\82É\8d\87\82í\82¹\82Ä\97h\82ê\82Ä\82¢\82é\82Ì\82É\8bC\95t\82¢\82½\81D", a_monnam(mtmp));
142                 else
143 #if 0 /*JP*/
144                     pline("%s freezes, then sways with the music%s.",
145                           Monnam(mtmp),
146                           was_peaceful ? "" : ", and now seems quieter");
147 #else
148                     pline("%s\82Í\97§\82¿\82·\82­\82Ý\81C\89¹\8ay\82É\8d\87\82í\82¹\82Ä\97h\82ê%s\82½\81D",
149                           Monnam(mtmp),
150                           was_peaceful ? "" : "\81C\82¨\82Æ\82È\82µ\82­\82È\82Á");
151 #endif
152             }
153         }
154     }
155 }
156
157 /*
158  * Calm nymphs in range.
159  */
160
161 STATIC_OVL void
162 calm_nymphs(distance)
163 int distance;
164 {
165     register struct monst *mtmp;
166
167     for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
168         if (DEADMONSTER(mtmp))
169             continue;
170         if (mtmp->data->mlet == S_NYMPH && mtmp->mcanmove
171             && distu(mtmp->mx, mtmp->my) < distance) {
172             mtmp->msleeping = 0;
173             mtmp->mpeaceful = 1;
174             mtmp->mavenge = 0;
175             mtmp->mstrategy &= ~STRAT_WAITMASK;
176             if (canseemon(mtmp))
177                 pline(
178 /*JP
179                     "%s listens cheerfully to the music, then seems quieter.",
180 */
181                     "%s\82Í\89¹\8ay\82É\95·\82«\82¢\82è\81C\82¨\82Æ\82È\82µ\82­\82È\82Á\82½\81D",
182                       Monnam(mtmp));
183         }
184     }
185 }
186
187 /* Awake soldiers anywhere the level (and any nearby monster). */
188 void
189 awaken_soldiers(bugler)
190 struct monst *bugler; /* monster that played instrument */
191 {
192     register struct monst *mtmp;
193     int distance, distm;
194
195     /* distance of affected non-soldier monsters to bugler */
196     distance = ((bugler == &youmonst) ? u.ulevel : bugler->data->mlevel) * 30;
197
198     for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
199         if (DEADMONSTER(mtmp))
200             continue;
201         if (is_mercenary(mtmp->data) && mtmp->data != &mons[PM_GUARD]) {
202             mtmp->mpeaceful = mtmp->msleeping = mtmp->mfrozen = 0;
203             mtmp->mcanmove = 1;
204             mtmp->mstrategy &= ~STRAT_WAITMASK;
205             if (canseemon(mtmp))
206 /*JP
207                 pline("%s is now ready for battle!", Monnam(mtmp));
208 */
209                 pline("%s\82Í\90í\82¢\82Ì\8f\80\94õ\82ª\90®\82Á\82½\81I", Monnam(mtmp));
210             else
211 /*JP
212                 Norep("You hear the rattle of battle gear being readied.");
213 */
214                 Norep("\82 \82È\82½\82Í\90í\82¢\82Ì\8f\80\94õ\82ª\90®\82Á\82½\82±\82Æ\82ð\8e¦\82·\89¹\82ð\95·\82¢\82½\81D");
215         } else if ((distm = ((bugler == &youmonst)
216                                  ? distu(mtmp->mx, mtmp->my)
217                                  : dist2(bugler->mx, bugler->my, mtmp->mx,
218                                          mtmp->my))) < distance) {
219             mtmp->msleeping = 0;
220             mtmp->mcanmove = 1;
221             mtmp->mfrozen = 0;
222             /* may scare some monsters -- waiting monsters excluded */
223             if (!unique_corpstat(mtmp->data)
224                 && (mtmp->mstrategy & STRAT_WAITMASK) != 0)
225                 mtmp->mstrategy &= ~STRAT_WAITMASK;
226             else if (distm < distance / 3
227                      && !resist(mtmp, TOOL_CLASS, 0, NOTELL))
228                 monflee(mtmp, 0, FALSE, TRUE);
229         }
230     }
231 }
232
233 /* Charm monsters in range.  Note that they may resist the spell.
234  * If swallowed, range is reduced to 0.
235  */
236 STATIC_OVL void
237 charm_monsters(distance)
238 int distance;
239 {
240     struct monst *mtmp, *mtmp2;
241
242     if (u.uswallow) {
243         if (!resist(u.ustuck, TOOL_CLASS, 0, NOTELL))
244             (void) tamedog(u.ustuck, (struct obj *) 0);
245     } else {
246         for (mtmp = fmon; mtmp; mtmp = mtmp2) {
247             mtmp2 = mtmp->nmon;
248             if (DEADMONSTER(mtmp))
249                 continue;
250
251             if (distu(mtmp->mx, mtmp->my) <= distance) {
252                 if (!resist(mtmp, TOOL_CLASS, 0, NOTELL))
253                     (void) tamedog(mtmp, (struct obj *) 0);
254             }
255         }
256     }
257 }
258
259 /* Generate earthquake :-) of desired force.
260  * That is:  create random chasms (pits).
261  */
262 STATIC_OVL void
263 do_earthquake(force)
264 int force;
265 {
266     register int x, y;
267     struct monst *mtmp;
268     struct obj *otmp;
269     struct trap *chasm, *trap_at_u = t_at(u.ux, u.uy);
270     int start_x, start_y, end_x, end_y;
271     schar filltype;
272     unsigned tu_pit = 0;
273
274     if (trap_at_u)
275         tu_pit = (trap_at_u->ttyp == PIT || trap_at_u->ttyp == SPIKED_PIT);
276     start_x = u.ux - (force * 2);
277     start_y = u.uy - (force * 2);
278     end_x = u.ux + (force * 2);
279     end_y = u.uy + (force * 2);
280     if (start_x < 1)
281         start_x = 1;
282     if (start_y < 1)
283         start_y = 1;
284     if (end_x >= COLNO)
285         end_x = COLNO - 1;
286     if (end_y >= ROWNO)
287         end_y = ROWNO - 1;
288     for (x = start_x; x <= end_x; x++)
289         for (y = start_y; y <= end_y; y++) {
290             if ((mtmp = m_at(x, y)) != 0) {
291                 wakeup(mtmp, TRUE); /* peaceful monster will become hostile */
292                 if (mtmp->mundetected && is_hider(mtmp->data)) {
293                     mtmp->mundetected = 0;
294                     if (cansee(x, y))
295 /*JP
296                         pline("%s is shaken loose from the ceiling!",
297 */
298                         pline("%s\82Í\97h\82·\82ç\82ê\81C\93V\88ä\82©\82ç\97\8e\82¿\82Ä\82«\82½\81I",
299                               Amonnam(mtmp));
300                     else
301 /*JP
302                         You_hear("a thumping sound.");
303 */
304                         You_hear("\83h\83\93\83h\83\93\82Æ\82¢\82¤\89¹\82ð\95·\82¢\82½\81D");
305                     if (x == u.ux && y == u.uy)
306 /*JP
307                         You("easily dodge the falling %s.", mon_nam(mtmp));
308 */
309                         You("\97\8e\82¿\82Ä\82«\82½%s\82ð\8aÈ\92P\82É\82©\82í\82µ\82½\81D", mon_nam(mtmp));
310                     newsym(x, y);
311                 }
312             }
313             if (!rn2(14 - force))
314                 switch (levl[x][y].typ) {
315                 case FOUNTAIN: /* Make the fountain disappear */
316                     if (cansee(x, y))
317 /*JP
318                         pline_The("fountain falls into a chasm.");
319 */
320                         pline("\90ò\82Í\92n\8a\84\82ê\82É\97\8e\82¿\82½\81D");
321                     goto do_pit;
322                 case SINK:
323                     if (cansee(x, y))
324 /*JP
325                         pline_The("kitchen sink falls into a chasm.");
326 */
327                         pline("\97¬\82µ\91ä\82Í\92n\8a\84\82ê\82É\97\8e\82¿\82½\81D");
328                     goto do_pit;
329                 case ALTAR:
330                     if (Is_astralevel(&u.uz) || Is_sanctum(&u.uz))
331                         break;
332
333                     if (cansee(x, y))
334 /*JP
335                         pline_The("altar falls into a chasm.");
336 */
337                         pline("\8dÕ\92d\82Í\92n\8a\84\82ê\82É\97\8e\82¿\82½\81D");
338                     goto do_pit;
339                 case GRAVE:
340                     if (cansee(x, y))
341 /*JP
342                         pline_The("headstone topples into a chasm.");
343 */
344                         pline("\95æ\90Î\82Í\95ö\82ê\82³\82Á\82½\81D");
345                     goto do_pit;
346                 case THRONE:
347                     if (cansee(x, y))
348 /*JP
349                         pline_The("throne falls into a chasm.");
350 */
351                         pline("\8bÊ\8dÀ\82Í\92n\8a\84\82ê\82É\97\8e\82¿\82½\81D");
352                     /*FALLTHRU*/
353                 case ROOM:
354                 case CORR: /* Try to make a pit */
355                 do_pit:
356                     chasm = maketrap(x, y, PIT);
357                     if (!chasm)
358                         break; /* no pit if portal at that location */
359                     chasm->tseen = 1;
360
361                     levl[x][y].doormask = 0;
362                     /*
363                      * Let liquid flow into the newly created chasm.
364                      * Adjust corresponding code in apply.c for
365                      * exploding wand of digging if you alter this sequence.
366                      */
367                     filltype = fillholetyp(x, y, FALSE);
368                     if (filltype != ROOM) {
369                         levl[x][y].typ = filltype;
370                         liquid_flow(x, y, filltype, chasm, (char *) 0);
371                     }
372
373                     mtmp = m_at(x, y);
374
375                     if ((otmp = sobj_at(BOULDER, x, y)) != 0) {
376                         if (cansee(x, y))
377 #if 0 /*JP*/
378                             pline("KADOOM! The boulder falls into a chasm%s!",
379                                   ((x == u.ux) && (y == u.uy)) ? " below you"
380                                                                : "");
381 #else
382                             pline("\83h\83h\81[\83\93\81I\8aâ\82Í%s\92n\8a\84\82ê\82É\97\8e\82¿\82½\81I",
383                                   ((x == u.ux) && (y == u.uy)) ? "\82 \82È\82½\82Ì\89º\82Ì"
384                                                                : "");
385 #endif
386                         if (mtmp)
387                             mtmp->mtrapped = 0;
388                         obj_extract_self(otmp);
389                         (void) flooreffects(otmp, x, y, "");
390                         break;
391                     }
392
393                     /* We have to check whether monsters or player
394                        falls in a chasm... */
395                     if (mtmp) {
396                         if (!is_flyer(mtmp->data)
397                             && !is_clinger(mtmp->data)) {
398                             boolean m_already_trapped = mtmp->mtrapped;
399                             mtmp->mtrapped = 1;
400                             if (!m_already_trapped) { /* suppress messages */
401                                 if (cansee(x, y))
402 /*JP
403                                     pline("%s falls into a chasm!",
404 */
405                                     pline("%s\82Í\92n\8a\84\82ê\82É\97\8e\82¿\82½\81I",
406                                           Monnam(mtmp));
407                                 else if (humanoid(mtmp->data))
408 /*JP
409                                     You_hear("a scream!");
410 */
411                                     You_hear("\8b©\82Ñ\90º\82ð\95·\82¢\82½\81I");
412                             }
413                             /* Falling is okay for falling down
414                                 within a pit from jostling too */
415 /*JP
416                             mselftouch(mtmp, "Falling, ", TRUE);
417 */
418                             mselftouch(mtmp, "\97\8e\89º\92\86\81C", TRUE);
419                             if (mtmp->mhp > 0) {
420                                 mtmp->mhp -= rnd(m_already_trapped ? 4 : 6);
421                                 if (mtmp->mhp <= 0) {
422                                     if (!cansee(x, y)) {
423 /*JP
424                                         pline("It is destroyed!");
425 */
426                                         pline("\89½\8eÒ\82©\82Í\8e\80\82ñ\82¾\81I");
427                                     } else {
428 #if 0 /*JP*/
429                                         You("destroy %s!",
430                                             mtmp->mtame
431                                               ? x_monnam(mtmp, ARTICLE_THE,
432                                                          "poor",
433                                                          has_mname(mtmp)
434                                                            ? SUPPRESS_SADDLE
435                                                            : 0,
436                                                          FALSE)
437                                               : mon_nam(mtmp));
438 #else /*JP:TODO \83T\83h\83\8b\8aÖ\98A\82Í\96¢\8f\88\97\9d */
439                                         pline("%s%s\82Í\8e\80\82ñ\82¾\81I",
440                                               mtmp->mtame
441                                               ? "\82©\82í\82¢\82»\82¤\82È" : "",
442                                               mon_nam(mtmp));
443 #endif
444                                     }
445                                     xkilled(mtmp, XKILL_NOMSG);
446                                 }
447                             }
448                         }
449                     } else if (x == u.ux && y == u.uy) {
450                         if (Levitation || Flying
451                             || is_clinger(youmonst.data)) {
452                             if (!tu_pit) { /* no pit here previously */
453 /*JP
454                                 pline("A chasm opens up under you!");
455 */
456                                 pline("\92n\8a\84\82ê\82ª\91«\8c³\82É\8aJ\82¢\82½\81I");
457 /*JP
458                                 You("don't fall in!");
459 */
460                                 You("\97\8e\82¿\82È\82©\82Á\82½\81I");
461                             }
462                         } else if (!tu_pit || !u.utrap
463                                    || (u.utrap && u.utraptype != TT_PIT)) {
464                             /* no pit here previously, or you were
465                                not in it even it there was */
466 /*JP
467                             You("fall into a chasm!");
468 */
469                             You("\92n\8a\84\82ê\82É\97\8e\82¿\82½\81I");
470                             u.utrap = rn1(6, 2);
471                             u.utraptype = TT_PIT;
472 #if 0 /*JP*/
473                             losehp(Maybe_Half_Phys(rnd(6)),
474                                    "fell into a chasm", NO_KILLER_PREFIX);
475 #else
476                             losehp(Maybe_Half_Phys(rnd(6)),
477                                    "\92n\8a\84\82ê\82É\97\8e\82¿\82Ä", KILLED_BY);
478 #endif
479 /*JP
480                             selftouch("Falling, you");
481 */
482                             selftouch("\97\8e\82¿\82È\82ª\82ç\81C\82 \82È\82½\82Í");
483                         } else if (u.utrap && u.utraptype == TT_PIT) {
484                             boolean keepfooting =
485                                 ((Fumbling && !rn2(5))
486                                  || (!rnl(Role_if(PM_ARCHEOLOGIST) ? 3 : 9))
487                                  || ((ACURR(A_DEX) > 7) && rn2(5)));
488 /*JP
489                             You("are jostled around violently!");
490 */
491                             You("\97\90\96\\82É\89\9f\82µ\82Ì\82¯\82ç\82ê\82½\81I");
492                             u.utrap = rn1(6, 2);
493                             u.utraptype = TT_PIT; /* superfluous */
494 #if 0 /*JP*/
495                             losehp(Maybe_Half_Phys(rnd(keepfooting ? 2 : 4)),
496                                    "hurt in a chasm", NO_KILLER_PREFIX);
497 #else
498                             losehp(Maybe_Half_Phys(rnd(keepfooting ? 2 : 4)),
499                                    "\92n\8a\84\82ê\82Å\8f\9d\82Â\82¢\82Ä", KILLED_BY);
500 #endif
501                             if (keepfooting)
502                                 exercise(A_DEX, TRUE);
503                             else
504 #if 0 /*JP*/
505                                 selftouch(
506                                     (Upolyd && (slithy(youmonst.data)
507                                                 || nolimbs(youmonst.data)))
508                                         ? "Shaken, you"
509                                         : "Falling down, you");
510 #else
511                                 selftouch(
512                                     (Upolyd && (slithy(youmonst.data)
513                                                 || nolimbs(youmonst.data)))
514                                         ? "\97h\82³\82Ô\82ç\82ê\82Ä\81C\82 \82È\82½\82Í"
515                                         : "\97\8e\82¿\82È\82ª\82ç\81C\82 \82È\82½\82Í");
516 #endif
517                         }
518                     } else
519                         newsym(x, y);
520                     break;
521                 case DOOR: /* Make the door collapse */
522                     if (levl[x][y].doormask == D_NODOOR)
523                         goto do_pit;
524                     if (cansee(x, y))
525 /*JP
526                         pline_The("door collapses.");
527 */
528                         pline_The("\94à\82Í\82±\82È\82²\82È\82É\82È\82Á\82½\81D");
529                     if (*in_rooms(x, y, SHOPBASE))
530                         add_damage(x, y, 0L);
531                     levl[x][y].doormask = D_NODOOR;
532                     unblock_point(x, y);
533                     newsym(x, y);
534                     break;
535                 }
536         }
537 }
538
539 const char *
540 generic_lvl_desc()
541 {
542     if (Is_astralevel(&u.uz))
543         return "astral plane";
544     else if (In_endgame(&u.uz))
545         return "plane";
546     else if (Is_sanctum(&u.uz))
547         return "sanctum";
548     else if (In_sokoban(&u.uz))
549         return "puzzle";
550     else if (In_V_tower(&u.uz))
551         return "tower";
552     else
553         return "dungeon";
554 }
555
556 /*
557  * The player is trying to extract something from his/her instrument.
558  */
559 STATIC_OVL int
560 do_improvisation(instr)
561 struct obj *instr;
562 {
563     int damage, mode, do_spec = !(Stunned || Confusion);
564     struct obj itmp;
565
566     itmp = *instr;
567     itmp.oextra = (struct oextra *) 0; /* ok on this copy as instr maintains
568                                           the ptr to free at some point if
569                                           there is one */
570
571     /* if won't yield special effect, make sound of mundane counterpart */
572     if (!do_spec || instr->spe <= 0)
573         while (objects[itmp.otyp].oc_magic)
574             itmp.otyp -= 1;
575 #ifdef MAC
576     mac_speaker(&itmp, "C");
577 #endif
578 #ifdef AMIGA
579     amii_speaker(&itmp, "Cw", AMII_OKAY_VOLUME);
580 #endif
581 #ifdef VPIX_MUSIC
582     if (sco_flag_console)
583         speaker(&itmp, "C");
584 #endif
585 #ifdef PCMUSIC
586     pc_speaker(&itmp, "C");
587 #endif
588
589 #define PLAY_NORMAL   0x00
590 #define PLAY_STUNNED  0x01
591 #define PLAY_CONFUSED 0x02
592 #define PLAY_HALLU    0x04
593     mode = PLAY_NORMAL;
594     if (Stunned)
595         mode |= PLAY_STUNNED;
596     if (Confusion)
597         mode |= PLAY_CONFUSED;
598     if (Hallucination)
599         mode |= PLAY_HALLU;
600
601     switch (mode) {
602     case PLAY_NORMAL:
603 /*JP
604         You("start playing %s.", yname(instr));
605 */
606         You("%s\82ð\91t\82Å\82Í\82\82ß\82½\81D", yname(instr));
607         break;
608     case PLAY_STUNNED:
609 /*JP
610         You("produce an obnoxious droning sound.");
611 */
612         break;
613     case PLAY_CONFUSED:
614         You("produce a raucous noise.");
615         break;
616     case PLAY_HALLU:
617         You("produce a kaleidoscopic display of floating butterfiles.");
618         break;
619     /* TODO? give some or all of these combinations their own feedback;
620        hallucination ones should reference senses other than hearing... */
621     case PLAY_STUNNED | PLAY_CONFUSED:
622     case PLAY_STUNNED | PLAY_HALLU:
623     case PLAY_CONFUSED | PLAY_HALLU:
624     case PLAY_STUNNED | PLAY_CONFUSED | PLAY_HALLU:
625     default:
626 /*JP
627         pline("What you produce is quite far from music...");
628 */
629         pline("\82 \82È\82½\82ª\91t\82Å\82½\82à\82Ì\82Í\89¹\8ay\82Æ\82Í\82Æ\82Ä\82à\8cÄ\82×\82È\82¢\81D\81D\81D");
630         break;
631     }
632 #undef PLAY_NORMAL
633 #undef PLAY_STUNNED
634 #undef PLAY_CONFUSED
635 #undef PLAY_HALLU
636
637     switch (itmp.otyp) { /* note: itmp.otyp might differ from instr->otyp */
638     case MAGIC_FLUTE: /* Make monster fall asleep */
639         consume_obj_charge(instr, TRUE);
640
641 /*JP
642             You("produce %s music.", Hallucination ? "piped" : "soft");
643 */
644             You("%s\82ð\91t\82Å\82½\81D", Hallucination ? "\82a\82f\82l" : "\93î\82ç\82©\82¢\8bÈ");
645         put_monsters_to_sleep(u.ulevel * 5);
646         exercise(A_DEX, TRUE);
647         break;
648     case WOODEN_FLUTE: /* May charm snakes */
649         do_spec &= (rn2(ACURR(A_DEX)) + u.ulevel > 25);
650 /*JP
651         pline("%s.", Tobjnam(instr, do_spec ? "trill" : "toot"));
652 */
653         pline("%s\82ð%s\82½\81D", xname(instr), do_spec ? "\91t\82Å" : "\90\81\82¢");
654         if (do_spec)
655             charm_snakes(u.ulevel * 3);
656         exercise(A_DEX, TRUE);
657         break;
658     case FIRE_HORN:  /* Idem wand of fire */
659     case FROST_HORN: /* Idem wand of cold */
660         consume_obj_charge(instr, TRUE);
661
662         if (!getdir((char *) 0)) {
663 /*JP
664                 pline("%s.", Tobjnam(instr, "vibrate"));
665 */
666                 pline("%s\82Í\90k\82¦\82½\81D", xname(instr));
667             break;
668         } else if (!u.dx && !u.dy && !u.dz) {
669             if ((damage = zapyourself(instr, TRUE)) != 0) {
670                 char buf[BUFSZ];
671
672 /*JP
673                     Sprintf(buf, "using a magical horn on %sself", uhim());
674 */
675                     Strcpy(buf, "\8e©\95ª\8e©\90g\82Ì\96\82\96@\82Ì\83z\83\8b\83\93\82Ì\97Í\82ð\97\81\82Ñ\82Ä");
676                 losehp(damage, buf, KILLED_BY); /* fire or frost damage */
677             }
678         } else {
679             buzz((instr->otyp == FROST_HORN) ? AD_COLD - 1 : AD_FIRE - 1,
680                  rn1(6, 6), u.ux, u.uy, u.dx, u.dy);
681         }
682         makeknown(instr->otyp);
683         break;
684     case TOOLED_HORN: /* Awaken or scare monsters */
685 /*JP
686         You("produce a frightful, grave sound.");
687 */
688         You("\90g\90k\82¢\82·\82é\82æ\82¤\82È\8e\80\8eÒ\82Ì\89¹\8ay\82ð\91t\82Å\82½\81D");
689         awaken_monsters(u.ulevel * 30);
690         exercise(A_WIS, FALSE);
691         break;
692     case BUGLE: /* Awaken & attract soldiers */
693 /*JP
694         You("extract a loud noise from %s.", yname(instr));
695 */
696         You("%s\82©\82ç\91å\82«\82È\8e¨\8fá\82è\82È\89¹\82ð\8fo\82µ\82½\81D", yname(instr));
697         awaken_soldiers(&youmonst);
698         exercise(A_WIS, FALSE);
699         break;
700     case MAGIC_HARP: /* Charm monsters */
701         consume_obj_charge(instr, TRUE);
702
703 /*JP
704             pline("%s very attractive music.", Tobjnam(instr, "produce"));
705 */
706             pline("%s\82Í\82Æ\82Ä\82à\96£\97Í\93I\82È\89¹\8ay\82ð\91t\82Å\82½\81D", xname(instr));
707         charm_monsters((u.ulevel - 1) / 3 + 1);
708         exercise(A_DEX, TRUE);
709         break;
710     case WOODEN_HARP: /* May calm Nymph */
711         do_spec &= (rn2(ACURR(A_DEX)) + u.ulevel > 25);
712 #if 0 /*JP*/
713         pline("%s %s.", Yname2(instr),
714               do_spec ? "produces a lilting melody" : "twangs");
715 #else
716         You("%s\81D", 
717             do_spec ? "\8cy\89õ\82È\89¹\8ay\82ð\91t\82Å\82½" : "\83|\83\8d\81[\83\93\82Æ\82¢\82¤\89¹\82ð\8fo\82µ\82½");
718 #endif
719         if (do_spec)
720             calm_nymphs(u.ulevel * 3);
721         exercise(A_DEX, TRUE);
722         break;
723     case DRUM_OF_EARTHQUAKE: /* create several pits */
724         consume_obj_charge(instr, TRUE);
725
726 /*JP
727             You("produce a heavy, thunderous rolling!");
728 */
729             You("\8fd\8cú\82È\97\8b\82Ì\82æ\82¤\82È\89¹\82ð\91t\82Å\82½\81I");
730 /*JP
731         pline_The("entire %s is shaking around you!", generic_lvl_desc());
732 */
733         pline("\82 \82È\82½\82Ì\89ñ\82è\82Ì%s\82ª\97h\82ê\82½\81I", generic_lvl_desc());
734         do_earthquake((u.ulevel - 1) / 3 + 1);
735         /* shake up monsters in a much larger radius... */
736         awaken_monsters(ROWNO * COLNO);
737         makeknown(DRUM_OF_EARTHQUAKE);
738         break;
739     case LEATHER_DRUM: /* Awaken monsters */
740 /*JP
741         You("beat a deafening row!");
742 */
743         You("\8e¨\82ª\95·\82±\82¦\82È\82­\82È\82é\82­\82ç\82¢\92@\82¢\82½\81I");
744         awaken_monsters(u.ulevel * 40);
745         incr_itimeout(&HDeaf, rn1(20, 30));
746         exercise(A_WIS, FALSE);
747         context.botl = TRUE;
748         break;
749     default:
750         impossible("What a weird instrument (%d)!", instr->otyp);
751         return 0;
752     }
753     return 2; /* That takes time */
754 }
755
756 /*
757  * So you want music...
758  */
759 int
760 do_play_instrument(instr)
761 struct obj *instr;
762 {
763     char buf[BUFSZ] = DUMMY, c = 'y';
764     char *s;
765     int x, y;
766     boolean ok;
767
768     if (Underwater) {
769 /*JP
770         You_cant("play music underwater!");
771 */
772         You("\90\85\82Ì\92\86\82Å\82Í\89¹\8ay\82ð\91t\82Å\82ç\82ê\82È\82¢\81I");
773         return 0;
774     } else if ((instr->otyp == WOODEN_FLUTE || instr->otyp == MAGIC_FLUTE
775                 || instr->otyp == TOOLED_HORN || instr->otyp == FROST_HORN
776                 || instr->otyp == FIRE_HORN || instr->otyp == BUGLE)
777                && !can_blow(&youmonst)) {
778 /*JP
779         You("are incapable of playing %s.", the(distant_name(instr, xname)));
780 */
781         You("%s\82ð\89\89\91t\82·\82é\94\\97Í\82ª\82È\82¢\81D", the(distant_name(instr, xname)));
782         return 0;
783     }
784     if (instr->otyp != LEATHER_DRUM && instr->otyp != DRUM_OF_EARTHQUAKE
785         && !(Stunned || Confusion || Hallucination)) {
786 /*JP
787         c = ynq("Improvise?");
788 */
789         c = ynq("\91¦\8b»\82Å\89\89\91t\82·\82é\81H");
790         if (c == 'q')
791             goto nevermind;
792     }
793
794     if (c == 'n') {
795         if (u.uevent.uheard_tune == 2)
796 /*JP
797             c = ynq("Play the passtune?");
798 */
799             c = ynq("\83R\81[\83h\82ð\89\89\91t\82·\82é\81H");
800         if (c == 'q') {
801             goto nevermind;
802         } else if (c == 'y') {
803             Strcpy(buf, tune);
804         } else {
805 /*JP
806             getlin("What tune are you playing? [5 notes, A-G]", buf);
807 */
808             getlin("\82Ç\82Ì\82æ\82¤\82È\92²\82×\82ð\89\89\91t\82µ\82Ü\82·\82©\81H[A-G \82©\82ç5\89¹\82ð\82¢\82ê\82Ä\82Ë]", buf);
809             (void) mungspaces(buf);
810             if (*buf == '\033')
811                 goto nevermind;
812
813             /* convert to uppercase and change any "H" to the expected "B" */
814             for (s = buf; *s; s++) {
815 #ifndef AMIGA
816                 *s = highc(*s);
817 #else
818                 /* The AMIGA supports two octaves of notes */
819                 if (*s == 'h')
820                     *s = 'b';
821 #endif
822                 if (*s == 'H')
823                     *s = 'B';
824             }
825         }
826 /*JP
827         You("extract a strange sound from %s!", the(xname(instr)));
828 */
829         You("%s\82©\82ç\8aï\96­\82È\89¹\82ð\8fo\82µ\82½\81I", the(xname(instr)));
830 #ifdef UNIX386MUSIC
831         /* if user is at the console, play through the console speaker */
832         if (atconsole())
833             speaker(instr, buf);
834 #endif
835 #ifdef VPIX_MUSIC
836         if (sco_flag_console)
837             speaker(instr, buf);
838 #endif
839 #ifdef MAC
840         mac_speaker(instr, buf);
841 #endif
842 #ifdef PCMUSIC
843         pc_speaker(instr, buf);
844 #endif
845 #ifdef AMIGA
846         {
847             char nbuf[20];
848             int i;
849
850             for (i = 0; buf[i] && i < 5; ++i) {
851                 nbuf[i * 2] = buf[i];
852                 nbuf[(i * 2) + 1] = 'h';
853             }
854             nbuf[i * 2] = 0;
855             amii_speaker(instr, nbuf, AMII_OKAY_VOLUME);
856         }
857 #endif
858         /* Check if there was the Stronghold drawbridge near
859          * and if the tune conforms to what we're waiting for.
860          */
861         if (Is_stronghold(&u.uz)) {
862             exercise(A_WIS, TRUE); /* just for trying */
863             if (!strcmp(buf, tune)) {
864                 /* Search for the drawbridge */
865                 for (y = u.uy - 1; y <= u.uy + 1; y++)
866                     for (x = u.ux - 1; x <= u.ux + 1; x++)
867                         if (isok(x, y))
868                             if (find_drawbridge(&x, &y)) {
869                                 u.uevent.uheard_tune =
870                                     2; /* tune now fully known */
871                                 if (levl[x][y].typ == DRAWBRIDGE_DOWN)
872                                     close_drawbridge(x, y);
873                                 else
874                                     open_drawbridge(x, y);
875                                 return 1;
876                             }
877             } else if (!Deaf) {
878                 if (u.uevent.uheard_tune < 1)
879                     u.uevent.uheard_tune = 1;
880                 /* Okay, it wasn't the right tune, but perhaps
881                  * we can give the player some hints like in the
882                  * Mastermind game */
883                 ok = FALSE;
884                 for (y = u.uy - 1; y <= u.uy + 1 && !ok; y++)
885                     for (x = u.ux - 1; x <= u.ux + 1 && !ok; x++)
886                         if (isok(x, y))
887                             if (IS_DRAWBRIDGE(levl[x][y].typ)
888                                 || is_drawbridge_wall(x, y) >= 0)
889                                 ok = TRUE;
890                 if (ok) { /* There is a drawbridge near */
891                     int tumblers, gears;
892                     boolean matched[5];
893
894                     tumblers = gears = 0;
895                     for (x = 0; x < 5; x++)
896                         matched[x] = FALSE;
897
898                     for (x = 0; x < (int) strlen(buf); x++)
899                         if (x < 5) {
900                             if (buf[x] == tune[x]) {
901                                 gears++;
902                                 matched[x] = TRUE;
903                             } else
904                                 for (y = 0; y < 5; y++)
905                                     if (!matched[y] && buf[x] == tune[y]
906                                         && buf[y] != tune[y]) {
907                                         tumblers++;
908                                         matched[y] = TRUE;
909                                         break;
910                                     }
911                         }
912                     if (tumblers)
913                         if (gears)
914 #if 0 /*JP*/
915                             You_hear("%d tumbler%s click and %d gear%s turn.",
916                                      tumblers, plur(tumblers), gears,
917                                      plur(gears));
918 #else
919                             You_hear("%d\82Ì\8bà\8bï\82ª\83J\83`\82Á\82Æ\82È\82è\81C%d\82Ì\8e\95\8eÔ\82ª\82Ü\82í\82é\89¹\82ð\95·\82¢\82½\81D",
920                                 tumblers, gears);
921 #endif
922                         else
923 #if 0 /*JP*/
924                             You_hear("%d tumbler%s click.", tumblers,
925                                      plur(tumblers));
926 #else
927                             You_hear("%d\82Ì\8bà\8bï\82ª\83J\83`\82Á\82Æ\82È\82é\89¹\82ð\95·\82¢\82½\81D",
928                                      tumblers);
929 #endif
930                     else if (gears) {
931 /*JP
932                         You_hear("%d gear%s turn.", gears, plur(gears));
933 */
934                         You_hear("%d\82Ì\8e\95\8eÔ\82ª\89ñ\82é\89¹\82ð\95·\82¢\82½\81D", gears);
935                         /* could only get `gears == 5' by playing five
936                            correct notes followed by excess; otherwise,
937                            tune would have matched above */
938                         if (gears == 5)
939                             u.uevent.uheard_tune = 2;
940                     }
941                 }
942             }
943         }
944         return 1;
945     } else
946         return do_improvisation(instr);
947
948 nevermind:
949     pline1(Never_mind);
950     return 0;
951 }
952
953 #ifdef UNIX386MUSIC
954 /*
955  * Play audible music on the machine's speaker if appropriate.
956  */
957
958 STATIC_OVL int
959 atconsole()
960 {
961     /*
962      * Kluge alert: This code assumes that your [34]86 has no X terminals
963      * attached and that the console tty type is AT386 (this is always true
964      * under AT&T UNIX for these boxen). The theory here is that your remote
965      * ttys will have terminal type `ansi' or something else other than
966      * `AT386' or `xterm'. We'd like to do better than this, but testing
967      * to see if we're running on the console physical terminal is quite
968      * difficult given the presence of virtual consoles and other modern
969      * UNIX impedimenta...
970      */
971     char *termtype = nh_getenv("TERM");
972
973 /*JP
974     return (!strcmp(termtype, "AT386") || !strcmp(termtype, "xterm"));
975 */
976     return (!strcmp(termtype, "AT386") || !strcmp(termtype, "xterm") || !strcmp(termtype, "kterm"));
977 }
978
979 STATIC_OVL void
980 speaker(instr, buf)
981 struct obj *instr;
982 char *buf;
983 {
984     /*
985      * For this to work, you need to have installed the PD speaker-control
986      * driver for PC-compatible UNIX boxes that I (esr@snark.thyrsus.com)
987      * posted to comp.sources.unix in Feb 1990.  A copy should be included
988      * with your nethack distribution.
989      */
990     int fd;
991
992     if ((fd = open("/dev/speaker", 1)) != -1) {
993         /* send a prefix to modify instrumental `timbre' */
994         switch (instr->otyp) {
995         case WOODEN_FLUTE:
996         case MAGIC_FLUTE:
997             (void) write(fd, ">ol", 1); /* up one octave & lock */
998             break;
999         case TOOLED_HORN:
1000         case FROST_HORN:
1001         case FIRE_HORN:
1002             (void) write(fd, "<<ol", 2); /* drop two octaves & lock */
1003             break;
1004         case BUGLE:
1005             (void) write(fd, "ol", 2); /* octave lock */
1006             break;
1007         case WOODEN_HARP:
1008         case MAGIC_HARP:
1009             (void) write(fd, "l8mlol", 4); /* fast, legato, octave lock */
1010             break;
1011         }
1012         (void) write(fd, buf, strlen(buf));
1013         (void) nhclose(fd);
1014     }
1015 }
1016 #endif /* UNIX386MUSIC */
1017
1018 #ifdef VPIX_MUSIC
1019
1020 #if 0
1021 #include <sys/types.h>
1022 #include <sys/console.h>
1023 #include <sys/vtkd.h>
1024 #else
1025 #define KIOC ('K' << 8)
1026 #define KDMKTONE (KIOC | 8)
1027 #endif
1028
1029 #define noDEBUG
1030
1031 /* emit tone of frequency hz for given number of ticks */
1032 STATIC_OVL void
1033 tone(hz, ticks)
1034 unsigned int hz, ticks;
1035 {
1036     ioctl(0, KDMKTONE, hz | ((ticks * 10) << 16));
1037 #ifdef DEBUG
1038     printf("TONE: %6d %6d\n", hz, ticks * 10);
1039 #endif
1040     nap(ticks * 10);
1041 }
1042
1043 /* rest for given number of ticks */
1044 STATIC_OVL void
1045 rest(ticks)
1046 int ticks;
1047 {
1048     nap(ticks * 10);
1049 #ifdef DEBUG
1050     printf("REST:        %6d\n", ticks * 10);
1051 #endif
1052 }
1053
1054 #include "interp.c" /* from snd86unx.shr */
1055
1056 STATIC_OVL void
1057 speaker(instr, buf)
1058 struct obj *instr;
1059 char *buf;
1060 {
1061     /* emit a prefix to modify instrumental `timbre' */
1062     playinit();
1063     switch (instr->otyp) {
1064     case WOODEN_FLUTE:
1065     case MAGIC_FLUTE:
1066         playstring(">ol", 1); /* up one octave & lock */
1067         break;
1068     case TOOLED_HORN:
1069     case FROST_HORN:
1070     case FIRE_HORN:
1071         playstring("<<ol", 2); /* drop two octaves & lock */
1072         break;
1073     case BUGLE:
1074         playstring("ol", 2); /* octave lock */
1075         break;
1076     case WOODEN_HARP:
1077     case MAGIC_HARP:
1078         playstring("l8mlol", 4); /* fast, legato, octave lock */
1079         break;
1080     }
1081     playstring(buf, strlen(buf));
1082 }
1083
1084 #ifdef VPIX_DEBUG
1085 main(argc, argv)
1086 int argc;
1087 char *argv[];
1088 {
1089     if (argc == 2) {
1090         playinit();
1091         playstring(argv[1], strlen(argv[1]));
1092     }
1093 }
1094 #endif
1095 #endif /* VPIX_MUSIC */
1096
1097 /*music.c*/