]> git.pond.sub.org Git - empserver/blob - src/lib/commands/flash.c
(sendmessage): Internal linkage.
[empserver] / src / lib / commands / flash.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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  *  flash.c: Flash a message to another player
29  * 
30  *  Known contributors to this file:
31  *     Ken Stevens, 1995
32  *     Steve McClure, 1998
33  *     Ron Koenderink, 2005
34  *     Markus Armbruster, 2004-2007
35  */
36
37 #include <config.h>
38
39 #include "commands.h"
40
41 static int sendmessage(struct natstr *, struct natstr *, char *, int);
42
43 int
44 flash(void)
45 {
46     struct natstr *us;
47     struct natstr *to;
48     char buf[1024];             /* UTF-8 */
49     int tocn;
50     char *sp;                   /* points into player->combuf[], UTF-8 */
51
52     us = getnatp(player->cnum);
53     if ((tocn = natarg(player->argp[1], "to which country? ")) < 0)
54         return RET_SYN;
55     to = getnatp(tocn);
56
57     if (us->nat_stat == STAT_GOD) {
58         /* We are gods, we can flash anyone */
59     } else if (us->nat_stat == STAT_VIS) {
60         /* We are a visitor.  We can only flash the gods. :) */
61         if (to->nat_stat != STAT_GOD) {
62             pr("Visitors can only flash the gods.\n");
63             return RET_SYN;
64         }
65     } else {
66         /* Ok, we are a normal country, can we flash them? */
67         if (to->nat_stat != STAT_GOD && getrel(to, player->cnum) < FRIENDLY) {
68             pr("%s is not a deity or friendly with us.\n", to->nat_cnam);
69             return RET_SYN;
70         }
71     }
72
73     if (player->argp[2]) {
74         for (sp = player->combuf; *sp && *sp != ' '; ++sp) ;
75         for (++sp; *sp && *sp != ' '; ++sp) ;
76         buf[0] = ':';
77         if (player->flags & PF_UTF8)
78             strcpy(buf+1, sp);
79         else
80             copy_utf8_to_ascii_no_funny(buf+1, sp);
81         sendmessage(us, to, buf, 1);
82     } else {
83         sendmessage(us, to, "...", 1);
84         while (ugetstring("> ", buf)) {
85             if (*buf == '.')
86                 break;
87             sendmessage(us, to, buf, 0);
88         }
89         sendmessage(us, to, "<EOT>", 0);
90     }
91     return RET_OK;
92 }
93
94 int
95 wall(void)
96 {
97     struct natstr *us;
98     char buf[1024];             /* UTF-8 */
99     char *sp;                   /* points into player->combuf[], UTF-8 */
100
101     us = getnatp(player->cnum);
102     if (player->argp[1]) {
103         for (sp = player->combuf; *sp && *sp != ' '; ++sp) ;
104         buf[0] = ':';
105         if (player->flags & PF_UTF8)
106             strcpy(buf+1, sp);
107         else
108             copy_utf8_to_ascii_no_funny(buf+1, sp);
109         sendmessage(us, 0, buf, 1);
110     } else {
111         sendmessage(us, 0, "...", 1);
112         while (ugetstring("> ", buf)) {
113             if (*buf == '.')
114                 break;
115             sendmessage(us, 0, buf, 0);
116         }
117         sendmessage(us, 0, "<EOT>", 0);
118     }
119     return RET_OK;
120 }
121
122 /*
123  * Send flash message MESSAGE from US to TO.
124  * MESSAGE is UTF-8.
125  * Null TO broadcasts to all.
126  * A header identifying US is prepended to the message.  It is more
127  * verbose if VERBOSE.
128  */
129 static int
130 sendmessage(struct natstr *us, struct natstr *to, char *message, int verbose)
131 {
132     struct player *other;
133     struct tm *tm;
134     time_t now;
135     int sent = 0;
136     struct natstr *wto;
137
138     time(&now);
139     tm = localtime(&now);
140     for (other = player_next(0); other != 0; other = player_next(other)) {
141         if (other->state != PS_PLAYING)
142             continue;
143         if (to && other->cnum != to->nat_cnum)
144             continue;
145         if (!(wto = getnatp(other->cnum)))
146             continue;
147         if (!to && !player->god && getrel(wto, player->cnum) != ALLIED)
148             continue;
149         if (!player->god && !(wto->nat_flags & NF_FLASH))
150             continue;
151         if (player == other)
152             continue;
153         if (verbose)
154             if (to)
155                 pr_flash(other, "FLASH from %s (#%d) @ %02d:%02d%s\n",
156                          us->nat_cnam, us->nat_cnum, tm->tm_hour,
157                          tm->tm_min, message);
158             else
159                 pr_flash(other, "BROADCAST from %s (#%d) @ %02d:%02d%s\n",
160                          us->nat_cnam, us->nat_cnum, tm->tm_hour,
161                          tm->tm_min, message);
162
163         else
164             pr_flash(other, "%s (#%d): %s\n",
165                      us->nat_cnam, us->nat_cnum, message);
166         sent++;
167     }
168     if (player->god) {
169         if (to)
170             if (sent)
171                 pr("Flash sent to %s\n", to->nat_cnam);
172             else
173                 pr("%s is not logged on\n", to->nat_cnam);
174         else if (sent)
175             pr("Broadcast sent to %d players\n", sent);
176         else
177             pr("No-one is logged in\n");
178     }
179     if (to && !player->god) {
180         /* If they are allied with us, we would normally see that
181          * they are logged in anyway, so just tell us */
182         if ((getrel(to, player->cnum) == ALLIED) && !sent) {
183             if (to->nat_flags & NF_FLASH)
184                 pr("%s is not logged on\n", to->nat_cnam);
185             else
186                 pr("%s is not accepting flashes\n", to->nat_cnam);
187         }
188     }
189     return 0;
190 }