]> git.pond.sub.org Git - empserver/blob - src/lib/subs/pr.c
Update known contributors comments
[empserver] / src / lib / subs / pr.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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  *  pr.c: Output to players
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1986, 1989
32  *     Steve McClure, 1998-2000
33  *     Ron Koenderink, 2005
34  *     Markus Armbruster, 2005-2009
35  */
36
37 /*
38  * Player output is fully buffered.  It can block only if the
39  * receiving player is the current player and his last command doesn't
40  * have the C_MOD flag.  Output to another player must not block
41  * because that player could be gone when the printing thread wakes
42  * up, and the code isn't prepared for that.  Output within C_MOD
43  * command never blocks, so that such commands can print freely
44  * without yielding the processor.
45  *
46  * Each line of output starts with an identification character
47  * encoding the output id, followed by space.  Ids less than 10 are
48  * encoded as decimal digits, and larger ids as lower case letters,
49  * starting with 'a'.  Symbolic names for ids are defined in proto.h.
50  */
51
52 #include <config.h>
53
54 #include <stdarg.h>
55 #include <stdlib.h>
56 #include "com.h"
57 #include "empio.h"
58 #include "file.h"
59 #include "misc.h"
60 #include "nat.h"
61 #include "player.h"
62 #include "proto.h"
63 #include "prototypes.h"
64 #include "server.h"
65 #include "tel.h"
66
67 static void pr_player(struct player *pl, int id, char *buf);
68 static void upr_player(struct player *pl, int id, char *buf);
69 static void outid(struct player *pl, int n);
70
71 /*
72  * Print to current player similar to printf().
73  * Use printf-style FORMAT with the optional arguments.
74  * Note: `to print' without further qualifications means sending
75  * C_DATA text.
76  */
77 void
78 pr(char *format, ...)
79 {
80     char buf[4096];
81     va_list ap;
82
83     va_start(ap, format);
84     (void)vsprintf(buf, format, ap);
85     va_end(ap);
86     if (player->flags & PF_UTF8)
87         /* normal text needs to be converted to user text */
88         upr_player(player, C_DATA, buf);
89     else
90         /* normal text and user text are identical */
91         pr_player(player, C_DATA, buf);
92 }
93
94 /*
95  * Print UTF-8 text BUF to current player.
96  */
97 void
98 uprnf(char *buf)
99 {
100     char *p;
101
102     if (!(player->flags & PF_UTF8)) {
103         p = malloc(strlen(buf) + 1);
104         copy_utf8_to_ascii_no_funny(p, buf);
105         pr_player(player, C_DATA, p);
106         free(p);
107     } else
108         pr_player(player, C_DATA, buf);
109 }
110
111 /*
112  * Send some text to P with id ID, line-buffered.
113  * Format text to send using printf-style FORMAT and optional
114  * arguments.  It is assumed to be already user text.  Plain ASCII and
115  * text received from the same player are fine, for anything else the
116  * caller has to deal with output filtering.
117  * If a partial line is buffered, terminate it with a newline first.
118  */
119 void
120 pr_id(struct player *p, int id, char *format, ...)
121 {
122     char buf[4096];
123     va_list ap;
124
125     if (p->curid >= 0) {
126         io_puts(p->iop, "\n");
127         p->curid = -1;
128     }
129     va_start(ap, format);
130     (void)vsprintf(buf, format, ap);
131     va_end(ap);
132     pr_player(p, id, buf);
133 }
134
135 /*
136  * Send C_FLASH text to PL.
137  * Format text to send using printf-style FORMAT and optional
138  * arguments.  It is assumed to be UTF-8.
139  * Initiate an output queue flush, but do not wait for it to complete.
140  */
141 void
142 pr_flash(struct player *pl, char *format, ...)
143 {
144     char buf[4096];             /* UTF-8 */
145     va_list ap;
146
147     if (pl->state != PS_PLAYING)
148         return;
149     va_start(ap, format);
150     (void)vsprintf(buf, format, ap);
151     va_end(ap);
152     if (!(pl->flags & PF_UTF8))
153         copy_utf8_to_ascii_no_funny(buf, buf);
154     pr_player(pl, C_FLASH, buf);
155     io_output(pl->iop, 0);
156 }
157
158 /*
159  * Send C_INFORM text to PL.
160  * Format text to send using printf-style FORMAT and optional
161  * arguments.  It is assumed to be plain ASCII.
162  * Initiate an output queue flush, but do not wait for it to complete.
163  */
164 void
165 pr_inform(struct player *pl, char *format, ...)
166 {
167     char buf[4096];
168     va_list ap;
169
170     if (pl->state != PS_PLAYING)
171         return;
172     va_start(ap, format);
173     (void)vsprintf(buf, format, ap);
174     va_end(ap);
175     pr_player(pl, C_INFORM, buf);
176     io_output(pl->iop, 0);
177 }
178
179 /*
180  * Send C_FLASH text to everyone.
181  * Format text to send using printf-style FORMAT and optional
182  * arguments.  It is assumed to be plain ASCII.
183  * Prefix text it with a header suitable for broadcast from deity.
184  * Initiate an output queue flush, but do not wait for it to complete.
185  */
186 void
187 pr_wall(char *format, ...)
188 {
189     time_t now;
190     struct tm *tm;
191     char buf[4096];             /* UTF-8 */
192     int n;
193     struct player *p;
194     va_list ap;
195
196     time(&now);
197     tm = localtime(&now);
198     n = sprintf(buf, "BROADCAST from %s @ %02d:%02d: ",
199                 getnatp(0)->nat_cnam, tm->tm_hour, tm->tm_min);
200
201     va_start(ap, format);
202     (void)vsprintf(buf + n, format, ap);
203     va_end(ap);
204     for (p = player_next(NULL); p; p = player_next(p)) {
205         if (p->state != PS_PLAYING)
206             continue;
207         pr_player(p, C_FLASH, buf);
208         io_output(p->iop, 0);
209     }
210 }
211
212 /*
213  * Send ID text BUF to PL, line-buffered.
214  * BUF is user text.
215  * If a partial line with different id is buffered, terminate it with
216  * a newline first.
217  */
218 static void
219 pr_player(struct player *pl, int id, char *buf)
220 {
221     char *p;
222     char *bp;
223     int len;
224
225     bp = buf;
226     while (*bp != '\0') {
227         if (pl->curid != -1 && pl->curid != id) {
228             io_puts(pl->iop, "\n");
229             pl->curid = -1;
230         }
231         if (pl->curid == -1)
232             outid(pl, id);
233         p = strchr(bp, '\n');
234         if (p != NULL) {
235             len = (p - bp) + 1;
236             io_write(pl->iop, bp, len);
237             bp += len;
238             pl->curid = -1;
239         } else {
240             len = io_puts(pl->iop, bp);
241             bp += len;
242         }
243     }
244
245     if (player == pl) {
246         while (io_output_if_queue_long(pl->iop,
247                         pl->may_sleep == PLAYER_SLEEP_FREELY) > 0)
248             ;
249     }
250 }
251
252 /*
253  * Send ID text BUF to PL, line-buffered.
254  * This function translates from normal text to user text.
255  * If a partial line with different id is buffered, terminate it with
256  * a newline first.
257  */
258 static void
259 upr_player(struct player *pl, int id, char *buf)
260 {
261     char *bp;
262     int standout = 0;
263     char printbuf[2];
264     char ch;
265
266     printbuf[0] = '\0';
267     printbuf[1] = '\0';
268
269     bp = buf;
270     while ((ch = *bp++)) {
271         if (pl->curid != -1 && pl->curid != id) {
272             io_puts(pl->iop, "\n");
273             pl->curid = -1;
274         }
275         if (pl->curid == -1)
276             outid(pl, id);
277
278         if (ch & 0x80) {
279             if (standout == 0) {
280                 printbuf[0] = 0x0e;
281                 io_puts(pl->iop, printbuf);
282                 standout = 1;
283             }
284             ch &= 0x7f;
285         } else {
286             if (standout == 1) {
287                 printbuf[0] = 0x0f;
288                 io_puts(pl->iop, printbuf);
289                 standout = 0;
290             }
291         }
292         if (ch == '\n') {
293             io_write(pl->iop, &ch, 1);
294             pl->curid = -1;
295         } else {
296             printbuf[0] = ch;
297             io_puts(pl->iop, printbuf);
298         }
299     }
300
301     if (player == pl) {
302         while (io_output_if_queue_long(pl->iop,
303                         pl->may_sleep == PLAYER_SLEEP_FREELY) > 0)
304             ;
305     }
306 }
307
308 /*
309  * Send id N to PL.
310  * This runs always at the beginning of a line.
311  */
312 static void
313 outid(struct player *pl, int n)
314 {
315     char buf[3];
316
317     if (CANT_HAPPEN(n > C_LAST))
318         n = C_DATA;
319
320     if (n >= 10)
321         buf[0] = 'a' - 10 + n;
322     else
323         buf[0] = '0' + n;
324     buf[1] = ' ';
325     buf[2] = '\0';
326     io_puts(pl->iop, buf);
327     pl->curid = n;
328 }
329
330 /*
331  * Send redirection request REDIR to the current player.
332  * REDIR is UTF-8, but non-ASCII characters can occur only if the
333  * player sent them.  Therefore, it is also user text.
334  */
335 void
336 prredir(char *redir)
337 {
338     pr_id(player, *redir == '>' ? C_REDIR : C_PIPE, "%s\n", redir);
339 }
340
341 /*
342  * Send script execute request FILE to the current player.
343  * REDIR is UTF-8, but non-ASCII characters can occur only if the
344  * player sent them.  Therefore, it is also user text.
345  */
346 void
347 prexec(char *file)
348 {
349     pr_id(player, C_EXECUTE, "%s\n", file);
350 }
351
352 /*
353  * Send a command prompt to the current player.
354  */
355 void
356 prprompt(int min, int btu)
357 {
358     pr_id(player, C_PROMPT, "%d %d\n", min, btu);
359 }
360
361 /*
362  * Prompt for a line of non-command input.
363  * Send C_FLUSH prompt PROMPT to the current player.
364  * Read a line of input into BUF[SIZE] and convert it to ASCII.
365  * This may block for input, yielding the processor.  Flush buffered
366  * output when blocking, to make sure player sees the prompt.
367  * Return number of bytes in BUF[], not counting the terminating 0,
368  * or -1 on error.
369  */
370 int
371 prmptrd(char *prompt, char *buf, int size)
372 {
373     int r;
374
375     if (CANT_HAPPEN(!prompt))
376         prompt = "? ";
377
378     pr_id(player, C_FLUSH, "%s\n", prompt);
379     if ((r = recvclient(buf, size)) < 0)
380         return r;
381     time(&player->curup);
382     if (*buf == 0)
383         return 1;
384     if (player->flags & PF_UTF8)
385         return copy_utf8_to_ascii_no_funny(buf, buf);
386     return copy_ascii_no_funny(buf, buf);
387 }
388
389 /*
390  * Prompt for a line of non-command, UTF-8 input.
391  * Send C_FLUSH prompt PROMPT to the current player.
392  * Read a line of input into BUF[SIZE], replacing funny characters by
393  * '?'.  The result is UTF-8.
394  * This may block for input, yielding the processor.  Flush buffered
395  * output when blocking, to make sure player sees the prompt.
396  * Return number of bytes in BUF[], not counting the terminating 0,
397  * or -1 on error.
398  */
399 int
400 uprmptrd(char *prompt, char *buf, int size)
401 {
402     int r;
403
404     if (CANT_HAPPEN(!prompt))
405         prompt = "? ";
406
407     pr_id(player, C_FLUSH, "%s\n", prompt);
408     if ((r = recvclient(buf, size)) < 0)
409         return r;
410     time(&player->curup);
411     if (*buf == 0)
412         return 1;
413     if (player->flags & PF_UTF8)
414         return copy_utf8_no_funny(buf, buf);
415     return copy_ascii_no_funny(buf, buf);
416 }
417
418 /*
419  * Print the current time in ctime() format.
420  */
421 void
422 prdate(void)
423 {
424     time_t now;
425
426     (void)time(&now);
427     pr(ctime(&now));
428 }
429
430 /*
431  * Print coordinates X, Y for COUNTRY.
432  * FORMAT must be a printf-style format string that converts exactly
433  * two int values.
434  */
435 void
436 prxy(char *format, coord x, coord y, natid country)
437 {
438     struct natstr *np;
439
440     np = getnatp(country);
441     pr(format, xrel(np, x), yrel(np, y));
442 }
443
444 /*
445  * Print to country CN similar to printf().
446  * Use printf-style FORMAT with the optional arguments.
447  * Output is buffered until a newline arrives.
448  * If CN is the current player and we're not in the update, print just
449  * like pr().  Else print into a bulletin.
450  * Because printing like pr() requires normal text, and bulletins
451  * require user text, only plain ASCII is allowed.
452  */
453 void
454 PR(int cn, char *format, ...)
455 {
456     /* XXX should really do this on a per-nation basis */
457     static char longline[MAXNOC][512];
458     int newline;
459     va_list ap;
460     char buf[1024];
461
462     va_start(ap, format);
463     (void)vsprintf(buf, format, ap);
464     va_end(ap);
465     newline = strrchr(buf, '\n') ? 1 : 0;
466     strcat(longline[cn], buf);
467     if (newline) {
468         if (update_running || (cn && cn != player->cnum))
469             typed_wu(0, cn, longline[cn], TEL_BULLETIN);
470         else
471             pr_player(player, C_DATA, longline[cn]);
472         longline[cn][0] = '\0';
473     }
474 }
475
476 /*
477  * Print the current time in ctime() format to country CN.
478  * If CN is the current player and we're not in the update, print just
479  * like prdate().  Else print into a bulletin.
480  */
481 void
482 PRdate(natid cn)
483 {
484     time_t now;
485
486     (void)time(&now);
487     PR(cn, ctime(&now));
488 }
489
490 /*
491  * Sound the current player's bell.
492  */
493 void
494 pr_beep(void)
495 {
496     struct natstr *np = getnatp(player->cnum);
497
498     if (np->nat_flags & NF_BEEP)
499         pr("\07");
500 }
501
502 /*
503  * Print to country CN similar to printf().
504  * Use printf-style FORMAT with the optional arguments.
505  * If CN is zero, don't print anything.
506  * Else, if CN is the current player and we're not in the update,
507  * print just like pr().  Else print into a bulletin.
508  * Because printing like pr() requires normal text, and bulletins
509  * require user text, only plain ASCII is allowed.
510  */
511 void
512 mpr(int cn, char *format, ...)
513 {
514     char buf[4096];
515     va_list ap;
516
517     if (!cn)
518         return;
519     va_start(ap, format);
520     (void)vsprintf(buf, format, ap);
521     va_end(ap);
522     if (update_running || cn != player->cnum)
523         typed_wu(0, cn, buf, TEL_BULLETIN);
524     else
525         pr_player(player, C_DATA, buf);
526 }
527
528 /*
529  * Copy SRC without funny characters to DST.
530  * Drop control characters, except for '\t'.
531  * Replace non-ASCII characters by '?'.
532  * Return length of DST.
533  * DST must have space.  If it overlaps SRC, then DST <= SRC must
534  * hold.
535  */
536 size_t
537 copy_ascii_no_funny(char *dst, char *src)
538 {
539     char *p;
540     unsigned char ch;
541
542     p = dst;
543     while ((ch = *src++)) {
544         if ((ch < 0x20 && ch != '\t' && ch != '\n') || ch == 0x7f)
545             ;                   /* ignore funny control */
546         else if (ch > 0x7f)
547             *p++ = '?'; /* replace non-ASCII */
548         else
549             *p++ = ch;
550     }
551     *p = 0;
552
553     return p - dst;
554 }
555
556 /*
557  * Copy UTF-8 SRC without funny characters to DST.
558  * Drop control characters, except for '\t'.
559  * FIXME Replace malformed UTF-8 sequences by '?'.
560  * Return byte length of DST.
561  * DST must have space.  If it overlaps SRC, then DST <= SRC must
562  * hold.
563  */
564 size_t
565 copy_utf8_no_funny(char *dst, char *src)
566 {
567     char *p;
568     unsigned char ch;
569
570     p = dst;
571     while ((ch = *src++)) {
572         /* FIXME do the right thing for malformed and overlong sequences */
573         if ((ch < 0x20 && ch != '\t' && ch != '\n') || ch == 0x7f)
574             ;                   /* ignore funny control */
575         else
576             *p++ = ch;
577     }
578     *p = 0;
579
580     return p - dst;
581 }
582
583 /*
584  * Copy UTF-8 SRC without funny characters to ASCII DST.
585  * Drop control characters, except for '\t'.
586  * Replace non-ASCII characters by '?'.
587  * Return length of DST.
588  * DST must have space.  If it overlaps SRC, then DST <= SRC must
589  * hold.
590  */
591 size_t
592 copy_utf8_to_ascii_no_funny(char *dst, char *src)
593 {
594     char *p;
595     unsigned char ch;
596
597     p = dst;
598     while ((ch = *src++)) {
599         /* FIXME do the right thing for malformed and overlong sequences */
600         if ((ch < 0x20 && ch != '\t' && ch != '\n') || ch == 0x7f)
601             ;                   /* ignore funny control */
602         else if (ch > 0x7f) {
603             *p++ = '?';         /* replace non-ASCII */
604             while ((*src++ & 0xc0) == 0x80) ;
605         } else
606             *p++ = ch;
607     }
608     *p = 0;
609
610     return p - dst;
611 }
612
613 /*
614  * Return byte-index of the N-th UTF-8 character in UTF-8 string S.
615  * If S doesn't have that many characters, return its length instead.
616  */
617 int
618 ufindpfx(char *s, int n)
619 {
620     int i = 0;
621
622     while (n && s[i])
623     {
624         if ((s[i++] & 0xc0) == 0xc0)
625             while ((s[i] & 0xc0) == 0x80)
626                 i++;
627         --n;
628     }
629     return i;
630 }