]> git.pond.sub.org Git - empserver/blob - src/lib/commands/chan.c
Permit no-op country name change again
[empserver] / src / lib / commands / chan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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  *  chan.c: Change country/representative name
28  *
29  *  Known contributors to this file:
30  *     Steve McClure, 2000
31  */
32
33 #include <config.h>
34
35 #include "commands.h"
36 #include "news.h"
37 #include "optlist.h"
38
39 int
40 chan(void)
41 {
42     char *p;
43     int charge;
44     int btucost;
45     char buf[1024];
46     struct natstr *us;
47
48     p = getstarg(player->argp[1], "country name or representative? ", buf);
49     if (!p)
50         return RET_SYN;
51     us = getnatp(player->cnum);
52     if (us->nat_stat == STAT_VIS) {
53         pr("Visitor countries can't change their country name or representative.\n");
54         return RET_FAIL;
55     }
56     switch (*p) {
57     case 'n':
58     case 'c':
59         charge = 0;
60         btucost = 0;
61         if (us->nat_stat == STAT_ACTIVE) {
62             if (opt_BLITZ == 0) {
63                 if (us->nat_btu < 254) {
64                     pr("You need 254 btus to change your country name!\n");
65                     return RET_FAIL;
66                 }
67                 pr("This command costs 254 BTU's and 10%% of your money.\n");
68                 if (!confirm("Are you sure you want to do this? "))
69                     return RET_FAIL;
70                 btucost = 254;
71                 if (us->nat_money <= 0)
72                     charge = 0;
73                 else
74                     charge = us->nat_money / 10;
75             }
76         }
77         p = getstarg(player->argp[2], "New country name -- ", buf);
78         if (!p)
79             return RET_SYN;
80         if (!check_nat_name(p, player->cnum))
81             return RET_FAIL;
82         player->dolcost += charge;
83         player->btused += btucost;
84         strcpy(us->nat_cnam, p);
85         putnat(us);
86         nreport(player->cnum, N_NAME_CHNG, 0, 1);
87         break;
88     case 'p':
89     case 'r':
90         pr("(note: these are stored in plain text.)\n");
91         p = getstarg(player->argp[2], "New representative name -- ", buf);
92         if (!p)
93             return RET_SYN;
94         p[sizeof(us->nat_pnam) - 1] = 0;
95         strcpy(us->nat_pnam, p);
96         putnat(us);
97         break;
98     default:
99         pr("Only \"country\" or \"representative\" can change.\n");
100         return RET_SYN;
101     }
102     return RET_OK;
103 }