OSDN Git Service

set trivial flags
[jnethack/source.git] / src / rumors.c
1 /* NetHack 3.6  rumors.c        $NHDT-Date: 1545132266 2018/12/18 11:24:26 $  $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.34 $ */
2 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3 /*-Copyright (c) Robert Patrick Rankin, 2012. */
4 /* NetHack may be freely redistributed.  See license for details. */
5
6 /* JNetHack Copyright */
7 /* (c) Issei Numata, Naoki Hamada, Shigehiro Miyashita, 1994-2000  */
8 /* For 3.4-, Copyright (c) SHIRAKATA Kentaro, 2002-2019            */
9 /* JNetHack may be freely redistributed.  See license for details. */
10
11 #include "hack.h"
12 #include "lev.h"
13 #include "dlb.h"
14
15 /*      [note: this comment is fairly old, but still accurate for 3.1]
16  * Rumors have been entirely rewritten to speed up the access.  This is
17  * essential when working from floppies.  Using fseek() the way that's done
18  * here means rumors following longer rumors are output more often than those
19  * following shorter rumors.  Also, you may see the same rumor more than once
20  * in a particular game (although the odds are highly against it), but
21  * this also happens with real fortune cookies.  -dgk
22  */
23
24 /*      3.6
25  * The rumors file consists of a "do not edit" line, then a line containing
26  * three sets of three counts (first two in decimal, third in hexadecimal).
27  * The first set has the number of true rumors, the count in bytes for all
28  * true rumors, and the file offset to the first one.  The second set has
29  * the same group of numbers for the false rumors.  The third set has 0 for
30  * count, 0 for size, and the file offset for end-of-file.  The offset of
31  * the first true rumor plus the size of the true rumors matches the offset
32  * of the first false rumor.  Likewise, the offset of the first false rumor
33  * plus the size of the false rumors matches the offset for end-of-file.
34  */
35
36 /*      3.1     [now obsolete for rumors but still accurate for oracles]
37  * The rumors file consists of a "do not edit" line, a hexadecimal number
38  * giving the number of bytes of useful/true rumors, followed by those
39  * true rumors (one per line), followed by the useless/false/misleading/cute
40  * rumors (also one per line).  Number of bytes of untrue rumors is derived
41  * via fseek(EOF)+ftell().
42  *
43  * The oracles file consists of a "do not edit" comment, a decimal count N
44  * and set of N+1 hexadecimal fseek offsets, followed by N multiple-line
45  * records, separated by "---" lines.  The first oracle is a special case,
46  * and placed there by 'makedefs'.
47  */
48
49 STATIC_DCL void FDECL(init_rumors, (dlb *));
50 STATIC_DCL void FDECL(init_oracles, (dlb *));
51 STATIC_DCL void FDECL(couldnt_open_file, (const char *));
52
53 /* rumor size variables are signed so that value -1 can be used as a flag */
54 static long true_rumor_size = 0L, false_rumor_size;
55 /* rumor start offsets are unsigned because they're handled via %lx format */
56 static unsigned long true_rumor_start, false_rumor_start;
57 /* rumor end offsets are signed because they're compared with [dlb_]ftell() */
58 static long true_rumor_end, false_rumor_end;
59 /* oracles are handled differently from rumors... */
60 static int oracle_flg = 0; /* -1=>don't use, 0=>need init, 1=>init done */
61 static unsigned oracle_cnt = 0;
62 static unsigned long *oracle_loc = 0;
63
64 STATIC_OVL void
65 init_rumors(fp)
66 dlb *fp;
67 {
68     static const char rumors_header[] = "%d,%ld,%lx;%d,%ld,%lx;0,0,%lx\n";
69     int true_count, false_count; /* in file but not used here */
70     unsigned long eof_offset;
71     char line[BUFSZ];
72
73     (void) dlb_fgets(line, sizeof line, fp); /* skip "don't edit" comment */
74     (void) dlb_fgets(line, sizeof line, fp);
75     if (sscanf(line, rumors_header, &true_count, &true_rumor_size,
76                &true_rumor_start, &false_count, &false_rumor_size,
77                &false_rumor_start, &eof_offset) == 7
78         && true_rumor_size > 0L
79         && false_rumor_size > 0L) {
80         true_rumor_end = (long) true_rumor_start + true_rumor_size;
81         /* assert( true_rumor_end == false_rumor_start ); */
82         false_rumor_end = (long) false_rumor_start + false_rumor_size;
83         /* assert( false_rumor_end == eof_offset ); */
84     } else {
85         true_rumor_size = -1L; /* init failed */
86         (void) dlb_fclose(fp);
87     }
88 }
89
90 /* exclude_cookie is a hack used because we sometimes want to get rumors in a
91  * context where messages such as "You swallowed the fortune!" that refer to
92  * cookies should not appear.  This has no effect for true rumors since none
93  * of them contain such references anyway.
94  */
95 char *
96 getrumor(truth, rumor_buf, exclude_cookie)
97 int truth; /* 1=true, -1=false, 0=either */
98 char *rumor_buf;
99 boolean exclude_cookie;
100 {
101     dlb *rumors;
102     long tidbit, beginning;
103     char *endp, line[BUFSZ], xbuf[BUFSZ];
104
105     rumor_buf[0] = '\0';
106     if (true_rumor_size < 0L) /* we couldn't open RUMORFILE */
107         return rumor_buf;
108
109     rumors = dlb_fopen(RUMORFILE, "r");
110
111     if (rumors) {
112         int count = 0;
113         int adjtruth;
114
115         do {
116             rumor_buf[0] = '\0';
117             if (true_rumor_size == 0L) { /* if this is 1st outrumor() */
118                 init_rumors(rumors);
119                 if (true_rumor_size < 0L) { /* init failed */
120                     Sprintf(rumor_buf, "Error reading \"%.80s\".", RUMORFILE);
121                     return rumor_buf;
122                 }
123             }
124             /*
125              *  input:      1    0   -1
126              *   rn2 \ +1  2=T  1=T  0=F
127              *   adj./ +0  1=T  0=F -1=F
128              */
129             switch (adjtruth = truth + rn2(2)) {
130             case 2: /*(might let a bogus input arg sneak thru)*/
131             case 1:
132                 beginning = (long) true_rumor_start;
133                 tidbit = rn2(true_rumor_size);
134                 break;
135             case 0: /* once here, 0 => false rather than "either"*/
136             case -1:
137                 beginning = (long) false_rumor_start;
138                 tidbit = rn2(false_rumor_size);
139                 break;
140             default:
141                 impossible("strange truth value for rumor");
142                 return strcpy(rumor_buf, "Oops...");
143             }
144             (void) dlb_fseek(rumors, beginning + tidbit, SEEK_SET);
145             (void) dlb_fgets(line, sizeof line, rumors);
146             if (!dlb_fgets(line, sizeof line, rumors)
147                 || (adjtruth > 0 && dlb_ftell(rumors) > true_rumor_end)) {
148                 /* reached end of rumors -- go back to beginning */
149                 (void) dlb_fseek(rumors, beginning, SEEK_SET);
150                 (void) dlb_fgets(line, sizeof line, rumors);
151             }
152             if ((endp = index(line, '\n')) != 0)
153                 *endp = 0;
154             Strcat(rumor_buf, xcrypt(line, xbuf));
155         } while (
156             count++ < 50 && exclude_cookie
157 #if 0 /*JP*/
158             && (strstri(rumor_buf, "fortune") || strstri(rumor_buf, "pity")));
159 #else
160             && (strstri(rumor_buf, "\90è") || strstri(rumor_buf, "\82È\82ñ\82Ä\82±\82Æ\82¾")));
161 #endif
162         (void) dlb_fclose(rumors);
163         if (count >= 50)
164             impossible("Can't find non-cookie rumor?");
165         else if (!in_mklev) /* avoid exercizing wisdom for graffiti */
166             exercise(A_WIS, (adjtruth > 0));
167     } else {
168         couldnt_open_file(RUMORFILE);
169         true_rumor_size = -1; /* don't try to open it again */
170     }
171 /* this is safe either way, so do it always since we can't get the definition
172  * out of makedefs.c
173  */
174 #define PAD_RUMORS_TO
175 #ifdef PAD_RUMORS_TO
176     /* remove padding */
177     {
178         char *x = eos(rumor_buf) - 1;
179
180         while (x > rumor_buf && *x == '_')
181             x--;
182         *++x = '\n';
183         *x = '\0';
184     }
185 #endif
186     return rumor_buf;
187 }
188
189 /*
190  * test that the true/false rumor boundaries are valid.
191  */
192 void
193 rumor_check()
194 {
195     dlb *rumors = 0;
196     winid tmpwin;
197     char *endp, line[BUFSZ], xbuf[BUFSZ], rumor_buf[BUFSZ];
198
199     if (true_rumor_size < 0L) { /* we couldn't open RUMORFILE */
200     no_rumors:
201         pline("rumors not accessible.");
202         if (rumors)
203             (void) dlb_fclose(rumors);
204         return;
205     }
206
207     rumors = dlb_fopen(RUMORFILE, "r");
208
209     if (rumors) {
210         long ftell_rumor_start = 0L;
211
212         rumor_buf[0] = '\0';
213         if (true_rumor_size == 0L) { /* if this is 1st outrumor() */
214             init_rumors(rumors);
215             if (true_rumor_size < 0L)
216                 goto no_rumors; /* init failed */
217         }
218         tmpwin = create_nhwindow(NHW_TEXT);
219
220         /*
221          * reveal the values.
222          */
223
224         Sprintf(
225             rumor_buf,
226             "T start=%06ld (%06lx), end=%06ld (%06lx), size=%06ld (%06lx)",
227             (long) true_rumor_start, true_rumor_start, true_rumor_end,
228             (unsigned long) true_rumor_end, true_rumor_size,
229             (unsigned long) true_rumor_size);
230         putstr(tmpwin, 0, rumor_buf);
231
232         Sprintf(
233             rumor_buf,
234             "F start=%06ld (%06lx), end=%06ld (%06lx), size=%06ld (%06lx)",
235             (long) false_rumor_start, false_rumor_start, false_rumor_end,
236             (unsigned long) false_rumor_end, false_rumor_size,
237             (unsigned long) false_rumor_size);
238         putstr(tmpwin, 0, rumor_buf);
239
240         /*
241          * check the first rumor (start of true rumors) by
242          * skipping the first two lines.
243          *
244          * Then seek to the start of the false rumors (based on
245          * the value read in rumors, and display it.
246          */
247         rumor_buf[0] = '\0';
248         (void) dlb_fseek(rumors, (long) true_rumor_start, SEEK_SET);
249         ftell_rumor_start = dlb_ftell(rumors);
250         (void) dlb_fgets(line, sizeof line, rumors);
251         if ((endp = index(line, '\n')) != 0)
252             *endp = 0;
253         Sprintf(rumor_buf, "T %06ld %s", ftell_rumor_start,
254                 xcrypt(line, xbuf));
255         putstr(tmpwin, 0, rumor_buf);
256         /* find last true rumor */
257         while (dlb_fgets(line, sizeof line, rumors)
258                && dlb_ftell(rumors) < true_rumor_end)
259             continue;
260         if ((endp = index(line, '\n')) != 0)
261             *endp = 0;
262         Sprintf(rumor_buf, "  %6s %s", "", xcrypt(line, xbuf));
263         putstr(tmpwin, 0, rumor_buf);
264
265         rumor_buf[0] = '\0';
266         (void) dlb_fseek(rumors, (long) false_rumor_start, SEEK_SET);
267         ftell_rumor_start = dlb_ftell(rumors);
268         (void) dlb_fgets(line, sizeof line, rumors);
269         if ((endp = index(line, '\n')) != 0)
270             *endp = 0;
271         Sprintf(rumor_buf, "F %06ld %s", ftell_rumor_start,
272                 xcrypt(line, xbuf));
273         putstr(tmpwin, 0, rumor_buf);
274         /* find last false rumor */
275         while (dlb_fgets(line, sizeof line, rumors)
276                && dlb_ftell(rumors) < false_rumor_end)
277             continue;
278         if ((endp = index(line, '\n')) != 0)
279             *endp = 0;
280         Sprintf(rumor_buf, "  %6s %s", "", xcrypt(line, xbuf));
281         putstr(tmpwin, 0, rumor_buf);
282
283         (void) dlb_fclose(rumors);
284         display_nhwindow(tmpwin, TRUE);
285         destroy_nhwindow(tmpwin);
286     } else {
287         couldnt_open_file(RUMORFILE);
288         true_rumor_size = -1; /* don't try to open it again */
289     }
290 }
291
292 /* Gets a random line of text from file 'fname', and returns it.
293    rng is the random number generator to use, and should act like rn2 does. */
294 char *
295 get_rnd_text(fname, buf, rng)
296 const char *fname;
297 char *buf;
298 int FDECL((*rng), (int));
299 {
300     dlb *fh;
301
302     buf[0] = '\0';
303
304     fh = dlb_fopen(fname, "r");
305
306     if (fh) {
307         /* TODO: cache sizetxt, starttxt, endtxt. maybe cache file contents?
308          */
309         long sizetxt = 0, starttxt = 0, endtxt = 0, tidbit = 0;
310         char *endp, line[BUFSZ], xbuf[BUFSZ];
311         (void) dlb_fgets(line, sizeof line,
312                          fh); /* skip "don't edit" comment */
313
314         (void) dlb_fseek(fh, 0L, SEEK_CUR);
315         starttxt = dlb_ftell(fh);
316         (void) dlb_fseek(fh, 0L, SEEK_END);
317         endtxt = dlb_ftell(fh);
318         sizetxt = endtxt - starttxt;
319         tidbit = rng(sizetxt);
320
321         (void) dlb_fseek(fh, starttxt + tidbit, SEEK_SET);
322         (void) dlb_fgets(line, sizeof line, fh);
323         if (!dlb_fgets(line, sizeof line, fh)) {
324             (void) dlb_fseek(fh, starttxt, SEEK_SET);
325             (void) dlb_fgets(line, sizeof line, fh);
326         }
327         if ((endp = index(line, '\n')) != 0)
328             *endp = 0;
329         Strcat(buf, xcrypt(line, xbuf));
330         (void) dlb_fclose(fh);
331     } else {
332         couldnt_open_file(fname);
333     }
334
335     return buf;
336 }
337
338 void
339 outrumor(truth, mechanism)
340 int truth; /* 1=true, -1=false, 0=either */
341 int mechanism;
342 {
343     static const char fortune_msg[] =
344 /*JP
345         "This cookie has a scrap of paper inside.";
346 */
347         "\82±\82Ì\83N\83b\83L\81[\82É\82Í\8e\86\90Ø\82ª\93ü\82Á\82Ä\82¢\82é\81D";
348     const char *line;
349     char buf[BUFSZ];
350     boolean reading = (mechanism == BY_COOKIE || mechanism == BY_PAPER);
351
352     if (reading) {
353         /* deal with various things that prevent reading */
354         if (is_fainted() && mechanism == BY_COOKIE)
355             return;
356         else if (Blind) {
357             if (mechanism == BY_COOKIE)
358                 pline(fortune_msg);
359 /*JP
360             pline("What a pity that you cannot read it!");
361 */
362             pline("\82»\82ê\82ð\93Ç\82ß\82È\82¢\82È\82ñ\82Ä\8bC\82Ì\93Å\82È\81I");
363             return;
364         }
365     }
366     line = getrumor(truth, buf, reading ? FALSE : TRUE);
367     if (!*line)
368 /*JP
369         line = "NetHack rumors file closed for renovation.";
370 */
371         line = "\89\\82Ì\90^\91\8a\82Í\8dü\90V\82Ì\82½\82ß\8bx\8a§\82µ\82Ä\82¢\82é\81D";
372     switch (mechanism) {
373     case BY_ORACLE:
374         /* Oracle delivers the rumor */
375 #if 0 /*JP:T*/
376         pline("True to her word, the Oracle %ssays: ",
377               (!rn2(4) ? "offhandedly "
378                        : (!rn2(3) ? "casually "
379                                   : (rn2(2) ? "nonchalantly " : ""))));
380 #else
381         pline("\96ñ\91©\82Ç\82¨\82è\82É\81C\8c«\8eÒ\82Í%s\8fq\82×\82½:",
382               (!rn2(4) ? "\96³\91¢\8dì\82É"
383                        : (!rn2(3) ? "\89½\8bC\82È\82­"
384                                   : (rn2(2) ? "\96³\93Ú\92\85\82É" : ""))));
385 #endif
386         verbalize1(line);
387         /* [WIS exercized by getrumor()] */
388         return;
389     case BY_COOKIE:
390         pline(fortune_msg);
391     /* FALLTHRU */
392     case BY_PAPER:
393 /*JP
394         pline("It reads:");
395 */
396         pline("\82»\82ê\82ð\93Ç\82ñ\82¾:");
397         break;
398     }
399     pline1(line);
400 }
401
402 STATIC_OVL void
403 init_oracles(fp)
404 dlb *fp;
405 {
406     register int i;
407     char line[BUFSZ];
408     int cnt = 0;
409
410     /* this assumes we're only called once */
411     (void) dlb_fgets(line, sizeof line, fp); /* skip "don't edit" comment*/
412     (void) dlb_fgets(line, sizeof line, fp);
413     if (sscanf(line, "%5d\n", &cnt) == 1 && cnt > 0) {
414         oracle_cnt = (unsigned) cnt;
415         oracle_loc = (unsigned long *) alloc((unsigned) cnt * sizeof(long));
416         for (i = 0; i < cnt; i++) {
417             (void) dlb_fgets(line, sizeof line, fp);
418             (void) sscanf(line, "%5lx\n", &oracle_loc[i]);
419         }
420     }
421     return;
422 }
423
424 void
425 save_oracles(fd, mode)
426 int fd, mode;
427 {
428     if (perform_bwrite(mode)) {
429         bwrite(fd, (genericptr_t) &oracle_cnt, sizeof oracle_cnt);
430         if (oracle_cnt)
431             bwrite(fd, (genericptr_t) oracle_loc, oracle_cnt * sizeof(long));
432     }
433     if (release_data(mode)) {
434         if (oracle_cnt) {
435             free((genericptr_t) oracle_loc);
436             oracle_loc = 0, oracle_cnt = 0, oracle_flg = 0;
437         }
438     }
439 }
440
441 void
442 restore_oracles(fd)
443 int fd;
444 {
445     mread(fd, (genericptr_t) &oracle_cnt, sizeof oracle_cnt);
446     if (oracle_cnt) {
447         oracle_loc = (unsigned long *) alloc(oracle_cnt * sizeof(long));
448         mread(fd, (genericptr_t) oracle_loc, oracle_cnt * sizeof(long));
449         oracle_flg = 1; /* no need to call init_oracles() */
450     }
451 }
452
453 void
454 outoracle(special, delphi)
455 boolean special;
456 boolean delphi;
457 {
458     winid tmpwin;
459     dlb *oracles;
460     int oracle_idx;
461     char *endp, line[COLNO], xbuf[BUFSZ];
462
463     /* early return if we couldn't open ORACLEFILE on previous attempt,
464        or if all the oracularities are already exhausted */
465     if (oracle_flg < 0 || (oracle_flg > 0 && oracle_cnt == 0))
466         return;
467
468     oracles = dlb_fopen(ORACLEFILE, "r");
469
470     if (oracles) {
471         if (oracle_flg == 0) { /* if this is the first outoracle() */
472             init_oracles(oracles);
473             oracle_flg = 1;
474             if (oracle_cnt == 0)
475                 goto close_oracles;
476         }
477         /* oracle_loc[0] is the special oracle;
478            oracle_loc[1..oracle_cnt-1] are normal ones */
479         if (oracle_cnt <= 1 && !special)
480             goto close_oracles; /*(shouldn't happen)*/
481         oracle_idx = special ? 0 : rnd((int) oracle_cnt - 1);
482         (void) dlb_fseek(oracles, (long) oracle_loc[oracle_idx], SEEK_SET);
483         if (!special) /* move offset of very last one into this slot */
484             oracle_loc[oracle_idx] = oracle_loc[--oracle_cnt];
485
486         tmpwin = create_nhwindow(NHW_TEXT);
487         if (delphi)
488             putstr(tmpwin, 0,
489                    special
490 /*JP
491                      ? "The Oracle scornfully takes all your money and says:"
492 */
493                      ? "\8c«\8eÒ\82Í\8cy\95Ì\82µ\82½\82æ\82¤\82É\82 \82È\82½\82Ì\91S\82Ä\82Ì\82¨\8bà\82ð\8eó\82¯\82Æ\82è\81C\8fq\82×\82½\81F"
494 /*JP
495                      : "The Oracle meditates for a moment and then intones:");
496 */
497                      : "\8c«\8eÒ\82Í\82µ\82Î\82ç\82­áÒ\91z\82µ\81C\89Ì\82¤\82æ\82¤\82É\98b\82µ\82½\81F");
498         else
499 /*JP
500             putstr(tmpwin, 0, "The message reads:");
501 */
502             putstr(tmpwin, 0, "\83\81\83b\83Z\81[\83W:");
503         putstr(tmpwin, 0, "");
504
505         while (dlb_fgets(line, COLNO, oracles) && strcmp(line, "---\n")) {
506             if ((endp = index(line, '\n')) != 0)
507                 *endp = 0;
508             putstr(tmpwin, 0, xcrypt(line, xbuf));
509         }
510         display_nhwindow(tmpwin, TRUE);
511         destroy_nhwindow(tmpwin);
512  close_oracles:
513         (void) dlb_fclose(oracles);
514     } else {
515         couldnt_open_file(ORACLEFILE);
516         oracle_flg = -1; /* don't try to open it again */
517     }
518 }
519
520 int
521 doconsult(oracl)
522 struct monst *oracl;
523 {
524     long umoney;
525     int u_pay, minor_cost = 50, major_cost = 500 + 50 * u.ulevel;
526     int add_xpts;
527     char qbuf[QBUFSZ];
528
529     multi = 0;
530     umoney = money_cnt(invent);
531
532     if (!oracl) {
533 /*JP
534         There("is no one here to consult.");
535 */
536         pline("\82±\82±\82É\82Í\90_\91õ\82ð\8fq\82×\82é\90l\82Í\82¢\82È\82¢\81D");
537         return 0;
538     } else if (!oracl->mpeaceful) {
539 /*JP
540         pline("%s is in no mood for consultations.", Monnam(oracl));
541 */
542         pline("\8c«\8eÒ\82Í\90_\91õ\82ð\8d\90\82°\82Ä\82­\82ê\82é\95µ\88Í\8bC\82Å\82Í\82È\82¢\81D");
543         return 0;
544     } else if (!umoney) {
545 /*JP
546         You("have no money.");
547 */
548         You("\82¨\8bà\82ª\82È\82¢\81D");
549         return 0;
550     }
551
552 /*JP
553     Sprintf(qbuf, "\"Wilt thou settle for a minor consultation?\" (%d %s)",
554 */
555     Sprintf(qbuf, "\81u\93ð\81C\92á\88Ê\82Ì\90_\91õ\82ð\8eó\82¯\82é\82©\81H\81v(%d%s)",
556             minor_cost, currency((long) minor_cost));
557     switch (ynq(qbuf)) {
558     default:
559     case 'q':
560         return 0;
561     case 'y':
562         if (umoney < (long) minor_cost) {
563 /*JP
564             You("don't even have enough money for that!");
565 */
566             You("\82±\82ê\82É\95¥\82¦\82é\82¾\82¯\82Ì\82¨\8bà\82·\82ç\8e\9d\82Á\82Ä\82¢\82È\82¢\81I");
567             return 0;
568         }
569         u_pay = minor_cost;
570         break;
571     case 'n':
572         if (umoney <= (long) minor_cost /* don't even ask */
573             || (oracle_cnt == 1 || oracle_flg < 0))
574             return 0;
575 /*JP
576         Sprintf(qbuf, "\"Then dost thou desire a major one?\" (%d %s)",
577 */
578         Sprintf(qbuf, "\81u\82È\82ç\82Î\93ð\81C\8d\82\88Ê\82Ì\90_\91õ\82ð\8eó\82¯\82é\82©\81H\81v(%d%s)",
579                 major_cost, currency((long) major_cost));
580         if (yn(qbuf) != 'y')
581             return 0;
582         u_pay = (umoney < (long) major_cost) ? (int) umoney : major_cost;
583         break;
584     }
585     money2mon(oracl, (long) u_pay);
586     context.botl = 1;
587     add_xpts = 0; /* first oracle of each type gives experience points */
588     if (u_pay == minor_cost) {
589         outrumor(1, BY_ORACLE);
590         if (!u.uevent.minor_oracle)
591             add_xpts = u_pay / (u.uevent.major_oracle ? 25 : 10);
592         /* 5 pts if very 1st, or 2 pts if major already done */
593         u.uevent.minor_oracle = TRUE;
594     } else {
595         boolean cheapskate = u_pay < major_cost;
596
597         outoracle(cheapskate, TRUE);
598         if (!cheapskate && !u.uevent.major_oracle)
599             add_xpts = u_pay / (u.uevent.minor_oracle ? 25 : 10);
600         /* ~100 pts if very 1st, ~40 pts if minor already done */
601         u.uevent.major_oracle = TRUE;
602         exercise(A_WIS, !cheapskate);
603     }
604     if (add_xpts) {
605         more_experienced(add_xpts, u_pay / 50);
606         newexplevel();
607     }
608     return 1;
609 }
610
611 STATIC_OVL void
612 couldnt_open_file(filename)
613 const char *filename;
614 {
615     int save_something = program_state.something_worth_saving;
616
617     /* most likely the file is missing, so suppress impossible()'s
618        "saving and restoring might fix this" (unless the fuzzer,
619        which escalates impossible to panic, is running) */
620     if (!iflags.debug_fuzzer)
621         program_state.something_worth_saving = 0;
622
623 /*JP
624     impossible("Can't open '%s' file.", filename);
625 */
626     impossible("'%s'\83t\83@\83C\83\8b\82ª\8aJ\82¯\82È\82¢\81D", filename);
627     program_state.something_worth_saving = save_something;
628 }
629
630 /*rumors.c*/