]> git.pond.sub.org Git - empserver/blob - src/lib/commands/add.c
Update copyright notice
[empserver] / src / lib / commands / add.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2020, 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  *  add.c: Add a new country to the game
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 2000
31  *     Markus Armbruster, 2004-2016
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37
38 int
39 add(void)
40 {
41     struct natstr *natp;
42     int i;
43     char cntryname[sizeof(natp->nat_cnam)];
44     char pname[sizeof(natp->nat_pnam)];
45     natid freecn;
46     char prompt[128];
47     char buf[1024];
48     char *p;
49     int stat;
50
51     for (freecn = 0; NULL != (natp = getnatp(freecn)); freecn++) {
52         if (natp->nat_stat == STAT_UNUSED)
53             break;
54     }
55     if (freecn < MAXNOC)
56         sprintf(prompt, "New country number? (%d is unused) ", freecn);
57     else
58         strcpy(prompt, "New country number? (they all seem to be used) ");
59     p = getstarg(player->argp[1], prompt, buf);
60     if (!p || !*p)
61         return RET_SYN;
62     i = atoi(p);
63     if (i == 0) {
64         pr("Not allowed to add country #0\n");
65         return RET_FAIL;
66     }
67     natp = getnatp(i);
68     if (!natp) {
69         pr("Can't add country #%d\n", i);
70         return RET_FAIL;
71     }
72     p = getstarg(player->argp[2], "Country name? ", buf);
73     if (!p)
74         return RET_SYN;
75     if (!check_nat_name(p, natp->nat_cnum))
76         return RET_FAIL;
77     strcpy(cntryname, p);
78     p = getstarg(player->argp[3], "Representative? ", buf);
79     if (!p || !*p)
80         return RET_SYN;
81     if (strlen(p) >= sizeof(pname)) {
82         pr("Representative too long\n");
83         return RET_FAIL;
84     }
85     strcpy(pname, p);
86     p = getstarg(player->argp[4],
87                  "Status? (visitor, player, god, delete) ", buf);
88     if (!p || !*p)
89         return RET_SYN;
90     switch (*p) {
91     case 'v':
92         stat = STAT_VIS;
93         break;
94     case 'p':
95         stat = STAT_NEW;
96         break;
97     case 'g':
98         stat = STAT_GOD;
99         break;
100     case 'd':
101         stat = STAT_UNUSED;
102         break;
103     default:
104         pr("Illegal status\n");
105         return RET_SYN;
106     }
107     if (stat == STAT_UNUSED
108         ? natp->nat_stat >= STAT_SANCT : natp->nat_stat != STAT_UNUSED) {
109         pr("Country %s status is %s.\n"
110            "%s it in this state is normally a bad idea.",
111            prnat(natp), symbol_by_value(natp->nat_stat, nation_status),
112            stat == STAT_UNUSED ? "Deleting" : "Replacing");
113         if (!askyn("Are you sure? "))
114             return RET_FAIL;
115     }
116     if (getplayer(natp->nat_cnum)) {
117         pr("%s is logged in!\n", prnat(natp));
118         return RET_FAIL;
119     }
120
121     nat_reset(natp->nat_cnum, cntryname, pname, stat);
122     return RET_OK;
123 }