]> git.pond.sub.org Git - empserver/blob - src/lib/commands/chan.c
6c15bca64eb41ccd61d2fb69b5a9abd93f0bf866
[empserver] / src / lib / commands / chan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2017, 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     switch (*p) {
53     case 'n':
54     case 'c':
55         charge = 0;
56         btucost = 0;
57         if (us->nat_stat == STAT_ACTIVE) {
58             if (opt_BLITZ == 0) {
59                 if (us->nat_btu < 254) {
60                     pr("You need 254 BTUs to change your country name!\n");
61                     return RET_FAIL;
62                 }
63                 pr("This command costs 254 BTUs and 10%% of your money.\n");
64                 if (!confirm("Are you sure you want to do this? "))
65                     return RET_FAIL;
66                 btucost = 254;
67                 if (us->nat_money <= 0)
68                     charge = 0;
69                 else
70                     charge = us->nat_money / 10;
71             }
72         }
73         p = getstarg(player->argp[2], "New country name -- ", buf);
74         if (!p)
75             return RET_SYN;
76         if (!check_nat_name(p, player->cnum))
77             return RET_FAIL;
78         player->dolcost += charge;
79         player->btused += btucost;
80         strcpy(us->nat_cnam, p);
81         putnat(us);
82         nreport(player->cnum, N_NAME_CHNG, 0, 1);
83         break;
84     case 'p':
85     case 'r':
86         pr("(note: these are stored in plain text.)\n");
87         p = getstarg(player->argp[2], "New representative name -- ", buf);
88         if (!p)
89             return RET_SYN;
90         p[sizeof(us->nat_pnam) - 1] = 0;
91         strcpy(us->nat_pnam, p);
92         putnat(us);
93         break;
94     default:
95         pr("Only \"country\" or \"representative\" can change.\n");
96         return RET_SYN;
97     }
98     return RET_OK;
99 }