2004-05-28 05:24:54 +00:00
|
|
|
// navrecord.hxx -- generic vor/dme/ndb class
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started May 2004.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2004 Curtis L. Olson - http://www.flightgear.org/~curt
|
2004-05-28 05:24:54 +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.
|
2004-05-28 05:24:54 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FG_NAVRECORD_HXX
|
|
|
|
#define _FG_NAVRECORD_HXX
|
|
|
|
|
2008-08-03 14:34:42 +00:00
|
|
|
#include <iosfwd>
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2008-08-03 14:34:42 +00:00
|
|
|
#include <simgear/math/SGMath.hxx>
|
2007-10-20 08:36:21 +00:00
|
|
|
#include <simgear/structure/SGReferenced.hxx>
|
|
|
|
|
2004-06-20 18:58:44 +00:00
|
|
|
#define FG_NAV_DEFAULT_RANGE 50 // nm
|
|
|
|
#define FG_LOC_DEFAULT_RANGE 18 // nm
|
|
|
|
#define FG_DME_DEFAULT_RANGE 50 // nm
|
|
|
|
#define FG_NAV_MAX_RANGE 300 // nm
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2005-11-28 22:42:23 +00:00
|
|
|
// Shield the rest of FG from possibly changing details of Robins navaid type numbering system.
|
|
|
|
// Currently only the GPS code uses this - extra types (LOC, GS etc) may need to be added
|
|
|
|
// should other FG code choose to use this.
|
|
|
|
enum fg_nav_types {
|
|
|
|
FG_NAV_VOR,
|
|
|
|
FG_NAV_NDB,
|
|
|
|
FG_NAV_ILS,
|
|
|
|
FG_NAV_ANY
|
|
|
|
};
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2007-10-20 08:36:21 +00:00
|
|
|
class FGNavRecord : public SGReferenced {
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
int type;
|
2006-06-15 19:16:21 +00:00
|
|
|
SGGeod pos; // location in geodetic coords (degrees)
|
|
|
|
SGVec3d cart; // location in cartesian coords (earth centered)
|
2004-05-28 05:24:54 +00:00
|
|
|
int freq;
|
|
|
|
int range;
|
|
|
|
double multiuse; // can be slaved variation of VOR
|
|
|
|
// (degrees) or localizer heading
|
|
|
|
// (degrees) or dme bias (nm)
|
|
|
|
|
2008-07-25 18:38:29 +00:00
|
|
|
std::string ident; // navaid ident
|
|
|
|
std::string name; // verbose name in nav database
|
|
|
|
std::string apt_id; // corresponding airport id
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool serviceable; // for failure modeling
|
2008-07-25 18:38:29 +00:00
|
|
|
std::string trans_ident; // for failure modeling
|
2004-05-28 05:24:54 +00:00
|
|
|
|
|
|
|
public:
|
2008-08-03 14:34:42 +00:00
|
|
|
FGNavRecord(void);
|
2004-05-28 05:24:54 +00:00
|
|
|
inline ~FGNavRecord(void) {}
|
|
|
|
|
2008-08-03 14:34:42 +00:00
|
|
|
FGNavRecord(int type, const std::string& ident, const std::string& name, const std::string& airport,
|
|
|
|
double lat, double lon, int freq, int range, double multiuse);
|
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
inline int get_type() const { return type; }
|
2008-08-03 14:34:42 +00:00
|
|
|
|
|
|
|
fg_nav_types get_fg_type() const;
|
|
|
|
|
2006-06-15 19:16:21 +00:00
|
|
|
inline double get_lon() const { return pos.getLongitudeDeg(); } // degrees
|
|
|
|
inline void set_lon( double l ) { pos.setLongitudeDeg(l); } // degrees
|
|
|
|
inline double get_lat() const { return pos.getLatitudeDeg(); } // degrees
|
|
|
|
inline void set_lat( double l ) { pos.setLatitudeDeg(l); } // degrees
|
|
|
|
inline double get_elev_ft() const { return pos.getElevationFt(); }
|
|
|
|
inline void set_elev_ft( double e ) { pos.setElevationFt(e); }
|
|
|
|
const SGGeod& get_pos() const { return pos; }
|
|
|
|
const SGVec3d& get_cart() const { return cart; }
|
2004-05-28 05:24:54 +00:00
|
|
|
inline int get_freq() const { return freq; }
|
|
|
|
inline int get_range() const { return range; }
|
|
|
|
inline double get_multiuse() const { return multiuse; }
|
2004-05-28 16:24:43 +00:00
|
|
|
inline void set_multiuse( double m ) { multiuse = m; }
|
2005-10-26 09:03:49 +00:00
|
|
|
inline const char *get_ident() const { return ident.c_str(); }
|
2008-07-25 18:38:29 +00:00
|
|
|
inline const std::string& get_name() const { return name; }
|
|
|
|
inline const std::string& get_apt_id() const { return apt_id; }
|
2005-10-26 09:03:49 +00:00
|
|
|
inline bool get_serviceable() const { return serviceable; }
|
|
|
|
inline const char *get_trans_ident() const { return trans_ident.c_str(); }
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2008-06-02 21:09:51 +00:00
|
|
|
friend std::istream& operator>> ( std::istream&, FGNavRecord& );
|
2004-05-28 05:24:54 +00:00
|
|
|
};
|
|
|
|
|
2007-10-20 08:36:21 +00:00
|
|
|
class FGTACANRecord : public SGReferenced {
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2008-07-25 18:38:29 +00:00
|
|
|
std::string channel;
|
2005-10-01 09:56:53 +00:00
|
|
|
int freq;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2008-08-03 14:34:42 +00:00
|
|
|
FGTACANRecord(void);
|
2005-10-01 09:56:53 +00:00
|
|
|
inline ~FGTACANRecord(void) {}
|
|
|
|
|
2008-07-25 18:38:29 +00:00
|
|
|
inline const std::string& get_channel() const { return channel; }
|
2005-10-01 09:56:53 +00:00
|
|
|
inline int get_freq() const { return freq; }
|
2008-06-02 21:09:51 +00:00
|
|
|
friend std::istream& operator>> ( std::istream&, FGTACANRecord& );
|
2005-10-01 09:56:53 +00:00
|
|
|
};
|
|
|
|
|
2004-05-28 05:24:54 +00:00
|
|
|
#endif // _FG_NAVRECORD_HXX
|