]> git.mxchange.org Git - flightgear.git/blob - src/ATC/atislist.cxx
Patch from Melchior Franz:
[flightgear.git] / src / ATC / atislist.cxx
1 // atislist.cxx -- ATIS data management class
2 //
3 // Written by David Luff, started October 2001.
4 // Based on navlist.cxx by Curtis Olson, started April 2000.
5 //
6 // Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include <simgear/debug/logstream.hxx>
28 #include <simgear/misc/sgstream.hxx>
29 #include <simgear/math/sg_geodesy.hxx>
30 #include <simgear/math/sg_random.h>
31
32 #include "atislist.hxx"
33
34
35 FGATISList *current_atislist;
36
37
38 // Constructor
39 FGATISList::FGATISList( void ) {
40 }
41
42
43 // Destructor
44 FGATISList::~FGATISList( void ) {
45 }
46
47
48 // load the navaids and build the map
49 bool FGATISList::init( SGPath path ) {
50
51     atislist.erase( atislist.begin(), atislist.end() );
52
53     sg_gzifstream in( path.str() );
54     if ( !in.is_open() ) {
55         SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
56         exit(-1);
57     }
58
59     // read in each line of the file
60
61     in >> skipcomment;
62
63 #ifdef __MWERKS__
64     char c = 0;
65     while ( in.get(c) && c != '\0' ) {
66         in.putback(c);
67 #else
68     while ( !in.eof() ) {
69 #endif
70     
71         FGATIS a;
72         in >> a;
73         if ( a.get_type() == '[' ) {
74             break;
75         }
76         
77         /* cout << "id = " << a.GetIdent() << endl;
78         cout << " type = " << a.get_type() << endl;
79         cout << " lon = " << a.get_lon() << endl;
80         cout << " lat = " << a.get_lat() << endl;
81         cout << " elev = " << a.get_elev() << endl;
82         cout << " freq = " << a.get_freq() << endl;
83         cout << " range = " << a.get_range() << endl << endl; */
84
85         atislist[a.get_freq()].push_back(a);
86         in >> skipcomment;
87
88     }
89
90     return true;
91 }
92
93
94 // query the database for the specified frequency, lon and lat are in
95 // degrees, elev is in meters
96 bool FGATISList::query( double lon, double lat, double elev, double freq,
97                        FGATIS *a )
98 {
99     lon *= SGD_DEGREES_TO_RADIANS;
100     lat *= SGD_DEGREES_TO_RADIANS;
101
102     atis_list_type stations = atislist[(int)(freq*100.0 + 0.5)];
103
104     atis_list_iterator current = stations.begin();
105     atis_list_iterator last = stations.end();
106
107     // double az1, az2, s;
108     Point3D aircraft = sgGeodToCart( Point3D(lon, lat, elev) );
109     Point3D station;
110     double d;
111     for ( ; current != last ; ++current ) {
112         //cout << "testing " << current->get_ident() << endl;
113         station = Point3D(current->get_x(), current->get_y(), current->get_z());
114         //cout << "aircraft = " << aircraft << endl;
115         //cout << "station = " << station << endl;
116
117         d = aircraft.distance3Dsquared( station );
118
119         //cout << "  dist = " << sqrt(d)
120         //     << "  range = " << current->get_range() * SG_NM_TO_METER << endl;
121
122         // match up to twice the published range so we can model
123         // reduced signal strength
124         if ( d < (2 * current->get_range() * SG_NM_TO_METER 
125                   * 2 * current->get_range() * SG_NM_TO_METER ) ) {
126             //cout << "matched = " << current->get_ident() << endl;
127             *a = *current;
128             return true;
129         }
130     }
131
132     return false;
133 }
134
135
136 int FGATISList::GetCallSign( string apt_id, int hours, int mins )
137 {
138     atis_transmission_type tran;
139
140     if(atislog.find(apt_id) == atislog.end()) {
141         // This station has not transmitted yet - return a random identifier
142         // and add the transmission to the log
143         tran.hours = hours;
144         tran.mins = mins;
145         sg_srandom_time();
146         tran.callsign = int(sg_random() * 25) + 1;      // This *should* give a random int between 1 and 26
147         //atislog[apt_id].push_back(tran);
148         atislog[apt_id] = tran;
149     } else {
150         // This station has transmitted - calculate the appropriate identifier
151         // and add the transmission to the log if it has changed
152         tran = atislog[apt_id];
153         // This next bit assumes that no-one comes back to the same ATIS station
154         // after running FlightGear for more than 24 hours !!
155         if((tran.hours == hours) && (tran.mins == mins)) {
156             return(tran.callsign);
157         } else {
158             if(tran.hours == hours) {
159                 // The minutes must have changed
160                 tran.mins = mins;
161                 tran.callsign++;
162             } else {
163                 if(hours < tran.hours) {
164                     hours += 24;
165                 }
166                 tran.callsign += (hours - tran.hours);
167                 if(mins != 0) {
168                     // Assume transmissions were made on every hour
169                     tran.callsign++;
170                 }
171                 tran.hours = hours;
172                 tran.mins = mins;
173             }
174             // Wrap if we've exceeded Zulu
175             if(tran.callsign > 26) {
176                 tran.callsign -= 26;
177             }
178             // And write the new transmission to the log
179             atislog[apt_id] = tran;
180         }
181     }
182     return(tran.callsign);
183 }