]> git.pond.sub.org Git - empserver/blob - src/lib/subs/getele.c
Support UTF-8 encoded Unicode for user communications.
[empserver] / src / lib / subs / getele.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  *  getele.c: Read a telegram from a file or stdin and send it to a country
29  * 
30  *  Known contributors to this file:
31  *    
32  */
33
34 #include <ctype.h>
35 #include "misc.h"
36 #include "player.h"
37 #include "tel.h"
38 #include "prototypes.h"
39
40 static int tilde_escape(s_char *s, s_char c);
41
42 int
43 getele(char *nation, char *buf /* buf is message text */)
44 {
45     register char *bp;
46     register int len;
47     char buffer[MAXTELSIZE + 2]; /* buf is message text */
48     char left[MAXTELSIZE + 2]; /* buf is message text */
49
50     pr("Enter telegram for %s\n", nation);
51     pr("undo last line with ~u, print with ~p, abort with ~q, end with ^D or .\n");
52     bp = buf;
53     while (!player->aborted) {
54         sprintf(left, "%4d left: ", (int)(buf + MAXTELSIZE - bp));
55         buffer[0] = 0;
56         if (uprmptrd(left, buffer, MAXTELSIZE - 2) <= 0)
57             break;
58         if (tilde_escape(buffer, 'q'))
59             return -1;
60         if (tilde_escape(buffer, 'u')) {
61             if (bp == buf) {
62                 pr("No more lines to undo\n");
63                 continue;
64             }
65             pr("Last line deleted.\n");
66             for (bp -= 2; bp > buf && *bp != '\n'; --bp) ;
67             if (bp > buf)
68                 *(++bp) = 0;
69             else
70                 bp = buf;
71             continue;
72         }
73         if (tilde_escape(buffer, 'p')) {
74             pr("This is what you have written so far:\n");
75             pr("%s", buf);
76             continue;
77         }
78         if (buffer[0] == '.' && ((buffer[1] == 0)
79                                  || (buffer[1] == '\n')
80                                  || (buffer[1] == '\r')))
81             break;
82         len = strlen(buffer);
83         buffer[len++] = '\n';
84         buffer[len] = 0;
85         if (len + (bp - buf) > MAXTELSIZE)
86             pr("Too long.  Try that last line again...\n");
87         else {
88             if (buffer[0] == '>')       /* forgery attempt? */
89                 buffer[0] = '?';        /* foil it */
90             (void)strcpy(bp, buffer);
91             bp += len;
92         }
93     }
94     if (player->aborted)
95         return -1;
96     len = bp - buf;
97     buf[len] = 0;
98     return len;
99 }
100
101 static int
102 tilde_escape(s_char *s, s_char c)
103 {
104     if (s[0] == '~' && s[1] == c &&
105         ((s[2] == 0) || (s[2] == '\n') || (s[2] == '\r')))
106         return 1;
107     return 0;
108 }