Merge from vendor branch GCC:
[dragonfly.git] / games / canfield / cfscores / cfscores.c
1 /*
2  * Copyright (c) 1983, 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. 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.
20  *
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
31  * SUCH DAMAGE.
32  *
33  * @(#) Copyright (c) 1983, 1993 The Regents of the University of California.  All rights reserved.
34  * @(#)cfscores.c       8.1 (Berkeley) 5/31/93
35  * $FreeBSD: src/games/canfield/cfscores/cfscores.c,v 1.9 1999/12/12 07:25:14 billf Exp $
36  * $DragonFly: src/games/canfield/cfscores/cfscores.c,v 1.4 2005/11/19 09:50:30 swildner Exp $
37  */
38
39 #include <sys/types.h>
40 #include <pwd.h>
41 #include <fcntl.h>
42 #include <unistd.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include "pathnames.h"
47
48 struct betinfo {
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 */
57 };
58
59 int dbfd;
60
61 static void     printuser(struct passwd *, int);
62
63 int
64 main(int argc, char **argv)
65 {
66         struct passwd *pw;
67         int uid;
68
69         if (argc > 2) {
70                 printf("Usage: cfscores [user]\n");
71                 exit(1);
72         }
73         dbfd = open(_PATH_SCORE, O_RDONLY);
74         if (dbfd < 0) {
75                 perror(_PATH_SCORE);
76                 exit(2);
77         }
78
79         setpwent();
80         if (argc == 1) {
81                 uid = getuid();
82                 pw = getpwuid(uid);
83                 if (pw == 0) {
84                         printf("You are not listed in the password file?!?\n");
85                         exit(2);
86                 }
87                 printuser(pw, 1);
88                 exit(0);
89         }
90         if (strcmp(argv[1], "-a") == 0) {
91                 while ((pw = getpwent()) != 0)
92                         printuser(pw, 0);
93                 exit(0);
94         }
95         pw = getpwnam(argv[1]);
96         if (pw == 0) {
97                 printf("User %s unknown\n", argv[1]);
98                 exit(3);
99         }
100         printuser(pw, 1);
101         return(0);
102 }
103
104 /*
105  * print out info for specified password entry
106  */
107 static void
108 printuser(struct passwd *pw, int printfail)
109 {
110         struct betinfo total;
111         int i;
112
113         i = lseek(dbfd, pw->pw_uid * sizeof(struct betinfo), SEEK_SET);
114         if (i < 0) {
115                 perror("lseek");
116                 return;
117         }
118         i = read(dbfd, (char *)&total, sizeof(total));
119         if (i < 0) {
120                 perror("read");
121                 return;
122         }
123         if (i == 0 || total.hand == 0) {
124                 if (printfail)
125                         printf("%s has never played canfield.\n", pw->pw_name);
126                 return;
127         }
128         printf("*----------------------*\n");
129         if (total.worth >= 0)
130                 printf("* Winnings for %-8s*\n", pw->pw_name);
131         else
132                 printf("* Losses for %-10s*\n", pw->pw_name);
133         printf("*======================*\n");
134         printf("|Costs           Total |\n");
135         printf("| Hands       %8ld |\n", total.hand);
136         printf("| Inspections %8ld |\n", total.inspection);
137         printf("| Games       %8ld |\n", total.game);
138         printf("| Runs        %8ld |\n", total.runs);
139         printf("| Information %8ld |\n", total.information);
140         printf("| Think time  %8ld |\n", total.thinktime);
141         printf("|Total Costs  %8ld |\n", total.wins - total.worth);
142         printf("|Winnings     %8ld |\n", total.wins);
143         printf("|Net Worth    %8ld |\n", total.worth);
144         printf("*----------------------*\n\n");
145 }