]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - canfield/cfscores/cfscores.c
2 * Copyright (c) 1983 Regents of the University of California.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 "@(#) Copyright (c) 1983 Regents of the University of California.\n\
37 All rights reserved.\n";
41 static char sccsid
[] = "@(#)cfscores.c 5.6 (Berkeley) 6/1/90";
44 #include <sys/types.h>
46 #include "pathnames.h"
49 long hand
; /* cost of dealing hand */
50 long inspection
; /* cost of inspecting hand */
51 long game
; /* cost of buying game */
52 long runs
; /* cost of running through hands */
53 long information
; /* cost of information */
54 long thinktime
; /* cost of thinking time */
55 long wins
; /* total winnings */
56 long worth
; /* net worth after costs */
65 register struct passwd
*pw
;
69 printf("Usage: cfscores [user]\n");
72 dbfd
= open(_PATH_SCORE
, 0);
82 printf("You are not listed in the password file?!?\n");
88 if (strcmp(argv
[1], "-a") == 0) {
89 while ((pw
= getpwent()) != 0)
93 pw
= getpwnam(argv
[1]);
95 printf("User %s unknown\n", argv
[1]);
103 * print out info for specified password entry
105 printuser(pw
, printfail
)
106 register struct passwd
*pw
;
109 struct betinfo total
;
112 if (pw
->pw_uid
< 0) {
113 printf("Bad uid %d\n", pw
->pw_uid
);
116 i
= lseek(dbfd
, pw
->pw_uid
* sizeof(struct betinfo
), 0);
121 i
= read(dbfd
, (char *)&total
, sizeof(total
));
126 if (i
== 0 || total
.hand
== 0) {
128 printf("%s has never played canfield.\n", pw
->pw_name
);
131 printf("*----------------------*\n");
132 if (total
.worth
>= 0)
133 printf("* Winnings for %-8s*\n", pw
->pw_name
);
135 printf("* Losses for %-10s*\n", pw
->pw_name
);
136 printf("*======================*\n");
137 printf("|Costs Total |\n");
138 printf("| Hands %8d |\n", total
.hand
);
139 printf("| Inspections %8d |\n", total
.inspection
);
140 printf("| Games %8d |\n", total
.game
);
141 printf("| Runs %8d |\n", total
.runs
);
142 printf("| Information %8d |\n", total
.information
);
143 printf("| Think time %8d |\n", total
.thinktime
);
144 printf("|Total Costs %8d |\n", total
.wins
- total
.worth
);
145 printf("|Winnings %8d |\n", total
.wins
);
146 printf("|Net Worth %8d |\n", total
.worth
);
147 printf("*----------------------*\n\n");