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