]> git.mxchange.org Git - flightgear.git/blob - src/Environment/ephemeris.cxx
21ff38b4d308335ae89d29cfadd40a0ad93099ad
[flightgear.git] / src / Environment / ephemeris.cxx
1 // ephemeris.cxx -- wrap SGEphemeris code in a subsystem
2 //
3 // Written by James Turner, started June 2010.
4 //
5 // Copyright (C) 2010  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #include <Environment/ephemeris.hxx>
24
25 #include <simgear/timing/sg_time.hxx>
26 #include <simgear/ephemeris/ephemeris.hxx>
27
28 #include <Main/globals.hxx>
29 #include <Main/fg_props.hxx>
30
31 Ephemeris::Ephemeris() :
32   _impl(NULL),
33   _latProp(NULL)
34 {
35     SGPath ephem_data_path(globals->get_fg_root());
36     ephem_data_path.append("Astro");
37     _impl = new SGEphemeris(ephem_data_path.c_str());
38     globals->set_ephem(_impl);
39 }
40
41 Ephemeris::~Ephemeris()
42 {
43   delete _impl;
44 }
45
46 void Ephemeris::init()
47 {
48   _latProp = fgGetNode("/position/latitude-deg", true);
49   update(0.0);
50 }
51
52 void Ephemeris::postinit()
53 {
54   
55 }
56
57 static void tieStar(const char* prop, Star* s, double (Star::*getter)() const)
58 {
59   fgGetNode(prop, true)->tie(SGRawValueMethods<Star, double>(*s, getter, NULL));
60
61
62 void Ephemeris::bind()
63 {
64   tieStar("/ephemeris/sun/xs", _impl->get_sun(), &Star::getxs);
65   tieStar("/ephemeris/sun/ys", _impl->get_sun(), &Star::getys);
66   tieStar("/ephemeris/sun/ze", _impl->get_sun(), &Star::getze);
67   tieStar("/ephemeris/sun/ye", _impl->get_sun(), &Star::getye);
68   
69   tieStar("/ephemeris/sun/lat-deg", _impl->get_sun(), &Star::getLat);
70 }
71
72 void Ephemeris::unbind()
73 {
74 }
75
76 void Ephemeris::update(double)
77 {
78   SGTime* st = globals->get_time_params();
79   _impl->update(st->getMjd(), st->getLst(), _latProp->getDoubleValue());
80 }