]> git.pond.sub.org Git - empserver/blob - src/lib/subs/natarg.c
Update copyright notice
[empserver] / src / lib / subs / natarg.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  *  natarg.c: Return countr # given country name or country #
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2006-2009
31  */
32
33 #include <config.h>
34
35 #include <ctype.h>
36 #include <stdlib.h>
37 #include "file.h"
38 #include "match.h"
39 #include "misc.h"
40 #include "nat.h"
41 #include "optlist.h"
42 #include "player.h"
43 #include "prototypes.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 || !*arg)
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 }