]> git.mxchange.org Git - flightgear.git/blob - src/Navaids/fixlist.cxx
More fg -> sg namespace changes in simgear.
[flightgear.git] / src / Navaids / fixlist.cxx
1 // fixlist.cxx -- fix list management class
2 //
3 // Written by Curtis Olson, started April 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #include <simgear/debug/logstream.hxx>
25 #include <simgear/misc/sgstream.hxx>
26 #include <simgear/math/sg_geodesy.hxx>
27
28 #include "fixlist.hxx"
29
30
31 FGFixList *current_fixlist;
32
33
34 // Constructor
35 FGFixList::FGFixList( void ) {
36 }
37
38
39 // Destructor
40 FGFixList::~FGFixList( void ) {
41 }
42
43
44 // load the navaids and build the map
45 bool FGFixList::init( SGPath path ) {
46     FGFix fix;
47
48     fixlist.erase( fixlist.begin(), fixlist.end() );
49
50     sg_gzifstream in( path.str() );
51     if ( !in.is_open() ) {
52         SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
53         exit(-1);
54     }
55
56     // read in each line of the file
57
58     in >> skipeol;
59     in >> skipcomment;
60
61 #ifdef __MWERKS__
62
63     char c = 0;
64     while ( in.get(c) && c != '\0' && fix.get_ident() != "[End]" ) {
65         in.putback(c);
66         in >> fix;
67         if ( fix.get_ident() != "[End]" ) {
68             fixlist[fix.get_ident()] = fix;
69         }
70         in >> skipcomment;
71     }
72
73 #else
74
75     while ( ! in.eof() && fix.get_ident() != "[End]" ) {
76         in >> fix;
77         /* cout << "id = " << n.get_ident() << endl;
78         cout << " type = " << n.get_type() << endl;
79         cout << " lon = " << n.get_lon() << endl;
80         cout << " lat = " << n.get_lat() << endl;
81         cout << " elev = " << n.get_elev() << endl;
82         cout << " freq = " << n.get_freq() << endl;
83         cout << " range = " << n.get_range() << endl; */
84         if ( fix.get_ident() != "[End]" ) {
85             fixlist[fix.get_ident()] = fix;
86         }
87         in >> skipcomment;
88     }
89
90 #endif
91
92     return true;
93 }
94
95
96 // query the database for the specified frequency, lon and lat are in
97 // degrees, elev is in meters
98 bool FGFixList::query( const string& ident, double lon, double lat, double elev,
99                        FGFix *fix, double *heading, double *dist )
100 {
101     *fix = fixlist[ident];
102     if ( fix->get_ident() == "" ) {
103         return false;
104     }
105
106     double az1, az2, s;
107     geo_inverse_wgs_84( elev, lat, lon, 
108                         fix->get_lat(), fix->get_lon(),
109                         &az1, &az2, &s );
110     // cout << "  dist = " << s << endl;
111     *heading = az2;
112     *dist = s;
113     return true;
114 }