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

79 lines
2.4 KiB
C++
Raw Normal View History

2000-04-21 18:30:59 +00:00
// fixlist.hxx -- 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$
#ifndef _FG_FIXLIST_HXX
#define _FG_FIXLIST_HXX
#include <simgear/compiler.h>
#include <simgear/misc/sg_path.hxx>
2000-04-21 18:30:59 +00:00
#include <map>
#include <vector>
#include <string>
2000-04-21 18:30:59 +00:00
#include "fix.hxx"
using std::multimap;
using std::vector;
using std::string;
2000-04-21 18:30:59 +00:00
// fix names may be globally non-unique. Allow for this.
typedef multimap < string, FGFix > fix_map_type;
typedef fix_map_type::iterator fix_map_iterator;
typedef fix_map_type::const_iterator fix_map_const_iterator;
2000-04-21 18:30:59 +00:00
class FGFixList {
fix_map_type fixlist;
public:
FGFixList();
~FGFixList();
// load the navaids and build the map
bool init( SGPath path );
2000-04-21 18:30:59 +00:00
// query the database for the specified fix
bool query( const string& ident, FGFix *f );
// Find fix of requested type with closest exact or following ident
// (by ACSII values) to that supplied (ie. a lower-bound lookup).
// Supplying true for exact forces only exact matches to be returned (similar to above function)
// Returns NULL if no match found.
const FGFix* findFirstByIdent( const string& ident, bool exact = false );
// query the database for the specified fix, lon and lat are
2000-04-21 18:30:59 +00:00
// in degrees, elev is in meters
bool query_and_offset( const string& ident, double lon, double lat,
double elev, FGFix *f, double *heading,
double *dist );
// Return a pointer to the master fixlist
inline const fix_map_type* getFixList() { return(&fixlist); }
2000-04-21 18:30:59 +00:00
};
#endif // _FG_FIXLIST_HXX