]> git.pond.sub.org Git - empserver/blob - src/lib/commands/reje.c
Import of Empire 4.2.12
[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 = getstarg(player->argp[2], "mail, treaties, loans, or announcements? ", buf)) == 0)
68                 return RET_SYN;
69         switch (*p) {
70         case 'a':
71                 rel = REJ_ANNO;
72                 break;
73         case 'l':
74                 rel = REJ_LOAN;
75                 break;
76         case 'm':
77                 rel = REJ_TELE;
78                 break;
79         case 't':
80                 rel = REJ_TREA;
81                 break;
82         default:
83                 pr("That's not one of the choices!\n");
84                 return RET_SYN;
85         }
86         if (!snxtitem(&ni, EF_NATION, player->argp[3]))
87                 return RET_SYN;
88         while (nxtitem(&ni, (s_char *) &nat)) {
89 #if 0
90                 if ((nat.nat_stat & STAT_NORM) == 0) {
91                         pr("You may not reject/accept stuff from %s\nbecause they are not a normal country.\n", nat.nat_cnam);
92                         continue;
93                 }
94 #endif
95                 if (nat.nat_stat & STAT_GOD) {
96                         pr("You may not reject/accept stuff from %s\nbecause they are a deity.\n", nat.nat_cnam);
97                         continue;
98                 }
99                 if (opt_HIDDEN) {
100                     if (!getcontact(getnatp(player->cnum), ni.cur))
101                         continue;
102                 }
103                 switch(rel){
104                         case REJ_ANNO: pr("%s annos from %s\n",(do_undo == 1 ? "Rejecting" : "Accepting"),nat.nat_cnam);
105                                         break;
106                         case REJ_LOAN: pr("%s loans from %s\n",(do_undo == 1 ? "Rejecting" : "Accepting"),nat.nat_cnam);
107                                         break;
108                         case REJ_TELE: pr("%s teles from %s\n",(do_undo == 1 ? "Rejecting" : "Accepting"),nat.nat_cnam);
109                                         break;
110                         case REJ_TREA: pr("%s treaties from %s\n",(do_undo == 1 ? "Rejecting" : "Accepting"),nat.nat_cnam);
111                                         break;
112                         }
113                 setrej(player->cnum, (natid)ni.cur, do_undo, rel);
114         }
115         return RET_OK;
116 }