]> git.mxchange.org Git - simgear.git/blob - simgear/ephemeris/ephemeris.cxx
Fix a small typo.
[simgear.git] / simgear / ephemeris / ephemeris.cxx
1 // ephemeris.cxx -- Top level class for calculating current positions of
2 //                  astronomical objects
3 //
4 // Written by Curtis Olson, started March 2000.
5 //
6 // Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt
7 //
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public
10 // License as published by the Free Software Foundation; either
11 // version 2 of the License, or (at your option) any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // Library General Public License for more details.
17 //
18 // You should have received a copy of the GNU Library General Public
19 // License along with this library; if not, write to the
20 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 // Boston, MA  02111-1307, USA.
22 //
23 // $Id$
24
25 #ifdef HAVE_CONFIG_H
26 #  include <simgear_config.h>
27 #endif
28
29 #include <iostream>
30
31 #include "ephemeris.hxx"
32
33
34 // Constructor
35 SGEphemeris::SGEphemeris( const string &path ) {
36     our_sun = new Star;
37     moon = new MoonPos;
38     mercury = new Mercury;
39     venus = new Venus;
40     mars = new Mars;
41     jupiter = new Jupiter;
42     saturn = new Saturn;
43     uranus = new Uranus;
44     neptune = new Neptune;
45     nplanets = 7;
46     for ( int i = 0; i < nplanets; ++i ) {
47         sgdSetVec3( planets[i], 0.0, 0.0, 0.0 );
48     }
49     stars = new SGStarData( SGPath(path) );
50 }
51
52
53 // Destructor
54 SGEphemeris::~SGEphemeris( void ) {
55     delete our_sun;
56     delete moon;
57     delete mercury;
58     delete venus;
59     delete mars;
60     delete jupiter;
61     delete saturn;
62     delete uranus;
63     delete neptune;
64     delete stars;
65 }
66
67
68 // Update (recalculate) the positions of all objects for the specified
69 // time
70 void SGEphemeris::update( double mjd, double lst, double lat ) {
71     // update object positions
72     our_sun->updatePosition( mjd );
73     moon->updatePosition( mjd, lst, lat, our_sun );
74     mercury->updatePosition( mjd, our_sun );
75     venus->updatePosition( mjd, our_sun );
76     mars->updatePosition( mjd, our_sun );
77     jupiter->updatePosition( mjd, our_sun );
78     saturn->updatePosition( mjd, our_sun );
79     uranus->updatePosition( mjd, our_sun );
80     neptune->updatePosition( mjd, our_sun );
81
82     // update planets list
83     nplanets = 7;
84     mercury->getPos( &planets[0][0], &planets[0][1], &planets[0][2] );
85     venus  ->getPos( &planets[1][0], &planets[1][1], &planets[1][2] );
86     mars   ->getPos( &planets[2][0], &planets[2][1], &planets[2][2] );
87     jupiter->getPos( &planets[3][0], &planets[3][1], &planets[3][2] );
88     saturn ->getPos( &planets[4][0], &planets[4][1], &planets[4][2] );
89     uranus ->getPos( &planets[5][0], &planets[5][1], &planets[5][2] );
90     neptune->getPos( &planets[6][0], &planets[6][1], &planets[6][2] );
91 }
92