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