]> git.pond.sub.org Git - empserver/blob - src/lib/subs/natarg.c
(natarg): No caller distinguishes between the two different failure
[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 "prototypes.h"
42 #include "optlist.h"
43
44 /*
45  * Get nation argument.
46  * If ARG is not empty, use it, else prompt for input using PROMPT.
47  * If no input is provided, return -1.
48  * If the argument identifies a country, return its number.  getnatp()
49  * can be assumed to succeed for this number.
50  * Else complain and return -1.
51  * If HIDDEN is enabled, countries not contacted are not eligible
52  * unless the player is a deity.
53  */
54 int
55 natarg(char *arg, char *prompt)
56 {
57     char buf[1024];
58     int n;
59     struct natstr *np;
60
61     arg = getstarg(arg, prompt, buf);
62     if (arg == 0 || *arg == 0)
63         return -1;
64     if (isdigit(*arg))
65         n = atoi(arg);
66     else
67         n = cnumb(arg);
68     np = getnatp(n);
69     if (!np) {
70         pr("Country '%s' doesn't exist.\n", arg);
71         return -1;
72     }
73     if (opt_HIDDEN) {
74         if (!player->god && !getcontact(getnatp(player->cnum), n)) {
75             if (np->nat_stat != STAT_GOD) {
76                 pr("Country '%s' has not been contacted.\n", arg);
77                 return -1;
78             }
79         }
80     }
81     return n;
82 }