]> git.pond.sub.org Git - empserver/blob - src/lib/commands/rea.c
wire: Fix announcement rejection for and from deities
[empserver] / src / lib / commands / rea.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  *  rea.c: Read telegrams
28  *
29  *  Known contributors to this file:
30  *     Dave Pare
31  *     Doug Hay, 1998
32  *     Steve McClure, 1998-2000
33  *     Ron Koenderink, 2005-2007
34  *     Markus Armbruster, 2009-2016
35  */
36
37 #include <config.h>
38
39 #include <ctype.h>
40 #include <errno.h>
41 #include <stdio.h>
42 #include "chance.h"
43 #include "commands.h"
44 #include "match.h"
45 #include "misc.h"
46 #include "optlist.h"
47 #include "tel.h"
48
49 static int print_sink(char *, size_t, void *);
50
51 int
52 rea(void)
53 {
54     static char *telnames[] = {
55         /* must follow TEL_ defines in tel.h */
56         "Telegram", "Announcement", "BULLETIN", "Production Report"
57     };
58     char *p;
59     char *mbox;
60     char mbox_buf[256];         /* Maximum path length */
61     struct telstr tgm;
62     FILE *telfp;
63     int teles, need_hdr;
64     char buf[1024];
65     char *kind;
66     int n, res;
67     int num = player->cnum;
68     struct natstr *np = getnatp(player->cnum);
69     time_t now;
70     time_t then;
71     time_t delta;
72     int may_delete = 1;
73
74     now = time(NULL);
75
76     if (*player->argp[0] == 'w') {
77         kind = "announcement";
78         if (player->argp[1] && isdigit(*player->argp[1])) {
79             delta = days(atoi(player->argp[1]));
80             then = now - delta;
81             may_delete = 0;
82         } else
83             then = np->nat_annotim;
84         mbox = annfil;
85     } else {
86         kind = "telegram";
87         if (player->god && player->argp[1] &&
88             (mineq(player->argp[1], "yes") == ME_MISMATCH) &&
89             (mineq(player->argp[1], "no") == ME_MISMATCH)) {
90             if ((n = natarg(player->argp[1], NULL)) < 0)
91                 return RET_SYN;
92             num = n;
93             may_delete = 0;
94         }
95         mbox = mailbox(mbox_buf, num);
96     }
97
98     if (!(telfp = fopen(mbox, "rb"))) {
99         logerror("telegram file %s", mbox);
100         return RET_FAIL;
101     }
102     teles = 0;
103     need_hdr = 1;
104     for (;;) {
105         res = tel_read_header(telfp, mbox, &tgm);
106     more:
107         if (res <= 0)
108             break;
109         if (*kind == 'a') {
110             if ((getnatp(tgm.tel_from)->nat_stat != STAT_GOD
111                  && (getrejects(tgm.tel_from, np) & REJ_ANNO))
112                 || tgm.tel_date < then) {
113                 res = tel_read_body(telfp, mbox, &tgm, NULL, NULL);
114                 if (res < 0)
115                     break;
116                 continue;
117             }
118         }
119         if (!teles && *kind == 'a')
120             pr("\nAnnouncements since %s", ctime(&then));
121         if (need_hdr || !tgm.tel_cont) {
122             pr("\n> ");
123             pr("%s ", telnames[tgm.tel_type]);
124             if ((tgm.tel_type == TEL_NORM) ||
125                 (tgm.tel_type == TEL_ANNOUNCE) ||
126                 (tgm.tel_type == TEL_BULLETIN))
127                 pr("from %s, (#%d)", cname(tgm.tel_from), tgm.tel_from);
128             pr("  dated %s", ctime(&tgm.tel_date));
129         }
130         teles++;
131         need_hdr = 0;
132         res = tel_read_body(telfp, mbox, &tgm, print_sink, NULL);
133         if (res < 0)
134             break;
135     }
136     if (res < 0) {
137         pr("\n> Mailbox corrupt, tell the deity.\n");
138         may_delete = 0;
139     }
140
141     if (*kind == 'a')
142         np->nat_ann = 0;
143     else {
144         np->nat_tgms = 0;
145         if (np->nat_flags & NF_INFORM) {
146             pr_inform(player, "\n");
147         }
148     }
149     putnat(np);
150
151     if (teles > 0 && player->cnum == num && may_delete) {
152         pr("\n");
153         if (teles == 1) {
154             if (chance(0.25))
155                 p = "Forget this one? ";
156             else
157                 p = "Shall I burn it? ";
158         } else {
159             if (chance(0.25))
160                 p = "Into the shredder, boss? ";
161             else
162                 p = "Can I throw away these old love letters? ";
163         }
164         p = getstarg(player->argp[1], p, buf);
165         if (p && *p == 'y') {
166             if (*kind == 'a') {
167                 np->nat_annotim = now;
168                 putnat(np);
169             } else {
170                 /* force stdio to re-read tel file */
171                 fflush(telfp);
172                 fseek(telfp, 0, SEEK_CUR);
173                 res = tel_read_header(telfp, mbox, &tgm);
174                 if (res != 0) {
175                     pr("Wait a sec!  A new %s has arrived...\n", kind);
176                     need_hdr = 1;
177                     goto more;
178                 }
179                 /* Here, we just re-open the file for "w" only,
180                    and that will wipe the file clean automatically */
181                 (void)fclose(telfp);
182                 telfp = fopen(mbox, "wb");
183             }
184         }
185     }
186     if (teles <= 0) {
187         if (player->cnum == num)
188             pr("No %ss for you at the moment...\n", kind);
189         else
190             pr("No %ss for %s at the moment...\n", kind, cname(num));
191     }
192     (void)fclose(telfp);
193     return RET_OK;
194 }
195
196 /*
197  * Print first telegram in file @fname.
198  */
199 int
200 show_first_tel(char *fname)
201 {
202     FILE *fp;
203     int ret;
204     struct telstr tgm;
205
206     if ((fp = fopen(fname, "rb")) == NULL) {
207         if (errno == ENOENT)
208             return 0;
209         else {
210             logerror("Could not open %s.\n", fname);
211             return -1;
212         }
213     }
214
215     ret = tel_read_header(fp, fname, &tgm);
216     if (ret < 0)
217         goto out;
218     ret = tel_read_body(fp, fname, &tgm, print_sink, NULL);
219
220 out:
221     fclose(fp);
222     return ret;
223 }
224
225 static int
226 print_sink(char *chunk, size_t sz, void *arg)
227 {
228     uprnf(chunk);
229     return 0;
230 }