]> git.pond.sub.org Git - empserver/blob - src/lib/commands/reje.c
8ba5dc4bb4c4bff2074c2d29e4825e50c82b6d2c
[empserver] / src / lib / commands / reje.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2016, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  reje.c: Refuse telegrams/annos/loans from countries
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2006-2016
31  */
32
33 #include <config.h>
34
35 #include "commands.h"
36
37 int
38 reje(void)
39 {
40     static char *what[] = { "teles", "annos", "loans" };
41     char *p;
42     enum rej_comm rej;
43     int do_undo;
44     struct natstr nat;
45     struct nstr_item ni;
46     char buf[1024];
47
48     if (!(p = getstarg(player->argp[1], "reject or accept? ", buf)))
49         return RET_SYN;
50     switch (*p) {
51     case 'r':
52         do_undo = 1;
53         break;
54     case 'a':
55         do_undo = 0;
56         break;
57     default:
58         pr("That's not one of the choices!\n");
59         return RET_SYN;
60     }
61     p = getstarg(player->argp[2],
62                  "mail, loans, or announcements? ", buf);
63     if (!p)
64         return RET_SYN;
65     switch (*p) {
66     case 'a':
67         rej = REJ_ANNO;
68         break;
69     case 'l':
70         rej = REJ_LOAN;
71         break;
72     case 'm':
73         rej = REJ_TELE;
74         break;
75     default:
76         pr("That's not one of the choices!\n");
77         return RET_SYN;
78     }
79     if (!snxtitem(&ni, EF_NATION, player->argp[3], NULL))
80         return RET_SYN;
81     while (nxtitem(&ni, &nat)) {
82         if (nat.nat_stat == STAT_GOD) {
83             pr("You may not reject/accept stuff from %s\n"
84                "because they are a deity.\n",
85                nat.nat_cnam);
86             continue;
87         }
88         if (nat.nat_stat == STAT_UNUSED)
89             continue;
90         pr("%s %s from %s\n",
91            (do_undo == 1 ? "Rejecting" : "Accepting"),
92            what[rej], nat.nat_cnam);
93         setrej(player->cnum, (natid)ni.cur, do_undo, rej);
94     }
95     return RET_OK;
96 }