- implement target altitude handling
This commit is contained in:
parent
d409d5dbbe
commit
641f0a8e9b
2 changed files with 42 additions and 15 deletions
|
@ -46,6 +46,8 @@ FGRouteMgr::FGRouteMgr() :
|
||||||
lat( NULL ),
|
lat( NULL ),
|
||||||
alt( NULL ),
|
alt( NULL ),
|
||||||
true_hdg_deg( NULL ),
|
true_hdg_deg( NULL ),
|
||||||
|
target_altitude_ft( NULL ),
|
||||||
|
altitude_lock( NULL ),
|
||||||
wp0_id( NULL ),
|
wp0_id( NULL ),
|
||||||
wp0_dist( NULL ),
|
wp0_dist( NULL ),
|
||||||
wp0_eta( NULL ),
|
wp0_eta( NULL ),
|
||||||
|
@ -57,7 +59,8 @@ FGRouteMgr::FGRouteMgr() :
|
||||||
wpn_eta( NULL ),
|
wpn_eta( NULL ),
|
||||||
input(fgGetNode( RM "input", true )),
|
input(fgGetNode( RM "input", true )),
|
||||||
listener(new Listener(this)),
|
listener(new Listener(this)),
|
||||||
mirror(fgGetNode( RM "route", true ))
|
mirror(fgGetNode( RM "route", true )),
|
||||||
|
altitude_set( false )
|
||||||
{
|
{
|
||||||
input->setStringValue("");
|
input->setStringValue("");
|
||||||
input->addChangeListener(listener);
|
input->addChangeListener(listener);
|
||||||
|
@ -76,6 +79,8 @@ void FGRouteMgr::init() {
|
||||||
alt = fgGetNode( "/position/altitude-ft", true );
|
alt = fgGetNode( "/position/altitude-ft", true );
|
||||||
|
|
||||||
true_hdg_deg = fgGetNode( "/autopilot/settings/true-heading-deg", true );
|
true_hdg_deg = fgGetNode( "/autopilot/settings/true-heading-deg", true );
|
||||||
|
target_altitude_ft = fgGetNode( "/autopilot/settings/target-altitude-ft", true );
|
||||||
|
altitude_lock = fgGetNode( "/autopilot/locks/altitude", true );
|
||||||
|
|
||||||
wp0_id = fgGetNode( RM "wp[0]/id", true );
|
wp0_id = fgGetNode( RM "wp[0]/id", true );
|
||||||
wp0_dist = fgGetNode( RM "wp[0]/dist", true );
|
wp0_dist = fgGetNode( RM "wp[0]/dist", true );
|
||||||
|
@ -133,9 +138,19 @@ void FGRouteMgr::update( double dt ) {
|
||||||
alt->getDoubleValue(), &wp_course, &wp_distance );
|
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();
|
||||||
|
|
||||||
|
// activate altitude lock only once per route (this can't be done in
|
||||||
|
// new_waypoint() because the first wp might not have an altitude defined at all)
|
||||||
|
if (!altitude_set && target_alt > -9990) {
|
||||||
|
target_altitude_ft->setDoubleValue( target_alt * SG_METER_TO_FEET );
|
||||||
|
altitude_lock->setStringValue( "altitude-hold" );
|
||||||
|
altitude_set = true;
|
||||||
|
}
|
||||||
|
|
||||||
if ( wp_distance < 200.0 ) {
|
if ( wp_distance < 200.0 ) {
|
||||||
pop_waypoint();
|
pop_waypoint();
|
||||||
|
altitude_set = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -261,7 +276,6 @@ bool FGRouteMgr::build() {
|
||||||
|
|
||||||
|
|
||||||
int FGRouteMgr::new_waypoint( const string& Tgt_Alt, int n ) {
|
int FGRouteMgr::new_waypoint( const string& Tgt_Alt, int n ) {
|
||||||
double alt = 0.0;
|
|
||||||
string target = Tgt_Alt;
|
string target = Tgt_Alt;
|
||||||
|
|
||||||
// make upper case
|
// make upper case
|
||||||
|
@ -269,6 +283,22 @@ int FGRouteMgr::new_waypoint( const string& Tgt_Alt, int n ) {
|
||||||
if (target[i] >= 'a' && target[i] <= 'z')
|
if (target[i] >= 'a' && target[i] <= 'z')
|
||||||
target[i] -= 'a' - 'A';
|
target[i] -= 'a' - 'A';
|
||||||
|
|
||||||
|
SGWayPoint *wp = 0;
|
||||||
|
int type = make_waypoint( &wp, target );
|
||||||
|
|
||||||
|
if (wp) {
|
||||||
|
fgSetString( "/autopilot/locks/heading", "true-heading-hold" );
|
||||||
|
add_waypoint( *wp, n );
|
||||||
|
delete wp;
|
||||||
|
}
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int FGRouteMgr::make_waypoint(SGWayPoint **wp, string& target) {
|
||||||
|
double alt = -9999.0;
|
||||||
|
|
||||||
// extract altitude
|
// extract altitude
|
||||||
unsigned int pos = target.find( '@' );
|
unsigned int pos = target.find( '@' );
|
||||||
if ( pos != string::npos ) {
|
if ( pos != string::npos ) {
|
||||||
|
@ -285,9 +315,7 @@ int FGRouteMgr::new_waypoint( const string& Tgt_Alt, int n ) {
|
||||||
double lat = atof( target.c_str() + pos + 1);
|
double lat = atof( target.c_str() + pos + 1);
|
||||||
|
|
||||||
SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint lon = " << lon << ", lat = " << lat );
|
SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint lon = " << lon << ", lat = " << lat );
|
||||||
SGWayPoint wp( lon, lat, alt, SGWayPoint::WGS84, target );
|
*wp = new SGWayPoint( lon, lat, alt, SGWayPoint::WGS84, target );
|
||||||
add_waypoint( wp, n );
|
|
||||||
fgSetString( "/autopilot/locks/heading", "true-heading-hold" );
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -295,9 +323,7 @@ int FGRouteMgr::new_waypoint( const string& Tgt_Alt, int n ) {
|
||||||
const FGAirport *apt = fgFindAirportID( target );
|
const FGAirport *apt = fgFindAirportID( target );
|
||||||
if (apt) {
|
if (apt) {
|
||||||
SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (airport) = " << target );
|
SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (airport) = " << target );
|
||||||
SGWayPoint wp( apt->getLongitude(), apt->getLatitude(), alt, SGWayPoint::WGS84, target );
|
*wp = new SGWayPoint( apt->getLongitude(), apt->getLatitude(), alt, SGWayPoint::WGS84, target );
|
||||||
add_waypoint( wp, n );
|
|
||||||
fgSetString( "/autopilot/locks/heading", "true-heading-hold" );
|
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -305,9 +331,7 @@ int FGRouteMgr::new_waypoint( const string& Tgt_Alt, int n ) {
|
||||||
FGFix f;
|
FGFix f;
|
||||||
if ( globals->get_fixlist()->query( target, &f ) ) {
|
if ( globals->get_fixlist()->query( target, &f ) ) {
|
||||||
SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (fix) = " << target );
|
SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (fix) = " << target );
|
||||||
SGWayPoint wp( f.get_lon(), f.get_lat(), alt, SGWayPoint::WGS84, target );
|
*wp = new SGWayPoint( f.get_lon(), f.get_lat(), alt, SGWayPoint::WGS84, target );
|
||||||
add_waypoint( wp, n );
|
|
||||||
fgSetString( "/autopilot/locks/heading", "true-heading-hold" );
|
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -333,9 +357,7 @@ int FGRouteMgr::new_waypoint( const string& Tgt_Alt, int n ) {
|
||||||
|
|
||||||
if (FGNavRecord* nav = globals->get_navlist()->findByIdent(target.c_str(), lon, lat)) {
|
if (FGNavRecord* nav = globals->get_navlist()->findByIdent(target.c_str(), lon, lat)) {
|
||||||
SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (nav) = " << target );
|
SG_LOG( SG_GENERAL, SG_INFO, "Adding waypoint (nav) = " << target );
|
||||||
SGWayPoint wp( nav->get_lon(), nav->get_lat(), alt, SGWayPoint::WGS84, target );
|
*wp = new SGWayPoint( nav->get_lon(), nav->get_lat(), alt, SGWayPoint::WGS84, target );
|
||||||
add_waypoint( wp, n );
|
|
||||||
fgSetString( "/autopilot/locks/heading", "true-heading-hold" );
|
|
||||||
return 4;
|
return 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -64,6 +64,8 @@ private:
|
||||||
|
|
||||||
// automatic outputs
|
// automatic outputs
|
||||||
SGPropertyNode_ptr true_hdg_deg;
|
SGPropertyNode_ptr true_hdg_deg;
|
||||||
|
SGPropertyNode_ptr target_altitude_ft;
|
||||||
|
SGPropertyNode_ptr altitude_lock;
|
||||||
|
|
||||||
SGPropertyNode_ptr wp0_id;
|
SGPropertyNode_ptr wp0_id;
|
||||||
SGPropertyNode_ptr wp0_dist;
|
SGPropertyNode_ptr wp0_dist;
|
||||||
|
@ -89,6 +91,10 @@ private:
|
||||||
SGPropertyNode_ptr input;
|
SGPropertyNode_ptr input;
|
||||||
Listener *listener;
|
Listener *listener;
|
||||||
SGPropertyNode_ptr mirror;
|
SGPropertyNode_ptr mirror;
|
||||||
|
bool altitude_set;
|
||||||
|
|
||||||
|
int make_waypoint( SGWayPoint **wp, string& target );
|
||||||
|
void update_mirror();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
@ -115,7 +121,6 @@ public:
|
||||||
return route->size();
|
return route->size();
|
||||||
}
|
}
|
||||||
|
|
||||||
void update_mirror();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue