]> git.mxchange.org Git - flightgear.git/blob - src/Airports/runways.hxx
Multiplayer client/server system -- MessageBuf class and test harness complete
[flightgear.git] / src / Airports / runways.hxx
1 // runways.hxx -- 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 #ifndef _FG_RUNWAYS_HXX
25 #define _FG_RUNWAYS_HXX
26
27
28 #ifndef __cplusplus                                                          
29 # error This library requires C++
30 #endif                                   
31
32
33 #ifdef HAVE_CONFIG_H
34 #  include <config.h>
35 #endif
36
37 #include <simgear/compiler.h>
38
39 #include STL_STRING
40 #include <map>
41
42 SG_USING_STD(string);
43 SG_USING_STD(multimap);
44
45
46 struct ltstr {
47     bool operator()(const string s1, const string s2) const {
48         return s1 < s2;
49     }
50 };
51
52
53 struct FGRunway {
54
55     string type;
56     string id;
57     string rwy_no;
58
59     double lon;
60     double lat;
61     double heading;
62     double length;
63     double width;
64     
65     string surface_flags;
66     string end1_flags;
67     string end2_flags;
68
69     double end1_displaced_threshold;
70     double end2_displaced_threshold;
71
72     double end1_stopway;
73     double end2_stopway;
74
75 };
76
77 typedef multimap < string, FGRunway, ltstr > runway_map;
78 typedef runway_map::iterator runway_map_iterator;
79 typedef runway_map::const_iterator const_runway_map_iterator;
80
81 class FGRunwayList {
82
83 private:
84
85     runway_map runways;
86     runway_map_iterator current;
87
88 public:
89
90     // Constructor
91     FGRunwayList( const string& file );
92
93     // Destructor
94     ~FGRunwayList();
95
96     // search for the specified apt id.
97     // Returns true if successful, otherwise returns false.
98     // On success, runway data is returned thru "runway" pointer.
99     // "runway" is not changed if "apt" is not found.
100     bool search( const string& aptid, FGRunway* runway );
101     bool search( const string& aptid, const string& rwyno, FGRunway* runway );
102
103     // DCL - search for runway closest to desired heading in degrees
104     bool search( const string& aptid, const int hdg, FGRunway* runway );
105
106     // Return the runway number of the runway closest to a given heading
107     string search( const string& aptid, const int tgt_hdg );
108
109     FGRunway search( const string& aptid );
110     bool next( FGRunway* runway );
111     FGRunway next();
112 };
113
114
115 #endif // _FG_RUNWAYS_HXX