OSDN Git Service

5104cc208be516aa0947e42a270bcd5478c7054c
[hengband/hengband.git] / src / scores.c
1 /*!
2  * @file scores.c
3  * @brief ハイスコア処理 / Highscores handling
4  * @date 2014/07/14
5  * @author
6  * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke
7  * This software may be copied and distributed for educational, research,
8  * and not for profit purposes provided that this copyright and statement
9  * are included in all such copies.  Other copyrights may also apply.
10  * 2014 Deskull rearranged comment for Doxygen.
11  */
12
13 #include "angband.h"
14 #include "term.h"
15 #include "util.h"
16 #include "core.h"
17
18 #include "dungeon.h"
19 #include "player-race.h"
20 #include "player-status.h"
21 #include "player-class.h"
22 #include "player-personality.h"
23 #include "player-sex.h"
24 #include "files.h"
25 #include "scores.h"
26 #include "floor.h"
27 #include "world.h"
28 #include "cmd-dump.h"
29 #include "report.h"
30 #include "japanese.h"
31
32  /*
33   * The "highscore" file descriptor, if available.
34   */
35 int highscore_fd = -1;
36
37 /*!
38  * @brief i番目のスコア情報にバッファ位置をシークする / Seek score 'i' in the highscore file
39  * @param i スコア情報ID
40  * @return 問題がなければ0を返す
41  */
42 static int highscore_seek(int i)
43 {
44         /* Seek for the requested record */
45         return (fd_seek(highscore_fd, (huge)(i) * sizeof(high_score)));
46 }
47
48
49 /*!
50  * @brief 所定ポインタからスコア情報を読み取る / Read one score from the highscore file
51  * @param score スコア情報参照ポインタ
52  * @return エラーコード
53  */
54 static errr highscore_read(high_score *score)
55 {
56         /* Read the record, note failure */
57         return (fd_read(highscore_fd, (char*)(score), sizeof(high_score)));
58 }
59
60
61 /*!
62  * @brief 所定ポインタへスコア情報を書き込む / Write one score to the highscore file
63  * @param score スコア情報参照ポインタ
64  * @return エラーコード(問題がなければ0を返す)
65  */
66 static int highscore_write(high_score *score)
67 {
68         /* Write the record, note failure */
69         return (fd_write(highscore_fd, (char*)(score), sizeof(high_score)));
70 }
71
72 /*!
73  * @brief スコア情報を全て得るまで繰り返し取得する / Just determine where a new score *would* be placed
74  * @param score スコア情報参照ポインタ
75  * @return 正常ならば(MAX_HISCORES - 1)、問題があれば-1を返す
76  */
77 static int highscore_where(high_score *score)
78 {
79         int                     i;
80
81         high_score              the_score;
82         int my_score;
83
84         my_score = atoi(score->pts);
85
86         /* Paranoia -- it may not have opened */
87         if (highscore_fd < 0) return (-1);
88
89         /* Go to the start of the highscore file */
90         if (highscore_seek(0)) return (-1);
91
92         /* Read until we get to a higher score */
93         for (i = 0; i < MAX_HISCORES; i++)
94         {
95                 int old_score;
96                 if (highscore_read(&the_score)) return (i);
97                 old_score = atoi(the_score.pts);
98 /*              if (strcmp(the_score.pts, score->pts) < 0) return (i); */
99                 if (my_score > old_score) return (i);
100         }
101
102         /* The "last" entry is always usable */
103         return (MAX_HISCORES - 1);
104 }
105
106
107 /*!
108  * @brief スコア情報をバッファの末尾に追加する / Actually place an entry into the high score file
109  * @param score スコア情報参照ポインタ
110  * @return 正常ならば書き込んだスロット位置、問題があれば-1を返す / Return the location (0 is best) or -1 on "failure"
111  */
112 static int highscore_add(high_score *score)
113 {
114         int                     i, slot;
115         bool            done = FALSE;
116
117         high_score              the_score, tmpscore;
118
119
120         /* Paranoia -- it may not have opened */
121         if (highscore_fd < 0) return (-1);
122
123         /* Determine where the score should go */
124         slot = highscore_where(score);
125
126         /* Hack -- Not on the list */
127         if (slot < 0) return (-1);
128
129         /* Hack -- prepare to dump the new score */
130         the_score = (*score);
131
132         /* Slide all the scores down one */
133         for (i = slot; !done && (i < MAX_HISCORES); i++)
134         {
135                 /* Read the old guy, note errors */
136                 if (highscore_seek(i)) return (-1);
137                 if (highscore_read(&tmpscore)) done = TRUE;
138
139                 /* Back up and dump the score we were holding */
140                 if (highscore_seek(i)) return (-1);
141                 if (highscore_write(&the_score)) return (-1);
142
143                 /* Hack -- Save the old score, for the next pass */
144                 the_score = tmpscore;
145         }
146
147         /* Return location used */
148         return (slot);
149 }
150
151
152
153 /*!
154  * @brief 指定された順位範囲でスコアを並べて表示する / Display the scores in a given range.
155  * @param from 順位先頭
156  * @param to 順位末尾
157  * @param note 黄色表示でハイライトする順位
158  * @param score スコア配列参照ポインタ
159  * @return なし
160  * @details
161  * <pre>
162  * Assumes the high score list is already open.
163  * Only five entries per line, too much info.
164  *
165  * Mega-Hack -- allow "fake" entry at the given position.
166  * </pre>
167  */
168 void display_scores_aux(int from, int to, int note, high_score *score)
169 {
170         int i, j, k, n, place;
171         TERM_COLOR attr;
172
173         high_score the_score;
174
175         GAME_TEXT out_val[256];
176         GAME_TEXT tmp_val[160];
177
178         TERM_LEN wid, hgt, per_screen;
179
180         Term_get_size(&wid, &hgt);
181         per_screen = (hgt - 4) / 4;
182
183         /* Paranoia -- it may not have opened */
184         if (highscore_fd < 0) return;
185
186
187         /* Assume we will show the first 10 */
188         if (from < 0) from = 0;
189         if (to < 0) to = 10;
190         if (to > MAX_HISCORES) to = MAX_HISCORES;
191
192
193         /* Seek to the beginning */
194         if (highscore_seek(0)) return;
195
196         /* Hack -- Count the high scores */
197         for (i = 0; i < MAX_HISCORES; i++)
198         {
199                 if (highscore_read(&the_score)) break;
200         }
201
202         /* Hack -- allow "fake" entry to be last */
203         if ((note == i) && score) i++;
204
205         /* Forget about the last entries */
206         if (i > to) i = to;
207
208
209         /* Show per_screen per page, until "done" */
210         for (k = from, place = k+1; k < i; k += per_screen)
211         {
212                 Term_clear();
213
214                 /* Title */
215                 put_str(_("                変愚蛮怒: 勇者の殿堂", "                Hengband Hall of Fame"), 0, 0);
216
217                 /* Indicate non-top scores */
218                 if (k > 0)
219                 {
220                         sprintf(tmp_val, _("( %d 位以下 )", "(from position %d)"), k + 1);
221                         put_str(tmp_val, 0, 40);
222                 }
223
224                 /* Dump per_screen entries */
225                 for (j = k, n = 0; j < i && n < per_screen; place++, j++, n++)
226                 {
227                         int pr, pc, pa, clev, mlev, cdun, mdun;
228
229                         concptr user, gold, when, aged;
230
231
232                         /* Hack -- indicate death in yellow */
233                         attr = (j == note) ? TERM_YELLOW : TERM_WHITE;
234
235
236                         /* Mega-Hack -- insert a "fake" record */
237                         if ((note == j) && score)
238                         {
239                                 the_score = (*score);
240                                 attr = TERM_L_GREEN;
241                                 score = NULL;
242                                 note = -1;
243                                 j--;
244                         }
245
246                         /* Read a normal record */
247                         else
248                         {
249                                 /* Read the proper record */
250                                 if (highscore_seek(j)) break;
251                                 if (highscore_read(&the_score)) break;
252                         }
253
254                         /* Extract the race/class */
255                         pr = atoi(the_score.p_r);
256                         pc = atoi(the_score.p_c);
257                         pa = atoi(the_score.p_a);
258
259                         /* Extract the level info */
260                         clev = atoi(the_score.cur_lev);
261                         mlev = atoi(the_score.max_lev);
262                         cdun = atoi(the_score.cur_dun);
263                         mdun = atoi(the_score.max_dun);
264
265                         /* Hack -- extract the gold and such */
266                         for (user = the_score.uid; iswspace(*user); user++) /* loop */;
267                         for (when = the_score.day; iswspace(*when); when++) /* loop */;
268                         for (gold = the_score.gold; iswspace(*gold); gold++) /* loop */;
269                         for (aged = the_score.turns; iswspace(*aged); aged++) /* loop */;
270
271                         /* Clean up standard encoded form of "when" */
272                         if ((*when == '@') && strlen(when) == 9)
273                         {
274                                 sprintf(tmp_val, "%.4s-%.2s-%.2s",
275                                         when + 1, when + 5, when + 7);
276                                 when = tmp_val;
277                         }
278
279                         /* Dump some info */
280 #ifdef JP
281 /*sprintf(out_val, "%3d.%9s  %s%s%sという名の%sの%s (レベル %d)", */
282                         sprintf(out_val, "%3d.%9s  %s%s%s - %s%s (レベル %d)",
283                                 place, the_score.pts,
284                                 seikaku_info[pa].title, (seikaku_info[pa].no ? "の" : ""),
285                                 the_score.who,
286                                 race_info[pr].title, class_info[pc].title,
287                                 clev);
288
289 #else
290                         sprintf(out_val, "%3d.%9s  %s %s the %s %s, Level %d",
291                                 place, the_score.pts,
292                                 seikaku_info[pa].title,
293                                 the_score.who, race_info[pr].title, class_info[pc].title,
294                                 clev);
295 #endif
296
297
298                         /* Append a "maximum level" */
299                         if (mlev > clev) strcat(out_val, format(_(" (最高%d)", " (Max %d)"), mlev));
300
301                         /* Dump the first line */
302                         c_put_str(attr, out_val, n*4 + 2, 0);
303
304                         /* Another line of info */
305 #ifdef JP
306                         if (mdun != 0)
307                                 sprintf(out_val, "    最高%3d階", mdun);
308                         else
309                                 sprintf(out_val, "             ");
310
311
312                         /* 死亡原因をオリジナルより細かく表示 */
313                         if (streq(the_score.how, "yet"))
314                         {
315                                 sprintf(out_val+13, "  まだ生きている (%d%s)",
316                                        cdun, "階");
317                         }
318                         else
319                         if (streq(the_score.how, "ripe"))
320                         {
321                                 sprintf(out_val+13, "  勝利の後に引退 (%d%s)",
322                                         cdun, "階");
323                         }
324                         else if (streq(the_score.how, "Seppuku"))
325                         {
326                                 sprintf(out_val+13, "  勝利の後に切腹 (%d%s)",
327                                         cdun, "階");
328                         }
329                         else
330                         {
331                                 codeconv(the_score.how);
332
333                                 /* Some people die outside of the dungeon */
334                                 if (!cdun)
335                                         sprintf(out_val+13, "  地上で%sに殺された", the_score.how);
336                                 else
337                                         sprintf(out_val+13, "  %d階で%sに殺された",
338                                                 cdun, the_score.how);
339                         }
340
341 #else
342                         /* Some people die outside of the dungeon */
343                         if (!cdun)
344                                 sprintf(out_val, 
345                                         "               Killed by %s on the surface",
346                                         the_score.how);
347                         else
348                                 sprintf(out_val, 
349                                         "               Killed by %s on %s %d",
350                                         the_score.how, "Dungeon Level", cdun);
351
352                         /* Append a "maximum level" */
353                         if (mdun > cdun) strcat(out_val, format(" (Max %d)", mdun));
354 #endif
355
356                         /* Dump the info */
357                         c_put_str(attr, out_val, n*4 + 3, 0);
358
359                         /* And still another line of info */
360 #ifdef JP
361                         {
362                                 char buf[11];
363
364                                 /* 日付を 19yy/mm/dd の形式に変更する */
365                                 if (strlen(when) == 8 && when[2] == '/' && when[5] == '/') {
366                                         sprintf(buf, "%d%s/%.5s", 19 + (when[6] < '8'), when + 6, when);
367                                         when = buf;
368                                 }
369                                 sprintf(out_val,
370                                                 "        (ユーザー:%s, 日付:%s, 所持金:%s, ターン:%s)",
371                                                 user, when, gold, aged);
372                         }
373
374 #else
375                         sprintf(out_val,
376                                 "               (User %s, Date %s, Gold %s, Turn %s).",
377                                 user, when, gold, aged);
378 #endif
379
380                         c_put_str(attr, out_val, n*4 + 4, 0);
381                 }
382
383
384                 /* Wait for response */
385                 prt(_("[ ESCで中断, その他のキーで続けます ]", "[Press ESC to quit, any other key to continue.]"), hgt - 1, _(21, 17));
386
387                 j = inkey();
388                 prt("", hgt - 1, 0);
389
390                 /* Hack -- notice Escape */
391                 if (j == ESCAPE) break;
392         }
393 }
394
395
396 /*!
397  * @brief スコア表示処理メインルーチン / Hack -- Display the scores in a given range and quit.
398  * @param from 順位先頭
399  * @param to 順位末尾
400  * @return なし
401  * @details
402  * <pre>
403  * This function is only called from "main.c" when the user asks
404  * to see the "high scores".
405  * </pre>
406  */
407 void display_scores(int from, int to)
408 {
409         char buf[1024];
410         path_build(buf, sizeof(buf), ANGBAND_DIR_APEX, "scores.raw");
411
412         /* Open the binary high score file, for reading */
413         highscore_fd = fd_open(buf, O_RDONLY);
414
415         /* Paranoia -- No score file */
416         if (highscore_fd < 0) quit(_("スコア・ファイルが使用できません。", "Score file unavailable."));
417         Term_clear();
418
419         /* Display the scores */
420         display_scores_aux(from, to, -1, NULL);
421
422         /* Shut the high score file */
423         (void)fd_close(highscore_fd);
424
425         /* Forget the high score fd */
426         highscore_fd = -1;
427
428         /* Quit */
429         quit(NULL);
430 }
431
432
433 /*!
434  * @brief スコアサーバへの転送処理
435  * @param do_send 実際に転送ア処置を行うか否か
436  * @return 転送が成功したらTRUEを返す
437  */
438 bool send_world_score(bool do_send)
439 {
440 #ifdef WORLD_SCORE
441         if(send_score && do_send)
442         {
443                 if(easy_band)
444                 {
445                         msg_print(_("初心者モードではワールドスコアに登録できません。",
446                         "Since you are in the Easy Mode, you cannot send score to world score server."));
447                 }
448                 else if(get_check_strict(_("スコアをスコア・サーバに登録しますか? ", "Do you send score to the world score sever? "), 
449                                 (CHECK_NO_ESCAPE | CHECK_NO_HISTORY)))
450                 {
451                         errr err;
452                         prt("",0,0);
453                         prt(_("送信中..", "Sending..."),0,0);
454                         Term_fresh();
455                         screen_save();
456                         err = report_score();
457                         screen_load();
458                         if (err)
459                         {
460                                 return FALSE;
461                         }
462                         prt(_("完了。何かキーを押してください。", "Completed.  Hit any key."), 0, 0);
463                         (void)inkey();
464                 }
465                 else return FALSE;
466         }
467 #endif
468         return TRUE;
469 }
470
471 /*!
472  * @brief スコアの過去二十位内ランキングを表示する
473  * Enters a players name on a hi-score table, if "legal", and in any
474  * case, displays some relevant portion of the high score list.
475  * @return エラーコード
476  * @details
477  * Assumes "signals_ignore_tstp()" has been called.
478  */
479 errr top_twenty(void)
480 {
481         int          j;
482
483         high_score   the_score;
484
485         time_t ct = time((time_t*)0);
486
487         errr err;
488
489         /* Clear the record */
490         (void)WIPE(&the_score, high_score);
491
492         /* Save the version */
493         sprintf(the_score.what, "%u.%u.%u",
494                 FAKE_VER_MAJOR, FAKE_VER_MINOR, FAKE_VER_PATCH);
495
496         /* Calculate and save the points */
497         sprintf(the_score.pts, "%9ld", (long)calc_score(p_ptr));
498         the_score.pts[9] = '\0';
499
500         /* Save the current gold */
501         sprintf(the_score.gold, "%9lu", (long)p_ptr->au);
502         the_score.gold[9] = '\0';
503
504         /* Save the current current_world_ptr->game_turn */
505         sprintf(the_score.turns, "%9lu", (long)turn_real(current_world_ptr->game_turn));
506         the_score.turns[9] = '\0';
507
508 #ifdef HIGHSCORE_DATE_HACK
509         /* Save the date in a hacked up form (9 chars) */
510         (void)sprintf(the_score.day, "%-.6s %-.2s", ctime(&ct) + 4, ctime(&ct) + 22);
511 #else
512         /* Save the date in standard form (8 chars) */
513 /*      (void)strftime(the_score.day, 9, "%m/%d/%y", localtime(&ct)); */
514         /* Save the date in standard encoded form (9 chars) */
515         strftime(the_score.day, 10, "@%Y%m%d", localtime(&ct));
516 #endif
517
518         /* Save the player name (15 chars) */
519         sprintf(the_score.who, "%-.15s", p_ptr->name);
520
521         /* Save the player info */
522         sprintf(the_score.uid, "%7u", p_ptr->player_uid);
523         sprintf(the_score.sex, "%c", (p_ptr->psex ? 'm' : 'f'));
524         sprintf(the_score.p_r, "%2d", MIN(p_ptr->prace, MAX_RACES));
525         sprintf(the_score.p_c, "%2d", MIN(p_ptr->pclass, MAX_CLASS));
526         sprintf(the_score.p_a, "%2d", MIN(p_ptr->pseikaku, MAX_SEIKAKU));
527
528         /* Save the level and such */
529         sprintf(the_score.cur_lev, "%3d", MIN((u16b)p_ptr->lev, 999));
530         sprintf(the_score.cur_dun, "%3d", (int)current_floor_ptr->dun_level);
531         sprintf(the_score.max_lev, "%3d", MIN((u16b)p_ptr->max_plv, 999));
532         sprintf(the_score.max_dun, "%3d", (int)max_dlv[p_ptr->dungeon_idx]);
533
534         /* Save the cause of death (31 chars) */
535         if (strlen(p_ptr->died_from) >= sizeof(the_score.how))
536         {
537 #ifdef JP
538                 my_strcpy(the_score.how, p_ptr->died_from, sizeof(the_score.how) - 2);
539                 strcat(the_score.how, "…");
540 #else
541                 my_strcpy(the_score.how, p_ptr->died_from, sizeof(the_score.how) - 3);
542                 strcat(the_score.how, "...");
543 #endif
544         }
545         else
546         {
547                 strcpy(the_score.how, p_ptr->died_from);
548         }
549
550         /* Grab permissions */
551         safe_setuid_grab();
552
553         /* Lock (for writing) the highscore file, or fail */
554         err = fd_lock(highscore_fd, F_WRLCK);
555
556         /* Drop permissions */
557         safe_setuid_drop();
558
559         if (err) return (1);
560
561         /* Add a new entry to the score list, see where it went */
562         j = highscore_add(&the_score);
563
564         /* Grab permissions */
565         safe_setuid_grab();
566
567         /* Unlock the highscore file, or fail */
568         err = fd_lock(highscore_fd, F_UNLCK);
569
570         /* Drop permissions */
571         safe_setuid_drop();
572
573         if (err) return (1);
574
575
576         /* Hack -- Display the top fifteen scores */
577         if (j < 10)
578         {
579                 display_scores_aux(0, 15, j, NULL);
580         }
581
582         /* Display the scores surrounding the player */
583         else
584         {
585                 display_scores_aux(0, 5, j, NULL);
586                 display_scores_aux(j - 2, j + 7, j, NULL);
587         }
588
589
590         /* Success */
591         return (0);
592 }
593
594 /*!
595  * @brief プレイヤーの現在のスコアをランキングに挟む /
596  * Predict the players location, and display it.
597  * @return エラーコード
598  */
599 errr predict_score(void)
600 {
601         int          j;
602
603         high_score   the_score;
604
605
606         /* No score file */
607         if (highscore_fd < 0)
608         {
609                 msg_print(_("スコア・ファイルが使用できません。", "Score file unavailable."));
610                 msg_print(NULL);
611                 return (0);
612         }
613
614
615         /* Save the version */
616         sprintf(the_score.what, "%u.%u.%u",
617                 FAKE_VER_MAJOR, FAKE_VER_MINOR, FAKE_VER_PATCH);
618
619         /* Calculate and save the points */
620         sprintf(the_score.pts, "%9ld", (long)calc_score(p_ptr));
621
622         /* Save the current gold */
623         sprintf(the_score.gold, "%9lu", (long)p_ptr->au);
624
625         /* Save the current current_world_ptr->game_turn */
626         sprintf(the_score.turns, "%9lu", (long)turn_real(current_world_ptr->game_turn));
627
628         /* Hack -- no time needed */
629         strcpy(the_score.day, _("今日", "TODAY"));
630
631         /* Save the player name (15 chars) */
632         sprintf(the_score.who, "%-.15s", p_ptr->name);
633
634         /* Save the player info */
635         sprintf(the_score.uid, "%7u", p_ptr->player_uid);
636         sprintf(the_score.sex, "%c", (p_ptr->psex ? 'm' : 'f'));
637         sprintf(the_score.p_r, "%2d", MIN(p_ptr->prace, MAX_RACES));
638         sprintf(the_score.p_c, "%2d", MIN(p_ptr->pclass, MAX_CLASS));
639         sprintf(the_score.p_a, "%2d", MIN(p_ptr->pseikaku, MAX_SEIKAKU));
640
641         /* Save the level and such */
642         sprintf(the_score.cur_lev, "%3d", MIN((u16b)p_ptr->lev, 999));
643         sprintf(the_score.cur_dun, "%3d", (int)current_floor_ptr->dun_level);
644         sprintf(the_score.max_lev, "%3d", MIN((u16b)p_ptr->max_plv, 999));
645         sprintf(the_score.max_dun, "%3d", (int)max_dlv[p_ptr->dungeon_idx]);
646
647         /* Hack -- no cause of death */
648         /* まだ死んでいないときの識別文字 */
649         strcpy(the_score.how, _("yet", "nobody (yet!)"));
650
651         /* See where the entry would be placed */
652         j = highscore_where(&the_score);
653
654
655         /* Hack -- Display the top fifteen scores */
656         if (j < 10)
657         {
658                 display_scores_aux(0, 15, j, &the_score);
659         }
660
661         /* Display some "useful" scores */
662         else
663         {
664                 display_scores_aux(0, 5, -1, NULL);
665                 display_scores_aux(j - 2, j + 7, j, &the_score);
666         }
667
668
669         /* Success */
670         return (0);
671 }
672
673
674 /*!
675  * @brief スコアランキングの簡易表示 /
676  * show_highclass - selectively list highscores based on class -KMW-
677  * @return なし
678  */
679 void show_highclass(void)
680 {
681
682         register int i = 0, j, m = 0;
683         int pr;
684         PLAYER_LEVEL clev/*, al*/;
685         high_score the_score;
686         char buf[1024], out_val[256];
687
688         screen_save();
689         path_build(buf, sizeof(buf), ANGBAND_DIR_APEX, "scores.raw");
690
691         highscore_fd = fd_open(buf, O_RDONLY);
692
693         if (highscore_fd < 0)
694         {
695                 msg_print(_("スコア・ファイルが使用できません。", "Score file unavailable."));
696                 msg_print(NULL);
697                 return;
698         }
699
700         if (highscore_seek(0)) return;
701
702         for (i = 0; i < MAX_HISCORES; i++)
703                 if (highscore_read(&the_score)) break;
704
705         m = 0;
706         j = 0;
707         clev = 0;
708
709         while ((m < 9) && (j < MAX_HISCORES))
710         {
711                 if (highscore_seek(j)) break;
712                 if (highscore_read(&the_score)) break;
713                 pr = atoi(the_score.p_r);
714                 clev = (PLAYER_LEVEL)atoi(the_score.cur_lev);
715
716 #ifdef JP
717                 sprintf(out_val, "   %3d) %sの%s (レベル %2d)",
718                     (m + 1), race_info[pr].title,the_score.who, clev);
719 #else
720                 sprintf(out_val, "%3d) %s the %s (Level %2d)",
721                     (m + 1), the_score.who, race_info[pr].title, clev);
722 #endif
723
724                 prt(out_val, (m + 7), 0);
725                 m++;
726                 j++;
727         }
728
729 #ifdef JP
730         sprintf(out_val, "あなた) %sの%s (レベル %2d)",
731             race_info[p_ptr->prace].title,p_ptr->name, p_ptr->lev);
732 #else
733         sprintf(out_val, "You) %s the %s (Level %2d)",
734             p_ptr->name, race_info[p_ptr->prace].title, p_ptr->lev);
735 #endif
736
737         prt(out_val, (m + 8), 0);
738
739         (void)fd_close(highscore_fd);
740         highscore_fd = -1;
741         prt(_("何かキーを押すとゲームに戻ります", "Hit any key to continue"),0,0);
742
743         (void)inkey();
744
745         for (j = 5; j < 18; j++) prt("", j, 0);
746         screen_load();
747 }
748
749 /*!
750  * @brief スコアランキングの簡易表示(種族毎)サブルーチン /
751  * Race Legends -KMW-
752  * @param race_num 種族ID
753  * @return なし
754  */
755 void race_score(int race_num)
756 {
757         register int i = 0, j, m = 0;
758         int pr, clev, lastlev;
759         high_score the_score;
760         char buf[1024], out_val[256], tmp_str[80];
761
762         lastlev = 0;
763
764         /* rr9: TODO - pluralize the race */
765         sprintf(tmp_str,_("最高の%s", "The Greatest of all the %s"), race_info[race_num].title);
766
767         prt(tmp_str, 5, 15);
768         path_build(buf, sizeof(buf), ANGBAND_DIR_APEX, "scores.raw");
769
770         highscore_fd = fd_open(buf, O_RDONLY);
771
772         if (highscore_fd < 0)
773         {
774                 msg_print(_("スコア・ファイルが使用できません。", "Score file unavailable."));
775                 msg_print(NULL);
776                 return;
777         }
778
779         if (highscore_seek(0)) return;
780
781         for (i = 0; i < MAX_HISCORES; i++)
782         {
783                 if (highscore_read(&the_score)) break;
784         }
785
786         m = 0;
787         j = 0;
788
789         while ((m < 10) || (j < MAX_HISCORES))
790         {
791                 if (highscore_seek(j)) break;
792                 if (highscore_read(&the_score)) break;
793                 pr = atoi(the_score.p_r);
794                 clev = atoi(the_score.cur_lev);
795
796                 if (pr == race_num)
797                 {
798 #ifdef JP
799                 sprintf(out_val, "   %3d) %sの%s (レベル %2d)",
800                             (m + 1), race_info[pr].title, 
801                                 the_score.who,clev);
802 #else
803                         sprintf(out_val, "%3d) %s the %s (Level %3d)",
804                             (m + 1), the_score.who,
805                         race_info[pr].title, clev);
806 #endif
807
808                         prt(out_val, (m + 7), 0);
809                         m++;
810                         lastlev = clev;
811                 }
812                 j++;
813         }
814
815         /* add player if qualified */
816         if ((p_ptr->prace == race_num) && (p_ptr->lev >= lastlev))
817         {
818 #ifdef JP
819         sprintf(out_val, "あなた) %sの%s (レベル %2d)",
820                      race_info[p_ptr->prace].title,p_ptr->name, p_ptr->lev);
821 #else
822                 sprintf(out_val, "You) %s the %s (Level %3d)",
823                     p_ptr->name, race_info[p_ptr->prace].title, p_ptr->lev);
824 #endif
825
826                 prt(out_val, (m + 8), 0);
827         }
828
829         (void)fd_close(highscore_fd);
830         highscore_fd = -1;
831 }
832
833
834 /*!
835  * @brief スコアランキングの簡易表示(種族毎)メインルーチン /
836  * Race Legends -KMW-
837  * @return なし
838  */
839 void race_legends(void)
840 {
841         int i, j;
842
843         for (i = 0; i < MAX_RACES; i++)
844         {
845                 race_score(i);
846                 msg_print(_("何かキーを押すとゲームに戻ります", "Hit any key to continue"));
847                 msg_print(NULL);
848                 for (j = 5; j < 19; j++)
849                         prt("", j, 0);
850         }
851 }
852
853 /*!
854  * @brief 勝利者用の引退演出処理 /
855  * Change the player into a King! -RAK-
856  * @return なし
857  */
858 void kingly(void)
859 {
860         TERM_LEN wid, hgt;
861         TERM_LEN cx, cy;
862         bool seppuku = streq(p_ptr->died_from, "Seppuku");
863
864         /* Hack -- retire in town */
865         current_floor_ptr->dun_level = 0;
866
867         /* Fake death */
868         if (!seppuku)
869                 /* 引退したときの識別文字 */
870                 (void)strcpy(p_ptr->died_from, _("ripe", "Ripe Old Age"));
871
872         /* Restore the experience */
873         p_ptr->exp = p_ptr->max_exp;
874
875         /* Restore the level */
876         p_ptr->lev = p_ptr->max_plv;
877
878         Term_get_size(&wid, &hgt);
879         cy = hgt / 2;
880         cx = wid / 2;
881
882         /* Hack -- Instant Gold */
883         p_ptr->au += 10000000L;
884         Term_clear();
885
886         /* Display a crown */
887         put_str("#", cy - 11, cx - 1);
888         put_str("#####", cy - 10, cx - 3);
889         put_str("#", cy - 9, cx - 1);
890         put_str(",,,  $$$  ,,,", cy - 8, cx - 7);
891         put_str(",,=$   \"$$$$$\"   $=,,", cy - 7, cx - 11);
892         put_str(",$$        $$$        $$,", cy - 6, cx - 13);
893         put_str("*>         <*>         <*", cy - 5, cx - 13);
894         put_str("$$         $$$         $$", cy - 4, cx - 13);
895         put_str("\"$$        $$$        $$\"", cy - 3, cx - 13);
896         put_str("\"$$       $$$       $$\"", cy - 2, cx - 12);
897         put_str("*#########*#########*", cy - 1, cx - 11);
898         put_str("*#########*#########*", cy, cx - 11);
899
900         /* Display a message */
901 #ifdef JP
902         put_str("Veni, Vidi, Vici!", cy + 3, cx - 9);
903         put_str("来た、見た、勝った!", cy + 4, cx - 10);
904         put_str(format("偉大なる%s万歳!", sp_ptr->winner), cy + 5, cx - 11);
905 #else
906         put_str("Veni, Vidi, Vici!", cy + 3, cx - 9);
907         put_str("I came, I saw, I conquered!", cy + 4, cx - 14);
908         put_str(format("All Hail the Mighty %s!", sp_ptr->winner), cy + 5, cx - 13);
909 #endif
910
911         /* If player did Seppuku, that is already written in playrecord */
912         if (!seppuku)
913         {
914                 do_cmd_write_nikki(NIKKI_BUNSHOU, 0, _("ダンジョンの探索から引退した。", "retired exploring dungeons."));
915                 do_cmd_write_nikki(NIKKI_GAMESTART, 1, _("-------- ゲームオーバー --------", "--------   Game  Over   --------"));
916                 do_cmd_write_nikki(NIKKI_BUNSHOU, 1, "\n\n\n\n");
917         }
918
919         /* Flush input */
920         flush();
921
922         /* Wait for response */
923         pause_line(hgt - 1);
924 }
925
926 /*!
927  * @brief スコアファイル出力
928  * Display some character info
929  * @return なし
930  */
931 bool check_score(void)
932 {
933         Term_clear();
934
935         /* No score file */
936         if (highscore_fd < 0)
937         {
938                 msg_print(_("スコア・ファイルが使用できません。", "Score file unavailable."));
939                 msg_print(NULL);
940                 return FALSE;
941         }
942
943 #ifndef SCORE_WIZARDS
944         /* Wizard-mode pre-empts scoring */
945         if (p_ptr->noscore & 0x000F)
946         {
947                 msg_print(_("ウィザード・モードではスコアが記録されません。", "Score not registered for wizards."));
948                 msg_print(NULL);
949                 return FALSE;
950         }
951 #endif
952
953 #ifndef SCORE_BORGS
954         /* Borg-mode pre-empts scoring */
955         if (p_ptr->noscore & 0x00F0)
956         {
957                 msg_print(_("ボーグ・モードではスコアが記録されません。", "Score not registered for borgs."));
958                 msg_print(NULL);
959                 return FALSE;
960         }
961 #endif
962
963 #ifndef SCORE_CHEATERS
964         /* Cheaters are not scored */
965         if (p_ptr->noscore & 0xFF00)
966         {
967                 msg_print(_("詐欺をやった人はスコアが記録されません。", "Score not registered for cheaters."));
968                 msg_print(NULL);
969                 return FALSE;
970         }
971 #endif
972
973         /* Interupted */
974         if (!p_ptr->total_winner && streq(p_ptr->died_from, _("強制終了", "Interrupting")))
975         {
976                 msg_print(_("強制終了のためスコアが記録されません。", "Score not registered due to interruption."));
977                 msg_print(NULL);
978                 return FALSE;
979         }
980
981         /* Quitter */
982         if (!p_ptr->total_winner && streq(p_ptr->died_from, _("途中終了", "Quitting")))
983         {
984                 msg_print(_("途中終了のためスコアが記録されません。", "Score not registered due to quitting."));
985                 msg_print(NULL);
986                 return FALSE;
987         }
988         return TRUE;
989 }
990