]> git.pond.sub.org Git - empserver/blob - src/lib/update/move_sat.c
Update copyright notice.
[empserver] / src / lib / update / move_sat.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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  *  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 <math.h>
35 #include "misc.h"
36 #include "var.h"
37 #include "plane.h"
38 #include "sect.h"
39 #include "xy.h"
40 #include "nsc.h"
41 #include "nat.h"
42 #include "path.h"
43 #include "file.h"
44 #include "update.h"
45 #include "subs.h"
46 #include "optlist.h"
47
48 #ifndef PI
49 #define PI      3.14159265358979323846
50 #endif
51
52 void
53 move_sat(register struct plnstr *pp)
54 {
55     coord x1, y1, x2, y2;
56     coord dx, dy;
57     float newtheta;
58     struct sctstr sect;
59
60     newtheta = pp->pln_theta + .05;
61
62     if (newtheta >= 1.0) {
63         newtheta -= 1.0;
64     }
65
66     x1 = (coord)(2 * pp->pln_theta * WORLD_X);
67     x1 = xnorm(x1);
68     y1 = (coord)(sin(6 * PI * pp->pln_theta) * (WORLD_Y / 4));
69     x2 = (coord)(2 * newtheta * WORLD_X);
70     x2 = xnorm(x2);
71     y2 = (coord)(sin(6 * PI * newtheta) * (WORLD_Y / 4));
72     dx = x1 - pp->pln_x;
73     dy = y1 - pp->pln_y;
74     x2 -= dx;
75     y2 -= dy;
76
77     if ((x2 + y2) & 1) {
78         x2++;
79     }
80
81     pp->pln_x = xnorm(x2);
82     pp->pln_y = ynorm(y2);
83     pp->pln_theta = newtheta;
84     getsect(pp->pln_x, pp->pln_y, &sect);
85     if (sect.sct_own)
86         if (pp->pln_own != sect.sct_own)
87             wu(0, sect.sct_own, "%s satellite spotted over %s\n",
88                cname(pp->pln_own), xyas(pp->pln_x, pp->pln_y,
89                                         sect.sct_own));
90     return;
91 }