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-09-12 08:46:15 +00:00
|
|
|
#include "positioned.hxx"
|
2007-10-20 08:36:21 +00:00
|
|
|
|
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
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
// FIXME - get rid of these, and use the real enum directly
|
|
|
|
#define FG_NAV_VOR FGPositioned::VOR
|
|
|
|
#define FG_NAV_NDB FGPositioned::NDB
|
|
|
|
#define FG_NAV_ILS FGPositioned::ILS
|
|
|
|
#define FG_NAV_ANY FGPositioned::INVALID
|
|
|
|
|
|
|
|
typedef FGPositioned::Type fg_nav_types;
|
|
|
|
|
|
|
|
// forward decls
|
|
|
|
class FGRunway;
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
class FGNavRecord : public FGPositioned
|
|
|
|
{
|
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 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
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
/**
|
|
|
|
* Helper to init data when a navrecord is associated with an airport
|
|
|
|
*/
|
|
|
|
void initAirportRelation();
|
|
|
|
|
|
|
|
void alignLocaliserWithRunway(FGRunway* aRunway, double aThreshold);
|
2004-05-28 05:24:54 +00:00
|
|
|
public:
|
2008-09-12 08:46:15 +00:00
|
|
|
inline ~FGNavRecord(void) {}
|
2004-05-28 05:24:54 +00:00
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
static FGNavRecord* createFromStream(std::istream& aStream);
|
|
|
|
|
|
|
|
FGNavRecord(Type type, const std::string& ident, const std::string& name,
|
|
|
|
double lat, double lon, double aElevFt,
|
|
|
|
int freq, int range, double multiuse);
|
|
|
|
|
|
|
|
inline double get_lon() const { return longitude(); } // degrees
|
|
|
|
inline double get_lat() const { return latitude(); } // degrees
|
|
|
|
inline double get_elev_ft() const { return elevation(); }
|
2008-08-03 14:34:42 +00:00
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
const SGGeod& get_pos() const { return geod(); }
|
|
|
|
SGVec3d get_cart() const;
|
2008-08-03 14:34:42 +00:00
|
|
|
|
2008-09-12 08:46:15 +00:00
|
|
|
Type get_fg_type() const { return type(); }
|
2008-08-03 14:34:42 +00:00
|
|
|
|
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; }
|
2008-09-12 08:46:15 +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-09-12 08:46:15 +00:00
|
|
|
|
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
|