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