1 // runways.cxx -- a simple class to manage airport runway info
3 // Written by Curtis Olson, started August 2000.
5 // Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org
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.
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.
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.
28 #include <math.h> // fabs()
29 #include <stdio.h> // sprintf()
31 #include <simgear/compiler.h>
33 #include <simgear/debug/logstream.hxx>
34 #include <simgear/misc/sgstream.hxx>
40 #include "runways.hxx"
42 SG_USING_NAMESPACE(std);
43 SG_USING_STD(istream);
44 SG_USING_STD(multimap);
47 operator >> ( istream& in, FGRunway& a )
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;
69 FGRunwayList::FGRunwayList( const string& file ) {
70 SG_LOG( SG_GENERAL, SG_DEBUG, "Reading runway list: " << file );
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 );
86 runways.insert(pair<const string, FGRunway>(rwy.id, rwy));
92 // Return reverse rwy number
95 static string GetReverseRunwayNo(string rwyno) {
96 // cout << "Original rwyno = " << rwyNo << '\n';
98 // standardize input number
99 string tmp = rwyno.substr(1, 1);
100 if (( tmp == "L" || tmp == "R" || tmp == "C" ) || (rwyno.size() == 1)) {
103 SG_LOG( SG_GENERAL, SG_INFO, "Standardising rwy number from " << tmp
104 << " to " << rwyno );
108 int rn = atoi(rwyno.substr(0,2).c_str());
113 sprintf(buf, "%02i", rn);
114 if(rwyno.size() == 3) {
115 if(rwyno.substr(2,1) == "L") {
118 } else if (rwyno.substr(2,1) == "R") {
121 } else if (rwyno.substr(2,1) == "C") {
125 SG_LOG(SG_GENERAL, SG_ALERT, "Unknown runway code "
126 << rwyno << " passed to GetReverseRunwayNo(...)");
133 // search for the specified apt id (wierd!)
134 bool FGRunwayList::search( const string& aptid, FGRunway* r ) {
135 runway_map_iterator pos;
137 pos = runways.lower_bound(aptid);
138 if ( pos != runways.end() ) {
148 // search for the specified apt id and runway no
149 bool FGRunwayList::search( const string& aptid, const string& rwyno,
152 // standardize input number
153 string runwayno = rwyno;
154 string tmp = runwayno.substr(1, 1);
155 if (( tmp == "L" || tmp == "R" || tmp == "C" ) || (runwayno.size() == 1)) {
157 runwayno = "0" + tmp;
158 SG_LOG( SG_GENERAL, SG_INFO,
159 "Standardising rwy number from " << tmp << " to " << runwayno );
161 string revrwyno = GetReverseRunwayNo(runwayno);
163 runway_map_iterator pos;
164 for ( pos = runways.lower_bound( aptid );
165 pos != runways.upper_bound( aptid ); ++pos)
167 if ( pos->second.rwy_no == runwayno ) {
171 } else if ( pos->second.rwy_no == revrwyno ) {
172 // Search again with the other-end runway number.
173 // Remember we have to munge the heading and rwy_no
174 // results if this one matches
177 // NOTE - matching revrwyno implies that runwayno was
179 r->rwy_no = runwayno;
181 string tmp = r->end1_flags;
182 r->end1_flags = r->end2_flags;
193 FGRunway FGRunwayList::search( const string& aptid ) {
200 // Return the runway closest to a given heading
201 bool FGRunwayList::search( const string& aptid, const int tgt_hdg,
204 string rwyNo = search(aptid, tgt_hdg);
205 return(rwyNo == "NN" ? false : search(aptid, rwyNo, runway));
209 // Return the runway number of the runway closest to a given heading
210 string FGRunwayList::search( const string& aptid, const int tgt_hdg ) {
214 double found_dir = 0.0;
216 if ( !search( aptid, &tmp_r ) ) {
217 SG_LOG( SG_GENERAL, SG_ALERT,
218 "Failed to find " << aptid << " in database." );
223 double min_diff = 360.0;
225 while ( tmp_r.id == aptid ) {
229 diff = tgt_hdg - r.heading;
230 while ( diff < -180.0 ) { diff += 360.0; }
231 while ( diff > 180.0 ) { diff -= 360.0; }
233 // SG_LOG( SG_GENERAL, SG_INFO,
234 // "Runway " << r.rwy_no << " heading = " << r.heading <<
235 // " diff = " << diff );
236 if ( diff < min_diff ) {
243 diff = tgt_hdg - r.heading - 180.0;
244 while ( diff < -180.0 ) { diff += 360.0; }
245 while ( diff > 180.0 ) { diff -= 360.0; }
247 // SG_LOG( SG_GENERAL, SG_INFO,
248 // "Runway -" << r.rwy_no << " heading = " <<
249 // r.heading + 180.0 <<
250 // " diff = " << diff );
251 if ( diff < min_diff ) {
260 // SG_LOG( SG_GENERAL, SG_INFO, "closest runway = " << r.rwy_no
261 // << " + " << found_dir );
263 // cout << "In search, rn = " << rn << endl;
264 if ( found_dir == 180 ) {
265 rn = GetReverseRunwayNo(rn);
266 //cout << "New rn = " << rn << '\n';
273 bool FGRunwayList::next( FGRunway* runway ) {
275 if ( current != runways.end() ) {
276 *runway = current->second;
284 FGRunway FGRunwayList::next() {
288 if ( current != runways.end() ) {
289 result = current->second;
297 FGRunwayList::~FGRunwayList( void ) {