xref: /dragonfly/games/trek/score.c (revision d4ef6694)
1 /*-
2  * Copyright (c) 1980, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * @(#)score.c	8.1 (Berkeley) 5/31/93
30  * $FreeBSD: src/games/trek/score.c,v 1.4 1999/11/30 03:49:53 billf Exp $
31  * $DragonFly: src/games/trek/score.c,v 1.3 2006/09/07 21:19:44 pavalos Exp $
32  */
33 
34 #include "trek.h"
35 #include "getpar.h"
36 
37 /*
38 **  PRINT OUT THE CURRENT SCORE
39 */
40 
41 long
42 score(void)
43 {
44 	int		u;
45 	int		t;
46 	long		s;
47 	double		r;
48 
49 	printf("\n*** Your score:\n");
50 	s = t = Param.klingpwr / 4 * (u = Game.killk);
51 	if (t != 0)
52 		printf("%d Klingons killed\t\t\t%6d\n", u, t);
53 	r = Now.date - Param.date;
54 	if (r < 1.0)
55 		r = 1.0;
56 	r = Game.killk / r;
57 	s += (t = 400 * r);
58 	if (t != 0)
59 		printf("Kill rate %.2f Klingons/stardate  \t%6d\n", r, t);
60 	r = Now.klings;
61 	r /= Game.killk + 1;
62 	s += (t = -400 * r);
63 	if (t != 0)
64 		printf("Penalty for %d klingons remaining\t%6d\n", Now.klings, t);
65 	if (Move.endgame > 0) {
66 		s += (t = 100 * (u = Game.skill));
67 		printf("Bonus for winning a %s%s game\t\t%6d\n", Skitab[u - 1].abrev, Skitab[u - 1].full, t);
68 	}
69 	if (Game.killed) {
70 		s -= 500;
71 		printf("Penalty for getting killed\t\t  -500\n");
72 	}
73 	s += (t = -100 * (u = Game.killb));
74 	if (t != 0)
75 		printf("%d starbases killed\t\t\t%6d\n", u, t);
76 	s += (t = -100 * (u = Game.helps));
77 	if (t != 0)
78 		printf("%d calls for help\t\t\t%6d\n", u, t);
79 	s += (t = -5 * (u = Game.kills));
80 	if (t != 0)
81 		printf("%d stars destroyed\t\t\t%6d\n", u, t);
82 	s += (t = -150 * (u = Game.killinhab));
83 	if (t != 0)
84 		printf("%d inhabited starsystems destroyed\t%6d\n", u, t);
85 	if (Ship.ship != ENTERPRISE) {
86 		s -= 200;
87 		printf("penalty for abandoning ship\t\t  -200\n");
88 	}
89 	s += (t = 3 * (u = Game.captives));
90 	if (t != 0)
91 		printf("%d Klingons captured\t\t\t%6d\n", u, t);
92 	s += (t = -(u = Game.deaths));
93 	if (t != 0)
94 		printf("%d casualties\t\t\t\t%6d\n", u, t);
95 	printf("\n***  TOTAL\t\t\t%14ld\n", s);
96 	return (s);
97 }
98