]> git.pond.sub.org Git - empserver/blob - src/lib/update/move_sat.c
Fix trailing whitespace
[empserver] / src / lib / update / move_sat.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  *  move_sat.c: Move a satellite to the next point in it's orbit.
29  *
30  *  Known contributors to this file:
31  *
32  */
33
34 #include <config.h>
35
36 #include <math.h>
37 #include "nsc.h"
38 #include "path.h"
39 #include "plane.h"
40 #include "update.h"
41
42 #ifndef PI
43 #define PI      3.14159265358979323846
44 #endif
45
46 void
47 move_sat(struct plnstr *pp)
48 {
49     coord x1, y1, x2, y2;
50     coord dx, dy;
51     float newtheta;
52     struct sctstr sect;
53
54     newtheta = pp->pln_theta + .05;
55
56     if (newtheta >= 1.0) {
57         newtheta -= 1.0;
58     }
59
60     x1 = (coord)(2 * pp->pln_theta * WORLD_X);
61     x1 = xnorm(x1);
62     y1 = (coord)(sin(6 * PI * pp->pln_theta) * (WORLD_Y / 4));
63     x2 = (coord)(2 * newtheta * WORLD_X);
64     x2 = xnorm(x2);
65     y2 = (coord)(sin(6 * PI * newtheta) * (WORLD_Y / 4));
66     dx = x1 - pp->pln_x;
67     dy = y1 - pp->pln_y;
68     x2 -= dx;
69     y2 -= dy;
70
71     if ((x2 + y2) & 1) {
72         x2++;
73     }
74
75     pp->pln_x = xnorm(x2);
76     pp->pln_y = ynorm(y2);
77     pp->pln_theta = newtheta;
78     getsect(pp->pln_x, pp->pln_y, &sect);
79     if (sect.sct_own)
80         if (pp->pln_own != sect.sct_own)
81             wu(0, sect.sct_own, "%s satellite spotted over %s\n",
82                cname(pp->pln_own), xyas(pp->pln_x, pp->pln_y,
83                                         sect.sct_own));
84     return;
85 }