]> git.mxchange.org Git - flightgear.git/blob - Simulator/Airports/simple.hxx
Merge Tests as subdirectory
[flightgear.git] / Simulator / Airports / simple.hxx
1 //
2 // simple.hxx -- a really simplistic class to manage airport ID,
3 //                 lat, lon of the center of one of it's runways, and 
4 //                 elevation in feet.
5 //
6 // Written by Curtis Olson, started April 1998.
7 //
8 // Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
9 //
10 // This program is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU General Public License as
12 // published by the Free Software Foundation; either version 2 of the
13 // License, or (at your option) any later version.
14 //
15 // This program is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 // General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 //
24 // $Id$
25 // (Log is kept at end of this file)
26
27
28 #ifndef _AIRPORTS_HXX
29 #define _AIRPORTS_HXX
30
31
32 #ifndef __cplusplus                                                          
33 # error This library requires C++
34 #endif                                   
35
36
37 #include <Include/compiler.h>
38 #ifdef FG_HAVE_STD_INCLUDES
39 #  include <istream>
40 #else
41 #  include <istream.h>
42 #endif
43
44 #include STL_STRING
45 #include <set>
46
47 FG_USING_STD(string);
48 FG_USING_STD(set);
49 FG_USING_STD(istream);
50
51
52 class fgAIRPORT {
53 public:
54     fgAIRPORT( const string& name = "",
55                double lon = 0.0,
56                double lat = 0.0,
57                double ele = 0.0 )
58         : id(name), longitude(lon), latitude(lat), elevation(ele) {}
59
60     bool operator < ( const fgAIRPORT& a ) const {
61         return id < a.id;
62     }
63
64 public:
65     string id;
66     double longitude;
67     double latitude;
68     double elevation;
69 };
70
71 inline istream&
72 operator >> ( istream& in, fgAIRPORT& a )
73 {
74     return in >> a.id >> a.longitude >> a.latitude >> a.elevation;
75 }
76
77 class fgAIRPORTS {
78 public:
79 #ifdef FG_NO_DEFAULT_TEMPLATE_ARGS
80     typedef set< fgAIRPORT, less< fgAIRPORT > > container;
81 #else
82     typedef set< fgAIRPORT > container;
83 #endif
84     typedef container::iterator iterator;
85     typedef container::const_iterator const_iterator;
86
87 private:
88     container airports;
89
90 public:
91
92     // Constructor
93     fgAIRPORTS();
94
95     // Destructor
96     ~fgAIRPORTS();
97
98     // load the data
99     int load( const string& file );
100
101     // search for the specified id.
102     // Returns true if successful, otherwise returns false.
103     // On success, airport data is returned thru "airport" pointer.
104     // "airport" is not changed if "id" is not found.
105     bool search( const string& id, fgAIRPORT* airport ) const;
106     fgAIRPORT search( const string& id ) const;
107 };
108
109
110 #endif /* _AIRPORTS_HXX */
111
112
113 // $Log$
114 // Revision 1.8  1999/03/15 17:58:57  curt
115 // MSVC++ portability tweaks contributed by Bernie Bright.
116 //   Added using std::istream declaration.
117 //
118 // Revision 1.7  1999/03/02 01:02:33  curt
119 // Tweaks for building with native SGI compilers.
120 //
121 // Revision 1.6  1999/02/26 22:08:36  curt
122 // Added initial support for native SGI compilers.
123 //
124 // Revision 1.5  1998/11/02 18:25:34  curt
125 // Check for __CYGWIN__ (b20) as well as __CYGWIN32__ (pre b20 compilers)
126 // Other misc. tweaks.
127 //
128 // Revision 1.4  1998/09/08 21:38:43  curt
129 // Changes by Bernie Bright.
130 //
131 // Revision 1.3  1998/09/01 19:02:54  curt
132 // Changes contributed by Bernie Bright <bbright@c031.aone.net.au>
133 //  - The new classes in libmisc.tgz define a stream interface into zlib.
134 //    I've put these in a new directory, Lib/Misc.  Feel free to rename it
135 //    to something more appropriate.  However you'll have to change the
136 //    include directives in all the other files.  Additionally you'll have
137 //    add the library to Lib/Makefile.am and Simulator/Main/Makefile.am.
138 //
139 //    The StopWatch class in Lib/Misc requires a HAVE_GETRUSAGE autoconf
140 //    test so I've included the required changes in config.tgz.
141 //
142 //    There are a fair few changes to Simulator/Objects as I've moved
143 //    things around.  Loading tiles is quicker but thats not where the delay
144 //    is.  Tile loading takes a few tenths of a second per file on a P200
145 //    but it seems to be the post-processing that leads to a noticeable
146 //    blip in framerate.  I suppose its time to start profiling to see where
147 //    the delays are.
148 //
149 //    I've included a brief description of each archives contents.
150 //
151 // Lib/Misc/
152 //   zfstream.cxx
153 //   zfstream.hxx
154 //     C++ stream interface into zlib.
155 //     Taken from zlib-1.1.3/contrib/iostream/.
156 //     Minor mods for STL compatibility.
157 //     There's no copyright associated with these so I assume they're
158 //     covered by zlib's.
159 //
160 //   fgstream.cxx
161 //   fgstream.hxx
162 //     FlightGear input stream using gz_ifstream.  Tries to open the
163 //     given filename.  If that fails then filename is examined and a
164 //     ".gz" suffix is removed or appended and that file is opened.
165 //
166 //   stopwatch.hxx
167 //     A simple timer for benchmarking.  Not used in production code.
168 //     Taken from the Blitz++ project.  Covered by GPL.
169 //
170 //   strutils.cxx
171 //   strutils.hxx
172 //     Some simple string manipulation routines.
173 //
174 // Simulator/Airports/
175 //   Load airports database using fgstream.
176 //   Changed fgAIRPORTS to use set<> instead of map<>.
177 //   Added bool fgAIRPORTS::search() as a neater way doing the lookup.
178 //   Returns true if found.
179 //
180 // Simulator/Astro/
181 //   Modified fgStarsInit() to load stars database using fgstream.
182 //
183 // Simulator/Objects/
184 //   Modified fgObjLoad() to use fgstream.
185 //   Modified fgMATERIAL_MGR::load_lib() to use fgstream.
186 //   Many changes to fgMATERIAL.
187 //   Some changes to fgFRAGMENT but I forget what!
188 //
189 // Revision 1.2  1998/08/27 17:01:56  curt
190 // Contributions from Bernie Bright <bbright@c031.aone.net.au>
191 // - use strings for fg_root and airport_id and added methods to return
192 //   them as strings,
193 // - inlined all access methods,
194 // - made the parsing functions private methods,
195 // - deleted some unused functions.
196 // - propogated some of these changes out a bit further.
197 //
198 // Revision 1.1  1998/08/25 17:19:14  curt
199 // Moved from ../Main/
200 //
201 // Revision 1.7  1998/07/24 21:39:09  curt
202 // Debugging output tweaks.
203 // Cast glGetString to (char *) to avoid compiler errors.
204 // Optimizations to fgGluLookAt() by Norman Vine.
205 //
206 // Revision 1.6  1998/07/06 21:34:19  curt
207 // Added an enable/disable splash screen option.
208 // Added an enable/disable intro music option.
209 // Added an enable/disable instrument panel option.
210 // Added an enable/disable mouse pointer option.
211 // Added using namespace std for compilers that support this.
212 //
213 // Revision 1.5  1998/06/17 21:35:11  curt
214 // Refined conditional audio support compilation.
215 // Moved texture parameter setup calls to ../Scenery/materials.cxx
216 // #include <string.h> before various STL includes.
217 // Make HUD default state be enabled.
218 //
219 // Revision 1.4  1998/06/03 00:47:14  curt
220 // Updated to compile in audio support if OSS available.
221 // Updated for new version of Steve's audio library.
222 // STL includes don't use .h
223 // Small view optimizations.
224 //
225 // Revision 1.3  1998/06/01 17:54:42  curt
226 // Added Linux audio support.
227 // avoid glClear( COLOR_BUFFER_BIT ) when not using it to set the sky color.
228 // map stl tweaks.
229 //
230 // Revision 1.2  1998/05/29 20:37:22  curt
231 // Tweaked material properties & lighting a bit in GLUTmain.cxx.
232 // Read airport list into a "map" STL for dynamic list sizing and fast tree
233 // based lookups.
234 //
235 // Revision 1.1  1998/04/25 15:11:11  curt
236 // Added an command line option to set starting position based on airport ID.
237 //
238 //