]> git.pond.sub.org Git - empserver/blob - src/lib/gen/numstr.c
ff89169c6f7bf3520a5f5a06a6acd66ed7e61e3e
[empserver] / src / lib / gen / numstr.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2012, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  numstr.c: Turn a number into a word
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 2000
31  */
32
33 #include <config.h>
34
35 #include "prototypes.h"
36
37 char *
38 numstr(char *buf, int n)
39 {
40     static char *numnames[] = {
41         "zero", "one", "two", "three", "four", "five", "six",
42         "seven", "eight", "nine", "ten", "eleven", "twelve",
43         "thirteen", "fourteen", "fifteen", "sixteen",
44         "seventeen", "eighteen", "nineteen",
45     };
46     static char *tennames[] = {
47         "", "", "twenty", "thirty", "forty", "fifty",
48         "sixty", "seventy", "eighty", "ninety", "hundred"
49     };
50
51     if (n > 100) {
52         (void)strcpy(buf, "several");
53     } else if (n < 0) {
54         (void)strcpy(buf, "a negative number of");
55     } else {
56         if (n >= 20) {
57             (void)strcpy(buf, tennames[n / 10]);
58             if (n % 10) {
59                 (void)strcat(buf, "-");
60                 (void)strcat(buf, numnames[n % 10]);
61             }
62         } else {
63             (void)strcpy(buf, numnames[n % 20]);
64         }
65     }
66     return buf;
67 }
68
69 char *
70 effadv(int n)
71 {
72     static char *effadv_list[] = {
73         "minimally", "partially", "moderately", "completely",
74     };
75
76     if (n < 0)
77         n = 0;
78     if (n >= 100)
79         n = 99;
80     return effadv_list[n / 25];
81 }