]> git.pond.sub.org Git - empserver/blob - src/lib/commands/news.c
Indented with src/scripts/indent-emp.
[empserver] / src / lib / commands / news.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  *  news.c: Show current Empire news
29  * 
30  *  Known contributors to this file:
31  *     
32  */
33
34 #include "misc.h"
35 #include "player.h"
36 #include "nat.h"
37 #include "news.h"
38 #include "file.h"
39 #include "xy.h"
40 #include "nsc.h"
41 #include "deity.h"
42 #include "commands.h"
43 #include "optlist.h"
44
45 static void preport(register struct nwsstr *np);
46
47 int
48 news(void)
49 {
50     extern s_char *page_headings[];
51     struct natstr *natp;
52     time_t now;
53     int page;
54     time_t then;
55     time_t delta;
56     struct nwsstr nws;
57     struct nstr_item nstr;
58     int page_has_news[N_MAX_PAGE + 1];
59     int there_is_news = 0;
60     short sectors_taken[MAXNOC][MAXNOC];
61     short sectors_delta;
62     short max_delta = -1;
63     short abs_delta;
64     short k;
65     int sectors_were_taken = 0;
66     natid i, j;
67     s_char num[128];
68     s_char *verb;
69
70     bzero((s_char *)page_has_news, sizeof(page_has_news));
71     bzero((s_char *)sectors_taken, sizeof(sectors_taken));
72     (void)head();
73     (void)time(&now);
74     natp = getnatp(player->cnum);
75     then = natp->nat_newstim;
76     if (!opt_HIDDEN) {
77         if (player->argp[1] != 0 && isdigit(*player->argp[1])) {
78             delta = days(atoi(player->argp[1]));
79             then = now - delta;
80         }
81     }
82     natp->nat_newstim = now;
83 /*      if (then < now - days(3))
84                 then = now - days(3);
85 */
86     snxtitem(&nstr, EF_NEWS, "*");
87     pr("\nThe details of Empire news since %s", ctime(&then));
88     while (nxtitem(&nstr, (s_char *)&nws)) {
89         if (nws.nws_when < then)
90             continue;
91         if (opt_HIDDEN) {
92             if (!player->god &&
93                 !(getcontact(getnatp(player->cnum), nws.nws_ano) &&
94                   getcontact(getnatp(player->cnum), nws.nws_vno)))
95                 continue;
96         }
97         ++page_has_news[rpt[(int)nws.nws_vrb].r_newspage];
98         ++there_is_news;
99     }
100     for (page = 1; page <= N_MAX_PAGE; page++) {
101         if (!page_has_news[page])
102             continue;
103         pr("\n\t ===  %s  ===\n", page_headings[page]);
104         snxtitem_rewind(&nstr);
105         while (nxtitem(&nstr, (s_char *)&nws)) {
106             if (rpt[(int)nws.nws_vrb].r_newspage != page)
107                 continue;
108             if (nws.nws_when < then)
109                 continue;
110             if (nws.nws_ntm == 0)
111                 nws.nws_ntm = 1;
112             if (opt_HIDDEN) {
113                 if (!player->god &&
114                     !(getcontact(getnatp(player->cnum), nws.nws_ano) &&
115                       getcontact(getnatp(player->cnum), nws.nws_vno)))
116                     continue;
117             }
118             if (page == N_FRONT &&
119                 (nws.nws_vrb == N_WON_SECT ||
120                  nws.nws_vrb == N_AWON_SECT ||
121                  nws.nws_vrb == N_PWON_SECT)) {
122                 sectors_taken[nws.nws_ano][nws.nws_vno] += nws.nws_ntm;
123                 sectors_were_taken += nws.nws_ntm;
124             }
125             preport(&nws);
126         }
127     }
128     if (sectors_were_taken) {
129         for (i = 0; i < MAXNOC; ++i) {
130             for (j = 0; j < i; ++j) {
131                 sectors_delta = sectors_taken[i][j] - sectors_taken[j][i];
132                 if (max_delta < abs(sectors_delta))
133                     max_delta = abs(sectors_delta);
134             }
135         }
136         pr("\n\t ===  The Bottom Line   ==\n");
137         for (k = max_delta; k > 0; --k) {
138             for (i = 0; i < MAXNOC; ++i) {
139                 for (j = 0; j < i; ++j) {
140                     sectors_delta = sectors_taken[i][j] -
141                         sectors_taken[j][i];
142                     abs_delta = abs(sectors_delta);
143                     if (abs_delta != k)
144                         continue;
145                     if (abs_delta == 1)
146                         verb = "stole";
147                     else if (abs_delta < 4)
148                         verb = "took";
149                     else if (abs_delta < 8)
150                         verb = "captured";
151                     else
152                         verb = "seized";
153                     if (sectors_delta > 0) {
154                         numstr(num, abs_delta);
155                         pr("%s %s %s sector%s from %s\n", cname(i), verb,
156                            num, splur(sectors_delta), cname(j));
157                     } else if (sectors_delta < 0) {
158                         numstr(num, abs_delta);
159                         pr("%s %s %s sector%s from %s\n", cname(j), verb,
160                            num, splur(-sectors_delta), cname(i));
161                     }
162                 }
163             }
164         }
165     }
166     if (!there_is_news)
167         pr("\nNo news at the moment...\n");
168     return 0;
169 }
170
171 static void
172 preport(register struct nwsstr *np)
173 {
174     register s_char *cp;
175     register int i;
176     s_char buf[255];
177     s_char num[128];
178     s_char *ptr;
179
180     cp = buf;
181     sprintf(buf, "%-16.16s  ", ctime(&np->nws_when));
182     cp += strlen(cp);
183     ptr = numstr(num, np->nws_ntm);
184     /*
185      * vary the order of the printing of "%d times "
186      */
187     if ((random() & 3) == 0 && np->nws_ntm > 1) {
188         sprintf(cp, "%s times ", ptr);
189         cp += strlen(cp);
190         np->nws_ntm = 1;
191     }
192     strcpy(cp, cname(np->nws_ano));
193     cp += strlen(cp);
194     *cp++ = ' ';
195     if (np->nws_vrb < 1 || np->nws_vrb > N_MAX_VERB)
196         np->nws_vrb = 0;
197     sprintf(cp, rpt[(int)np->nws_vrb].r_newstory[random() % NUM_RPTS],
198             cname(np->nws_vno));
199     cp += strlen(cp);
200     if (np->nws_ntm != 1) {
201         sprintf(cp, " %s times", ptr);
202         cp += strlen(cp);
203     }
204     if (*buf >= 'a' && *buf <= 'z')
205         *buf += 'A' - 'a';
206     if (cp - buf > 80) {
207         for (i = 80; --i > 60;)
208             if (buf[i] == ' ')
209                 break;
210         buf[i] = '\0';
211         pr("%s\n\t\t  %s\n", buf, &buf[i + 1]);
212     } else {
213         pr("%s\n", buf);
214     }
215     np->nws_ntm = 0;
216     return;
217 }