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