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