1998-04-25 15:11:10 +00:00
|
|
|
//
|
|
|
|
// airports.cxx -- a really simplistic class to manage airport ID,
|
|
|
|
// lat, lon of the center of one of it's runways, and
|
|
|
|
// elevation in feet.
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 1998.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1998 Curtis L. Olson - curt@me.umn.edu
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
// (Log is kept at end of this file)
|
|
|
|
|
|
|
|
|
1998-06-03 00:47:11 +00:00
|
|
|
#include <string>
|
1998-04-25 15:11:10 +00:00
|
|
|
|
|
|
|
#include <Debug/fg_debug.h>
|
1998-04-28 21:42:50 +00:00
|
|
|
#include <Include/fg_zlib.h>
|
1998-05-13 18:25:34 +00:00
|
|
|
#include <Main/options.hxx>
|
1998-04-25 15:11:10 +00:00
|
|
|
|
|
|
|
#include "airports.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
fgAIRPORTS::fgAIRPORTS( void ) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// load the data
|
|
|
|
int fgAIRPORTS::load( char *file ) {
|
1998-05-29 20:37:19 +00:00
|
|
|
fgAIRPORT a;
|
1998-05-13 18:25:34 +00:00
|
|
|
fgOPTIONS *o;
|
1998-04-28 21:42:50 +00:00
|
|
|
char path[256], fgpath[256], line[256];
|
1998-04-25 15:11:10 +00:00
|
|
|
char id[5];
|
1998-05-29 20:37:19 +00:00
|
|
|
string id_str;
|
1998-04-28 21:42:50 +00:00
|
|
|
fgFile f;
|
1998-04-25 15:11:10 +00:00
|
|
|
|
1998-05-13 18:25:34 +00:00
|
|
|
o = ¤t_options;
|
1998-04-25 15:11:10 +00:00
|
|
|
|
1998-06-03 22:01:06 +00:00
|
|
|
// build the path name to the airport file
|
|
|
|
strcpy(path, o->fg_root);
|
1998-04-25 15:11:10 +00:00
|
|
|
strcat(path, "/Scenery/");
|
|
|
|
strcat(path, "Airports");
|
1998-04-28 21:42:50 +00:00
|
|
|
strcpy(fgpath, path);
|
|
|
|
strcat(fgpath, ".gz");
|
1998-04-25 15:11:10 +00:00
|
|
|
|
|
|
|
// first try "path.gz"
|
1998-04-28 21:42:50 +00:00
|
|
|
if ( (f = fgopen(fgpath, "rb")) == NULL ) {
|
1998-04-25 15:11:10 +00:00
|
|
|
// next try "path"
|
1998-04-28 21:42:50 +00:00
|
|
|
if ( (f = fgopen(path, "rb")) == NULL ) {
|
1998-04-25 15:11:10 +00:00
|
|
|
fgPrintf(FG_GENERAL, FG_EXIT, "Cannot open file: %s\n", path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-04-28 21:42:50 +00:00
|
|
|
while ( fggets(f, line, 250) != NULL ) {
|
1998-04-25 15:11:10 +00:00
|
|
|
// printf("%s", line);
|
1998-04-28 21:42:50 +00:00
|
|
|
|
1998-05-29 20:37:19 +00:00
|
|
|
sscanf( line, "%s %lf %lf %lfl\n", id, &a.longitude, &a.latitude,
|
|
|
|
&a.elevation );
|
|
|
|
id_str = id;
|
|
|
|
airports[id_str] = a;
|
1998-04-25 15:11:10 +00:00
|
|
|
}
|
|
|
|
|
1998-04-28 21:42:50 +00:00
|
|
|
fgclose(f);
|
1998-05-06 03:16:23 +00:00
|
|
|
|
|
|
|
return(1);
|
1998-04-25 15:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// search for the specified id
|
|
|
|
fgAIRPORT fgAIRPORTS::search( char *id ) {
|
1998-05-29 20:37:19 +00:00
|
|
|
map < string, fgAIRPORT, less<string> > :: iterator find;
|
1998-04-25 15:11:10 +00:00
|
|
|
fgAIRPORT a;
|
|
|
|
|
1998-05-29 20:37:19 +00:00
|
|
|
find = airports.find(id);
|
|
|
|
if ( find == airports.end() ) {
|
|
|
|
// not found
|
|
|
|
a.longitude = a.latitude = a.elevation = 0;
|
|
|
|
} else {
|
|
|
|
a = (*find).second;
|
1998-04-25 15:11:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
fgAIRPORTS::~fgAIRPORTS( void ) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// $Log$
|
1998-06-03 22:01:06 +00:00
|
|
|
// Revision 1.7 1998/06/03 22:01:07 curt
|
|
|
|
// Tweaking sound library usage.
|
|
|
|
//
|
1998-06-03 00:47:11 +00:00
|
|
|
// Revision 1.6 1998/06/03 00:47:13 curt
|
|
|
|
// Updated to compile in audio support if OSS available.
|
|
|
|
// Updated for new version of Steve's audio library.
|
|
|
|
// STL includes don't use .h
|
|
|
|
// Small view optimizations.
|
|
|
|
//
|
1998-05-29 20:37:19 +00:00
|
|
|
// Revision 1.5 1998/05/29 20:37:22 curt
|
|
|
|
// Tweaked material properties & lighting a bit in GLUTmain.cxx.
|
|
|
|
// Read airport list into a "map" STL for dynamic list sizing and fast tree
|
|
|
|
// based lookups.
|
|
|
|
//
|
1998-05-13 18:25:34 +00:00
|
|
|
// Revision 1.4 1998/05/13 18:26:25 curt
|
|
|
|
// Root path info moved to fgOPTIONS.
|
|
|
|
//
|
1998-05-06 03:16:23 +00:00
|
|
|
// Revision 1.3 1998/05/06 03:16:24 curt
|
|
|
|
// Added an averaged global frame rate counter.
|
|
|
|
// Added an option to control tile radius.
|
|
|
|
//
|
1998-04-28 21:42:50 +00:00
|
|
|
// Revision 1.2 1998/04/28 21:42:50 curt
|
|
|
|
// Wrapped zlib calls up so we can conditionally comment out zlib support.
|
|
|
|
//
|
1998-04-25 15:11:10 +00:00
|
|
|
// Revision 1.1 1998/04/25 15:11:11 curt
|
|
|
|
// Added an command line option to set starting position based on airport ID.
|
|
|
|
//
|
|
|
|
//
|