]> git.pond.sub.org Git - empserver/blob - src/lib/commands/chan.c
Update copyright notice.
[empserver] / src / lib / commands / chan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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  *  chan.c: Change country/representative name
29  * 
30  *  Known contributors to this file:
31  *     Steve McClure, 2000
32  *     
33  */
34
35 #include <ctype.h>
36 #include "misc.h"
37 #include "player.h"
38 #include "nat.h"
39 #include "file.h"
40 #include "news.h"
41 #include "optlist.h"
42 #include "commands.h"
43
44 int
45 chan(void)
46 {
47     s_char *temp;
48     struct natstr *natp;
49     register s_char *p;
50     natid cn;
51     int charge;
52     int nonb;
53     int btucost;
54     s_char buf[1024];
55     struct natstr *us;
56
57     if ((p =
58          getstarg(player->argp[1], "country name or representative? ",
59                   buf)) == 0)
60         return RET_SYN;
61     us = getnatp(player->cnum);
62     if (us->nat_stat == VIS) {
63         pr("Visitor countries can't change their country name or representative.\n");
64         return RET_FAIL;
65     }
66     switch (*p) {
67     case 'n':
68     case 'c':
69         charge = 0;
70         btucost = 0;
71         if (!player->god && (us->nat_stat & STAT_NORM)) {
72             if (opt_BLITZ == 0) {
73                 if (us->nat_btu < 254) {
74                     pr("You need 254 btus to change your country name!\n");
75                     return RET_FAIL;
76                 }
77                 pr("This command costs 254 BTU's and 10%% of your money.\n");
78                 if (!confirm("Are you sure you want to do this? "))
79                     return RET_FAIL;
80                 btucost = 254;
81                 if (us->nat_money <= 0)
82                     charge = 0;
83                 else
84                     charge = us->nat_money / 10;
85             }
86         }
87         if ((p =
88              getstarg(player->argp[2], "New country name -- ", buf)) == 0)
89             return RET_SYN;
90         p[sizeof(us->nat_cnam) - 1] = 0;
91         for (cn = 0; NULL != (natp = getnatp(cn)); cn++) {
92             if (!strcmp(p, natp->nat_cnam)) {
93                 pr("Country #%d is already called `%s'!\n", cn, p);
94                 return RET_FAIL;
95             }
96         }
97         nonb = 0;
98         for (temp = p; *temp != '\0'; temp++) {
99             if (iscntrl(*temp)) {
100                 pr("No control characters allowed in country names!\n");
101                 return RET_FAIL;
102             } else if (*temp != ' ')
103                 nonb = 1;
104         }
105         if (!nonb) {
106             pr("Must have a non-blank name!\n");
107             return RET_FAIL;
108         }
109         player->dolcost += charge;
110         player->btused += btucost;
111         strcpy(us->nat_cnam, p);
112         putnat(us);
113         nreport(player->cnum, N_NAME_CHNG, 0, 1);
114         break;
115     case 'p':
116     case 'r':
117         pr("(note: these are stored in plain text.)\n");
118         if ((p = getstarg(player->argp[2],
119                           "New representative name -- ", buf)) == 0)
120             return RET_SYN;
121         p[8] = 0;
122         strcpy(us->nat_pnam, p);
123         putnat(us);
124         break;
125     default:
126         pr("Only \"country\" or \"representative\" can change.\n");
127         return RET_SYN;
128     }
129     return RET_OK;
130 }