X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAirports%2Fsimple.cxx;h=af16923b3469507a8b5e0487aaab7e595e8f136e;hb=386aefe69358ce41a11c9afeb8f56e26758fe56b;hp=1dc6b7d76ac875674551419f879413d2898657c8;hpb=d6277068f50c661144c6ae183225a48e7c37028d;p=flightgear.git diff --git a/src/Airports/simple.cxx b/src/Airports/simple.cxx index 1dc6b7d76..af16923b3 100644 --- a/src/Airports/simple.cxx +++ b/src/Airports/simple.cxx @@ -28,32 +28,24 @@ # include #endif -#include -#include - -#include +#include "simple.hxx" -#include -#include #include #include -#include +#include #include -#include
+#include + +#include +#include #include
#include +#include #include +#include -#include - -#include "simple.hxx" -#include "xmlloader.hxx" - -using std::sort; -using std::random_shuffle; - - - +// magic import of a helper which uses FGPositioned internals +extern char** searchAirportNamesAndIdents(const std::string& aFilter); /*************************************************************************** * FGAirport @@ -65,7 +57,9 @@ FGAirport::FGAirport(const string &id, const SGGeod& location, const SGGeod& tow _tower_location(tower_location), _name(name), _has_metar(has_metar), - _dynamics(0) + _dynamics(0), + mRunwaysLoaded(false), + mTaxiwaysLoaded(true) { } @@ -102,17 +96,23 @@ FGAirportDynamics * FGAirport::getDynamics() FGRunwayPreference rwyPrefs(this); XMLLoader::load(&rwyPrefs); _dynamics->setRwyUse(rwyPrefs); + + //FGSidStar SIDs(this); + XMLLoader::load(_dynamics->getSIDs()); } return _dynamics; } unsigned int FGAirport::numRunways() const { + loadRunways(); return mRunways.size(); } FGRunway* FGAirport::getRunwayByIndex(unsigned int aIndex) const { + loadRunways(); + assert(aIndex >= 0 && aIndex < mRunways.size()); return mRunways[aIndex]; } @@ -135,7 +135,9 @@ FGRunway* FGAirport::getRunwayByIdent(const string& aIdent) const FGAirport::Runway_iterator FGAirport::getIteratorForRunwayIdent(const string& aIdent) const -{ +{ + loadRunways(); + string ident(aIdent); if ((aIdent.size() == 1) || !isdigit(aIdent[1])) { ident = "0" + aIdent; @@ -151,21 +153,10 @@ FGAirport::getIteratorForRunwayIdent(const string& aIdent) const return it; // end() } -static double normaliseBearing(double aBearing) -{ - while (aBearing < -180) { - aBearing += 360.0; - } - - while (aBearing > 180.0) { - aBearing -= 360.0; - } - - return aBearing; -} - FGRunway* FGAirport::findBestRunwayForHeading(double aHeading) const { + loadRunways(); + Runway_iterator it = mRunways.begin(); FGRunway* result = NULL; double currentBestQuality = 0.0; @@ -179,7 +170,8 @@ FGRunway* FGAirport::findBestRunwayForHeading(double aHeading) const for (; it != mRunways.end(); ++it) { double good = (*it)->score(lengthWeight, widthWeight, surfaceWeight); - double dev = normaliseBearing(aHeading - (*it)->headingDeg()); + double dev = aHeading - (*it)->headingDeg(); + SG_NORMALIZE_RANGE(dev, -180.0, 180.0); double bad = fabs(deviationWeight * dev) + 1e-20; double quality = good / bad; @@ -194,19 +186,16 @@ FGRunway* FGAirport::findBestRunwayForHeading(double aHeading) const bool FGAirport::hasHardRunwayOfLengthFt(double aLengthFt) const { + loadRunways(); + unsigned int numRunways(mRunways.size()); for (unsigned int r=0; risReciprocal()) { continue; // we only care about lengths, so don't do work twice } - - int surface = rwy->surface(); - if ((surface != 1) && (surface != 2)) { - continue; // no hard surface - } - - if (rwy->lengthFt() >= aLengthFt) { + + if (rwy->isHardSurface() && (rwy->lengthFt() >= aLengthFt)) { return true; // we're done! } } // of runways iteration @@ -216,24 +205,42 @@ bool FGAirport::hasHardRunwayOfLengthFt(double aLengthFt) const unsigned int FGAirport::numTaxiways() const { + loadTaxiways(); return mTaxiways.size(); } -FGRunway* FGAirport::getTaxiwayByIndex(unsigned int aIndex) const +FGTaxiway* FGAirport::getTaxiwayByIndex(unsigned int aIndex) const { + loadTaxiways(); assert(aIndex >= 0 && aIndex < mTaxiways.size()); return mTaxiways[aIndex]; } -void FGAirport::addRunway(FGRunway* aRunway) +unsigned int FGAirport::numPavements() const { - aRunway->setAirport(this); - - if (aRunway->isTaxiway()) { - mTaxiways.push_back(aRunway); - } else { - mRunways.push_back(aRunway); + loadTaxiways(); + return mPavements.size(); +} + +FGPavement* FGAirport::getPavementByIndex(unsigned int aIndex) const +{ + loadTaxiways(); + assert(aIndex >= 0 && aIndex < mPavements.size()); + return mPavements[aIndex]; +} + +void FGAirport::setRunwaysAndTaxiways(vector& rwys, + vector& txwys, + vector& pvts) +{ + mRunways.swap(rwys); + Runway_iterator it = mRunways.begin(); + for (; it != mRunways.end(); ++it) { + (*it)->setAirport(this); } + + mTaxiways.swap(txwys); + mPavements.swap(pvts); } FGRunway* FGAirport::getActiveRunwayForUsage() const @@ -243,13 +250,17 @@ FGRunway* FGAirport::getActiveRunwayForUsage() const envMgr = (FGEnvironmentMgr *) globals->get_subsystem("environment"); } - FGEnvironment stationWeather(envMgr->getEnvironment(mPosition)); + // This forces West-facing rwys to be used in no-wind situations + // which is consistent with Flightgear's initial setup. + double hdg = 270; + + if (envMgr) { + FGEnvironment stationWeather(envMgr->getEnvironment(mPosition)); - double windSpeed = stationWeather.get_wind_speed_kt(); - double hdg = stationWeather.get_wind_from_heading_deg(); - if (windSpeed <= 0.0) { - hdg = 270; // This forces West-facing rwys to be used in no-wind situations - // which is consistent with Flightgear's initial setup. + double windSpeed = stationWeather.get_wind_speed_kt(); + if (windSpeed > 0.0) { + hdg = stationWeather.get_wind_from_heading_deg(); + } } return findBestRunwayForHeading(hdg); @@ -275,227 +286,132 @@ FGAirport::HardSurfaceFilter::HardSurfaceFilter(double minLengthFt) : { } -bool FGAirport::HardSurfaceFilter::pass(FGPositioned* aPos) const +bool FGAirport::HardSurfaceFilter::passAirport(FGAirport* aApt) const { - if (aPos->type() != AIRPORT) { - return false; // exclude seaports and heliports as well, we need a runways - } - - return static_cast(aPos)->hasHardRunwayOfLengthFt(mMinLengthFt); + return aApt->hasHardRunwayOfLengthFt(mMinLengthFt); } -/****************************************************************************** - * FGAirportList - *****************************************************************************/ - -// Populates a list of subdirectories of $FG_ROOT/Airports/AI so that -// the add() method doesn't have to try opening 2 XML files in each of -// thousands of non-existent directories. FIXME: should probably add -// code to free this list after parsing of apt.dat is finished; -// non-issue at the moment, however, as there are no AI subdirectories -// in the base package. -// -// Note: 2005/12/23: This is probably not necessary anymore, because I'm -// Switching to runtime airport dynamics loading (DT). -FGAirportList::FGAirportList() +FGAirport* FGAirport::findByIdent(const std::string& aIdent) { -// ulDir* d; -// ulDirEnt* dent; -// SGPath aid( globals->get_fg_root() ); -// aid.append( "/Airports/AI" ); -// if((d = ulOpenDir(aid.c_str())) == NULL) -// return; -// while((dent = ulReadDir(d)) != NULL) { -// SG_LOG( SG_GENERAL, SG_DEBUG, "Dent: " << dent->d_name ); -// ai_dirs.insert(dent->d_name); -// } -// ulCloseDir(d); + FGPositionedRef r; + PortsFilter filter; + r = FGPositioned::findNextWithPartialId(r, aIdent, &filter); + if (!r) { + return NULL; // we don't warn here, let the caller do that + } + return static_cast(r.ptr()); } - -FGAirportList::~FGAirportList( void ) +FGAirport* FGAirport::getByIdent(const std::string& aIdent) { - for (unsigned int i = 0; i < airports_array.size(); ++i) { - delete airports_array[i]; - } + FGPositionedRef r; + PortsFilter filter; + r = FGPositioned::findNextWithPartialId(r, aIdent, &filter); + if (!r) { + throw sg_range_exception("No such airport with ident: " + aIdent); + } + return static_cast(r.ptr()); } - -// add an entry to the list -FGAirport* FGAirportList::add( const string &id, const SGGeod& location, const SGGeod& tower_location, - const string &name, bool has_metar, FGPositioned::Type aType) +char** FGAirport::searchNamesAndIdents(const std::string& aFilter) { - FGAirport* a = new FGAirport(id, location, tower_location, name, has_metar, aType); - 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 = " << location.getLongitudeDeg() - << ", " << location.getLatitudeDeg() << " elev = " << location.getElevationFt() ); - - return a; + // we delegate all the work to a horrible helper in FGPositioned, which can + // access the (private) index data. + return searchAirportNamesAndIdents(aFilter); } - -// search for the specified id -FGAirport* FGAirportList::search( const string& id) +// find basic airport location info from airport database +const FGAirport *fgFindAirportID( const string& id) { - airport_map_iterator itr = airports_by_id.find(id); - return (itr == airports_by_id.end() ? NULL : itr->second); + if ( id.empty() ) { + return NULL; + } + + return FGAirport::findByIdent(id); } -// wrap an FGIdentOrdering in an STL-compatible functor. not the most -// efficent / pretty thing in the world, but avoids template nastiness in the -// headers, and we're only doing O(log(N)) comparisoms per search -class orderingFunctor +void FGAirport::loadRunways() const { -public: - orderingFunctor(FGIdentOrdering* aOrder) : - mOrdering(aOrder) - { assert(aOrder); } - - bool operator()(const airport_map::value_type& aA, const std::string& aB) const - { - return mOrdering->compare(aA.first,aB); + if (mRunwaysLoaded) { + return; // already loaded, great } + + mRunwaysLoaded = true; + loadSceneryDefintions(); +} - bool operator()(const std::string& aA, const airport_map::value_type& aB) const - { - return mOrdering->compare(aA, aB.first); +void FGAirport::loadTaxiways() const +{ + if (mTaxiwaysLoaded) { + return; // already loaded, great } +} - bool operator()(const airport_map::value_type& aA, const airport_map::value_type& aB) const - { - return mOrdering->compare(aA.first, aB.first); +void FGAirport::loadSceneryDefintions() const +{ + // allow users to disable the scenery data in the short-term + // longer term, this option can probably disappear + if (!fgGetBool("/sim/paths/use-custom-scenery-data")) { + return; } -private: - FGIdentOrdering* mOrdering; -}; - -const FGAirport* FGAirportList::findFirstById(const std::string& aIdent, FGIdentOrdering* aOrder) -{ - airport_map_iterator itr; - if (aOrder) { - orderingFunctor func(aOrder); - itr = std::lower_bound(airports_by_id.begin(),airports_by_id.end(), aIdent, func); - } else { - itr = airports_by_id.lower_bound(aIdent); + SGPath path; + SGPropertyNode_ptr rootNode = new SGPropertyNode; + if (XMLLoader::findAirportData(ident(), "threshold", path)) { + readProperties(path.str(), rootNode); + const_cast(this)->readThresholdData(rootNode); } - if (itr == airports_by_id.end()) { - return NULL; + // repeat for the tower data + rootNode = new SGPropertyNode; + if (XMLLoader::findAirportData(ident(), "twr", path)) { + readProperties(path.str(), rootNode); + const_cast(this)->readTowerData(rootNode); } - - return itr->second; -} - -// search for the airport nearest the specified position -FGAirport* FGAirportList::search(double lon_deg, double lat_deg, double max_range) -{ - static FGAirportSearchFilter accept_any; - return search(lon_deg, lat_deg, max_range, accept_any); -} - - -// search for the airport nearest the specified position and -// passing the filter -FGAirport* FGAirportList::search(double lon_deg, double lat_deg, - double max_range, - FGAirportSearchFilter& filter) -{ - double min_dist = max_range; - - airport_list_iterator it = airports_array.begin(); - airport_list_iterator end = airports_array.end(); - airport_list_iterator closest = end; - for (; it != end; ++it) { - if (!filter.pass(*it)) - continue; - - // crude manhatten distance based on lat/lon difference - double d = fabs(lon_deg - (*it)->getLongitude()) - + fabs(lat_deg - (*it)->getLatitude()); - if (d < min_dist) { - closest = it; - min_dist = d; - } - } - return closest != end ? *closest : 0; -} - - -int -FGAirportList::size () const -{ - return airports_array.size(); } - -const FGAirport *FGAirportList::getAirport( unsigned int index ) const +void FGAirport::readThresholdData(SGPropertyNode* aRoot) { - if (index < airports_array.size()) { - return(airports_array[index]); - } else { - return(NULL); - } + SGPropertyNode* runway; + int runwayIndex = 0; + for (; (runway = aRoot->getChild("runway", runwayIndex)) != NULL; ++runwayIndex) { + SGPropertyNode* t0 = runway->getChild("threshold", 0), + *t1 = runway->getChild("threshold", 1); + assert(t0); + assert(t1); // too strict? mayeb we should finally allow single-ended runways + + processThreshold(t0); + processThreshold(t1); + } // of runways iteration } - -/** - * Mark the specified airport record as not having metar - */ -void FGAirportList::no_metar( const string &id ) +void FGAirport::processThreshold(SGPropertyNode* aThreshold) { - if(airports_by_id.find(id) != airports_by_id.end()) { - airports_by_id[id]->setMetar(false); - } + // first, let's identify the current runway + string id(aThreshold->getStringValue("rwy")); + if (!hasRunwayWithIdent(id)) { + SG_LOG(SG_GENERAL, SG_WARN, "FGAirport::processThreshold: " + "found runway not defined in the global data:" << ident() << "/" << id); + return; + } + + FGRunway* rwy = getRunwayByIdent(id); + rwy->processThreshold(aThreshold); } - -/** - * Mark the specified airport record as (yes) having metar - */ -void FGAirportList::has_metar( const string &id ) +void FGAirport::readTowerData(SGPropertyNode* aRoot) { - 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* result = NULL; - if ( id.length() ) { - SG_LOG( SG_GENERAL, SG_BULK, "Searching for airport code = " << id ); - - result = globals->get_airports()->search( id ); - - if ( result == NULL ) { - SG_LOG( SG_GENERAL, SG_ALERT, - "Failed to find " << id << " in apt.dat.gz" ); - return NULL; - } - } else { - return NULL; - } - SG_LOG( SG_GENERAL, SG_BULK, - "Position for " << id << " is (" - << result->getLongitude() << ", " - << result->getLatitude() << ")" ); - - return result; + SGPropertyNode* twrNode = aRoot->getChild("tower")->getChild("twr"); + double lat = twrNode->getDoubleValue("lat"), + lon = twrNode->getDoubleValue("lon"), + elevM = twrNode->getDoubleValue("elev-m"); + + _tower_location = SGGeod::fromDegM(lon, lat, elevM); } - // get airport elevation double fgGetAirportElev( const string& id ) { - SG_LOG( SG_GENERAL, SG_BULK, - "Finding elevation for airport: " << id ); - const FGAirport *a=fgFindAirportID( id); if (a) { return a->getElevation(); @@ -506,16 +422,13 @@ double fgGetAirportElev( const string& id ) // get airport position -Point3D fgGetAirportPos( const string& id ) +SGGeod 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()); + return SGGeod::fromDegM(a->getLongitude(), a->getLatitude(), a->getElevation()); } else { - return Point3D(0.0, 0.0, -9999.0); + return SGGeod::fromDegM(0.0, 0.0, -9999.0); } }