]> git.mxchange.org Git - flightgear.git/blob - src/Airports/runways.cxx
78c1c6db2928c7c05ea5772caf896aa2aa750bd6
[flightgear.git] / src / Airports / runways.cxx
1 // runways.cxx -- a simple class to manage airport runway info
2 //
3 // Written by Curtis Olson, started August 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 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <math.h>               // fabs()
29 #include <stdio.h>              // sprintf()
30
31 #include <simgear/compiler.h>
32
33 #include <simgear/debug/logstream.hxx>
34 #include <simgear/misc/sgstream.hxx>
35
36 #include STL_STRING
37 #include STL_IOSTREAM
38 #include <map>
39
40 #include "runways.hxx"
41
42 SG_USING_NAMESPACE(std);
43 SG_USING_STD(istream);
44 SG_USING_STD(multimap);
45
46 inline istream&
47 operator >> ( istream& in, FGRunway& a )
48 {
49     string type;
50     int tmp;
51
52     in >> a.type;
53     if ( a.type == "R" ) {
54         in >> a.id >> a.rwy_no >> a.lat >> a.lon >> a.heading
55            >> a.length >> a.width >> a.surface_flags >> a.end1_flags
56            >> tmp >> tmp >> a.end2_flags >> tmp >> tmp;
57     } else if ( a.type == "T" ) {
58         // in >> a.id >> a.rwy_no >> a.lat >> a.lon >> a.heading
59         //    >> a.length >> a.width >> a.surface_flags;
60         in >> skipeol;
61     } else {
62         in >> skipeol;
63     }
64
65     return in;
66 }
67
68
69 FGRunwayList::FGRunwayList( const string& file ) {
70     SG_LOG( SG_GENERAL, SG_DEBUG, "Reading runway list: " << file );
71
72     // open the specified file for reading
73     sg_gzifstream in( file );
74     if ( !in.is_open() ) {
75         SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << file );
76         exit(-1);
77     }
78
79     // skip header line
80     in >> skipeol;
81
82     FGRunway rwy;
83     while ( in ) {
84         in >> rwy;
85         if(rwy.type == "R") {
86             runways.insert(pair<const string, FGRunway>(rwy.id, rwy));
87         }
88     }
89 }
90
91
92 // Return reverse rwy number
93 // eg 01 -> 19
94 // 03L -> 21R
95 static string GetReverseRunwayNo(string rwyno) {        
96     // cout << "Original rwyno = " << rwyNo << '\n';
97     
98     // standardize input number
99     string tmp = rwyno.substr(1, 1);
100     if (( tmp == "L" || tmp == "R" || tmp == "C" ) || (rwyno.size() == 1)) {
101         tmp = rwyno;
102         rwyno = "0" + tmp;
103         SG_LOG( SG_GENERAL, SG_INFO,
104                 "Standardising rwy number from " << tmp << " to " << rwyno );
105     }
106     
107     char buf[4];
108     int rn = atoi(rwyno.substr(0,2).c_str());
109     rn += 18;
110     while(rn > 36) {
111         rn -= 36;
112     }
113     sprintf(buf, "%02i", rn);
114     if(rwyno.size() == 3) {
115         if(rwyno.substr(2,1) == "L") {
116             buf[2] = 'R';
117             buf[3] = '\0';
118         } else if (rwyno.substr(2,1) == "R") {
119             buf[2] = 'L';
120             buf[3] = '\0';
121         } else if (rwyno.substr(2,1) == "C") {
122             buf[2] = 'C';
123             buf[3] = '\0';
124         } else if (rwyno.substr(2,1) == "T") {
125             buf[2] = 'T';
126             buf[3] = '\0';
127         } else {
128             SG_LOG(SG_GENERAL, SG_ALERT, "Unknown runway code "
129             << rwyno << " passed to GetReverseRunwayNo(...)");
130         }
131     }
132     return(buf);
133 }
134
135
136 // search for the specified apt id (wierd!)
137 bool FGRunwayList::search( const string& aptid, FGRunway* r ) {
138     runway_map_iterator pos;
139
140     pos = runways.lower_bound(aptid);
141     if ( pos != runways.end() ) {
142         current = pos;
143         *r = pos->second;
144         return true;
145     } else {
146         return false;
147     }
148 }
149
150
151 // search for the specified apt id and runway no
152 bool FGRunwayList::search( const string& aptid, const string& rwyno,
153                            FGRunway *r )
154 {
155     string revrwyno = "";
156     string runwayno = rwyno;
157     if ( runwayno.length() ) {
158         // standardize input number
159         string tmp = runwayno.substr(1, 1);
160         if (( tmp == "L" || tmp == "R" || tmp == "C" )
161             || (runwayno.size() == 1))
162         {
163             tmp = runwayno;
164             runwayno = "0" + tmp;
165             SG_LOG( SG_GENERAL, SG_INFO, "Standardising rwy number from "
166                     << tmp << " to " << runwayno );
167         }
168         revrwyno = GetReverseRunwayNo(runwayno);
169     }
170
171     runway_map_iterator pos;
172     for ( pos = runways.lower_bound( aptid );
173           pos != runways.upper_bound( aptid ); ++pos)
174     {
175         if ( pos->second.rwy_no == runwayno ) {
176             current = pos;
177             *r = pos->second;
178             return true;
179         } else if ( pos->second.rwy_no == revrwyno ) {
180             // Search again with the other-end runway number.
181             // Remember we have to munge the heading and rwy_no
182             // results if this one matches
183             current = pos;
184             *r = pos->second;
185             // NOTE - matching revrwyno implies that runwayno was
186             // actually correct.
187             r->rwy_no = runwayno;
188             r->heading += 180.0;
189             string tmp = r->end1_flags;
190             r->end1_flags = r->end2_flags;
191             r->end2_flags = tmp;
192             return true;
193         }
194     }
195
196     return false;
197 }
198
199
200 // (wierd!)
201 FGRunway FGRunwayList::search( const string& aptid ) {
202     FGRunway a;
203     search( aptid, &a );
204     return a;
205 }
206
207
208 // Return the runway closest to a given heading
209 bool FGRunwayList::search( const string& aptid, const int tgt_hdg,
210                            FGRunway *runway )
211 {
212     string rwyNo = search(aptid, tgt_hdg);
213     return(rwyNo == "NN" ? false : search(aptid, rwyNo, runway));
214 }
215
216
217 // Return the runway number of the runway closest to a given heading
218 string FGRunwayList::search( const string& aptid, const int tgt_hdg ) {
219     FGRunway r;
220     FGRunway tmp_r;     
221     string rn;
222     double found_dir = 0.0;  
223  
224     if ( !search( aptid, &tmp_r ) ) {
225         SG_LOG( SG_GENERAL, SG_ALERT,
226                 "Failed to find " << aptid << " in database." );
227         return "NN";
228     }
229     
230     double diff;
231     double min_diff = 360.0;
232     
233     while ( tmp_r.id == aptid ) {
234         r = tmp_r;
235         
236         // forward direction
237         diff = tgt_hdg - r.heading;
238         while ( diff < -180.0 ) { diff += 360.0; }
239         while ( diff >  180.0 ) { diff -= 360.0; }
240         diff = fabs(diff);
241         // SG_LOG( SG_GENERAL, SG_INFO,
242         //         "Runway " << r.rwy_no << " heading = " << r.heading <<
243         //         " diff = " << diff );
244         if ( diff < min_diff ) {
245             min_diff = diff;
246             rn = r.rwy_no;
247             found_dir = 0;
248         }
249         
250         // reverse direction
251         diff = tgt_hdg - r.heading - 180.0;
252         while ( diff < -180.0 ) { diff += 360.0; }
253         while ( diff >  180.0 ) { diff -= 360.0; }
254         diff = fabs(diff);
255         // SG_LOG( SG_GENERAL, SG_INFO,
256         //         "Runway -" << r.rwy_no << " heading = " <<
257         //         r.heading + 180.0 <<
258         //         " diff = " << diff );
259         if ( diff < min_diff ) {
260             min_diff = diff;
261             rn = r.rwy_no;
262             found_dir = 180.0;
263         }
264         
265         next( &tmp_r );
266     }
267     
268     // SG_LOG( SG_GENERAL, SG_INFO, "closest runway = " << r.rwy_no
269     //         << " + " << found_dir );
270     rn = r.rwy_no;
271     // cout << "In search, rn = " << rn << endl;
272     if ( found_dir == 180 ) {
273         rn = GetReverseRunwayNo(rn);
274         //cout << "New rn = " << rn << '\n';
275     }   
276     
277     return rn;
278 }
279
280
281 bool FGRunwayList::next( FGRunway* runway ) {
282     ++current;
283     if ( current != runways.end() ) {
284         *runway = current->second;
285         return true;
286     } else {
287         return false;
288     }
289 }
290
291
292 FGRunway FGRunwayList::next() {
293     FGRunway result;
294
295     ++current;
296     if ( current != runways.end() ) {
297         result = current->second;
298     }
299
300     return result;
301 }
302
303
304 // Destructor
305 FGRunwayList::~FGRunwayList( void ) {
306 }