X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FAIModel%2FAIFlightPlanCreateCruise.cxx;h=4f714cc8cd3f13af267ceb0a976e5aa3d0108ded;hb=de35bbe4ed350bc3e90f66a11039e983587c5ea0;hp=d2fc62473be08e4e2b5caf54b63f29cc018a007d;hpb=030742fa4ae7d99facb517381da71fa404c4ee2b;p=flightgear.git diff --git a/src/AIModel/AIFlightPlanCreateCruise.cxx b/src/AIModel/AIFlightPlanCreateCruise.cxx index d2fc62473..4f714cc8c 100755 --- a/src/AIModel/AIFlightPlanCreateCruise.cxx +++ b/src/AIModel/AIFlightPlanCreateCruise.cxx @@ -26,8 +26,7 @@ #include #include #include "AIFlightPlan.hxx" -#include -#include +#include "AIAircraft.hxx" #include #include @@ -310,21 +309,22 @@ void FGAIFlightPlan::createCruise(bool firstFlight, FGAirport *dep, * Note that this is the original version that does not * do any dynamic route computation. ******************************************************************/ -void FGAIFlightPlan::createCruise(bool firstFlight, FGAirport *dep, +void FGAIFlightPlan::createCruise(FGAIAircraft *ac, bool firstFlight, FGAirport *dep, FGAirport *arr, double latitude, double longitude, double speed, double alt, const string& fltType) { waypoint *wpt; - wpt = createInAir("Cruise", SGGeod::fromDeg(longitude, latitude), alt, speed); + wpt = createInAir(ac, "Cruise", SGGeod::fromDeg(longitude, latitude), alt, speed); waypoints.push_back(wpt); string rwyClass = getRunwayClassFromTrafficType(fltType); - arr->getDynamics()->getActiveRunway(rwyClass, 2, activeRunway); + double heading = ac->getTrafficRef()->getCourse(); + arr->getDynamics()->getActiveRunway(rwyClass, 2, activeRunway, heading); rwy = arr->getRunwayByIdent(activeRunway); // begin descent 110km out SGGeod beginDescentPoint = rwy->pointOnCenterline(-110000); - wpt = createInAir("BOD", beginDescentPoint, alt, speed); + wpt = createInAir(ac, "BOD", beginDescentPoint, alt, speed); waypoints.push_back(wpt); }