]> git.pond.sub.org Git - empserver/blob - src/lib/commands/reje.c
Remove a bunch of redundant casts.
[empserver] / src / lib / commands / reje.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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  *  reje.c: Refuse telegrams/annos/treaties/loans from countries
29  * 
30  *  Known contributors to this file:
31  *     
32  */
33
34 #include "misc.h"
35 #include "player.h"
36 #include "nat.h"
37 #include "file.h"
38 #include "xy.h"
39 #include "nsc.h"
40 #include "commands.h"
41 #include "optlist.h"
42
43 int
44 reje(void)
45 {
46     register s_char *p;
47     int rel;
48     int do_undo;
49     struct natstr nat;
50     struct nstr_item ni;
51     s_char buf[1024];
52
53     if ((p = getstarg(player->argp[1], "reject or accept? ", buf)) == 0)
54         return RET_SYN;
55     switch (*p) {
56     case 'r':
57         do_undo = 1;
58         break;
59     case 'a':
60         do_undo = 0;
61         break;
62     default:
63         pr("That's not one of the choices!\n");
64         return RET_SYN;
65     }
66     if ((p =
67          getstarg(player->argp[2],
68                   "mail, treaties, loans, or announcements? ", buf)) == 0)
69         return RET_SYN;
70     switch (*p) {
71     case 'a':
72         rel = REJ_ANNO;
73         break;
74     case 'l':
75         rel = REJ_LOAN;
76         break;
77     case 'm':
78         rel = REJ_TELE;
79         break;
80     case 't':
81         rel = REJ_TREA;
82         break;
83     default:
84         pr("That's not one of the choices!\n");
85         return RET_SYN;
86     }
87     if (!snxtitem(&ni, EF_NATION, player->argp[3]))
88         return RET_SYN;
89     while (nxtitem(&ni, &nat)) {
90 #if 0
91         if ((nat.nat_stat & STAT_NORM) == 0) {
92             pr("You may not reject/accept stuff from %s\nbecause they are not a normal country.\n", nat.nat_cnam);
93             continue;
94         }
95 #endif
96         if (nat.nat_stat & STAT_GOD) {
97             pr("You may not reject/accept stuff from %s\nbecause they are a deity.\n", nat.nat_cnam);
98             continue;
99         }
100         if (opt_HIDDEN) {
101             if (!getcontact(getnatp(player->cnum), ni.cur))
102                 continue;
103         }
104         switch (rel) {
105         case REJ_ANNO:
106             pr("%s annos from %s\n",
107                (do_undo == 1 ? "Rejecting" : "Accepting"), nat.nat_cnam);
108             break;
109         case REJ_LOAN:
110             pr("%s loans from %s\n",
111                (do_undo == 1 ? "Rejecting" : "Accepting"), nat.nat_cnam);
112             break;
113         case REJ_TELE:
114             pr("%s teles from %s\n",
115                (do_undo == 1 ? "Rejecting" : "Accepting"), nat.nat_cnam);
116             break;
117         case REJ_TREA:
118             pr("%s treaties from %s\n",
119                (do_undo == 1 ? "Rejecting" : "Accepting"), nat.nat_cnam);
120             break;
121         }
122         setrej(player->cnum, (natid)ni.cur, do_undo, rel);
123     }
124     return RET_OK;
125 }