]> git.mxchange.org Git - flightgear.git/blob - src/Environment/ephemeris.cxx
Fix minor memory leak in terrainsampler
[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 }
36
37 Ephemeris::~Ephemeris()
38 {
39   delete _impl;
40 }
41
42 void Ephemeris::init()
43 {
44   if (_impl) {
45     return;
46   }
47   
48   SGPath ephem_data_path(globals->get_fg_root());
49   ephem_data_path.append("Astro");
50   _impl = new SGEphemeris(ephem_data_path.c_str());
51   globals->set_ephem(_impl);
52   
53   _latProp = fgGetNode("/position/latitude-deg", true);
54   update(0.0);
55 }
56
57 void Ephemeris::postinit()
58 {
59   
60 }
61
62 static void tieStar(const char* prop, Star* s, double (Star::*getter)() const)
63 {
64   fgGetNode(prop, true)->tie(SGRawValueMethods<Star, double>(*s, getter, NULL));
65
66
67 void Ephemeris::bind()
68 {
69   tieStar("/ephemeris/sun/xs", _impl->get_sun(), &Star::getxs);
70   tieStar("/ephemeris/sun/ys", _impl->get_sun(), &Star::getys);
71   tieStar("/ephemeris/sun/ze", _impl->get_sun(), &Star::getze);
72   tieStar("/ephemeris/sun/ye", _impl->get_sun(), &Star::getye);
73   
74   tieStar("/ephemeris/sun/lat-deg", _impl->get_sun(), &Star::getLat);
75 }
76
77 void Ephemeris::unbind()
78 {
79 }
80
81 void Ephemeris::update(double)
82 {
83   SGTime* st = globals->get_time_params();
84   _impl->update(st->getMjd(), st->getLst(), _latProp->getDoubleValue());
85 }