]> git.pond.sub.org Git - empserver/blob - src/lib/subs/natarg.c
(natargp): Only return countries in use. Unused countries could lead
[empserver] / src / lib / subs / natarg.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program 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 2 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, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  natarg.c: Return countr # given country name or country #
29  * 
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2006
32  */
33
34 #include <config.h>
35
36 #include <ctype.h>
37 #include "misc.h"
38 #include "nat.h"
39 #include "player.h"
40 #include "file.h"
41 #include "match.h"
42 #include "prototypes.h"
43 #include "optlist.h"
44
45 /*
46  * Get nation argument.
47  * If ARG is not empty, use it, else prompt for input using PROMPT.
48  * If no input is provided, return NULL.
49  * If the argument identifies a country, return its getnatp() value.
50  * Else complain and return NULL.
51  * Caution: this function doesn't care for lack of contact.
52  */
53 struct natstr *
54 natargp(char *arg, char *prompt)
55 {
56     char buf[1024];
57     int n;
58     struct natstr *np;
59
60     arg = getstarg(arg, prompt, buf);
61     if (arg == 0 || *arg == 0)
62         return NULL;
63     if (isdigit(*arg))
64         n = atoi(arg);
65     else {
66         n = cnumb(arg);
67         if (n == M_NOTUNIQUE) {
68             pr("Country '%s' is ambiguous\n", arg);
69             return NULL;
70         }
71     }
72     np = getnatp(n);
73     if (!np || np->nat_stat == STAT_UNUSED) {
74         pr("Country '%s' doesn't exist.\n", arg);
75         return NULL;
76     }
77     return np;
78 }
79
80 /*
81  * Get nation argument.
82  * If ARG is not empty, use it, else prompt for input using PROMPT.
83  * If no input is provided, return -1.
84  * If the argument identifies a country, return its number.  getnatp()
85  * can be assumed to succeed for this number.
86  * Else complain and return -1.
87  * If HIDDEN is enabled, countries not contacted are not eligible
88  * unless the player is a deity.
89  */
90 int
91 natarg(char *arg, char *prompt)
92 {
93     struct natstr *np = natargp(arg, prompt);
94     if (!np)
95         return -1;
96     if (opt_HIDDEN) {
97         if (!player->god && !getcontact(getnatp(player->cnum), np->nat_cnum)) {
98             if (np->nat_stat != STAT_GOD) {
99                 pr("Country '%s' has not been contacted.\n", arg);
100                 return -1;
101             }
102         }
103     }
104     return np->nat_cnum;
105 }