]> git.mxchange.org Git - simgear.git/blob - simgear/ephemeris/ephemeris.cxx
Clamp pitch values rather than just dumping an error message.
[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 - curt@flightgear.org
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
26 #include <iostream>
27
28 #include "ephemeris.hxx"
29
30
31 // Constructor
32 SGEphemeris::SGEphemeris( const string &path ) {
33     our_sun = new Star;
34     moon = new MoonPos;
35     mercury = new Mercury;
36     venus = new Venus;
37     mars = new Mars;
38     jupiter = new Jupiter;
39     saturn = new Saturn;
40     uranus = new Uranus;
41     neptune = new Neptune;
42     nplanets = 7;
43     for ( int i = 0; i < nplanets; ++i ) {
44         sgdSetVec3( planets[i], 0.0, 0.0, 0.0 );
45     }
46     stars = new SGStarData( SGPath(path) );
47 }
48
49
50 // Destructor
51 SGEphemeris::~SGEphemeris( void ) {
52     delete our_sun;
53     delete moon;
54     delete mercury;
55     delete venus;
56     delete mars;
57     delete jupiter;
58     delete saturn;
59     delete uranus;
60     delete neptune;
61     delete stars;
62 }
63
64
65 // Update (recalculate) the positions of all objects for the specified
66 // time
67 void SGEphemeris::update( double mjd, double lst, double lat ) {
68     // update object positions
69     our_sun->updatePosition( mjd );
70     moon->updatePosition( mjd, lst, lat, our_sun );
71     mercury->updatePosition( mjd, our_sun );
72     venus->updatePosition( mjd, our_sun );
73     mars->updatePosition( mjd, our_sun );
74     jupiter->updatePosition( mjd, our_sun );
75     saturn->updatePosition( mjd, our_sun );
76     uranus->updatePosition( mjd, our_sun );
77     neptune->updatePosition( mjd, our_sun );
78
79     // update planets list
80     nplanets = 7;
81     mercury->getPos( &planets[0][0], &planets[0][1], &planets[0][2] );
82     venus  ->getPos( &planets[1][0], &planets[1][1], &planets[1][2] );
83     mars   ->getPos( &planets[2][0], &planets[2][1], &planets[2][2] );
84     jupiter->getPos( &planets[3][0], &planets[3][1], &planets[3][2] );
85     saturn ->getPos( &planets[4][0], &planets[4][1], &planets[4][2] );
86     uranus ->getPos( &planets[5][0], &planets[5][1], &planets[5][2] );
87     neptune->getPos( &planets[6][0], &planets[6][1], &planets[6][2] );
88 }
89