2 * Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#)score.c 8.1 (Berkeley) 5/31/93
33 * $FreeBSD: src/games/rogue/score.c,v 1.4 1999/11/30 03:49:27 billf Exp $
39 * This source herein may be modified and/or distributed by anybody who
40 * so desires, with the following restrictions:
41 * 1.) No portion of this notice shall be removed.
42 * 2.) Credit shall not be taken for the creation of this source.
43 * 3.) This code is not to be traded, sold, or used for personal
50 #include "pathnames.h"
52 static void center(short, const char *);
53 static int get_value(const object
*);
54 static void id_all(void);
55 static void insert_score(char [][82], char [][30], const char *, short, short,
56 const object
*, short);
57 static int name_cmp(char *, const char *);
58 static void nickize(char *, const char *, const char *);
59 static void sell_pack(void);
60 static void sf_error(void) __dead2
;
63 killed_by(const object
*monster
, short other
)
70 rogue
.gold
= ((rogue
.gold
* 9) / 10);
76 strcpy(buf
, "died of hypothermia");
79 strcpy(buf
, "died of starvation");
82 strcpy(buf
, "killed by a dart");
88 strcpy(buf
, "killed by fire");
92 strcpy(buf
, "Killed by ");
93 if (is_vowel(m_names
[monster
->m_char
- 'A'][0])) {
98 strcat(buf
, m_names
[monster
->m_char
- 'A']);
100 strcat(buf
, " with ");
101 sprintf(buf
+strlen(buf
), "%ld gold", rogue
.gold
);
102 if ((!other
) && (!no_skull
)) {
104 mvaddstr(4, 32, "__---------__");
105 mvaddstr(5, 30, "_~ ~_");
106 mvaddstr(6, 29, "/ \\");
107 mvaddstr(7, 28, "~ ~");
108 mvaddstr(8, 27, "/ \\");
109 mvaddstr(9, 27, "| XXXX XXXX |");
110 mvaddstr(10, 27, "| XXXX XXXX |");
111 mvaddstr(11, 27, "| XXX XXX |");
112 mvaddstr(12, 28, "\\ @ /");
113 mvaddstr(13, 29, "--\\ @@@ /--");
114 mvaddstr(14, 30, "| | @@@ | |");
115 mvaddstr(15, 30, "| | | |");
116 mvaddstr(16, 30, "| vvVvvvvvvvVvv |");
117 mvaddstr(17, 30, "| ^^^^^^^^^^^ |");
118 mvaddstr(18, 31, "\\_ _/");
119 mvaddstr(19, 33, "~---------~");
120 center(21, nick_name
);
126 put_scores(monster
, other
);
132 unwield(rogue
.weapon
); /* disarm and relax */
134 un_put_on(rogue
.left_ring
);
135 un_put_on(rogue
.right_ring
);
138 mvaddstr(10, 11, "@ @ @@@ @ @ @ @ @ @@@ @ @ @");
139 mvaddstr(11, 11, " @ @ @ @ @ @ @ @ @ @ @ @@ @ @");
140 mvaddstr(12, 11, " @ @ @ @ @ @ @ @ @ @ @ @ @ @");
141 mvaddstr(13, 11, " @ @ @ @ @ @ @ @ @ @ @ @@");
142 mvaddstr(14, 11, " @ @@@ @@@ @@ @@ @@@ @ @ @");
143 mvaddstr(17, 11, "Congratulations, you have been admitted to the");
144 mvaddstr(18, 11, "Fighters' Guild. You return home, sell all your");
145 mvaddstr(19, 11, "treasures at great profit and retire into comfort.");
150 put_scores(NULL
, WIN
);
154 quit(boolean from_intrpt
)
170 for (i
= 0; i
< DCOLS
; i
++) {
171 buf
[i
] = mvinch(0, i
);
175 message("really quit?", 1);
176 if (rgetchar() != 'y') {
180 for (i
= 0; i
< DCOLS
; i
++) {
181 mvaddch(0, i
, buf
[i
]);
190 clean_up(byebye_string
);
193 killed_by(NULL
, QUIT
);
197 put_scores(const object
*monster
, short other
)
199 short i
, n
, rank
= 10, x
, ne
= 0, found_player
= -1;
201 char n_names
[10][30];
205 boolean pause
= score_only
;
209 if ((fp
= fopen(_PATH_SCOREFILE
, "r+")) == NULL
&&
210 (fp
= fopen(_PATH_SCOREFILE
, "w+")) == NULL
) {
211 message("cannot read/write/create score file", 0);
217 for (i
= 0; i
< 10; i
++) {
218 if (((n
= fread(scores
[i
], sizeof(char), 80, fp
)) < 80) && (n
!= 0)) {
222 if ((n
= fread(n_names
[i
], sizeof(char), 30, fp
)) < 30) {
225 xxxx(n_names
[i
], 30);
230 if ((!score_only
) && (found_player
== -1)) {
231 if (!name_cmp(scores
[i
]+15, login_name
)) {
233 while (scores
[i
][x
] == ' ') {
236 s
= lget_number(scores
[i
] + x
);
237 if (rogue
.gold
< s
) {
246 /* Remove a superseded entry, if any. */
247 if (found_player
!= -1) {
249 for (i
= found_player
; i
< ne
; i
++) {
250 strcpy(scores
[i
], scores
[i
+1]);
251 strcpy(n_names
[i
], n_names
[i
+1]);
255 /* If we're going to insert ourselves, do it now */
257 for (i
= 0; i
< ne
; i
++) {
259 while (scores
[i
][x
] == ' ') {
262 s
= lget_number(scores
[i
] + x
);
264 if (rogue
.gold
>= s
) {
271 } else if ((ne
< 10) && (rank
== 10)) {
275 insert_score(scores
, n_names
, nick_name
, rank
, ne
, monster
,
285 mvaddstr(3, 30, "Top Ten Rogueists");
286 mvaddstr(8, 0, "Rank Score Name");
292 for (i
= 0; i
< ne
; i
++) {
301 scores
[i
][1] = i
+ '1';
303 nickize(buf
, scores
[i
], n_names
[i
]);
304 mvaddstr(i
+10, 0, buf
);
307 fwrite(scores
[i
], sizeof(char), 80, fp
);
308 xxxx(n_names
[i
], 30);
309 fwrite(n_names
[i
], sizeof(char), 30, fp
);
326 insert_score(char scores
[][82], char n_names
[][30], const char *n_name
,
327 short rank
, short n
, const object
*monster
, short other
)
333 for (i
= n
; i
> rank
; i
--) {
334 if ((i
< 10) && (i
> 0)) {
335 strcpy(scores
[i
], scores
[i
-1]);
336 strcpy(n_names
[i
], n_names
[i
-1]);
340 sprintf(buf
, "%2d %6ld %s: ", rank
+1, rogue
.gold
, login_name
);
345 strcat(buf
, "died of hypothermia");
348 strcat(buf
, "died of starvation");
351 strcat(buf
, "killed by a dart");
357 strcat(buf
, "a total winner");
360 strcpy(buf
, "killed by fire");
364 strcat(buf
, "killed by ");
365 if (is_vowel(m_names
[monster
->m_char
- 'A'][0])) {
370 strcat(buf
, m_names
[monster
->m_char
- 'A']);
372 sprintf(buf
+strlen(buf
), " on level %d ", max_level
);
373 if ((other
!= WIN
) && has_amulet()) {
374 strcat(buf
, "with amulet");
376 for (i
= strlen(buf
); i
< 79; i
++) {
380 strcpy(scores
[rank
], buf
);
381 strcpy(n_names
[rank
], n_name
);
387 return( (ch
== 'a') ||
401 obj
= rogue
.pack
.next_object
;
404 mvaddstr(1, 0, "Value Item");
407 if (obj
->what_is
!= FOOD
) {
409 val
= get_value(obj
);
413 sprintf(buf
, "%5d ", val
);
414 get_desc(obj
, buf
+11);
415 mvaddstr(row
++, 0, buf
);
418 obj
= obj
->next_object
;
421 if (rogue
.gold
> MAX_GOLD
) {
422 rogue
.gold
= MAX_GOLD
;
428 get_value(const object
*obj
)
434 wc
= obj
->which_kind
;
436 switch(obj
->what_is
) {
438 val
= id_weapons
[wc
].value
;
439 if ((wc
== ARROW
) || (wc
== DAGGER
) || (wc
== SHURIKEN
) ||
441 val
*= obj
->quantity
;
443 val
+= (obj
->d_enchant
* 85);
444 val
+= (obj
->hit_enchant
* 85);
447 val
= id_armors
[wc
].value
;
448 val
+= (obj
->d_enchant
* 75);
449 if (obj
->is_protected
) {
454 val
= id_wands
[wc
].value
* (obj
->class + 1);
457 val
= id_scrolls
[wc
].value
* obj
->quantity
;
460 val
= id_potions
[wc
].value
* obj
->quantity
;
466 val
= id_rings
[wc
].value
* (obj
->class + 1);
480 for (i
= 0; i
< SCROLS
; i
++) {
481 id_scrolls
[i
].id_status
= IDENTIFIED
;
483 for (i
= 0; i
< WEAPONS
; i
++) {
484 id_weapons
[i
].id_status
= IDENTIFIED
;
486 for (i
= 0; i
< ARMORS
; i
++) {
487 id_armors
[i
].id_status
= IDENTIFIED
;
489 for (i
= 0; i
< WANDS
; i
++) {
490 id_wands
[i
].id_status
= IDENTIFIED
;
492 for (i
= 0; i
< POTIONS
; i
++) {
493 id_potions
[i
].id_status
= IDENTIFIED
;
498 name_cmp(char *s1
, const char *s2
)
503 while(s1
[i
] != ':') {
513 xxxx(char *buf
, short n
)
518 for (i
= 0; i
< n
; i
++) {
520 /* It does not matter if accuracy is lost during this assignment */
521 c
= (unsigned char)xxx(0);
538 r
= ((f
* s
) + 9337) % 8887;
545 nickize(char *buf
, const char *score
, const char *n_name
)
552 strncpy(buf
, score
, 16);
554 while (score
[i
] != ':') {
558 strcpy(buf
+15, n_name
);
562 buf
[j
++] = score
[i
++];
570 center(short row
, const char *buf
)
574 margin
= ((DCOLS
- strlen(buf
)) / 2);
575 mvaddstr(row
, margin
, buf
);
583 clean_up("sorry, score file is out of order");