]> git.pond.sub.org Git - empserver/blob - src/lib/commands/chan.c
bbb750917f71d193bcafb55fb1f74a20660e2928
[empserver] / src / lib / commands / chan.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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 "commands.h"
37 #include "news.h"
38 #include "optlist.h"
39
40 int
41 chan(void)
42 {
43     char *p;
44     int charge;
45     int btucost;
46     char buf[1024];
47     struct natstr *us;
48
49     p = getstarg(player->argp[1], "country name or representative? ", buf);
50     if (!p)
51         return RET_SYN;
52     us = getnatp(player->cnum);
53     if (us->nat_stat == STAT_VIS) {
54         pr("Visitor countries can't change their country name or representative.\n");
55         return RET_FAIL;
56     }
57     switch (*p) {
58     case 'n':
59     case 'c':
60         charge = 0;
61         btucost = 0;
62         if (us->nat_stat == STAT_ACTIVE) {
63             if (opt_BLITZ == 0) {
64                 if (us->nat_btu < 254) {
65                     pr("You need 254 btus to change your country name!\n");
66                     return RET_FAIL;
67                 }
68                 pr("This command costs 254 BTU's and 10%% of your money.\n");
69                 if (!confirm("Are you sure you want to do this? "))
70                     return RET_FAIL;
71                 btucost = 254;
72                 if (us->nat_money <= 0)
73                     charge = 0;
74                 else
75                     charge = us->nat_money / 10;
76             }
77         }
78         p = getstarg(player->argp[2], "New country name -- ", buf);
79         if (!p)
80             return RET_SYN;
81         if (!check_nat_name(p))
82             return RET_FAIL;
83         player->dolcost += charge;
84         player->btused += btucost;
85         strcpy(us->nat_cnam, p);
86         putnat(us);
87         nreport(player->cnum, N_NAME_CHNG, 0, 1);
88         break;
89     case 'p':
90     case 'r':
91         pr("(note: these are stored in plain text.)\n");
92         p = getstarg(player->argp[2], "New representative name -- ", buf);
93         if (!p)
94             return RET_SYN;
95         p[sizeof(us->nat_pnam) - 1] = 0;
96         strcpy(us->nat_pnam, p);
97         putnat(us);
98         break;
99     default:
100         pr("Only \"country\" or \"representative\" can change.\n");
101         return RET_SYN;
102     }
103     return RET_OK;
104 }