//
// simple.cxx -- a really simplistic class to manage airport ID,
-// lat, lon of the center of one of it's runways, and
+// lat, lon of the center of one of it's runways, and
// elevation in feet.
//
// Written by Curtis Olson, started April 1998.
-
-
/***************************************************************************
* FGAirport
***************************************************************************/
FGAirport::FGAirport() : _longitude(0), _latitude(0), _elevation(0)
{
- dynamics = 0;
+ dynamics = 0;
}
FGAirport::FGAirport(const string &id, double lon, double lat, double elev, const string &name, bool has_metar)
{
- _id = id;
- _longitude = lon;
- _latitude = lat;
- _elevation = elev;
- _name = name;
- _has_metar = has_metar;
- dynamics = 0;
+ _id = id;
+ _longitude = lon;
+ _latitude = lat;
+ _elevation = elev;
+ _name = name;
+ _has_metar = has_metar;
+ dynamics = 0;
}
+
FGAirport::~FGAirport()
{
delete dynamics;
FGAirportDynamics * FGAirport::getDynamics()
{
-
- if (dynamics != 0)
- return dynamics;
- else
- {
- FGRunwayPreference rwyPrefs;
- //cerr << "Trying to load dynamics for " << _id << endl;
- dynamics = new FGAirportDynamics(_latitude, _longitude, _elevation, _id);
-
- SGPath parkpath( globals->get_fg_root() );
- parkpath.append( "/Airports/AI/" );
- parkpath.append(_id);
- parkpath.append("parking.xml");
-
- SGPath rwyPrefPath( globals->get_fg_root() );
- rwyPrefPath.append( "/Airports/AI/" );
- rwyPrefPath.append(_id);
- rwyPrefPath.append("rwyuse.xml");
- //if (ai_dirs.find(id.c_str()) != ai_dirs.end()
- // && parkpath.exists())
- if (parkpath.exists())
- {
- try {
- readXML(parkpath.str(),*dynamics);
- dynamics->init();
- }
- catch (const sg_exception &e) {
- //cerr << "unable to read " << parkpath.str() << endl;
- }
- }
- //if (ai_dirs.find(id.c_str()) != ai_dirs.end()
- // && rwyPrefPath.exists())
- if (rwyPrefPath.exists())
- {
- try {
- readXML(rwyPrefPath.str(), rwyPrefs);
- dynamics->setRwyUse(rwyPrefs);
- }
- catch (const sg_exception &e) {
- //cerr << "unable to read " << rwyPrefPath.str() << endl;
- //exit(1);
- }
- }
- //exit(1);
+ if (dynamics != 0) {
+ return dynamics;
+ } else {
+ FGRunwayPreference rwyPrefs;
+ //cerr << "Trying to load dynamics for " << _id << endl;
+ dynamics = new FGAirportDynamics(_latitude, _longitude, _elevation, _id);
+
+ SGPath parkpath( globals->get_fg_root() );
+ parkpath.append( "/Airports/AI/" );
+ parkpath.append(_id);
+ parkpath.append("parking.xml");
+
+ SGPath rwyPrefPath( globals->get_fg_root() );
+ rwyPrefPath.append( "/Airports/AI/" );
+ rwyPrefPath.append(_id);
+ rwyPrefPath.append("rwyuse.xml");
+
+ //if (ai_dirs.find(id.c_str()) != ai_dirs.end()
+ // && parkpath.exists())
+ if (parkpath.exists()) {
+ try {
+ readXML(parkpath.str(),*dynamics);
+ dynamics->init();
+ } catch (const sg_exception &e) {
+ //cerr << "unable to read " << parkpath.str() << endl;
+ }
+ }
+
+ //if (ai_dirs.find(id.c_str()) != ai_dirs.end()
+ // && rwyPrefPath.exists())
+ if (rwyPrefPath.exists()) {
+ try {
+ readXML(rwyPrefPath.str(), rwyPrefs);
+ dynamics->setRwyUse(rwyPrefs);
+ } catch (const sg_exception &e) {
+ //cerr << "unable to read " << rwyPrefPath.str() << endl;
+ //exit(1);
+ }
+ }
+ //exit(1);
}
- return dynamics;
+ return dynamics;
}
// in the base package.
//
// Note: 2005/12/23: This is probably not necessary anymore, because I'm
-// Switching to runtime airport dynamics loading (DT).
+// Switching to runtime airport dynamics loading (DT).
FGAirportList::FGAirportList()
{
// ulDir* d;
}
-FGAirportList::~FGAirportList( void ) {
- for(unsigned int i = 0; i < airports_array.size(); ++i) {
+FGAirportList::~FGAirportList( void )
+{
+ for (unsigned int i = 0; i < airports_array.size(); ++i) {
delete airports_array[i];
}
}
FGRunwayPreference rwyPrefs;
FGAirport* a = new FGAirport(id, longitude, latitude, elevation, name, has_metar);
-
airports_by_id[a->getId()] = a;
// try and read in an auxilary file
-
+
airports_array.push_back( a );
SG_LOG( SG_GENERAL, SG_BULK, "Adding " << id << " pos = " << longitude
<< ", " << latitude << " elev = " << elevation );
// search for the specified id
-FGAirport* FGAirportList::search( const string& id) {
- airport_map_iterator itr = airports_by_id.find(id);
- return(itr == airports_by_id.end() ? NULL : itr->second);
+FGAirport* FGAirportList::search( const string& id)
+{
+ airport_map_iterator itr = airports_by_id.find(id);
+ return (itr == airports_by_id.end() ? NULL : itr->second);
}
// search for first subsequent alphabetically to supplied id
-const FGAirport* FGAirportList::findFirstById( const string& id, bool exact ) {
+const FGAirport* FGAirportList::findFirstById( const string& id, bool exact )
+{
airport_map_iterator itr;
- if(exact) {
+ if (exact) {
itr = airports_by_id.find(id);
} else {
itr = airports_by_id.lower_bound(id);
}
- if(itr == airports_by_id.end()) {
- return(NULL);
+ if (itr == airports_by_id.end()) {
+ return (NULL);
} else {
- return(itr->second);
+ return (itr->second);
}
}
// search for the airport nearest the specified position
FGAirport* FGAirportList::search( double lon_deg, double lat_deg,
- bool with_metar ) {
+ bool with_metar )
+{
int closest = -1;
double min_dist = 360.0;
unsigned int i;
return airports_array.size();
}
+
const FGAirport *FGAirportList::getAirport( unsigned int index ) const
{
- if(index < airports_array.size()) {
+ if (index < airports_array.size()) {
return(airports_array[index]);
} else {
return(NULL);
/**
* Mark the specified airport record as not having metar
*/
-void FGAirportList::no_metar( const string &id ) {
- if(airports_by_id.find(id) != airports_by_id.end()) {
+void FGAirportList::no_metar( const string &id )
+{
+ if(airports_by_id.find(id) != airports_by_id.end()) {
airports_by_id[id]->setMetar(false);
}
}
/**
* Mark the specified airport record as (yes) having metar
*/
-void FGAirportList::has_metar( const string &id ) {
- if(airports_by_id.find(id) != airports_by_id.end()) {
+void FGAirportList::has_metar( const string &id )
+{
+ if(airports_by_id.find(id) != airports_by_id.end()) {
airports_by_id[id]->setMetar(true);
}
}
+
// find basic airport location info from airport database
-const FGAirport *fgFindAirportID( const string& id) {
+const FGAirport *fgFindAirportID( const string& id)
+{
const FGAirport* result = NULL;
if ( id.length() ) {
SG_LOG( SG_GENERAL, SG_BULK, "Searching for airport code = " << id );
// get airport elevation
-double fgGetAirportElev( const string& id ) {
-
- // double lon, lat;
-
+double fgGetAirportElev( const string& id )
+{
SG_LOG( SG_GENERAL, SG_BULK,
"Finding elevation for airport: " << id );
}
}
-// get airport position
-Point3D fgGetAirportPos( const string& id ) {
- // double lon, lat;
+// get airport position
+Point3D fgGetAirportPos( const string& id )
+{
SG_LOG( SG_ATC, SG_BULK,
"Finding position for airport: " << id );
const FGAirport *a = fgFindAirportID( id);
-
+
if (a) {
return Point3D(a->getLongitude(), a->getLatitude(), a->getElevation());
} else {
// simple.hxx -- a really simplistic class to manage airport ID,
-// lat, lon of the center of one of it's runways, and
+// lat, lon of the center of one of it's runways, and
// elevation in feet.
//
// Written by Curtis Olson, started April 1998.
#define _FG_SIMPLE_HXX
-#ifndef __cplusplus
+#ifndef __cplusplus
# error This library requires C++
-#endif
+#endif
#ifdef HAVE_CONFIG_H
#include <simgear/math/point3d.hxx>
#include <simgear/compiler.h>
-//#include <simgear/xml/easyxml.hxx>
#include STL_STRING
#include <map>
**************************************************************************************/
class FGAirport {
private:
- string _id;
- double _longitude; // degrees
- double _latitude; // degrees
- double _elevation; // ft
- string _name;
- bool _has_metar;
- FGAirportDynamics *dynamics;
+ string _id;
+ double _longitude; // degrees
+ double _latitude; // degrees
+ double _elevation; // ft
+ string _name;
+ bool _has_metar;
+ FGAirportDynamics *dynamics;
public:
- FGAirport();
- // FGAirport(const FGAirport &other);
- FGAirport(const string& id, double lon, double lat, double elev, const string& name, bool has_metar);
- ~FGAirport();
-
- string getId() const { return _id;};
- const string &getName() const { return _name;};
- double getLongitude() const { return _longitude;};
- // Returns degrees
- double getLatitude() const { return _latitude; };
- // Returns ft
- double getElevation() const { return _elevation;};
- bool getMetar() const { return _has_metar;};
-
- void setId(const string& id) { _id = id;};
- void setMetar(bool value) { _has_metar = value; };
-
- FGAirportDynamics *getDynamics();
+ FGAirport();
+ // FGAirport(const FGAirport &other);
+ FGAirport(const string& id, double lon, double lat, double elev, const string& name, bool has_metar);
+ ~FGAirport();
+
+ string getId() const { return _id; }
+ const string &getName() const { return _name; }
+ double getLongitude() const { return _longitude; }
+ // Returns degrees
+ double getLatitude() const { return _latitude; }
+ // Returns ft
+ double getElevation() const { return _elevation; }
+ bool getMetar() const { return _has_metar; }
+
+ void setId(const string& id) { _id = id; }
+ void setMetar(bool value) { _has_metar = value; }
+
+ FGAirportDynamics *getDynamics();
+
private:
- FGAirport operator=(FGAirport &other);
- FGAirport(const FGAirport&);
+ FGAirport operator=(FGAirport &other);
+ FGAirport(const FGAirport&);
};
+
+
typedef map < string, FGAirport* > airport_map;
typedef airport_map::iterator airport_map_iterator;
typedef airport_map::const_iterator const_airport_map_iterator;
typedef airport_list::const_iterator const_airport_list_iterator;
-class FGAirportList {
+class FGAirportList {
private:
airport_map airports_by_id;
airport_list airports_array;
- //set < string > ai_dirs;
+ //set < string > ai_dirs;
public:
-
// Constructor (new)
FGAirportList();
// search for the specified id.
// Returns NULL if unsucessfull.
FGAirport* search( const string& id );
-
+
// Search for the next airport in ASCII sequence to the supplied id.
// eg. id = "KDC" or "KDCA" would both return "KDCA".
// If exact = true then only exact matches are returned.
// (currently a linear inefficient search so it's probably not
// best to use this at runtime.) If with_metar is true, then only
// return station id's marked as having metar data.
- // Returns NULL if fails (unlikely unless none have metar and with_metar spec'd!)
+ // Returns NULL if fails (unlikely unless none have metar and with_metar spec'd!)
FGAirport* search( double lon_deg, double lat_deg, bool with_metar );
/**
* Return a specific airport, by position.
*/
const FGAirport *getAirport( unsigned int index ) const;
-
+
/**
* Return a pointer to the raw airport list
*/
- inline const airport_list* getAirportList() { return(&airports_array); }
+ inline const airport_list* getAirportList() { return (&airports_array); }
/**
* Mark the specified airport record as not having metar