1
0
Fork 0
flightgear/src/Navaids/fixlist.cxx

179 lines
4.5 KiB
C++
Raw Normal View History

2000-04-21 18:30:59 +00:00
// fixlist.cxx -- fix list management class
//
// Written by Curtis Olson, started April 2000.
//
// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt
2000-04-21 18:30:59 +00:00
//
// 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
2006-02-21 01:16:04 +00:00
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2000-04-21 18:30:59 +00:00
//
// $Id$
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <algorithm>
2000-04-21 18:30:59 +00:00
#include <simgear/debug/logstream.hxx>
#include <simgear/misc/sgstream.hxx>
2000-09-27 20:16:22 +00:00
#include <simgear/math/sg_geodesy.hxx>
2000-04-21 18:30:59 +00:00
#include "fixlist.hxx"
2008-08-23 13:09:24 +00:00
#include "Airports/simple.hxx"
using std::pair;
2000-04-21 18:30:59 +00:00
// Constructor
FGFixList::FGFixList( void ) {
}
// Destructor
FGFixList::~FGFixList( void ) {
}
// load the navaids and build the map
bool FGFixList::init( SGPath path ) {
2000-04-21 18:30:59 +00:00
fixlist.erase( fixlist.begin(), fixlist.end() );
sg_gzifstream in( path.str() );
2000-04-21 18:30:59 +00:00
if ( !in.is_open() ) {
2001-03-24 06:03:11 +00:00
SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
2000-04-21 18:30:59 +00:00
exit(-1);
}
// toss the first two lines of the file
in >> skipeol;
2000-04-21 18:30:59 +00:00
in >> skipeol;
// read in each remaining line of the file
while ( ! in.eof() ) {
FGFix fix;
2000-04-21 18:30:59 +00:00
in >> fix;
if ( fix.get_lat() > 95.0 ) {
break;
}
2000-04-21 18:30:59 +00:00
/* cout << "ident=" << fix.get_ident()
<< ", lat=" << fix.get_lat()
<< ", lon=" << fix.get_lon() << endl; */
2000-04-21 18:30:59 +00:00
fixlist.insert(pair<string, FGFix>(fix.get_ident(), fix));
2000-04-21 18:30:59 +00:00
in >> skipcomment;
}
return true;
}
// query the database for the specified fix, lon and lat are in
2000-04-21 18:30:59 +00:00
// degrees, elev is in meters
bool FGFixList::query( const string& ident, FGFix *fix ) {
fix_map_const_iterator it = fixlist.find(ident);
if ( it != fixlist.end() ) {
*fix = it->second;
return true;
} else {
return false;
}
}
// query the database for the specified fix, lon and lat are in
// degrees, elev is in meters
bool FGFixList::query_and_offset( const string& ident, double lon, double lat,
double elev, FGFix *fix, double *heading,
double *dist )
2000-04-21 18:30:59 +00:00
{
pair<fix_map_const_iterator, fix_map_const_iterator> range = fixlist.equal_range(ident);
if (range.first == range.second) {
return false;
}
double min_s = -1.0;
for (fix_map_const_iterator current = range.first; current != range.second; ++current) {
double az1, az2, s;
geo_inverse_wgs_84( elev, lat, lon,
current->second.get_lat(), current->second.get_lon(),
&az1, &az2, &s );
// cout << " dist = " << s << endl;
if (min_s < 0 || s < min_s) {
*heading = az2;
*dist = s;
min_s = s;
*fix = current->second;
}
2000-04-21 18:30:59 +00:00
}
return true;
}
const FGFix* FGFixList::search(const string& ident)
{
fix_map_iterator itr = fixlist.find(ident);
if (itr == fixlist.end()) {
return NULL;
}
return &itr->second;
}
class orderingFunctor
{
public:
orderingFunctor(FGIdentOrdering* aOrder) :
mOrdering(aOrder)
{ assert(aOrder); }
bool operator()(const fix_map_type::value_type& aA, const std::string& aB) const
{
return mOrdering->compare(aA.first,aB);
}
bool operator()(const std::string& aA, const fix_map_type::value_type& aB) const
{
return mOrdering->compare(aA, aB.first);
}
bool operator()(const fix_map_type::value_type& aA, const fix_map_type::value_type& aB) const
{
return mOrdering->compare(aA.first, aB.first);
}
private:
FGIdentOrdering* mOrdering;
};
const FGFix* FGFixList::findFirstByIdent( const string& ident, FGIdentOrdering* aOrder)
{
fix_map_iterator itr;
if (aOrder) {
orderingFunctor func(aOrder);
itr = std::lower_bound(fixlist.begin(),fixlist.end(), ident, func);
} else {
itr = fixlist.lower_bound(ident);
}
if (itr == fixlist.end()) {
return NULL;
}
return &itr->second;
}