]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/navrecord.hxx
Remove /sim/paths/use-custom-scenery-data.
[flightgear.git] / src / Navaids / navrecord.hxx
index f686d1c157dae22d97125caac67b879655de58f3..a77896caf2298d473b40c8388ac9f16b498a8583 100644 (file)
 #define FG_DME_DEFAULT_RANGE 50 // nm
 #define FG_NAV_MAX_RANGE 300    // nm
 
-// 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;
+class SGPropertyNode;
 
 class FGNavRecord : public FGPositioned 
 {
@@ -57,7 +50,6 @@ class FGNavRecord : public FGPositioned
     FGRunway* mRunway;        // associated runway, if there is one
 
     bool serviceable;          // for failure modeling
-    std::string trans_ident;         // for failure modeling
 
   /**
    * Helper to init data when a navrecord is associated with an airport
@@ -65,6 +57,9 @@ class FGNavRecord : public FGPositioned
   void initAirportRelation();
   
   void alignLocaliserWithRunway(double aThreshold);
+  
+  void readAirportSceneryData();
+  void processSceneryILS(SGPropertyNode* aILSNode);
 public:
   inline ~FGNavRecord(void) {}
 
@@ -83,7 +78,7 @@ public:
     inline const char *get_ident() const { return ident().c_str(); }
 
     inline bool get_serviceable() const { return serviceable; }
-    inline const char *get_trans_ident() const { return trans_ident.c_str(); }
+    inline const char *get_trans_ident() const { return get_ident(); }
 
   virtual const std::string& name() const
   { return _name; }
@@ -92,6 +87,18 @@ public:
    * Retrieve the runway this navaid is associated with (for ILS/LOC/GS)
    */
   FGRunway* runway() const { return mRunway; }
+  
+  virtual flightgear::PositionedBinding* createBinding(SGPropertyNode* nd) const;
+
+  /**
+   * return the localizer width, in degrees
+   * computation is based up ICAO stdandard width at the runway threshold
+   * see implementation for further details.
+   */
+  double localizerWidth() const;
+  
+  void bindToNode(SGPropertyNode* nd) const;
+  void unbindFromNode(SGPropertyNode* nd) const;
 };
 
 class FGTACANRecord : public SGReferenced {