]> git.pond.sub.org Git - empserver/blob - src/lib/commands/chan.c
411cb7ab0890226aca451fea6d3cb46d9a25bb43
[empserver] / src / lib / commands / chan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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 "deity.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 == 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 (!player->god && (us->nat_stat & STAT_NORM)) {
73             if (us->nat_btu < 254) {
74                 pr("You need 254 btus to change your country name!\n");
75                 return RET_FAIL;
76             }
77             if (opt_BLITZ == 0) {
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                 /* charge = 2000; */
83                 /*if (us->nat_money < charge*10) */
84                 /*      charge = us->nat_money / 10; */
85                 if (us->nat_money <= 0)
86                     charge = 0;
87                 else
88                     charge = us->nat_money / 10;
89             }
90         }
91         if ((p =
92              getstarg(player->argp[2], "New country name -- ", buf)) == 0)
93             return RET_SYN;
94         p[sizeof(us->nat_cnam) - 1] = 0;
95         for (cn = 0; NULL != (natp = getnatp(cn)); cn++) {
96             if (same(p, natp->nat_cnam)) {
97                 pr("Country #%d is already called `%s'!\n", cn, p);
98                 return RET_FAIL;
99             }
100         }
101         nonb = 0;
102         for (temp = p; *temp != '\0'; temp++) {
103             if (iscntrl(*temp)) {
104                 pr("No control characters allowed in country names!\n");
105                 return RET_FAIL;
106             } else if (*temp != ' ')
107                 nonb = 1;
108         }
109         if (!nonb) {
110             pr("Must have a non-blank name!\n");
111             return RET_FAIL;
112         }
113         if (opt_BLITZ == 0) {
114             player->dolcost += charge;
115             player->btused += btucost;
116         }
117         strcpy(us->nat_cnam, p);
118         putnat(us);
119         nreport(player->cnum, N_NAME_CHNG, 0, 1);
120         break;
121     case 'p':
122     case 'r':
123         pr("(note: these are stored in plain text.)\n");
124         if ((p = getstarg(player->argp[2],
125                           "New representative name -- ", buf)) == 0)
126             return RET_SYN;
127         p[8] = 0;
128         strcpy(us->nat_pnam, p);
129         putnat(us);
130         break;
131     default:
132         pr("Only \"country\" or \"representative\" can change.\n");
133         return RET_SYN;
134     }
135     return RET_OK;
136 }