]> git.pond.sub.org Git - empserver/blob - src/lib/commands/reje.c
License upgrade to GPL version 3 or later
[empserver] / src / lib / commands / reje.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, 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/treaties/loans from countries
28  *
29  *  Known contributors to this file:
30  *
31  */
32
33 #include <config.h>
34
35 #include "commands.h"
36 #include "optlist.h"
37
38 int
39 reje(void)
40 {
41     char *p;
42     int rel;
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, treaties, loans, or announcements? ", buf);
63     if (!p)
64         return RET_SYN;
65     switch (*p) {
66     case 'a':
67         rel = REJ_ANNO;
68         break;
69     case 'l':
70         rel = REJ_LOAN;
71         break;
72     case 'm':
73         rel = REJ_TELE;
74         break;
75     case 't':
76         rel = REJ_TREA;
77         break;
78     default:
79         pr("That's not one of the choices!\n");
80         return RET_SYN;
81     }
82     if (!snxtitem(&ni, EF_NATION, player->argp[3], NULL))
83         return RET_SYN;
84     while (nxtitem(&ni, &nat)) {
85         if (nat.nat_stat == STAT_GOD) {
86             pr("You may not reject/accept stuff from %s\n"
87                "because they are a deity.\n",
88                nat.nat_cnam);
89             continue;
90         }
91         if (nat.nat_stat == STAT_UNUSED)
92             continue;
93         switch (rel) {
94         case REJ_ANNO:
95             pr("%s annos from %s\n",
96                (do_undo == 1 ? "Rejecting" : "Accepting"), nat.nat_cnam);
97             break;
98         case REJ_LOAN:
99             pr("%s loans from %s\n",
100                (do_undo == 1 ? "Rejecting" : "Accepting"), nat.nat_cnam);
101             break;
102         case REJ_TELE:
103             pr("%s teles from %s\n",
104                (do_undo == 1 ? "Rejecting" : "Accepting"), nat.nat_cnam);
105             break;
106         case REJ_TREA:
107             pr("%s treaties from %s\n",
108                (do_undo == 1 ? "Rejecting" : "Accepting"), nat.nat_cnam);
109             break;
110         }
111         setrej(player->cnum, (natid)ni.cur, do_undo, rel);
112     }
113     return RET_OK;
114 }