]> git.pond.sub.org Git - empserver/blob - src/lib/commands/tele.c
Import of Empire 4.2.12
[empserver] / src / lib / commands / tele.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  *  tele.c: Send a telegram
29  * 
30  *  Known contributors to this file:
31  *     Steve McClure, 2000
32  *    
33  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "nat.h"
38 #include "tel.h"
39 #include "news.h"
40 #include "deity.h"
41 #include "file.h"
42 #include "commands.h"
43 #include "optlist.h"
44
45 int
46 tele(void)
47 {
48         natid   to;
49         struct  natstr *natp;
50         int     teltype;
51         s_char  buf[MAXTELSIZE+1];
52         int     n;
53
54         natp = getnatp(player->cnum);
55         if (*player->argp[0] == 'a') {
56                 if (getele("everybody", buf) <= 0) {
57                         pr("Announcement aborted\n");
58                         return RET_OK;
59                 }
60                 pr("\n");
61                 to = 0;
62                 if (typed_wu(player->cnum, to, buf, TEL_ANNOUNCE) < 0)
63                         logerror("tele: typed_wu failed to #%d", to);
64         } else if (*player->argp[0] == 'p') {
65                 if (getele("your Gracious Deity", buf) <= 0) {
66                         pr("Prayor aborted\n");
67                         return RET_OK;
68                 }
69                 pr("\n");
70                 if (typed_wu(player->cnum, 0, buf, TEL_NORM) < 0)
71                         logerror("tele: typed_wu failed to #0");
72         } else {
73                 int     kk;
74
75                 kk = 1;
76                 while (player->argp[kk] != (s_char *)0){
77                         if ((n = natarg(player->argp[kk], "for which country? ")) < 0) {
78                             if (opt_HIDDEN) {
79                                 if (n < -1) {
80                                     return RET_OK;
81                                 } else {
82                                     return RET_SYN;
83                                 }
84                             } else {
85                                 return RET_SYN;
86                             }
87                         }
88                         to = n;
89
90                         if (kk == 1){
91                                 if (player->argp[2]){
92                                         if(getele("multiple recipients",buf)<0){
93                                                 pr("Telegram aborted\n");
94                                                 return RET_OK;
95                                         }
96                                 }else{
97                                         if (getele(cname(to), buf) < 0) {
98                                                 pr("Telegram aborted\n");
99                                                 return RET_OK;
100                                         }
101                                 }
102                                 pr("\n");
103                         }
104
105                         natp = getnatp(to);
106                         if (((natp->nat_stat & STAT_NORM) == 0) &&
107                                 ((natp->nat_stat & STAT_SANCT) == 0)){
108                                 pr("%s has no \"telegram priveleges\".\n",
109                                         cname(to));
110                                 kk++;
111                                 continue;
112                         }
113                         if (!player->god && (getrejects(player->cnum,natp) & REJ_TELE)) {
114                                 pr("%s is rejecting your telegrams.\n",
115                                         cname(to));
116                                 return RET_SYN;
117                         }
118                         teltype = /* player->god ? TEL_BULLETIN : */ TEL_NORM;
119                         if (typed_wu(player->cnum, to, buf, teltype) < 0) {
120                                 logerror("tele: typed_wu failed to #%d", n);
121                                 return RET_FAIL;
122                         }
123
124                         if (!player->god &&
125                             (natp->nat_stat & GOD) != GOD &&
126                             player->cnum != to)
127                                 nreport(player->cnum, N_SENT_TEL, to, 1);
128                         if (opt_HIDDEN) {
129                             setcont(to, player->cnum, FOUND_TELE);
130                         }
131                         kk++;
132                 }
133         }
134         return RET_OK;
135 }