]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/runways.hxx
toggle fullscreen: also adapt GUI plane when resizing
[flightgear.git] / src / Airports / runways.hxx
index 15d39c2af9fcd0eec6e6a4f9eafeffc6f1ab4787..36f342c00f24edaca428ea135091296cc4fb8380 100644 (file)
@@ -33,16 +33,24 @@ class FGAirport;
 class FGNavRecord;
 class SGPropertyNode;
 
+namespace flightgear {
+  class SID;
+  class STAR;
+  class Approach;
+}
+
 class FGRunway : public FGRunwayBase
 {
-  FGAirport* _airport;
-  bool _reciprocal;
+  PositionedID _airport;
+  bool _isReciprocal;
+  PositionedID _reciprocal;
   double _displ_thresh;
   double _stopway;
-  FGNavRecord* _ils;
+  PositionedID _ils;
 public:
   
-  FGRunway(FGAirport* aAirport, const std::string& rwy_no,
+  FGRunway(PositionedID aGuid,
+           PositionedID aAirport, const std::string& rwy_no,
             const SGGeod& aGeod,
             const double heading, const double length,
             const double width,
@@ -68,10 +76,10 @@ 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
+   * Get the runway beginning point - this is syntatic sugar, equivalent to
    * calling pointOnCenterline(0.0);
    */
   SGGeod begin() const;
@@ -96,20 +104,34 @@ public:
   /**
    * Airport this runway is located at
    */
-  FGAirport* airport() const
-  { return _airport; }
+  FGAirport* airport() const;
+  
+  FGNavRecord* ILS() const;
+  
+  /**
+   * retrieve the associated glideslope transmitter, if one is defined.
+   */
+  FGNavRecord* glideslope() const;
+  
+  void setILS(PositionedID nav) { _ils = nav; }
   
-  // FIXME - should die once airport / runway creation is cleaned up
-  void setAirport(FGAirport* aAirport)
-  { _airport = aAirport; }
+  FGRunway* reciprocalRunway() const;
   
-  FGNavRecord* ILS() const { return _ils; }
-  void setILS(FGNavRecord* nav) { _ils = nav; }
+  void setReciprocalRunway(PositionedID other);
   
   /**
-   * Helper to process property data loaded from an ICAO.threshold.xml file
+   * Get SIDs (DPs) associated with this runway
    */
-  void processThreshold(SGPropertyNode* aThreshold);
+  std::vector<flightgear::SID*> getSIDs() const;
+  
+  /**
+   * Get STARs associared with this runway
+   */ 
+  std::vector<flightgear::STAR*> getSTARs() const;
+  
+  
+  std::vector<flightgear::Approach*> getApproaches() const;
+  
 };
 
 #endif // _FG_RUNWAYS_HXX