]> git.pond.sub.org Git - empserver/blob - src/lib/update/move_sat.c
Import of Empire 4.2.12
[empserver] / src / lib / update / move_sat.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  *  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 "deity.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(register 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     {
65         newtheta -= 1.0;
66     }
67
68     x1 = (coord)(2 * pp->pln_theta * WORLD_X);
69     x1 = xnorm(x1);
70     y1 = (coord)(sin(6 * PI * pp->pln_theta) * (WORLD_Y / 4));
71     x2 = (coord)(2 * newtheta * WORLD_X);
72     x2 = xnorm(x2);
73     y2 = (coord)(sin(6 * PI * newtheta) * (WORLD_Y / 4));
74     dx = x1 - pp->pln_x;
75     dy = y1 - pp->pln_y;
76     x2 -= dx;
77     y2 -= dy;
78
79     if  ((x2 + y2) & 1)
80     {
81         x2++;
82     }
83
84     pp->pln_x = xnorm(x2);
85     pp->pln_y = ynorm(y2);
86     pp->pln_theta = newtheta;
87     getsect(pp->pln_x, pp->pln_y, &sect);
88     if (sect.sct_own)
89             if (pp->pln_own != sect.sct_own)
90                     wu(0, sect.sct_own, "%s satellite spotted over %s\n",
91                        cname(pp->pln_own), xyas(pp->pln_x, pp->pln_y, sect.sct_own));
92     return;
93 }