]> git.mxchange.org Git - flightgear.git/blob - src/Airports/simple.cxx
Depricated ...
[flightgear.git] / src / Airports / simple.cxx
1 //
2 // simple.cxx -- 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
26 #ifdef HAVE_CONFIG_H
27 #  include <config.h>
28 #endif
29
30 #include <simgear/compiler.h>
31
32 #include <simgear/debug/logstream.hxx>
33 #include <simgear/misc/sgstream.hxx>
34
35 #include STL_STRING
36 #include STL_IOSTREAM
37
38 #include "simple.hxx"
39
40 SG_USING_NAMESPACE(std);
41 SG_USING_STD(istream);
42
43
44 inline istream&
45 operator >> ( istream& in, FGAirport& a )
46 {
47     string junk;
48     in >> junk >> a.id >> a.latitude >> a.longitude >> a.elevation
49        >> a.code;
50
51     char name[256];             // should never be longer than this, right? :-)
52     in.getline( name, 256 );
53     a.name = name;
54
55     return in;
56 }
57
58
59 FGAirportList::FGAirportList( const string& file ) {
60     SG_LOG( SG_GENERAL, SG_DEBUG, "Reading simple airport list: " << file );
61
62     // open the specified file for reading
63     sg_gzifstream in( file );
64     if ( !in.is_open() ) {
65         SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << file );
66         exit(-1);
67     }
68
69     // skip header line
70     in >> skipeol;
71
72     FGAirport a;
73     while ( in ) {
74         in >> a;
75         airports[a.id] = a;
76     }
77 }
78
79
80 // search for the specified id
81 FGAirport FGAirportList::search( const string& id) {
82     return airports[id];
83 }
84
85
86 // Destructor
87 FGAirportList::~FGAirportList( void ) {
88 }