]> git.mxchange.org Git - flightgear.git/blobdiff - src/AIModel/AIFlightPlan.hxx
Interpret environment variables and hostname on Windows
[flightgear.git] / src / AIModel / AIFlightPlan.hxx
index 50ba8d6f110218c5e66147e0883c7e6950edc78f..c70028dd3e85a3fa37b206eff29a1f19133f2d0f 100644 (file)
@@ -58,7 +58,7 @@ public:
    string time;
 
   } waypoint;
-
+  FGAIFlightPlan();
   FGAIFlightPlan(const string& filename);
   FGAIFlightPlan(FGAIAircraft *,
                  const std::string& p,
@@ -81,6 +81,7 @@ public:
    waypoint* const getCurrentWaypoint( void ) const;
    waypoint* const getNextWaypoint( void ) const;
    void IncrementWaypoint( bool erase );
+   void DecrementWaypoint( bool erase );
 
    double getDistanceToGo(double lat, double lon, waypoint* wp) const;
    int getLeg () const { return leg;};
@@ -113,8 +114,17 @@ public:
   void setRunway(string rwy) { activeRunway = rwy; };
   string getRunwayClassFromTrafficType(string fltType);
 
+  void addWaypoint(waypoint* wpt) { waypoints.push_back(wpt); };
+
+  void setName(string n) { name = n; };
+  string getName() { return name; };
+
+  void setSID(FGAIFlightPlan* fp) { sid = fp;};
+  FGAIFlightPlan* getSID() { return sid; };
+
 private:
   FGRunway* rwy;
+  FGAIFlightPlan *sid;
   typedef vector <waypoint*> wpt_vector_type;
   typedef wpt_vector_type::const_iterator wpt_vector_iterator;
 
@@ -131,6 +141,7 @@ private:
   string activeRunway;
   FGAirRoute airRoute;
   FGTaxiRoute *taxiRoute;
+  string name;
 
   void createPushBack(FGAIAircraft *, bool, FGAirport*, double, double, double, const string&, const string&, const string&);
   void createPushBackFallBack(FGAIAircraft *, bool, FGAirport*, double, double, double, const string&, const string&, const string&);
@@ -138,7 +149,7 @@ private:
   void createClimb(FGAIAircraft *, bool, FGAirport *, double, double, const string&);
   void createCruise(FGAIAircraft *, bool, FGAirport*, FGAirport*, double, double, double, double, const string&);
   void createDecent(FGAIAircraft *, FGAirport *, const string&);
-  void createLanding(FGAIAircraft *, FGAirport *);
+  void createLanding(FGAIAircraft *, FGAirport *, const string&);
   void createParking(FGAIAircraft *, FGAirport *, double radius);
   void deleteWaypoints(); 
   void resetWaypoints();
@@ -151,11 +162,15 @@ private:
   waypoint* createOnGround(FGAIAircraft *, const std::string& aName, const SGGeod& aPos, double aElev, double aSpeed);
   waypoint* createInAir(FGAIAircraft *, const std::string& aName, const SGGeod& aPos, double aElev, double aSpeed);
   waypoint* cloneWithPos(FGAIAircraft *, waypoint* aWpt, const std::string& aName, const SGGeod& aPos);
+  waypoint* clone(waypoint* aWpt);
     
 
   //void createCruiseFallback(bool, FGAirport*, FGAirport*, double, double, double, double);
  void evaluateRoutePart(double deplat, double deplon, double arrlat, double arrlon);
+ public:
+  wpt_vector_iterator getFirstWayPoint() { return waypoints.begin(); };
+  wpt_vector_iterator getLastWayPoint()  { return waypoints.end(); };
+
 };    
 
 #endif  // _FG_AIFLIGHTPLAN_HXX