]> git.pond.sub.org Git - empserver/blob - src/lib/commands/rea.c
Normalize unsigned int to just unsigned.
[empserver] / src / lib / commands / rea.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  rea.c: Read telegrams
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare
32  *     Doug Hay, 1998
33  *     Steve McClure, 1998-2000
34  */
35
36 #include <config.h>
37
38 #include "misc.h"
39 #include "player.h"
40 #include "nat.h"
41 #include "file.h"
42 #include "tel.h"
43 #include "commands.h"
44 #include "optlist.h"
45 #include "match.h"
46
47 #include <stdio.h>
48 #include <fcntl.h>
49 #if !defined(_WIN32)
50 #include <sys/file.h>
51 #endif
52
53 int
54 rea(void)
55 {
56     static char *telnames[] = {
57         /* must follow TEL_ defines in tel.h */
58         "Telegram", "Announcement", "BULLETIN", "Production Report"
59     };
60     char *p;
61     char *mbox;
62     char mbox_buf[256];         /* Maximum path length */
63     struct telstr tgm;
64     FILE *telfp;
65     int teles;
66     int size;
67     unsigned nbytes;
68     char buf[1024];
69     char msgbuf[4096];          /* UTF-8 */
70     int lasttype;
71     int lastcnum;
72     time_t lastdate;
73     int header;
74     int filelen;
75     char *kind;
76     int n;
77     int num = player->cnum;
78     struct natstr *np = getnatp(player->cnum);
79     time_t now;
80     time_t then;
81     time_t delta;
82     int first = 1;
83     int readit;
84     int may_delete = 1; /* may messages be deleted? */
85
86     now = time(NULL);
87
88     if (*player->argp[0] == 'w') {
89         kind = "announcement";
90         if (player->argp[1] && isdigit(*player->argp[1])) {
91             delta = days(atoi(player->argp[1]));
92             then = now - delta;
93             may_delete = 0;
94         } else
95             then = np->nat_annotim;
96         mbox = annfil;
97     } else {
98         kind = "telegram";
99         if (player->god && player->argp[1] &&
100             (mineq(player->argp[1], "yes") == ME_MISMATCH) &&
101             (mineq(player->argp[1], "no") == ME_MISMATCH)) {
102             if ((n = natarg(player->argp[1], NULL)) < 0)
103                 return RET_SYN;
104             num = n;
105             may_delete = 0;
106         }
107         mbox = mailbox(mbox_buf, num);
108         clear_telegram_is_new(player->cnum);
109     }
110
111     if ((telfp = fopen(mbox, "rb+")) == 0) {
112         logerror("telegram file %s", mbox);
113         return RET_FAIL;
114     }
115     teles = 0;
116     fseek(telfp, 0L, SEEK_SET);
117     size = fsize(fileno(telfp));
118   more:
119     lastdate = 0;
120     lastcnum = -1;
121     lasttype = -1;
122     while (fread(&tgm, sizeof(tgm), 1, telfp) == 1) {
123         readit = 1;
124         if (tgm.tel_length < 0) {
125             logerror("bad telegram file header in %s", mbox);
126             break;
127         }
128         if (tgm.tel_type < 0 || tgm.tel_type > TEL_LAST) {
129             pr("Bad telegram header.  Skipping telegram...\n");
130             readit = 0;
131             goto skip;
132         }
133         if (*kind == 'a') {
134             if (!player->god && (getrejects(tgm.tel_from, np) & REJ_ANNO)) {
135                 readit = 0;
136                 goto skip;
137             }
138             if (tgm.tel_date < then) {
139                 readit = 0;
140                 goto skip;
141             }
142         }
143         if (first && *kind == 'a') {
144             pr("\nAnnouncements since %s", ctime(&then));
145             first = 0;
146         }
147         header = 0;
148         if (tgm.tel_type != lasttype || tgm.tel_from != lastcnum)
149             header++;
150         if (abs((int)(tgm.tel_date - (long)lastdate)) > TEL_SECONDS)
151             header++;
152         if (header) {
153             pr("\n> ");
154             lastcnum = tgm.tel_from;
155             lasttype = tgm.tel_type;
156             pr("%s ", telnames[(int)tgm.tel_type]);
157             if ((tgm.tel_type == TEL_NORM) ||
158                 (tgm.tel_type == TEL_ANNOUNCE) ||
159                 (tgm.tel_type == TEL_BULLETIN))
160                 pr("from %s, (#%d)", cname(tgm.tel_from), tgm.tel_from);
161             pr("  dated %s", ctime(&tgm.tel_date));
162             lastdate = tgm.tel_date;
163         }
164         teles++;
165       skip:
166         while (tgm.tel_length > 0) {
167             nbytes = tgm.tel_length;
168             if (nbytes > sizeof(msgbuf) - 1)
169                 nbytes = sizeof(msgbuf) - 1;
170             fread(msgbuf, 1, nbytes, telfp);
171             msgbuf[nbytes] = 0;
172             if (readit)
173                 uprnf(msgbuf);
174             tgm.tel_length -= nbytes;
175         }
176     }
177     if (teles > 0 && player->cnum == num && may_delete) {
178         pr("\n");
179         if (teles == 1) {
180             if (chance(0.25))
181                 p = "Forget this one? ";
182             else
183                 p = "Shall I burn it? ";
184         } else {
185             if (chance(0.25))
186                 p = "Into the shredder, boss? ";
187             else
188                 p = "Can I throw away these old love letters? ";
189         }
190         p = getstarg(player->argp[1], p, buf);
191         if (p && *p == 'y') {
192             if ((filelen = fsize(fileno(telfp))) > size) {
193                 pr("Wait a sec!  A new %s has arrived...\n", kind);
194                 /* force stdio to re-read tel file */
195                 (void)fflush(telfp);
196                 (void)fseek(telfp, (long)size, SEEK_SET);
197                 size = filelen;
198                 now = time(NULL);
199                 goto more;
200             }
201             if (*kind == 'a') {
202                 np->nat_annotim = now;
203                 putnat(np);
204             } else {
205                 /* Here, we just re-open the file for "w" only,
206                    and that will wipe the file clean automatically */
207                 (void)fclose(telfp);
208                 telfp = fopen(mbox, "wb");
209             }
210         }
211     }
212     if (teles <= 0) {
213         if (player->cnum == num)
214             pr("No %ss for you at the moment...\n", kind);
215         else
216             pr("No %ss for %s at the moment...\n", kind, cname(num));
217     }
218     (void)fclose(telfp);
219     if (np->nat_flags & NF_INFORM) {
220         pr_inform(player, "\n");
221         np->nat_tgms = 0;
222         putnat(np);
223     }
224     return RET_OK;
225 }