]> git.pond.sub.org Git - empserver/blob - src/lib/commands/skyw.c
af87a190e6abba474a2bfe20d0da9f72b9b5e6df
[empserver] / src / lib / commands / skyw.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2013, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  skyw.c: Look at satellites in the sky.
28  *
29  *  Known contributors to this file:
30  *     Ken Stevens, 1995
31  *     Markus Armbruster, 2010
32  */
33
34 #include <config.h>
35
36 #include "commands.h"
37 #include "optlist.h"
38 #include "plane.h"
39
40 #define TSIZE   200
41
42 struct sky {
43     struct sky *s_next;
44     int s_spotted;
45     struct plnstr s_sat;
46 };
47
48 static int showsat(struct sky **skypp, int x, int y);
49
50 /*
51  * format: skywatch [<SECTS>]
52  */
53 int
54 skyw(void)
55 {
56     struct sctstr sect;
57     struct nstr_sect nstr;
58     struct sky *skyp;
59     struct sky *list[TSIZE];
60     int i, n;
61     int vrange, see;
62     int x, y, dx, dy, dxmax;
63     int nsat = 0;
64     double tech;
65     struct nstr_item ni;
66
67     if (!snxtsct(&nstr, player->argp[1]))
68         return RET_SYN;
69     for (i = 0; i < TSIZE; i++)
70         list[i] = NULL;
71     skyp = malloc(sizeof(*skyp));
72     snxtitem_all(&ni, EF_PLANE);
73     while (nxtitem(&ni, &skyp->s_sat)) {
74         if (!skyp->s_sat.pln_own)
75             continue;
76         if (!pln_is_in_orbit(&skyp->s_sat))
77             continue;
78         getsect(skyp->s_sat.pln_x, skyp->s_sat.pln_y, &sect);
79         n = scthash(skyp->s_sat.pln_x, skyp->s_sat.pln_y, TSIZE);
80         skyp->s_spotted = 0;
81         skyp->s_next = list[n];
82         list[n] = skyp;
83         skyp = malloc(sizeof(*skyp));
84         nsat++;
85     }
86     /* get that last one! */
87     free(skyp);
88     pr("- = [ Skywatch report for %s ] = -\n", cname(player->cnum));
89     pr("  Country            Satellite     Location\n");
90     tech = tfact(player->cnum, 1.0);
91     while (nxtsct(&nstr, &sect) && nsat) {
92         if (sect.sct_own != player->cnum)
93             continue;
94         see = sect.sct_type == SCT_RADAR ? 14 : 4;
95         vrange = (int)(sect.sct_effic / 100.0 * see * tech);
96         if (vrange < 1)
97             vrange = 1;
98         for (dy = -vrange; dy <= vrange; dy++) {
99             y = ynorm(sect.sct_y + dy);
100             dxmax = 2 * vrange - abs(dy);
101             for (dx = -dxmax; dx <= dxmax; dx += 2) {
102                 x = xnorm(sect.sct_x + dx);
103                 n = scthash(x, y, TSIZE);
104                 if (!list[n])
105                     continue;
106                 nsat -= showsat(&list[n], x, y);
107             }
108         }
109     }
110     /* free up the sky structs calloc'ed above */
111     for (i = 0; i < TSIZE; i++) {
112         while (NULL != (skyp = list[i])) {
113             list[i] = skyp->s_next;
114             free(skyp);
115         }
116     }
117     return RET_OK;
118 }
119
120 static int
121 showsat(struct sky **skypp, int x, int y)
122 {
123     struct sky *skyp;
124     struct sky *todelete = NULL;
125     struct sky **prev;
126     int nsat = 0;
127
128     prev = NULL;
129     skyp = *skypp;
130     prev = skypp;
131     do {
132         /* we delete it, we free it. */
133         if (todelete) {
134             free(todelete);
135             todelete = NULL;
136         }
137         if (skyp->s_sat.pln_x != x || skyp->s_sat.pln_y != y) {
138             prev = &(*prev)->s_next;
139             continue;
140         }
141         pr(" %12.12s (#%3d) %s @ %s\n",
142            cname(skyp->s_sat.pln_own), skyp->s_sat.pln_own,
143            prplane(&skyp->s_sat), xyas(x, y, player->cnum));
144         if (opt_HIDDEN) {
145             /* FOUND_COAST should probably be changed to FOUND_SKY -KHS */
146             setcont(player->cnum, skyp->s_sat.pln_own, FOUND_COAST);
147         }
148         *prev = skyp->s_next;
149         todelete = skyp;
150         nsat++;
151     } while (NULL != (skyp = skyp->s_next));
152     /* check that last one! */
153     if (todelete)
154         free(todelete);
155     return nsat;
156 }