summaryrefslogtreecommitdiffstats
path: root/rogue/score.c
blob: 4bcf4e3691cdffe43d878a39d40cf2b8ed288631 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
/*	$NetBSD: score.c,v 1.16 2011/08/26 06:18:17 dholland Exp $	*/

/*
 * Copyright (c) 1988, 1993
 *	The Regents of the University of California.  All rights reserved.
 *
 * This code is derived from software contributed to Berkeley by
 * Timothy C. Stoehr.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)score.c	8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: score.c,v 1.16 2011/08/26 06:18:17 dholland Exp $");
#endif
#endif /* not lint */

/*
 * score.c
 *
 * This source herein may be modified and/or distributed by anybody who
 * so desires, with the following restrictions:
 *    1.)  No portion of this notice shall be removed.
 *    2.)  Credit shall not be taken for the creation of this source.
 *    3.)  This code is not to be traded, sold, or used for personal
 *         gain or profit.
 *
 */

#include <stdio.h>
#include "rogue.h"
#include "pathnames.h"

static void center(short, const char *);
static int get_value(const object *);
static void id_all(void);
static void sell_pack(void);
static void sf_error(void) __dead;

void
killed_by(const object *monster, short other)
{
	const char *mechanism = "killed by something unknown (?)";
	char mechanism_buf[128];
	const char *article;
	char message_buf[128];

	md_ignore_signals();

	if (other != QUIT) {
		rogue.gold = ((rogue.gold * 9) / 10);
	}

	if (other) {
		switch(other) {
		case HYPOTHERMIA:
			mechanism = "died of hypothermia";
			break;
		case STARVATION:
			mechanism = "died of starvation";
			break;
		case POISON_DART:
			mechanism = "killed by a dart";
			break;
		case QUIT:
			mechanism = "quit";
			break;
		case KFIRE:
			mechanism = "killed by fire";
			break;
		}
	} else {
		if (is_vowel(m_names[monster->m_char - 'A'][0])) {
			article = "an";
		} else {
			article = "a";
		}
		snprintf(mechanism_buf, sizeof(mechanism_buf),
			"Killed by %s %s",
			 article, m_names[monster->m_char - 'A']);
		mechanism = mechanism_buf;
	}
	snprintf(message_buf, sizeof(message_buf),
		 "%s with %ld gold", mechanism, rogue.gold);

	if ((!other) && (!no_skull)) {
		clear();
		mvaddstr(4, 32, "__---------__");
		mvaddstr(5, 30, "_~             ~_");
		mvaddstr(6, 29, "/                 \\");
		mvaddstr(7, 28, "~                   ~");
		mvaddstr(8, 27, "/                     \\");
		mvaddstr(9, 27, "|    XXXX     XXXX    |");
		mvaddstr(10, 27, "|    XXXX     XXXX    |");
		mvaddstr(11, 27, "|    XXX       XXX    |");
		mvaddstr(12, 28, "\\         @         /");
		mvaddstr(13, 29, "--\\     @@@     /--");
		mvaddstr(14, 30, "| |    @@@    | |");
		mvaddstr(15, 30, "| |           | |");
		mvaddstr(16, 30, "| vvVvvvvvvvVvv |");
		mvaddstr(17, 30, "|  ^^^^^^^^^^^  |");
		mvaddstr(18, 31, "\\_           _/");
		mvaddstr(19, 33, "~---------~");
		center(21, nick_name);
		center(22, message_buf);
	} else {
		messagef(0, "%s", message_buf);
	}
	messagef(0, "%s", "");		/* gcc objects to just "" */
	put_scores(monster, other);
}

void
win(void)
{
	unwield(rogue.weapon);		/* disarm and relax */
	unwear(rogue.armor);
	un_put_on(rogue.left_ring);
	un_put_on(rogue.right_ring);

	clear();
	mvaddstr(10, 11, "@   @  @@@   @   @      @  @  @   @@@   @   @   @");
	mvaddstr(11, 11, " @ @  @   @  @   @      @  @  @  @   @  @@  @   @");
	mvaddstr(12, 11, "  @   @   @  @   @      @  @  @  @   @  @ @ @   @");
	mvaddstr(13, 11, "  @   @   @  @   @      @  @  @  @   @  @  @@");
	mvaddstr(14, 11, "  @    @@@    @@@        @@ @@    @@@   @   @   @");
	mvaddstr(17, 11, "Congratulations,  you have  been admitted  to  the");
	mvaddstr(18, 11, "Fighters' Guild.   You return home,  sell all your");
	mvaddstr(19, 11, "treasures at great profit and retire into comfort.");
	messagef(0, "%s", "");		/* gcc objects to just "" */
	messagef(0, "%s", "");		/* gcc objects to just "" */
	id_all();
	sell_pack();
	put_scores(NULL, WIN);
}

void
quit(boolean from_intrpt)
{
	char buf[DCOLS];
	short i, orow, ocol;
	boolean mc;

	orow = ocol = 0;
	mc = FALSE;
	md_ignore_signals();

	if (from_intrpt) {
		orow = rogue.row;
		ocol = rogue.col;

		mc = msg_cleared;

		for (i = 0; i < DCOLS; i++) {
			buf[i] = mvinch(0, i);
		}
	}
	check_message();
	messagef(1, "really quit?");
	if (rgetchar() != 'y') {
		md_heed_signals();
		check_message();
		if (from_intrpt) {
			for (i = 0; i < DCOLS; i++) {
				mvaddch(0, i, buf[i]);
			}
			msg_cleared = mc;
			move(orow, ocol);
			refresh();
		}
		return;
	}
	if (from_intrpt) {
		clean_up(byebye_string);
	}
	check_message();
	killed_by(NULL, QUIT);
}

/*
 * The score file on disk is up to ten entries of the form
 *      score block [80 bytes]
 *      nickname block [30 bytes]
 *
 * The score block is to be parsed as follows:
 *      bytes 0-1	Rank (" 1" to "10")
 *      bytes 2-4	space padding
 *      bytes 5-15	Score/gold
 *      byte 15 up to a ':'	Login name
 *      past the ':'    Death mechanism
 *
 * The nickname block is an alternate name to be printed in place of the
 * login name. Both blocks are supposed to contain a null-terminator.
 */

struct score_entry {
	long gold;
	char username[80];
	char death[80];
	char nickname[30];
};

#define NUM_SCORE_ENTRIES 10

static void make_score(struct score_entry *, const object *, int);

static
void
pad_spaces(char *str, size_t len)
{
	size_t x;
	for (x=strlen(str); x<len-1; x++) {
		str[x] = ' ';
	}
	str[len-1] = 0;
}

static
void
unpad_spaces(char *str)
{
	size_t x;
	for (x=strlen(str); x>0 && str[x-1]==' '; x--);
	str[x] = 0;
}

static
int
read_score_entry(struct score_entry *se, FILE *fp)
{
	char score_block[80];
	char nickname_block[30];
	size_t n, x;

	n = fread(score_block, 1, sizeof(score_block), fp);
	if (n==0) {
		/* EOF */
		return 0;
	}
	if (n != sizeof(score_block)) {
		sf_error();
	}

	n = fread(nickname_block, 1, sizeof(nickname_block), fp);
	if (n != sizeof(nickname_block)) {
		sf_error();
	}

	xxxx(score_block, sizeof(score_block));
	xxxx(nickname_block, sizeof(nickname_block));

	/* Ensure null termination */
	score_block[sizeof(score_block)-1] = 0;
	nickname_block[sizeof(nickname_block)-1] = 0;

	/* If there are other nulls in the score block, file is corrupt */
	if (strlen(score_block)!=sizeof(score_block)-1) {
		sf_error();
	}
	/* but this is NOT true of the nickname block */

	/* quash trailing spaces */
	unpad_spaces(score_block);
	unpad_spaces(nickname_block);

	for (x=5; score_block[x] == ' '; x++);
	se->gold = lget_number(score_block+x);

	for (x=15; score_block[x] != 0 && score_block[x] != ':'; x++);
	if (score_block[x] == 0) {
		sf_error();
	}
	score_block[x++] = 0;
	strlcpy(se->username, score_block+15, sizeof(se->username));

	strlcpy(se->death, score_block+x, sizeof(se->death));
	strlcpy(se->nickname, nickname_block, sizeof(se->nickname));

	return 1;
}

static
void
write_score_entry(const struct score_entry *se, int rank, FILE *fp)
{
	char score_block[80];
	char nickname_block[30];

	/* avoid writing crap to score file */
	memset(score_block, 0, sizeof(score_block));
	memset(nickname_block, 0, sizeof(nickname_block));

	snprintf(score_block, sizeof(score_block),
		 "%2d    %6ld   %s: %s",
		 rank+1, se->gold, se->username, se->death);
	strlcpy(nickname_block, se->nickname, sizeof(nickname_block));

	/* pad blocks out with spaces */
	pad_spaces(score_block, sizeof(score_block));
	/*pad_spaces(nickname_block, sizeof(nickname_block)); -- wrong! */

	xxxx(score_block, sizeof(score_block));
	xxxx(nickname_block, sizeof(nickname_block));

	fwrite(score_block, 1, sizeof(score_block), fp);
	fwrite(nickname_block, 1, sizeof(nickname_block), fp);
}

void
put_scores(const object *monster, short other)
{
	short i, rank=-1, found_player = -1, numscores = 0;
	struct score_entry scores[NUM_SCORE_ENTRIES];
	const char *name;
	FILE *fp;
	boolean dopause = score_only;

	md_lock(1);

	setegid(egid);
	if ((fp = fopen(_PATH_SCOREFILE, "r+")) == NULL &&
	    (fp = fopen(_PATH_SCOREFILE, "w+")) == NULL) {
		setegid(gid);
		messagef(0, "cannot read/write/create score file");
		sf_error();
	}
	setegid(gid);
	rewind(fp);
	(void)xxx(1);

	for (numscores = 0; numscores < NUM_SCORE_ENTRIES; numscores++) {
		if (read_score_entry(&scores[numscores], fp) == 0) {
			break;
		}
	}

	/* Search the score list. */
	for (i=0; i<numscores; i++) {
		if (!strcmp(scores[i].username, login_name)) {
			/* found our score */
			if (rogue.gold < scores[i].gold) {
				/* we didn't do as well as last time */
				score_only = 1;
			} else {
				/* we did better; mark entry for removal */
				found_player = i;
			}
			break;
		}
	}

	/* Remove a superseded entry, if any. */
	if (found_player != -1) {
		numscores--;
		for (i = found_player; i < numscores; i++) {
			scores[i] = scores[i+1];
		}
	}

	/* If we're going to insert ourselves, do it now */
	if (!score_only) {

		/* if we aren't better than anyone, add at end. */
		rank = numscores;

		/* Otherwise, find our slot. */
		for (i = 0; i < numscores; i++) {
			if (rogue.gold >= scores[i].gold) {
				rank = i;
				break;
			}
		}

		if (rank < NUM_SCORE_ENTRIES) {
			/* Open up a slot */
			for (i = numscores; i > rank; i--) {
				scores[i] = scores[i-1];
			}
			numscores++;

			/* Put our info in the slot */
			make_score(&scores[rank], monster, other);
		}

		/* Now rewrite the score file */

		md_ignore_signals();
		rewind(fp);
		(void)xxx(1);

		for (i = 0; i < numscores; i++) {
			write_score_entry(&scores[i], i, fp);
		}
	}
	md_lock(0);
	fclose(fp);

	/* Display the scores */

	clear();
	mvaddstr(3, 30, "Top  Ten  Rogueists");
	mvaddstr(8, 0, "Rank   Score   Name");

	for (i = 0; i < numscores; i++) {
		if (i == rank) {
			standout();
		}

		if (scores[i].nickname[0]) {
			name = scores[i].nickname;
		} else {
			name = scores[i].username;
		}

		mvprintw(i+10, 0, "%2d    %6ld   %s: %s",
			 i+1, scores[i].gold, name, scores[i].death);

		if (i == rank) {
			standend();
		}
	}
	refresh();
	messagef(0, "%s", "");		/* gcc objects to just "" */
	if (dopause) {
		messagef(0, "%s", "");
	}
	clean_up("");
}

static
void
make_score(struct score_entry *se, const object *monster, int other)
{
	const char *death = "bolts from the blue (?)";
	const char *hasamulet;
	char deathbuf[80];

	se->gold = rogue.gold;
	strlcpy(se->username, login_name, sizeof(se->username));

	if (other) {
		switch(other) {
		case HYPOTHERMIA:
			death = "died of hypothermia";
			break;
		case STARVATION:
			death = "died of starvation";
			break;
		case POISON_DART:
			death = "killed by a dart";
			break;
		case QUIT:
			death = "quit";
			break;
		case WIN:
			death = "a total winner";
			break;
		case KFIRE:
			death = "killed by fire";
			break;
		}
	} else {
		const char *mn, *article;

		mn = m_names[monster->m_char - 'A'];
		if (is_vowel(mn[0])) {
			article = "an";
		} else {
			article = "a";
		}

		snprintf(deathbuf, sizeof(deathbuf),
			 "killed by %s %s", article, mn);
		death = deathbuf;
	}

	if (other != WIN && has_amulet()) {
		hasamulet = " with amulet";
	} else {
		hasamulet = "";
	}

	snprintf(se->death, sizeof(se->death), "%s on level %d%s",
		 death, max_level, hasamulet);

	strlcpy(se->nickname, nick_name, sizeof(se->nickname));
}

boolean
is_vowel(short ch)
{
	return( (ch == 'a') ||
		(ch == 'e') ||
		(ch == 'i') ||
		(ch == 'o') ||
		(ch == 'u') );
}

static void
sell_pack(void)
{
	object *obj;
	short row = 2, val;
	char buf[DCOLS];

	obj = rogue.pack.next_object;

	clear();
	mvaddstr(1, 0, "Value      Item");

	while (obj) {
		if (obj->what_is != FOOD) {
			obj->identified = 1;
			val = get_value(obj);
			rogue.gold += val;

			if (row < DROWS) {
				get_desc(obj, buf, sizeof(buf));
				mvprintw(row++, 0, "%5d      %s", val, buf);
			}
		}
		obj = obj->next_object;
	}
	refresh();
	if (rogue.gold > MAX_GOLD) {
		rogue.gold = MAX_GOLD;
	}
	messagef(0, "%s", "");		/* gcc objects to just "" */
}

static int
get_value(const object *obj)
{
	short wc;
	int val;

	val = 0;
	wc = obj->which_kind;

	switch(obj->what_is) {
	case WEAPON:
		val = id_weapons[wc].value;
		if ((wc == ARROW) || (wc == DAGGER) || (wc == SHURIKEN) ||
			(wc == DART)) {
			val *= obj->quantity;
		}
		val += (obj->d_enchant * 85);
		val += (obj->hit_enchant * 85);
		break;
	case ARMOR:
		val = id_armors[wc].value;
		val += (obj->d_enchant * 75);
		if (obj->is_protected) {
			val += 200;
		}
		break;
	case WAND:
		val = id_wands[wc].value * (obj->class + 1);
		break;
	case SCROL:
		val = id_scrolls[wc].value * obj->quantity;
		break;
	case POTION:
		val = id_potions[wc].value * obj->quantity;
		break;
	case AMULET:
		val = 5000;
		break;
	case RING:
		val = id_rings[wc].value * (obj->class + 1);
		break;
	}
	if (val <= 0) {
		val = 10;
	}
	return(val);
}

static void
id_all(void)
{
	short i;

	for (i = 0; i < SCROLS; i++) {
		id_scrolls[i].id_status = IDENTIFIED;
	}
	for (i = 0; i < WEAPONS; i++) {
		id_weapons[i].id_status = IDENTIFIED;
	}
	for (i = 0; i < ARMORS; i++) {
		id_armors[i].id_status = IDENTIFIED;
	}
	for (i = 0; i < WANDS; i++) {
		id_wands[i].id_status = IDENTIFIED;
	}
	for (i = 0; i < POTIONS; i++) {
		id_potions[i].id_status = IDENTIFIED;
	}
}

void
xxxx(char *buf, short n)
{
	short i;
	unsigned char c;

	for (i = 0; i < n; i++) {

		/* It does not matter if accuracy is lost during this assignment */
		c = (unsigned char)xxx(0);

		buf[i] ^= c;
	}
}

long
xxx(boolean st)
{
	static long f, s;
	long r;

	if (st) {
		f = 37;
		s = 7;
		return(0L);
	}
	r = ((f * s) + 9337) % 8887;
	f = s;
	s = r;
	return(r);
}

static void
center(short row, const char *buf)
{
	short margin;

	margin = ((DCOLS - strlen(buf)) / 2);
	mvaddstr(row, margin, buf);
}

static void
sf_error(void)
{
	md_lock(0);
	messagef(1, "%s", "");		/* gcc objects to just "" */
	clean_up("sorry, score file is out of order");
}