]> git.mxchange.org Git - flightgear.git/blob - src/Airports/simple.hxx
ignore resets for now because every z/Z key press would trigger a call to NOAA. We...
[flightgear.git] / src / Airports / simple.hxx
1 // simple.hxx -- a really simplistic class to manage airport ID,
2 //                 lat, lon of the center of one of it's runways, and 
3 //                 elevation in feet.
4 //
5 // Written by Curtis Olson, started April 1998.
6 //
7 // Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 //
23 // $Id$
24
25
26 #ifndef _FG_SIMPLE_HXX
27 #define _FG_SIMPLE_HXX
28
29
30 #ifndef __cplusplus                                                          
31 # error This library requires C++
32 #endif                                   
33
34
35 #ifdef HAVE_CONFIG_H
36 #  include <config.h>
37 #endif
38
39 #include <simgear/compiler.h>
40
41 #include STL_STRING
42 #include <map>
43 #include <vector>
44
45 SG_USING_STD(string);
46 SG_USING_STD(map);
47 SG_USING_STD(vector);
48
49
50 struct FGAirport {
51
52     string id;
53     double longitude;
54     double latitude;
55     double elevation;
56     string code;
57     string name;
58
59 };
60
61 typedef map < string, FGAirport > airport_map;
62 typedef airport_map::iterator airport_map_iterator;
63 typedef airport_map::const_iterator const_airport_map_iterator;
64
65 typedef vector < FGAirport * > airport_list;
66
67
68 class FGAirportList {
69
70 private:
71
72     airport_map airports;
73     airport_list airports2;
74
75 public:
76
77     // Constructor
78     FGAirportList( const string& file );
79
80     // Destructor
81     ~FGAirportList();
82
83     // search for the specified id.
84     // Returns true if successful, otherwise returns false.
85     // On success, airport data is returned thru "airport" pointer.
86     // "airport" is not changed if "apt" is not found.
87     FGAirport search( const string& id );
88
89     /**
90      * Return the number of airports in the list.
91      */
92     int size () const;
93
94
95     /**
96      * Return a specific airport, by position.
97      */
98     const FGAirport * getAirport (int index) const;
99
100 };
101
102
103 #endif // _FG_SIMPLE_HXX
104
105