]> git.pond.sub.org Git - empserver/blob - src/lib/subs/wu.c
New server.h for server startup, control and shutdown, i.e. stuff in
[empserver] / src / lib / subs / wu.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  *  wu.c: Write a telegram to a user from another
29  * 
30  *  Known contributors to this file:
31  *     Steve McClure, 2000
32  *     
33  */
34
35 #include <stdarg.h>
36 #include "misc.h"
37 #include <fcntl.h>
38 #if !defined(_WIN32)
39 #include <sys/uio.h>
40 #endif
41 #include "nat.h"
42 #include "tel.h"
43 #include "file.h"
44 #include "player.h"
45 #include "server.h"
46 #include "prototypes.h"
47
48 static struct telstr last_tel[MAXNOC];
49
50 void
51 clear_telegram_is_new(natid to)
52 {
53     last_tel[to].tel_type = 0;
54     last_tel[to].tel_from = 0;
55     last_tel[to].tel_date = 0;
56 }
57
58 /*
59  * telegram_is_new counts new telegrams the same as read_telegrams in 
60  * lib/commands/mail.c and lib/commands/rea.c
61  */
62
63 static int
64 telegram_is_new(natid to, struct telstr *tel)
65 {
66     int is_new = 0;
67
68     is_new |= tel->tel_type != last_tel[to].tel_type;
69     is_new |= tel->tel_from != last_tel[to].tel_from;
70     is_new |= !update_pending &&        /* sometimes updates take a long time */
71         abs(tel->tel_date - last_tel[to].tel_date) > TEL_SECONDS;
72
73     last_tel[to].tel_type = tel->tel_type;
74     last_tel[to].tel_from = tel->tel_from;
75     last_tel[to].tel_date = tel->tel_date;
76
77     return is_new;
78 }
79
80 /*VARARGS*/
81 int
82 wu(natid from, natid to, s_char *format, ...)
83 {
84     struct natstr *np;
85     va_list ap;
86     s_char buf[4096];
87
88     va_start(ap, format);
89     (void)vsprintf(buf, format, ap);
90     va_end(ap);
91     np = getnatp(from);
92     if (update_pending)
93         return typed_wu(from, to, buf, TEL_UPDATE);
94     else if (np->nat_stat & STAT_GOD)
95         return typed_wu(from, to, buf, TEL_BULLETIN);
96     else
97         return typed_wu(from, to, buf, TEL_NORM);
98 }
99
100 int
101 typed_wu(natid from, natid to, s_char *message, int type)
102 {
103     register s_char *bp;
104     int len;
105     struct telstr tel;
106     struct natstr *np;
107 #if !defined(_WIN32)
108     struct iovec iov[2];
109 #endif
110     int fd;
111     s_char box[1024];
112     int notify = 0;
113     int new_tele = 0;
114     struct player *other;
115
116     if (type == TEL_ANNOUNCE)
117         strcpy(box, annfil);
118     else
119         mailbox(box, to);
120
121     if (type != TEL_ANNOUNCE)
122         if ((np = getnatp(to)) == 0 ||
123             ((np->nat_stat & STAT_NORM) == 0 &&
124              (np->nat_stat & STAT_SANCT) == 0)) {
125             return -1;
126         }
127 #if !defined(_WIN32)
128     if ((fd = open(box, O_WRONLY | O_APPEND, 0)) < 0) {
129 #else
130     if ((fd = open(box, O_WRONLY | O_APPEND | O_BINARY, 0)) < 0) {
131 #endif
132         logerror("telegram 'open' of %s (#%d) failed", box, to);
133         return -1;
134     }
135     tel.tel_from = from;
136     (void)time(&tel.tel_date);
137     bp = message;
138     while (*bp++) ;
139     len = bp - message;
140     if (len >= MAXTELSIZE)
141         len = (MAXTELSIZE - 1);
142     message[len] = 0;
143     tel.tel_length = len;
144     tel.tel_type = type;
145 #if !defined(_WIN32)
146     iov[0].iov_base = (caddr_t)&tel;
147     iov[0].iov_len = sizeof(tel);
148     iov[1].iov_base = message;
149     iov[1].iov_len = len;
150     if (writev(fd, iov, 2) < (int)(iov[0].iov_len + iov[1].iov_len)) {
151 #else
152     if ((write(fd, &tel, sizeof(tel)) != sizeof(tel)) ||
153         (write(fd, message, len) != len)) {
154 #endif
155         logerror("telegram 'write' to #%d failed", to);
156     } else if (type == TEL_ANNOUNCE) {
157         for (to = 0; NULL != (np = getnatp(to)); to++) {
158             if (!(np->nat_stat & STAT_NORM) &&
159                 !(np->nat_stat & STAT_SANCT))
160                 continue;
161             if (!player->god && (getrejects(from, np) & REJ_ANNO))
162                 continue;
163             notify = (np->nat_ann == 0);
164             np->nat_ann++;
165             putnat(np);
166             if (notify)
167                 player_wakeup_all(to);
168         }
169     } else {
170         notify = (np->nat_tgms == 0);
171         new_tele = telegram_is_new(to, &tel);
172         np->nat_tgms += new_tele || notify;
173         putnat(np);
174
175         if (new_tele && np->nat_flags & NF_INFORM) {
176             if (NULL != (other = getplayer(to))) {
177                 if (np->nat_tgms == 1)
178                     pr_inform(other, "[new tele]\n");
179                 else
180                     pr_inform(other, "[%d new teles]\n", np->nat_tgms);
181                 player_wakeup_all(to);
182             }
183         } else if (notify)
184             player_wakeup_all(to);
185     }
186
187     close(fd);
188     return 0;
189 }