]> git.mxchange.org Git - flightgear.git/blob - Astro/moon.cxx
C++ - ifing the code a bit.
[flightgear.git] / Astro / moon.cxx
1 /**************************************************************************
2  * moon.c
3  * Written by Durk Talsma. Started October 1997, for the flight gear project.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * $Id$
20  * (Log is kept at end of this file)
21  **************************************************************************/
22
23
24 #include <config.h>
25
26 #ifdef HAVE_WINDOWS_H
27 #  include <windows.h>
28 #endif
29
30 #include <math.h>
31 #include <GL/glut.h>
32 #include <XGL/xgl.h>
33
34 #include <Aircraft/aircraft.h>
35 #include <Debug/fg_debug.h>
36 #include <Include/fg_constants.h>
37 #include <Include/general.h>
38 #include <Main/views.hxx>
39 #include <Time/fg_time.h>
40
41 #include "orbits.hxx"
42 #include "moon.hxx"
43
44
45 struct CelestialCoord moonPos;
46
47 static float xMoon, yMoon, zMoon;
48 static GLint moon = 0;
49
50
51
52 /* --------------------------------------------------------------
53       This section contains the code that calculates the actual
54       position of the moon in the night sky.
55 ----------------------------------------------------------------*/
56 struct CelestialCoord fgCalculateMoon(struct OrbElements params,
57                                       struct OrbElements sunParams,
58                                       struct fgTIME t)
59 {
60   struct CelestialCoord
61     geocCoord, topocCoord; 
62   
63   double
64     eccAnom, ecl, lonecl, latecl, actTime,
65     xv, yv, v, r, xh, yh, zh, xg, yg, zg, xe, ye, ze,
66     Ls, Lm, D, F, mpar, gclat, rho, HA, g;
67   
68   fgAIRCRAFT *a;
69   fgFLIGHT *f;
70
71   a = &current_aircraft;
72   f = a->flight;
73   
74   /* calculate the angle between ecliptic and equatorial coordinate
75    * system, in Radians */
76   actTime = fgCalcActTime(t);
77   ecl = ((DEG_TO_RAD * 23.4393) - (DEG_TO_RAD * 3.563E-7) * actTime);
78   /*ecl = 0.409093 - 6.2186E-9 * actTime; */
79                                                         
80   /* calculate the eccentric anomaly */
81   eccAnom = fgCalcEccAnom(params.M, params.e);
82
83   /* calculate the moon's distance (r) and  true anomaly (v) */
84   xv = params.a * ( cos(eccAnom) - params.e);
85   yv = params.a * ( sqrt(1.0 - params.e*params.e) * sin(eccAnom));
86   v =atan2(yv, xv);
87   r = sqrt(xv*xv + yv*yv);
88   
89   /* estimate the geocentric rectangular coordinates here */
90   xh = r * (cos (params.N) * cos (v + params.w) -
91             sin (params.N) * sin (v + params.w) * cos (params.i));
92   yh = r * (sin (params.N) * cos (v + params.w) +
93             cos (params.N) * sin (v + params.w) * cos (params.i));
94   zh = r * (sin(v + params.w) * sin(params.i));
95   
96   /* calculate the ecliptic latitude and longitude here */
97   lonecl = atan2( yh, xh);
98   latecl = atan2( zh, sqrt( xh*xh + yh*yh));
99
100   /* calculate a number of perturbations, i.e. disturbances caused by
101    * the gravitational influence of the sun and the other mayor
102    * planets. The largest of these even have their own names */
103   Ls = sunParams.M + sunParams.w;
104   Lm =    params.M +    params.w + params.N;
105   D = Lm - Ls;
106   F = Lm - params.N;
107   
108   lonecl += DEG_TO_RAD * (
109                           - 1.274 * sin (params.M - 2*D)                        /* the Evection         */
110                           + 0.658 * sin (2 * D)                                 /* the Variation        */
111                           - 0.186 * sin (sunParams.M)                           /* the yearly variation */
112                           - 0.059 * sin (2*params.M - 2*D)
113                           - 0.057 * sin (params.M - 2*D + sunParams.M)
114                           + 0.053 * sin (params.M + 2*D)
115                           + 0.046 * sin (2*D - sunParams.M)
116                           + 0.041 * sin (params.M - sunParams.M)
117                           - 0.035 * sin (D)                                      /* the Parallactic Equation */
118                           - 0.031 * sin (params.M + sunParams.M)
119                           - 0.015 * sin (2*F - 2*D)
120                           + 0.011 * sin (params.M - 4*D)
121                           );
122   latecl += DEG_TO_RAD * (
123                           - 0.173 * sin (F - 2*D)
124                           - 0.055 * sin (params.M - F - 2*D)
125                           - 0.046 * sin (params.M + F - 2*D)
126                           + 0.033 * sin (F + 2*D)
127                           + 0.017 * sin (2 * params.M + F)
128                           );
129   
130   r += (
131         - 0.58 * cos(params.M - 2*D)
132         - 0.46 * cos(2*D)
133         );
134   
135   xg = r * cos(lonecl) * cos(latecl);
136   yg = r * sin(lonecl) * cos(latecl);
137   zg = r *               sin(latecl);
138
139   xe  = xg;
140   ye = yg * cos(ecl) - zg * sin(ecl);
141   ze = yg * sin(ecl) + zg * cos(ecl);
142   
143
144   
145
146   geocCoord.RightAscension = atan2(ye, xe);
147   geocCoord.Declination = atan2(ze, sqrt(xe*xe + ye*ye));
148   
149   /* New since 25 december 1997 */
150   /* Calculate the moon's topocentric position instead of it's geocentric! */
151
152   /* calculate the moon's parrallax, i.e. the apparent size of the
153    * (equatorial) radius of the Earth, as seen from the moon */
154   mpar = asin( 1 / r); 
155   gclat = FG_Latitude - 0.083358 * sin (2 * DEG_TO_RAD *  FG_Latitude);
156   rho = 0.99883 + 0.00167 * cos(2 * DEG_TO_RAD * FG_Latitude);
157
158   if (geocCoord.RightAscension < 0)
159     geocCoord.RightAscension += (2*FG_PI);
160
161   HA = t.lst - (3.8197186 * geocCoord.RightAscension);
162
163   g = atan (tan(gclat) / cos( (HA / 3.8197186))); 
164
165      
166
167   topocCoord.RightAscension = geocCoord.RightAscension -
168       mpar * rho * cos (gclat) * sin (HA) / cos (geocCoord.Declination);
169   topocCoord.Declination = geocCoord.Declination -
170       mpar * rho * sin (gclat) * sin (g - geocCoord.Declination) / sin (g);
171   return topocCoord;
172 }
173
174
175 void fgMoonInit( void ) {
176     GLfloat moonColor[4] = {0.85, 0.75, 0.35, 1.0};
177     GLfloat black[4] = { 0.0, 0.0, 0.0, 1.0 };
178
179     fgPrintf( FG_ASTRO, FG_INFO, "Initializing the Moon\n");
180     fgSolarSystemUpdate(&(pltOrbElements[1]), cur_time_params);
181     moonPos = fgCalculateMoon(pltOrbElements[1], pltOrbElements[0], 
182                               cur_time_params);
183     fgPrintf( FG_ASTRO, FG_DEBUG, 
184               "Moon found at %f (ra), %f (dec)\n", moonPos.RightAscension, 
185               moonPos.Declination);
186
187     xMoon = 60000.0 * cos(moonPos.RightAscension) * cos(moonPos.Declination);
188     yMoon = 60000.0 * sin(moonPos.RightAscension) * cos(moonPos.Declination);
189     zMoon = 60000.0 * sin(moonPos.Declination);
190
191     if (moon) {
192         xglDeleteLists (moon, 1);
193     }
194
195     moon = xglGenLists (1);
196     xglNewList (moon, GL_COMPILE);
197   
198     xglMaterialfv (GL_FRONT, GL_AMBIENT, black);
199     xglMaterialfv (GL_FRONT, GL_DIFFUSE, moonColor);
200     xglPushMatrix ();
201     xglTranslatef (xMoon, yMoon, zMoon);
202     xglScalef (1400, 1400, 1400);
203   
204     glutSolidSphere (1.0, 10, 10);
205     xglPopMatrix ();
206     xglEndList ();
207 }
208
209
210 /* Draw the moon */
211 void fgMoonRender( void ) {
212     xglCallList(moon);
213 }
214
215
216 /* $Log$
217 /* Revision 1.1  1998/04/22 13:21:28  curt
218 /* C++ - ifing the code a bit.
219 /*
220  * Revision 1.9  1998/04/18 04:13:56  curt
221  * Moved fg_debug.c to it's own library.
222  *
223  * Revision 1.8  1998/04/03 21:52:49  curt
224  * Converting to Gnu autoconf system.
225  *
226  * Revision 1.7  1998/02/23 19:07:54  curt
227  * Incorporated Durk's Astro/ tweaks.  Includes unifying the sun position
228  * calculation code between sun display, and other FG sections that use this
229  * for things like lighting.
230  *
231  * Revision 1.6  1998/02/07 15:29:32  curt
232  * Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
233  * <chotchkiss@namg.us.anritsu.com>
234  *
235  * Revision 1.5  1998/02/02 20:53:21  curt
236  * To version 0.29
237  *
238  * Revision 1.4  1998/01/27 00:47:46  curt
239  * Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
240  * system and commandline/config file processing code.
241  *
242  * Revision 1.3  1998/01/19 19:26:57  curt
243  * Merged in make system changes from Bob Kuehne <rpk@sgi.com>
244  * This should simplify things tremendously.
245  *
246  * Revision 1.2  1998/01/19 18:40:16  curt
247  * Tons of little changes to clean up the code and to remove fatal errors
248  * when building with the c++ compiler.
249  *
250  * Revision 1.1  1998/01/07 03:16:16  curt
251  * Moved from .../Src/Scenery/ to .../Src/Astro/
252  *
253  * Revision 1.16  1998/01/06 01:20:24  curt
254  * Tweaks to help building with MSVC++
255  *
256  * Revision 1.15  1998/01/05 18:44:35  curt
257  * Add an option to advance/decrease time from keyboard.
258  *
259  * Revision 1.14  1997/12/30 20:47:50  curt
260  * Integrated new event manager with subsystem initializations.
261  *
262  * Revision 1.13  1997/12/30 16:41:00  curt
263  * Added log at end of file.
264  *
265  */