James Turner :
- a refactoring of the route manager to reduce indentation and duplication - created a helper method to generate the ETA strings - created a helper to update target_altitude and altitude_set when the active wp0 changes - used early returns to make update() easier to follow - removed spurious includes in both header and source file
This commit is contained in:
parent
812485d623
commit
d4168d161e
2 changed files with 78 additions and 97 deletions
|
@ -29,12 +29,9 @@
|
|||
|
||||
#include <simgear/compiler.h>
|
||||
|
||||
#include <Airports/simple.hxx>
|
||||
#include <FDM/flight.hxx>
|
||||
#include <Main/fg_props.hxx>
|
||||
#include <Navaids/fixlist.hxx>
|
||||
#include <Navaids/fix.hxx>
|
||||
#include <Navaids/navlist.hxx>
|
||||
#include <Navaids/positioned.hxx>
|
||||
|
||||
#include "route_mgr.hxx"
|
||||
|
||||
|
@ -126,80 +123,66 @@ static double get_ground_speed() {
|
|||
return kts;
|
||||
}
|
||||
|
||||
void FGRouteMgr::updateTargetAltitude() {
|
||||
if (route->size() == 0) {
|
||||
altitude_set = false;
|
||||
return;
|
||||
}
|
||||
|
||||
SGWayPoint wp = route->get_waypoint( 0 );
|
||||
if (wp.get_target_alt() < -9990.0) {
|
||||
altitude_set = false;
|
||||
return;
|
||||
}
|
||||
|
||||
altitude_set = true;
|
||||
target_altitude_ft->setDoubleValue( wp.get_target_alt() * SG_METER_TO_FEET );
|
||||
|
||||
if ( !near_ground() ) {
|
||||
// James Turner [zakalawe]: there's no explanation for this logic,
|
||||
// it feels like the autopilot should pull the target altitude out of
|
||||
// wp0 instead of us pushing it through here. Hmmm.
|
||||
altitude_lock->setStringValue( "altitude-hold" );
|
||||
}
|
||||
}
|
||||
|
||||
void FGRouteMgr::update( double dt ) {
|
||||
double accum = 0.0;
|
||||
if (route->size() == 0) {
|
||||
return; // no route set, early return
|
||||
}
|
||||
|
||||
double wp_course, wp_distance;
|
||||
char eta_str[128];
|
||||
|
||||
// first way point
|
||||
if ( route->size() > 0 ) {
|
||||
SGWayPoint wp = route->get_waypoint( 0 );
|
||||
wp.CourseAndDistance( lon->getDoubleValue(), lat->getDoubleValue(),
|
||||
alt->getDoubleValue(), &wp_course, &wp_distance );
|
||||
SGWayPoint wp = route->get_waypoint( 0 );
|
||||
wp.CourseAndDistance( lon->getDoubleValue(), lat->getDoubleValue(),
|
||||
alt->getDoubleValue(), &wp_course, &wp_distance );
|
||||
true_hdg_deg->setDoubleValue( wp_course );
|
||||
|
||||
true_hdg_deg->setDoubleValue( wp_course );
|
||||
double target_alt = wp.get_target_alt();
|
||||
|
||||
if ( !altitude_set && target_alt > -9990 ) {
|
||||
target_altitude_ft->setDoubleValue( target_alt * SG_METER_TO_FEET );
|
||||
altitude_set = true;
|
||||
|
||||
if ( !near_ground() )
|
||||
altitude_lock->setStringValue( "altitude-hold" );
|
||||
}
|
||||
|
||||
if ( wp_distance < 200.0 ) {
|
||||
pop_waypoint();
|
||||
altitude_set = false;
|
||||
if ( wp_distance < 200.0 ) {
|
||||
pop_waypoint();
|
||||
if (route->size() == 0) {
|
||||
return; // end of route, we're done for the time being
|
||||
}
|
||||
|
||||
wp = route->get_waypoint( 0 );
|
||||
}
|
||||
|
||||
// next way point
|
||||
if ( route->size() > 0 ) {
|
||||
SGWayPoint wp = route->get_waypoint( 0 );
|
||||
// update the property tree info
|
||||
|
||||
wp0_id->setStringValue( wp.get_id().c_str() );
|
||||
|
||||
accum += wp_distance;
|
||||
wp0_dist->setDoubleValue( accum * SG_METER_TO_NM );
|
||||
|
||||
double eta = accum * SG_METER_TO_NM / get_ground_speed();
|
||||
if ( eta >= 100.0 ) { eta = 99.999; }
|
||||
int major, minor;
|
||||
if ( eta < (1.0/6.0) ) {
|
||||
// within 10 minutes, bump up to min/secs
|
||||
eta *= 60.0;
|
||||
}
|
||||
major = (int)eta;
|
||||
minor = (int)((eta - (int)eta) * 60.0);
|
||||
snprintf( eta_str, 128, "%d:%02d", major, minor );
|
||||
wp0_eta->setStringValue( eta_str );
|
||||
}
|
||||
// update the property tree info for WP0
|
||||
wp0_id->setStringValue( wp.get_id().c_str() );
|
||||
double accum = wp_distance;
|
||||
wp0_dist->setDoubleValue( accum * SG_METER_TO_NM );
|
||||
setETAPropertyFromDistance(wp0_eta, accum);
|
||||
|
||||
// next way point
|
||||
if ( route->size() > 1 ) {
|
||||
SGWayPoint wp = route->get_waypoint( 1 );
|
||||
|
||||
// update the property tree info
|
||||
|
||||
wp1_id->setStringValue( wp.get_id().c_str() );
|
||||
|
||||
accum += wp.get_distance();
|
||||
wp1_dist->setDoubleValue( accum * SG_METER_TO_NM );
|
||||
|
||||
double eta = accum * SG_METER_TO_NM / get_ground_speed();
|
||||
if ( eta >= 100.0 ) { eta = 99.999; }
|
||||
int major, minor;
|
||||
if ( eta < (1.0/6.0) ) {
|
||||
// within 10 minutes, bump up to min/secs
|
||||
eta *= 60.0;
|
||||
}
|
||||
major = (int)eta;
|
||||
minor = (int)((eta - (int)eta) * 60.0);
|
||||
snprintf( eta_str, 128, "%d:%02d", major, minor );
|
||||
wp1_eta->setStringValue( eta_str );
|
||||
setETAPropertyFromDistance(wp1_eta, accum);
|
||||
}
|
||||
|
||||
// summarize remaining way points
|
||||
|
@ -211,32 +194,36 @@ void FGRouteMgr::update( double dt ) {
|
|||
}
|
||||
|
||||
// update the property tree info
|
||||
|
||||
wpn_id->setStringValue( wp.get_id().c_str() );
|
||||
|
||||
wpn_dist->setDoubleValue( accum * SG_METER_TO_NM );
|
||||
|
||||
double eta = accum * SG_METER_TO_NM / get_ground_speed();
|
||||
if ( eta >= 100.0 ) { eta = 99.999; }
|
||||
int major, minor;
|
||||
if ( eta < (1.0/6.0) ) {
|
||||
// within 10 minutes, bump up to min/secs
|
||||
eta *= 60.0;
|
||||
}
|
||||
major = (int)eta;
|
||||
minor = (int)((eta - (int)eta) * 60.0);
|
||||
snprintf( eta_str, 128, "%d:%02d", major, minor );
|
||||
wpn_eta->setStringValue( eta_str );
|
||||
setETAPropertyFromDistance(wpn_eta, accum);
|
||||
}
|
||||
}
|
||||
|
||||
void FGRouteMgr::setETAPropertyFromDistance(SGPropertyNode_ptr aProp, double aDistance) {
|
||||
char eta_str[64];
|
||||
double eta = aDistance * SG_METER_TO_NM / get_ground_speed();
|
||||
if ( eta >= 100.0 ) {
|
||||
eta = 99.999; // clamp
|
||||
}
|
||||
|
||||
if ( eta < (1.0/6.0) ) {
|
||||
// within 10 minutes, bump up to min/secs
|
||||
eta *= 60.0;
|
||||
}
|
||||
|
||||
int major = (int)eta,
|
||||
minor = (int)((eta - (int)eta) * 60.0);
|
||||
snprintf( eta_str, 64, "%d:%02d", major, minor );
|
||||
aProp->setStringValue( eta_str );
|
||||
}
|
||||
|
||||
void FGRouteMgr::add_waypoint( const SGWayPoint& wp, int n ) {
|
||||
if ( n == 0 || !route->size() )
|
||||
altitude_set = false;
|
||||
|
||||
route->add_waypoint( wp, n );
|
||||
update_mirror();
|
||||
if ((n==0) || (route->size() == 1)) {
|
||||
updateTargetAltitude();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -268,9 +255,7 @@ SGWayPoint FGRouteMgr::pop_waypoint( int n ) {
|
|||
wp0_eta->setStringValue( "" );
|
||||
}
|
||||
|
||||
if ( n == 0 && route->size() )
|
||||
altitude_set = false;
|
||||
|
||||
updateTargetAltitude();
|
||||
update_mirror();
|
||||
return wp;
|
||||
}
|
||||
|
@ -342,7 +327,7 @@ SGWayPoint* FGRouteMgr::make_waypoint(const string& tgt ) {
|
|||
return NULL;
|
||||
}
|
||||
|
||||
return new SGWayPoint(p->longitude(), p->latitude(), p->elevation(), SGWayPoint::WGS84, target);
|
||||
return new SGWayPoint(p->longitude(), p->latitude(), alt, SGWayPoint::WGS84, target);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -24,22 +24,6 @@
|
|||
#ifndef _ROUTE_MGR_HXX
|
||||
#define _ROUTE_MGR_HXX 1
|
||||
|
||||
#ifndef __cplusplus
|
||||
# error This library requires C++
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include <simgear/compiler.h>
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
using std::string;
|
||||
using std::vector;
|
||||
|
||||
#include <simgear/props/props.hxx>
|
||||
#include <simgear/route/route.hxx>
|
||||
#include <simgear/structure/subsystem_mgr.hxx>
|
||||
|
@ -97,6 +81,18 @@ private:
|
|||
void update_mirror();
|
||||
bool near_ground();
|
||||
|
||||
/**
|
||||
* Helper to set a string property to the estimated arrival time (ETA),
|
||||
* formatted as either hours:minutes or minutes:seconds, based on a distance
|
||||
* and the current groundspeed.
|
||||
*/
|
||||
void setETAPropertyFromDistance(SGPropertyNode_ptr aProp, double aDistance);
|
||||
|
||||
/**
|
||||
* Helper to update the target_altitude_ft and altitude_set flag when wp0
|
||||
* changes
|
||||
*/
|
||||
void updateTargetAltitude();
|
||||
public:
|
||||
|
||||
FGRouteMgr();
|
||||
|
|
Loading…
Reference in a new issue