]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/runways.hxx
Adapt to simgear SGMath change.
[flightgear.git] / src / Airports / runways.hxx
index 595c77b8bd53cc23145815ea9c3d2d539d02fd49..2cdc2e495095f0300cba26f02a8a0e5661ceba38 100644 (file)
 // forward decls
 class FGAirport;
 class FGNavRecord;
+class SGPropertyNode;
+
+namespace flightgear {
+  class SID;
+  class STAR;
+}
 
 class FGRunway : public FGRunwayBase
 {
   FGAirport* _airport;
-  bool _reciprocal;
+  bool _isReciprocal;
+  FGRunway* _reciprocal;
   double _displ_thresh;
   double _stopway;
   FGNavRecord* _ils;
@@ -67,7 +74,7 @@ public:
    * over runways to avoid counting runways twice, if desired.
    */
   bool isReciprocal() const
-  { return _reciprocal; }
+  { return _isReciprocal; }
 
   /**
    * Get the runway begining point - this is syntatic sugar, equivalent to
@@ -104,6 +111,28 @@ public:
   
   FGNavRecord* ILS() const { return _ils; }
   void setILS(FGNavRecord* nav) { _ils = nav; }
+  
+  FGRunway* reciprocalRunway() const
+  { return _reciprocal; }
+  void setReciprocalRunway(FGRunway* other);
+  
+  virtual flightgear::PositionedBinding* createBinding(SGPropertyNode* nd) const;
+  
+  /**
+   * Helper to process property data loaded from an ICAO.threshold.xml file
+   */
+  void processThreshold(SGPropertyNode* aThreshold);
+  
+  /**
+   * Get SIDs (DPs) associated with this runway
+   */
+  std::vector<flightgear::SID*> getSIDs();
+  
+  /**
+   * Get STARs associared with this runway
+   */ 
+  std::vector<flightgear::STAR*> getSTARs();
+  
 };
 
 #endif // _FG_RUNWAYS_HXX