Maintenance: AIFlightPlan
shortenToFirst() 'name' parameter to const&. use const functions when appropriate.
This commit is contained in:
parent
6284ab6268
commit
4413bcc7ed
2 changed files with 243 additions and 245 deletions
|
@ -6,11 +6,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
# include <config.h>
|
#include <config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <iterator>
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <iterator>
|
||||||
|
|
||||||
#include <simgear/constants.h>
|
#include <simgear/constants.h>
|
||||||
#include <simgear/debug/logstream.hxx>
|
#include <simgear/debug/logstream.hxx>
|
||||||
|
@ -22,25 +22,26 @@
|
||||||
#include <simgear/structure/exception.hxx>
|
#include <simgear/structure/exception.hxx>
|
||||||
#include <simgear/timing/sg_time.hxx>
|
#include <simgear/timing/sg_time.hxx>
|
||||||
|
|
||||||
#include <Main/globals.hxx>
|
|
||||||
#include <Main/fg_props.hxx>
|
|
||||||
#include <Main/fg_init.hxx>
|
|
||||||
#include <Airports/airport.hxx>
|
#include <Airports/airport.hxx>
|
||||||
#include <Airports/dynamics.hxx>
|
#include <Airports/dynamics.hxx>
|
||||||
#include <Airports/runways.hxx>
|
|
||||||
#include <Airports/groundnetwork.hxx>
|
#include <Airports/groundnetwork.hxx>
|
||||||
|
#include <Airports/runways.hxx>
|
||||||
|
#include <Main/fg_init.hxx>
|
||||||
|
#include <Main/fg_props.hxx>
|
||||||
|
#include <Main/globals.hxx>
|
||||||
|
|
||||||
#include <Environment/environment_mgr.hxx>
|
|
||||||
#include <Environment/environment.hxx>
|
#include <Environment/environment.hxx>
|
||||||
|
#include <Environment/environment_mgr.hxx>
|
||||||
|
|
||||||
#include <Traffic/Schedule.hxx>
|
#include <Traffic/Schedule.hxx>
|
||||||
|
|
||||||
#include "AIFlightPlan.hxx"
|
|
||||||
#include "AIAircraft.hxx"
|
#include "AIAircraft.hxx"
|
||||||
|
#include "AIFlightPlan.hxx"
|
||||||
|
|
||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
FGAIWaypoint::FGAIWaypoint() {
|
FGAIWaypoint::FGAIWaypoint()
|
||||||
|
{
|
||||||
speed = 0;
|
speed = 0;
|
||||||
crossat = 0;
|
crossat = 0;
|
||||||
finished = 0;
|
finished = 0;
|
||||||
|
@ -52,7 +53,8 @@ FGAIWaypoint::FGAIWaypoint() {
|
||||||
trackLength = 0;
|
trackLength = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FGAIWaypoint::contains(const string& target) {
|
bool FGAIWaypoint::contains(const string& target)
|
||||||
|
{
|
||||||
size_t found = name.find(target);
|
size_t found = name.find(target);
|
||||||
if (found == string::npos)
|
if (found == string::npos)
|
||||||
return false;
|
return false;
|
||||||
|
@ -60,17 +62,17 @@ bool FGAIWaypoint::contains(const string& target) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
double FGAIWaypoint::getLatitude()
|
double FGAIWaypoint::getLatitude() const
|
||||||
{
|
{
|
||||||
return pos.getLatitudeDeg();
|
return pos.getLatitudeDeg();
|
||||||
}
|
}
|
||||||
|
|
||||||
double FGAIWaypoint::getLongitude()
|
double FGAIWaypoint::getLongitude() const
|
||||||
{
|
{
|
||||||
return pos.getLongitudeDeg();
|
return pos.getLongitudeDeg();
|
||||||
}
|
}
|
||||||
|
|
||||||
double FGAIWaypoint::getAltitude()
|
double FGAIWaypoint::getAltitude() const
|
||||||
{
|
{
|
||||||
return pos.getElevationFt();
|
return pos.getElevationFt();
|
||||||
}
|
}
|
||||||
|
@ -90,8 +92,7 @@ void FGAIWaypoint::setAltitude(double alt)
|
||||||
pos.setElevationFt(alt);
|
pos.setElevationFt(alt);
|
||||||
}
|
}
|
||||||
|
|
||||||
FGAIFlightPlan::FGAIFlightPlan() :
|
FGAIFlightPlan::FGAIFlightPlan() : sid(NULL),
|
||||||
sid(NULL),
|
|
||||||
repeat(false),
|
repeat(false),
|
||||||
distance_to_go(0),
|
distance_to_go(0),
|
||||||
lead_distance_ft(0),
|
lead_distance_ft(0),
|
||||||
|
@ -105,8 +106,7 @@ FGAIFlightPlan::FGAIFlightPlan() :
|
||||||
wpt_iterator = waypoints.begin();
|
wpt_iterator = waypoints.begin();
|
||||||
}
|
}
|
||||||
|
|
||||||
FGAIFlightPlan::FGAIFlightPlan(const string& filename) :
|
FGAIFlightPlan::FGAIFlightPlan(const string& filename) : sid(NULL),
|
||||||
sid(NULL),
|
|
||||||
repeat(false),
|
repeat(false),
|
||||||
distance_to_go(0),
|
distance_to_go(0),
|
||||||
lead_distance_ft(0),
|
lead_distance_ft(0),
|
||||||
|
@ -128,13 +128,13 @@ FGAIFlightPlan::FGAIFlightPlan(const string& filename) :
|
||||||
* as setting speeds and altitude computed by the
|
* as setting speeds and altitude computed by the
|
||||||
* traffic manager.
|
* traffic manager.
|
||||||
*/
|
*/
|
||||||
FGAIFlightPlan::FGAIFlightPlan(FGAIAircraft *ac,
|
FGAIFlightPlan::FGAIFlightPlan(FGAIAircraft* ac,
|
||||||
const std::string& p,
|
const std::string& p,
|
||||||
double course,
|
double course,
|
||||||
time_t start,
|
time_t start,
|
||||||
time_t remainingTime,
|
time_t remainingTime,
|
||||||
FGAirport *dep,
|
FGAirport* dep,
|
||||||
FGAirport *arr,
|
FGAirport* arr,
|
||||||
bool firstLeg,
|
bool firstLeg,
|
||||||
double radius,
|
double radius,
|
||||||
double alt,
|
double alt,
|
||||||
|
@ -143,8 +143,7 @@ FGAIFlightPlan::FGAIFlightPlan(FGAIAircraft *ac,
|
||||||
double speed,
|
double speed,
|
||||||
const string& fltType,
|
const string& fltType,
|
||||||
const string& acType,
|
const string& acType,
|
||||||
const string& airline) :
|
const string& airline) : sid(NULL),
|
||||||
sid(NULL),
|
|
||||||
repeat(false),
|
repeat(false),
|
||||||
distance_to_go(0),
|
distance_to_go(0),
|
||||||
lead_distance_ft(0),
|
lead_distance_ft(0),
|
||||||
|
@ -171,12 +170,12 @@ FGAIFlightPlan::~FGAIFlightPlan()
|
||||||
//delete taxiRoute;
|
//delete taxiRoute;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FGAIFlightPlan::createWaypoints(FGAIAircraft *ac,
|
void FGAIFlightPlan::createWaypoints(FGAIAircraft* ac,
|
||||||
double course,
|
double course,
|
||||||
time_t start,
|
time_t start,
|
||||||
time_t remainingTime,
|
time_t remainingTime,
|
||||||
FGAirport *dep,
|
FGAirport* dep,
|
||||||
FGAirport *arr,
|
FGAirport* arr,
|
||||||
bool firstLeg,
|
bool firstLeg,
|
||||||
double radius,
|
double radius,
|
||||||
double alt,
|
double alt,
|
||||||
|
@ -188,7 +187,7 @@ void FGAIFlightPlan::createWaypoints(FGAIAircraft *ac,
|
||||||
const string& airline)
|
const string& airline)
|
||||||
{
|
{
|
||||||
time_t now = globals->get_time_params()->get_cur_time();
|
time_t now = globals->get_time_params()->get_cur_time();
|
||||||
time_t timeDiff = now-start;
|
time_t timeDiff = now - start;
|
||||||
leg = AILeg::STARTUP_PUSHBACK;
|
leg = AILeg::STARTUP_PUSHBACK;
|
||||||
|
|
||||||
if ((timeDiff > 60) && (timeDiff < 1500))
|
if ((timeDiff > 60) && (timeDiff < 1500))
|
||||||
|
@ -203,8 +202,7 @@ void FGAIFlightPlan::createWaypoints(FGAIAircraft *ac,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SG_LOG(SG_AI, SG_DEBUG, ac->getTrafficRef()->getCallSign() << "|Route from " << dep->getId() << " to " << arr->getId() <<
|
SG_LOG(SG_AI, SG_DEBUG, ac->getTrafficRef()->getCallSign() << "|Route from " << dep->getId() << " to " << arr->getId() << ". Set leg to : " << leg << " " << remainingTime);
|
||||||
". Set leg to : " << leg << " " << remainingTime);
|
|
||||||
|
|
||||||
wpt_iterator = waypoints.begin();
|
wpt_iterator = waypoints.begin();
|
||||||
bool dist = 0;
|
bool dist = 0;
|
||||||
|
@ -307,7 +305,7 @@ bool FGAIFlightPlan::readFlightplan(std::istream& stream, const sg_location& loc
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
FGAIWaypoint* FGAIFlightPlan::getLastWaypoint()
|
FGAIWaypoint* FGAIFlightPlan::getLastWaypoint() const
|
||||||
{
|
{
|
||||||
if (waypoints.empty())
|
if (waypoints.empty())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
@ -315,7 +313,7 @@ FGAIWaypoint* FGAIFlightPlan::getLastWaypoint()
|
||||||
return waypoints.back();
|
return waypoints.back();
|
||||||
};
|
};
|
||||||
|
|
||||||
FGAIWaypoint* FGAIFlightPlan::getPreviousWaypoint( void ) const
|
FGAIWaypoint* FGAIFlightPlan::getPreviousWaypoint() const
|
||||||
{
|
{
|
||||||
if (empty())
|
if (empty())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
@ -328,14 +326,14 @@ FGAIWaypoint* FGAIFlightPlan::getPreviousWaypoint( void ) const
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
FGAIWaypoint* FGAIFlightPlan::getCurrentWaypoint( void ) const
|
FGAIWaypoint* FGAIFlightPlan::getCurrentWaypoint() const
|
||||||
{
|
{
|
||||||
if (wpt_iterator == waypoints.end())
|
if (wpt_iterator == waypoints.end())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
return *wpt_iterator;
|
return *wpt_iterator;
|
||||||
}
|
}
|
||||||
|
|
||||||
FGAIWaypoint* FGAIFlightPlan::getNextWaypoint( void ) const
|
FGAIWaypoint* FGAIFlightPlan::getNextWaypoint() const
|
||||||
{
|
{
|
||||||
if (wpt_iterator == waypoints.end())
|
if (wpt_iterator == waypoints.end())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
@ -348,31 +346,27 @@ FGAIWaypoint* FGAIFlightPlan::getNextWaypoint( void ) const
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int FGAIFlightPlan::getNextTurnAngle( void ) const
|
int FGAIFlightPlan::getNextTurnAngle() const
|
||||||
{
|
{
|
||||||
return nextTurnAngle;
|
return nextTurnAngle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void FGAIFlightPlan::IncrementWaypoint(bool eraseWaypoints )
|
void FGAIFlightPlan::IncrementWaypoint(bool eraseWaypoints)
|
||||||
{
|
{
|
||||||
if (empty())
|
if (empty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (eraseWaypoints)
|
if (eraseWaypoints) {
|
||||||
{
|
|
||||||
if (wpt_iterator == waypoints.begin())
|
if (wpt_iterator == waypoints.begin())
|
||||||
++wpt_iterator;
|
++wpt_iterator;
|
||||||
else
|
else if (!waypoints.empty()) {
|
||||||
if (!waypoints.empty())
|
|
||||||
{
|
|
||||||
delete *(waypoints.begin());
|
delete *(waypoints.begin());
|
||||||
waypoints.erase(waypoints.begin());
|
waypoints.erase(waypoints.begin());
|
||||||
wpt_iterator = waypoints.begin();
|
wpt_iterator = waypoints.begin();
|
||||||
++wpt_iterator;
|
++wpt_iterator;
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
++wpt_iterator;
|
++wpt_iterator;
|
||||||
}
|
}
|
||||||
// Calculate the angle of the next turn.
|
// Calculate the angle of the next turn.
|
||||||
|
@ -380,11 +374,11 @@ void FGAIFlightPlan::IncrementWaypoint(bool eraseWaypoints )
|
||||||
return;
|
return;
|
||||||
if (wpt_iterator == waypoints.begin())
|
if (wpt_iterator == waypoints.begin())
|
||||||
return;
|
return;
|
||||||
if (wpt_iterator+1 == waypoints.end())
|
if (wpt_iterator + 1 == waypoints.end())
|
||||||
return;
|
return;
|
||||||
if (waypoints.size()<3)
|
if (waypoints.size() < 3)
|
||||||
return;
|
return;
|
||||||
FGAIWaypoint* previousWP = *(wpt_iterator -1);
|
FGAIWaypoint* previousWP = *(wpt_iterator - 1);
|
||||||
FGAIWaypoint* currentWP = *(wpt_iterator);
|
FGAIWaypoint* currentWP = *(wpt_iterator);
|
||||||
FGAIWaypoint* nextWP = *(wpt_iterator + 1);
|
FGAIWaypoint* nextWP = *(wpt_iterator + 1);
|
||||||
int currentBearing = this->getBearing(previousWP, currentWP);
|
int currentBearing = this->getBearing(previousWP, currentWP);
|
||||||
|
@ -413,13 +407,14 @@ void FGAIFlightPlan::eraseLastWaypoint()
|
||||||
return;
|
return;
|
||||||
|
|
||||||
delete (waypoints.back());
|
delete (waypoints.back());
|
||||||
waypoints.pop_back();;
|
waypoints.pop_back();
|
||||||
wpt_iterator = waypoints.begin();
|
wpt_iterator = waypoints.begin();
|
||||||
++wpt_iterator;
|
++wpt_iterator;
|
||||||
}
|
}
|
||||||
|
|
||||||
// gives distance in meters from a position to a waypoint
|
// gives distance in meters from a position to a waypoint
|
||||||
double FGAIFlightPlan::getDistanceToGo(double lat, double lon, FGAIWaypoint* wp) const{
|
double FGAIFlightPlan::getDistanceToGo(double lat, double lon, FGAIWaypoint* wp) const
|
||||||
|
{
|
||||||
return SGGeodesy::distanceM(SGGeod::fromDeg(lon, lat), wp->getPos());
|
return SGGeodesy::distanceM(SGGeod::fromDeg(lon, lat), wp->getPos());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -430,7 +425,8 @@ double FGAIFlightPlan::getDistanceToGo(double lat, double lon, FGAIWaypoint* wp)
|
||||||
void FGAIFlightPlan::setLeadDistance(double speed,
|
void FGAIFlightPlan::setLeadDistance(double speed,
|
||||||
double bearing,
|
double bearing,
|
||||||
FGAIWaypoint* current,
|
FGAIWaypoint* current,
|
||||||
FGAIWaypoint* next){
|
FGAIWaypoint* next)
|
||||||
|
{
|
||||||
double turn_radius_m;
|
double turn_radius_m;
|
||||||
// Handle Ground steering
|
// Handle Ground steering
|
||||||
// At a turn rate of 30 degrees per second, it takes 12 seconds to do a full 360 degree turn
|
// At a turn rate of 30 degrees per second, it takes 12 seconds to do a full 360 degree turn
|
||||||
|
@ -443,13 +439,13 @@ void FGAIFlightPlan::setLeadDistance(double speed,
|
||||||
}
|
}
|
||||||
if (speed > 0 && speed < 0.5) {
|
if (speed > 0 && speed < 0.5) {
|
||||||
setLeadDistance(5 * SG_METER_TO_FEET);
|
setLeadDistance(5 * SG_METER_TO_FEET);
|
||||||
SG_LOG(SG_AI, SG_BULK, "Setting Leaddistance fixed " << (lead_distance_ft*SG_FEET_TO_METER));
|
SG_LOG(SG_AI, SG_BULK, "Setting Leaddistance fixed " << (lead_distance_ft * SG_FEET_TO_METER));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
double speed_mps = speed * SG_KT_TO_MPS;
|
double speed_mps = speed * SG_KT_TO_MPS;
|
||||||
if (speed < 25) {
|
if (speed < 25) {
|
||||||
turn_radius_m = ((360/30)*fabs(speed_mps)) / (2*M_PI);
|
turn_radius_m = ((360 / 30) * fabs(speed_mps)) / (2 * M_PI);
|
||||||
} else {
|
} else {
|
||||||
turn_radius_m = 0.1911 * speed * speed; // an estimate for 25 degrees bank
|
turn_radius_m = 0.1911 * speed * speed; // an estimate for 25 degrees bank
|
||||||
}
|
}
|
||||||
|
@ -463,16 +459,16 @@ void FGAIFlightPlan::setLeadDistance(double speed,
|
||||||
|
|
||||||
//lead_distance_ft = turn_radius * sin(leadInAngle * SG_DEGREES_TO_RADIANS);
|
//lead_distance_ft = turn_radius * sin(leadInAngle * SG_DEGREES_TO_RADIANS);
|
||||||
|
|
||||||
if ((int)leadInAngle==0) {
|
if ((int)leadInAngle == 0) {
|
||||||
double lead_distance_m = fabs(2*speed) * SG_FEET_TO_METER;
|
double lead_distance_m = fabs(2 * speed) * SG_FEET_TO_METER;
|
||||||
setLeadDistance(lead_distance_m * SG_METER_TO_FEET);
|
setLeadDistance(lead_distance_m * SG_METER_TO_FEET);
|
||||||
if (lead_distance_ft > 1000) {
|
if (lead_distance_ft > 1000) {
|
||||||
SG_LOG(SG_AI, SG_BULK, "Excessive leaddistance leadin 0 " << lead_distance_ft << " leadInAngle " << leadInAngle << " inbound " << inbound << " outbound " << outbound);
|
SG_LOG(SG_AI, SG_BULK, "Excessive leaddistance leadin 0 " << lead_distance_ft << " leadInAngle " << leadInAngle << " inbound " << inbound << " outbound " << outbound);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
double lead_distance_m = turn_radius_m * tan((leadInAngle * SG_DEGREES_TO_RADIANS)/2);
|
double lead_distance_m = turn_radius_m * tan((leadInAngle * SG_DEGREES_TO_RADIANS) / 2);
|
||||||
setLeadDistance(lead_distance_m * SG_METER_TO_FEET);
|
setLeadDistance(lead_distance_m * SG_METER_TO_FEET);
|
||||||
SG_LOG(SG_AI, SG_BULK, "Setting Leaddistance " << (lead_distance_ft*SG_FEET_TO_METER) << " Turnradius " << turn_radius_m << " Speed " << speed_mps << " Half turn Angle " << (leadInAngle)/2);
|
SG_LOG(SG_AI, SG_BULK, "Setting Leaddistance " << (lead_distance_ft * SG_FEET_TO_METER) << " Turnradius " << turn_radius_m << " Speed " << speed_mps << " Half turn Angle " << (leadInAngle) / 2);
|
||||||
if (lead_distance_ft > 1000) {
|
if (lead_distance_ft > 1000) {
|
||||||
SG_LOG(SG_AI, SG_BULK, "Excessive leaddistance possible direction change " << lead_distance_ft << " leadInAngle " << leadInAngle << " inbound " << inbound << " outbound " << outbound << " at " << current->getName());
|
SG_LOG(SG_AI, SG_BULK, "Excessive leaddistance possible direction change " << lead_distance_ft << " leadInAngle " << leadInAngle << " inbound " << inbound << " outbound " << outbound << " at " << current->getName());
|
||||||
}
|
}
|
||||||
|
@ -491,9 +487,10 @@ void FGAIFlightPlan::setLeadDistance(double speed,
|
||||||
}*/
|
}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
void FGAIFlightPlan::setLeadDistance(double distance_ft){
|
void FGAIFlightPlan::setLeadDistance(double distance_ft)
|
||||||
|
{
|
||||||
lead_distance_ft = distance_ft;
|
lead_distance_ft = distance_ft;
|
||||||
if (lead_distance_ft>10000) {
|
if (lead_distance_ft > 10000) {
|
||||||
SG_LOG(SG_AI, SG_BULK, "Excessive Leaddistance " << distance_ft);
|
SG_LOG(SG_AI, SG_BULK, "Excessive Leaddistance " << distance_ft);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -552,15 +549,15 @@ void FGAIFlightPlan::addWaypoint(FGAIWaypoint* wpt)
|
||||||
pushBackWaypoint(wpt);
|
pushBackWaypoint(wpt);
|
||||||
}
|
}
|
||||||
|
|
||||||
void FGAIFlightPlan::pushBackWaypoint(FGAIWaypoint *wpt)
|
void FGAIFlightPlan::pushBackWaypoint(FGAIWaypoint* wpt)
|
||||||
{
|
{
|
||||||
if (!wpt) {
|
if (!wpt) {
|
||||||
SG_LOG(SG_AI, SG_WARN, "Null WPT added");
|
SG_LOG(SG_AI, SG_WARN, "Null WPT added");
|
||||||
}
|
}
|
||||||
size_t pos = wpt_iterator - waypoints.begin();
|
size_t pos = wpt_iterator - waypoints.begin();
|
||||||
if (waypoints.size()>0) {
|
if (waypoints.size() > 0) {
|
||||||
double dist = SGGeodesy::distanceM( waypoints.back()->getPos(), wpt->getPos());
|
double dist = SGGeodesy::distanceM(waypoints.back()->getPos(), wpt->getPos());
|
||||||
if( dist == 0 ) {
|
if (dist == 0) {
|
||||||
SG_LOG(SG_AI, SG_DEBUG, "Double WP : \t" << wpt->getName() << " not added ");
|
SG_LOG(SG_AI, SG_DEBUG, "Double WP : \t" << wpt->getName() << " not added ");
|
||||||
} else {
|
} else {
|
||||||
waypoints.push_back(wpt);
|
waypoints.push_back(wpt);
|
||||||
|
@ -582,22 +579,23 @@ void FGAIFlightPlan::restart()
|
||||||
wpt_iterator = waypoints.begin();
|
wpt_iterator = waypoints.begin();
|
||||||
}
|
}
|
||||||
|
|
||||||
int FGAIFlightPlan::getRouteIndex(int i) {
|
int FGAIFlightPlan::getRouteIndex(int i) const
|
||||||
|
{
|
||||||
if ((i > 0) && (i < (int)waypoints.size())) {
|
if ((i > 0) && (i < (int)waypoints.size())) {
|
||||||
return waypoints[i]->getRouteIndex();
|
return waypoints[i]->getRouteIndex();
|
||||||
}
|
} else
|
||||||
else
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
double FGAIFlightPlan::checkTrackLength(const string& wptName) const {
|
double FGAIFlightPlan::checkTrackLength(const string& wptName) const
|
||||||
|
{
|
||||||
// skip the first two waypoints: first one is behind, second one is partially done;
|
// skip the first two waypoints: first one is behind, second one is partially done;
|
||||||
double trackDistance = 0;
|
double trackDistance = 0;
|
||||||
wpt_vector_iterator wptvec = waypoints.begin();
|
wpt_vector_iterator wptvec = waypoints.begin();
|
||||||
++wptvec;
|
++wptvec;
|
||||||
++wptvec;
|
++wptvec;
|
||||||
while ((wptvec != waypoints.end())) {
|
while ((wptvec != waypoints.end())) {
|
||||||
if (*wptvec!=nullptr && (!((*wptvec)->contains(wptName)))) {
|
if (*wptvec != nullptr && (!((*wptvec)->contains(wptName)))) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
trackDistance += (*wptvec)->getTrackLength();
|
trackDistance += (*wptvec)->getTrackLength();
|
||||||
|
@ -609,7 +607,7 @@ double FGAIFlightPlan::checkTrackLength(const string& wptName) const {
|
||||||
return trackDistance;
|
return trackDistance;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FGAIFlightPlan::shortenToFirst(unsigned int number, string name)
|
void FGAIFlightPlan::shortenToFirst(unsigned int number, const std::string& name)
|
||||||
{
|
{
|
||||||
while (waypoints.size() > number + 3) {
|
while (waypoints.size() > number + 3) {
|
||||||
eraseLastWaypoint();
|
eraseLastWaypoint();
|
||||||
|
@ -622,7 +620,7 @@ void FGAIFlightPlan::setGate(const ParkingAssignment& pka)
|
||||||
gate = pka;
|
gate = pka;
|
||||||
}
|
}
|
||||||
|
|
||||||
FGParking* FGAIFlightPlan::getParkingGate()
|
FGParking* FGAIFlightPlan::getParkingGate() const
|
||||||
{
|
{
|
||||||
return gate.parking();
|
return gate.parking();
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,9 +93,9 @@ public:
|
||||||
|
|
||||||
const std::string& getName() { return name; };
|
const std::string& getName() { return name; };
|
||||||
const SGGeod& getPos() { return pos; };
|
const SGGeod& getPos() { return pos; };
|
||||||
double getLatitude();
|
double getLatitude() const;
|
||||||
double getLongitude();
|
double getLongitude() const;
|
||||||
double getAltitude();
|
double getAltitude() const;
|
||||||
double getSpeed() { return speed; };
|
double getSpeed() { return speed; };
|
||||||
|
|
||||||
double getCrossat() { return crossat; };
|
double getCrossat() { return crossat; };
|
||||||
|
@ -198,7 +198,7 @@ public:
|
||||||
void restart(void);
|
void restart(void);
|
||||||
int getNrOfWayPoints() { return waypoints.size(); }
|
int getNrOfWayPoints() { return waypoints.size(); }
|
||||||
|
|
||||||
int getRouteIndex(int i); // returns the AI related index of this current routes.
|
int getRouteIndex(int i) const; // returns the AI related index of this current routes.
|
||||||
|
|
||||||
const std::string& getRunway() { return activeRunway; }
|
const std::string& getRunway() { return activeRunway; }
|
||||||
bool isActive(time_t time) { return time >= this->getStartTime(); }
|
bool isActive(time_t time) { return time >= this->getStartTime(); }
|
||||||
|
@ -220,12 +220,12 @@ public:
|
||||||
void setSID(FGAIFlightPlan* fp) { sid = fp; };
|
void setSID(FGAIFlightPlan* fp) { sid = fp; };
|
||||||
FGAIFlightPlan* getSID() { return sid; };
|
FGAIFlightPlan* getSID() { return sid; };
|
||||||
FGAIWaypoint* getWayPoint(int i) { return waypoints[i]; };
|
FGAIWaypoint* getWayPoint(int i) { return waypoints[i]; };
|
||||||
FGAIWaypoint* getLastWaypoint();
|
FGAIWaypoint* getLastWaypoint() const;
|
||||||
|
|
||||||
void shortenToFirst(unsigned int number, std::string name);
|
void shortenToFirst(unsigned int number, const std::string& name);
|
||||||
|
|
||||||
void setGate(const ParkingAssignment& pka);
|
void setGate(const ParkingAssignment& pka);
|
||||||
FGParking* getParkingGate();
|
FGParking* getParkingGate() const;
|
||||||
|
|
||||||
FGAirportRef departureAirport() const;
|
FGAirportRef departureAirport() const;
|
||||||
FGAirportRef arrivalAirport() const;
|
FGAirportRef arrivalAirport() const;
|
||||||
|
|
Loading…
Add table
Reference in a new issue