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