]> git.pond.sub.org Git - empserver/blob - src/lib/commands/tele.c
Fix trailing whitespace
[empserver] / src / lib / commands / tele.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *  tele.c: Send a telegram
29  *
30  *  Known contributors to this file:
31  *     Steve McClure, 2000
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "news.h"
38 #include "optlist.h"
39 #include "tel.h"
40
41 int
42 tele(void)
43 {
44     natid to;
45     struct natstr *natp;
46     char buf[MAXTELSIZE + 1];   /* UTF-8 */
47     int n;
48
49     natp = getnatp(player->cnum);
50     if (*player->argp[0] == 'a') {
51         if (getele("everybody", buf) <= 0) {
52             pr("Announcement aborted\n");
53             return RET_FAIL;
54         }
55         pr("\n");
56         to = 0;
57         if (typed_wu(player->cnum, to, buf, TEL_ANNOUNCE) < 0)
58             logerror("tele: typed_wu failed to #%d", to);
59     } else if (*player->argp[0] == 'p') {
60         if (getele("your Gracious Deity", buf) <= 0) {
61             pr("Prayer aborted\n");
62             return RET_FAIL;
63         }
64         pr("\n");
65         if (typed_wu(player->cnum, 0, buf, TEL_NORM) < 0)
66             logerror("tele: typed_wu failed to #0");
67     } else {
68         int kk;
69
70         kk = 1;
71         do {
72             if ((n = natarg(player->argp[kk], "for which country? ")) < 0)
73                 return RET_SYN;
74             to = n;
75
76             if (kk == 1) {
77                 if (player->argp[2]) {
78                     if (getele("multiple recipients", buf) < 0) {
79                         pr("Telegram aborted\n");
80                         return RET_FAIL;
81                     }
82                 } else {
83                     if (getele(cname(to), buf) < 0) {
84                         pr("Telegram aborted\n");
85                         return RET_FAIL;
86                     }
87                 }
88                 pr("\n");
89             }
90
91             natp = getnatp(to);
92             if (natp->nat_stat < STAT_SANCT) {
93                 pr("%s has no \"telegram privileges\".\n", cname(to));
94                 kk++;
95                 continue;
96             }
97             if (!player->god
98                 && (getrejects(player->cnum, natp) & REJ_TELE)) {
99                 pr("%s is rejecting your telegrams.\n", cname(to));
100                 return RET_SYN;
101             }
102             if (typed_wu(player->cnum, to, buf, TEL_NORM) < 0) {
103                 logerror("tele: typed_wu failed to #%d", n);
104                 return RET_FAIL;
105             }
106
107             if (!player->god && natp->nat_stat != STAT_GOD
108                 && player->cnum != to)
109                 nreport(player->cnum, N_SENT_TEL, to, 1);
110             if (opt_HIDDEN) {
111                 setcont(to, player->cnum, FOUND_TELE);
112             }
113             kk++;
114         } while (player->argp[kk] != NULL);
115     }
116     return RET_OK;
117 }