]> git.mxchange.org Git - flightgear.git/blob - src/Airports/runways.cxx
Rob Deters: UIUC updates from March 1, 2004.
[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, "Standardising rwy number from " << tmp
104                                      << " 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 {
125             SG_LOG(SG_GENERAL, SG_ALERT, "Unknown runway code "
126             << rwyno << " passed to GetReverseRunwayNo(...)");
127         }
128     }
129     return(buf);
130 }
131
132
133 // search for the specified apt id (wierd!)
134 bool FGRunwayList::search( const string& aptid, FGRunway* r ) {
135     runway_map_iterator pos;
136
137     pos = runways.lower_bound(aptid);
138     if ( pos != runways.end() ) {
139         current = pos;
140         *r = pos->second;
141         return true;
142     } else {
143         return false;
144     }
145 }
146
147
148 // search for the specified apt id and runway no
149 bool FGRunwayList::search( const string& aptid, const string& rwyno,
150                            FGRunway *r )
151 {
152     string revrwyno = "";
153     string runwayno = rwyno;
154     if ( runwayno.length() ) {
155         // standardize input number
156         string tmp = runwayno.substr(1, 1);
157         if (( tmp == "L" || tmp == "R" || tmp == "C" )
158             || (runwayno.size() == 1))
159         {
160             tmp = runwayno;
161             runwayno = "0" + tmp;
162             SG_LOG( SG_GENERAL, SG_INFO, "Standardising rwy number from "
163                     << tmp << " to " << runwayno );
164         }
165         revrwyno = GetReverseRunwayNo(runwayno);
166     }
167
168     runway_map_iterator pos;
169     for ( pos = runways.lower_bound( aptid );
170           pos != runways.upper_bound( aptid ); ++pos)
171     {
172         if ( pos->second.rwy_no == runwayno ) {
173             current = pos;
174             *r = pos->second;
175             return true;
176         } else if ( pos->second.rwy_no == revrwyno ) {
177             // Search again with the other-end runway number.
178             // Remember we have to munge the heading and rwy_no
179             // results if this one matches
180             current = pos;
181             *r = pos->second;
182             // NOTE - matching revrwyno implies that runwayno was
183             // actually correct.
184             r->rwy_no = runwayno;
185             r->heading += 180.0;
186             string tmp = r->end1_flags;
187             r->end1_flags = r->end2_flags;
188             r->end2_flags = tmp;
189             return true;
190         }
191     }
192
193     return false;
194 }
195
196
197 // (wierd!)
198 FGRunway FGRunwayList::search( const string& aptid ) {
199     FGRunway a;
200     search( aptid, &a );
201     return a;
202 }
203
204
205 // Return the runway closest to a given heading
206 bool FGRunwayList::search( const string& aptid, const int tgt_hdg,
207                            FGRunway *runway )
208 {
209     string rwyNo = search(aptid, tgt_hdg);
210     return(rwyNo == "NN" ? false : search(aptid, rwyNo, runway));
211 }
212
213
214 // Return the runway number of the runway closest to a given heading
215 string FGRunwayList::search( const string& aptid, const int tgt_hdg ) {
216     FGRunway r;
217     FGRunway tmp_r;     
218     string rn;
219     double found_dir = 0.0;  
220  
221     if ( !search( aptid, &tmp_r ) ) {
222         SG_LOG( SG_GENERAL, SG_ALERT,
223                 "Failed to find " << aptid << " in database." );
224         return "NN";
225     }
226     
227     double diff;
228     double min_diff = 360.0;
229     
230     while ( tmp_r.id == aptid ) {
231         r = tmp_r;
232         
233         // forward direction
234         diff = tgt_hdg - r.heading;
235         while ( diff < -180.0 ) { diff += 360.0; }
236         while ( diff >  180.0 ) { diff -= 360.0; }
237         diff = fabs(diff);
238         // SG_LOG( SG_GENERAL, SG_INFO,
239         //         "Runway " << r.rwy_no << " heading = " << r.heading <<
240         //         " diff = " << diff );
241         if ( diff < min_diff ) {
242             min_diff = diff;
243             rn = r.rwy_no;
244             found_dir = 0;
245         }
246         
247         // reverse direction
248         diff = tgt_hdg - r.heading - 180.0;
249         while ( diff < -180.0 ) { diff += 360.0; }
250         while ( diff >  180.0 ) { diff -= 360.0; }
251         diff = fabs(diff);
252         // SG_LOG( SG_GENERAL, SG_INFO,
253         //         "Runway -" << r.rwy_no << " heading = " <<
254         //         r.heading + 180.0 <<
255         //         " diff = " << diff );
256         if ( diff < min_diff ) {
257             min_diff = diff;
258             rn = r.rwy_no;
259             found_dir = 180.0;
260         }
261         
262         next( &tmp_r );
263     }
264     
265     // SG_LOG( SG_GENERAL, SG_INFO, "closest runway = " << r.rwy_no
266     //         << " + " << found_dir );
267     rn = r.rwy_no;
268     // cout << "In search, rn = " << rn << endl;
269     if ( found_dir == 180 ) {
270         rn = GetReverseRunwayNo(rn);
271         //cout << "New rn = " << rn << '\n';
272     }   
273     
274     return rn;
275 }
276
277
278 bool FGRunwayList::next( FGRunway* runway ) {
279     ++current;
280     if ( current != runways.end() ) {
281         *runway = current->second;
282         return true;
283     } else {
284         return false;
285     }
286 }
287
288
289 FGRunway FGRunwayList::next() {
290     FGRunway result;
291
292     ++current;
293     if ( current != runways.end() ) {
294         result = current->second;
295     }
296
297     return result;
298 }
299
300
301 // Destructor
302 FGRunwayList::~FGRunwayList( void ) {
303 }