2000-04-21 18:30:59 +00:00
|
|
|
// fixlist.hxx -- fix list management class
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started April 2000.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// 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>
|
2001-03-25 14:20:12 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2000-04-21 18:30:59 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2008-07-25 18:38:29 +00:00
|
|
|
#include <string>
|
2000-04-21 18:30:59 +00:00
|
|
|
|
|
|
|
#include "fix.hxx"
|
|
|
|
|
2008-07-27 16:25:13 +00:00
|
|
|
using std::multimap;
|
|
|
|
using std::vector;
|
|
|
|
using std::string;
|
2000-04-21 18:30:59 +00:00
|
|
|
|
2008-04-28 11:26:02 +00:00
|
|
|
// fix names may be globally non-unique. Allow for this.
|
|
|
|
typedef multimap < string, FGFix > fix_map_type;
|
2005-11-27 20:19:00 +00:00
|
|
|
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
|
2001-03-25 14:20:12 +00:00
|
|
|
bool init( SGPath path );
|
2000-04-21 18:30:59 +00:00
|
|
|
|
2003-01-05 00:10:36 +00:00
|
|
|
// query the database for the specified fix
|
|
|
|
bool query( const string& ident, FGFix *f );
|
2008-04-28 11:26:02 +00:00
|
|
|
|
|
|
|
// Find fix of requested type with closest exact or following ident
|
2005-11-27 20:19:00 +00:00
|
|
|
// (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 );
|
2003-01-05 00:10:36 +00:00
|
|
|
|
|
|
|
// 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
|
2003-01-05 00:10:36 +00:00
|
|
|
bool query_and_offset( const string& ident, double lon, double lat,
|
|
|
|
double elev, FGFix *f, double *heading,
|
|
|
|
double *dist );
|
2008-04-28 11:26:02 +00:00
|
|
|
|
2005-11-27 20:19:00 +00:00
|
|
|
// 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
|