]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - games/arithmetic/arithmetic.c
Merge a bunch of cleanups from NetBSD.
[FreeBSD/FreeBSD.git] / games / arithmetic / arithmetic.c
1 /*
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Eamonn McManus of Trinity College Dublin.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  */
36
37 #ifndef lint
38 static char copyright[] =
39 "@(#) Copyright (c) 1989, 1993\n\
40         The Regents of the University of California.  All rights reserved.\n";
41 #endif /* not lint */
42
43 #ifndef lint
44 static char sccsid[] = "@(#)arithmetic.c        8.1 (Berkeley) 5/31/93";
45 #endif /* not lint */
46
47 /*
48  * By Eamonn McManus, Trinity College Dublin <emcmanus@cs.tcd.ie>.
49  *
50  * The operation of this program mimics that of the standard Unix game
51  * `arithmetic'.  I've made it as close as I could manage without examining
52  * the source code.  The principal differences are:
53  *
54  * The method of biasing towards numbers that had wrong answers in the past
55  * is different; original `arithmetic' seems to retain the bias forever,
56  * whereas this program lets the bias gradually decay as it is used.
57  *
58  * Original `arithmetic' delays for some period (3 seconds?) after printing
59  * the score.  I saw no reason for this delay, so I scrapped it.
60  *
61  * There is no longer a limitation on the maximum range that can be supplied
62  * to the program.  The original program required it to be less than 100.
63  * Anomalous results may occur with this program if ranges big enough to
64  * allow overflow are given.
65  *
66  * I have obviously not attempted to duplicate bugs in the original.  It
67  * would go into an infinite loop if invoked as `arithmetic / 0'.  It also
68  * did not recognise an EOF in its input, and would continue trying to read
69  * after it.  It did not check that the input was a valid number, treating any
70  * garbage as 0.  Finally, it did not flush stdout after printing its prompt,
71  * so in the unlikely event that stdout was not a terminal, it would not work
72  * properly.
73  */
74
75 #include <sys/types.h>
76 #include <sys/signal.h>
77 #include <ctype.h>
78 #include <stdio.h>
79 #include <string.h>
80 #include <stdlib.h>
81
82 const char keylist[] = "+-x/";
83 const char defaultkeys[] = "+-";
84 const char *keys = defaultkeys;
85 int nkeys = sizeof(defaultkeys) - 1;
86 int rangemax = 10;
87 int nright, nwrong;
88 time_t qtime;
89 #define NQUESTS 20
90
91 /*
92  * Select keys from +-x/ to be asked addition, subtraction, multiplication,
93  * and division problems.  More than one key may be given.  The default is
94  * +-.  Specify a range to confine the operands to 0 - range.  Default upper
95  * bound is 10.  After every NQUESTS questions, statistics on the performance
96  * so far are printed.
97  */
98 void
99 main(argc, argv)
100         int argc;
101         char **argv;
102 {
103         extern char *optarg;
104         extern int optind;
105         int ch, cnt;
106         void intr();
107
108         /* Revoke setgid privileges */
109         setgid(getgid());
110
111         while ((ch = getopt(argc, argv, "r:o:")) != -1)
112                 switch(ch) {
113                 case 'o': {
114                         register const char *p;
115
116                         for (p = keys = optarg; *p; ++p)
117                                 if (!index(keylist, *p)) {
118                                         (void)fprintf(stderr,
119                                             "arithmetic: unknown key.\n");
120                                         exit(1);
121                                 }
122                         nkeys = p - optarg;
123                         break;
124                 }
125                 case 'r':
126                         if ((rangemax = atoi(optarg)) <= 0) {
127                                 (void)fprintf(stderr,
128                                     "arithmetic: invalid range.\n");
129                                 exit(1);
130                         }
131                         break;
132                 case '?':
133                 default:
134                         usage();
135                 }
136         if (argc -= optind)
137                 usage();
138
139         /* Seed the random-number generator. */
140         srandomdev();
141
142         (void)signal(SIGINT, intr);
143
144         /* Now ask the questions. */
145         for (;;) {
146                 for (cnt = NQUESTS; cnt--;)
147                         if (problem() == EOF)
148                                 exit(0);
149                 showstats();
150         }
151         /* NOTREACHED */
152 }
153
154 /* Handle interrupt character.  Print score and exit. */
155 void
156 intr()
157 {
158         showstats();
159         exit(0);
160 }
161
162 /* Print score.  Original `arithmetic' had a delay after printing it. */
163 showstats()
164 {
165         if (nright + nwrong > 0) {
166                 (void)printf("\n\nRights %d; Wrongs %d; Score %d%%",
167                     nright, nwrong, (int)(100L * nright / (nright + nwrong)));
168                 if (nright > 0)
169         (void)printf("\nTotal time %ld seconds; %.1f seconds per problem\n\n",
170                             (long)qtime, (float)qtime / nright);
171         }
172         (void)printf("\n");
173 }
174
175 /*
176  * Pick a problem and ask it.  Keeps asking the same problem until supplied
177  * with the correct answer, or until EOF or interrupt is typed.  Problems are
178  * selected such that the right operand and either the left operand (for +, x)
179  * or the correct result (for -, /) are in the range 0 to rangemax.  Each wrong
180  * answer causes the numbers in the problem to be penalised, so that they are
181  * more likely to appear in subsequent problems.
182  */
183 problem()
184 {
185         register char *p;
186         time_t start, finish;
187         int left, op, right, result;
188         char line[80];
189
190         op = keys[random() % nkeys];
191         if (op != '/')
192                 right = getrandom(rangemax + 1, op, 1);
193 retry:
194         /* Get the operands. */
195         switch (op) {
196         case '+':
197                 left = getrandom(rangemax + 1, op, 0);
198                 result = left + right;
199                 break;
200         case '-':
201                 result = getrandom(rangemax + 1, op, 0);
202                 left = right + result;
203                 break;
204         case 'x':
205                 left = getrandom(rangemax + 1, op, 0);
206                 result = left * right;
207                 break;
208         case '/':
209                 right = getrandom(rangemax, op, 1) + 1;
210                 result = getrandom(rangemax + 1, op, 0);
211                 left = right * result + random() % right;
212                 break;
213         }
214
215         /*
216          * A very big maxrange could cause negative values to pop
217          * up, owing to overflow.
218          */
219         if (result < 0 || left < 0)
220                 goto retry;
221
222         (void)printf("%d %c %d =   ", left, op, right);
223         (void)fflush(stdout);
224         (void)time(&start);
225
226         /*
227          * Keep looping until the correct answer is given, or until EOF or
228          * interrupt is typed.
229          */
230         for (;;) {
231                 if (!fgets(line, sizeof(line), stdin)) {
232                         (void)printf("\n");
233                         return(EOF);
234                 }
235                 for (p = line; *p && isspace(*p); ++p);
236                 if (!isdigit(*p)) {
237                         (void)printf("Please type a number.\n");
238                         continue;
239                 }
240                 if (atoi(p) == result) {
241                         (void)printf("Right!\n");
242                         ++nright;
243                         break;
244                 }
245                 /* Wrong answer; penalise and ask again. */
246                 (void)printf("What?\n");
247                 ++nwrong;
248                 penalise(right, op, 1);
249                 if (op == 'x' || op == '+')
250                         penalise(left, op, 0);
251                 else
252                         penalise(result, op, 0);
253         }
254
255         /*
256          * Accumulate the time taken.  Obviously rounding errors happen here;
257          * however they should cancel out, because some of the time you are
258          * charged for a partially elapsed second at the start, and some of
259          * the time you are not charged for a partially elapsed second at the
260          * end.
261          */
262         (void)time(&finish);
263         qtime += finish - start;
264         return(0);
265 }
266
267 /*
268  * Here is the code for accumulating penalties against the numbers for which
269  * a wrong answer was given.  The right operand and either the left operand
270  * (for +, x) or the result (for -, /) are stored in a list for the particular
271  * operation, and each becomes more likely to appear again in that operation.
272  * Initially, each number is charged a penalty of WRONGPENALTY, giving it that
273  * many extra chances of appearing.  Each time it is selected because of this,
274  * its penalty is decreased by one; it is removed when it reaches 0.
275  *
276  * The penalty[] array gives the sum of all penalties in the list for
277  * each operation and each operand.  The penlist[] array has the lists of
278  * penalties themselves.
279  */
280
281 int penalty[sizeof(keylist) - 1][2];
282 struct penalty {
283         int value, penalty;     /* Penalised value and its penalty. */
284         struct penalty *next;
285 } *penlist[sizeof(keylist) - 1][2];
286
287 #define WRONGPENALTY    5       /* Perhaps this should depend on maxrange. */
288
289 /*
290  * Add a penalty for the number `value' to the list for operation `op',
291  * operand number `operand' (0 or 1).  If we run out of memory, we just
292  * forget about the penalty (how likely is this, anyway?).
293  */
294 penalise(value, op, operand)
295         int value, op, operand;
296 {
297         struct penalty *p;
298
299         op = opnum(op);
300         if ((p = (struct penalty *)malloc((u_int)sizeof(*p))) == NULL)
301                 return;
302         p->next = penlist[op][operand];
303         penlist[op][operand] = p;
304         penalty[op][operand] += p->penalty = WRONGPENALTY;
305         p->value = value;
306 }
307
308 /*
309  * Select a random value from 0 to maxval - 1 for operand `operand' (0 or 1)
310  * of operation `op'.  The random number we generate is either used directly
311  * as a value, or represents a position in the penalty list.  If the latter,
312  * we find the corresponding value and return that, decreasing its penalty.
313  */
314 getrandom(maxval, op, operand)
315         int maxval, op, operand;
316 {
317         int value;
318         register struct penalty **pp, *p;
319
320         op = opnum(op);
321         value = random() % (maxval + penalty[op][operand]);
322
323         /*
324          * 0 to maxval - 1 is a number to be used directly; bigger values
325          * are positions to be located in the penalty list.
326          */
327         if (value < maxval)
328                 return(value);
329         value -= maxval;
330
331         /*
332          * Find the penalty at position `value'; decrement its penalty and
333          * delete it if it reaches 0; return the corresponding value.
334          */
335         for (pp = &penlist[op][operand]; (p = *pp) != NULL; pp = &p->next) {
336                 if (p->penalty > value) {
337                         value = p->value;
338                         penalty[op][operand]--;
339                         if (--(p->penalty) <= 0) {
340                                 p = p->next;
341                                 (void)free((char *)*pp);
342                                 *pp = p;
343                         }
344                         return(value);
345                 }
346                 value -= p->penalty;
347         }
348         /*
349          * We can only get here if the value from the penalty[] array doesn't
350          * correspond to the actual sum of penalties in the list.  Provide an
351          * obscure message.
352          */
353         (void)fprintf(stderr, "arithmetic: bug: inconsistent penalties\n");
354         exit(1);
355         /* NOTREACHED */
356 }
357
358 /* Return an index for the character op, which is one of [+-x/]. */
359 opnum(op)
360         int op;
361 {
362         char *p;
363
364         if (op == 0 || (p = index(keylist, op)) == NULL) {
365                 (void)fprintf(stderr,
366                     "arithmetic: bug: op %c not in keylist %s\n", op, keylist);
367                 exit(1);
368         }
369         return(p - keylist);
370 }
371
372 /* Print usage message and quit. */
373 usage()
374 {
375         (void)fprintf(stderr, "usage: arithmetic [-o +-x/] [-r range]\n");
376         exit(1);
377 }