2000-04-30 06:51:49 +00:00
|
|
|
// newauto.hxx -- autopilot defines and prototypes (very alpha)
|
|
|
|
//
|
|
|
|
// Started April 1998 Copyright (C) 1998
|
|
|
|
//
|
|
|
|
// Contributions by Jeff Goeke-Smith <jgoeke@voyager.net>
|
|
|
|
// Norman Vine <nhv@cape.com>
|
|
|
|
// Curtis Olson <curt@flightgear.org>
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _NEWAUTO_HXX
|
|
|
|
#define _NEWAUTO_HXX
|
|
|
|
|
|
|
|
|
2001-06-06 17:02:25 +00:00
|
|
|
#include <simgear/misc/props.hxx>
|
2000-10-11 00:18:26 +00:00
|
|
|
#include <simgear/route/waypoint.hxx>
|
|
|
|
|
|
|
|
|
2000-04-30 06:51:49 +00:00
|
|
|
// Structures
|
|
|
|
class FGAutopilot {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
enum fgAutoHeadingMode {
|
2001-02-27 23:17:58 +00:00
|
|
|
FG_DG_HEADING_LOCK = 0, // follow bug on directional gryo
|
|
|
|
FG_TC_HEADING_LOCK = 1, // keep turn coordinator zero'd
|
|
|
|
FG_TRUE_HEADING_LOCK = 2, // lock to true heading (i.e. a perfect world)
|
|
|
|
FG_HEADING_NAV1 = 3, // follow nav1 radial
|
|
|
|
FG_HEADING_NAV2 = 4, // follow nav2 radial
|
|
|
|
FG_HEADING_WAYPOINT = 5 // track next waypoint
|
2000-04-30 06:51:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum fgAutoAltitudeMode {
|
2001-02-27 23:17:58 +00:00
|
|
|
FG_ALTITUDE_LOCK = 0, // lock to a specific altitude
|
|
|
|
FG_ALTITUDE_TERRAIN = 1, // try to maintain a specific AGL
|
|
|
|
FG_ALTITUDE_GS1 = 2, // follow glide slope 1
|
|
|
|
FG_ALTITUDE_GS2 = 3 // follow glide slope 2
|
2000-04-30 06:51:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
bool heading_hold; // the current state of the heading hold
|
|
|
|
bool altitude_hold; // the current state of the altitude hold
|
|
|
|
bool auto_throttle; // the current state of the auto throttle
|
|
|
|
|
|
|
|
fgAutoHeadingMode heading_mode;
|
|
|
|
fgAutoAltitudeMode altitude_mode;
|
|
|
|
|
2000-10-11 00:18:26 +00:00
|
|
|
SGWayPoint waypoint; // the waypoint the AP should steer to.
|
|
|
|
|
|
|
|
// double TargetLatitude; // the latitude the AP should steer to.
|
|
|
|
// double TargetLongitude; // the longitude the AP should steer to.
|
2000-04-30 06:51:49 +00:00
|
|
|
double TargetDistance; // the distance to Target.
|
2001-02-07 04:16:12 +00:00
|
|
|
double DGTargetHeading; // the apparent DG heading to steer towards.
|
|
|
|
double TargetHeading; // the true heading the AP should steer to.
|
2000-04-30 06:51:49 +00:00
|
|
|
double TargetAltitude; // altitude to hold
|
|
|
|
double TargetAGL; // the terrain separation
|
2001-02-27 23:17:58 +00:00
|
|
|
double TargetClimbRate; // target climb rate
|
2001-06-06 17:02:25 +00:00
|
|
|
double TargetDecentRate; // target decent rate
|
2000-04-30 06:51:49 +00:00
|
|
|
double TargetSpeed; // speed to shoot for
|
|
|
|
double alt_error_accum; // altitude error accumulator
|
2000-04-30 22:21:47 +00:00
|
|
|
double climb_error_accum; // climb error accumulator (for GS)
|
2000-04-30 06:51:49 +00:00
|
|
|
double speed_error_accum; // speed error accumulator
|
|
|
|
|
|
|
|
double TargetSlope; // the glide slope hold value
|
|
|
|
|
|
|
|
double MaxRoll ; // the max the plane can roll for the turn
|
|
|
|
double RollOut; // when the plane should roll out
|
|
|
|
// measured from Heading
|
|
|
|
double MaxAileron; // how far to move the aleroin from center
|
|
|
|
double RollOutSmooth; // deg to use for smoothing Aileron Control
|
|
|
|
double MaxElevator; // the maximum elevator allowed
|
|
|
|
double SlopeSmooth; // smoothing angle for elevator
|
|
|
|
|
|
|
|
// following for testing disengagement of autopilot upon pilot
|
|
|
|
// interaction with controls
|
|
|
|
double old_aileron;
|
|
|
|
double old_elevator;
|
|
|
|
double old_elevator_trim;
|
|
|
|
double old_rudder;
|
|
|
|
|
|
|
|
// manual controls override beyond this value
|
|
|
|
double disengage_threshold;
|
|
|
|
|
|
|
|
// For future cross track error adjust
|
|
|
|
double old_lat;
|
|
|
|
double old_lon;
|
|
|
|
|
|
|
|
// keeping these locally to save work inside main loop
|
|
|
|
char TargetLatitudeStr[64];
|
|
|
|
char TargetLongitudeStr[64];
|
|
|
|
char TargetLatLonStr[64];
|
2000-10-13 23:34:54 +00:00
|
|
|
char TargetWP1Str[64];
|
|
|
|
char TargetWP2Str[64];
|
|
|
|
char TargetWP3Str[64];
|
2000-04-30 06:51:49 +00:00
|
|
|
char TargetHeadingStr[64];
|
|
|
|
char TargetAltitudeStr[64];
|
|
|
|
|
2001-06-06 17:02:25 +00:00
|
|
|
SGPropertyNode *latitude_node;
|
|
|
|
SGPropertyNode *longitude_node;
|
|
|
|
SGPropertyNode *altitude_node;
|
|
|
|
SGPropertyNode *altitude_agl_node;
|
|
|
|
SGPropertyNode *vertical_speed_node;
|
|
|
|
SGPropertyNode *heading_node;
|
|
|
|
SGPropertyNode *roll_node;
|
|
|
|
|
2000-04-30 06:51:49 +00:00
|
|
|
public:
|
|
|
|
|
2001-02-27 23:17:58 +00:00
|
|
|
// constructor
|
|
|
|
FGAutopilot();
|
|
|
|
|
|
|
|
// destructor
|
|
|
|
~FGAutopilot();
|
|
|
|
|
2000-04-30 06:51:49 +00:00
|
|
|
// Initialize autopilot system
|
|
|
|
void init();
|
|
|
|
|
|
|
|
// Reset the autopilot system
|
|
|
|
void reset(void);
|
|
|
|
|
|
|
|
// run an interation of the autopilot (updates control positions)
|
|
|
|
int run();
|
|
|
|
|
|
|
|
void AltitudeSet( double new_altitude );
|
|
|
|
void AltitudeAdjust( double inc );
|
|
|
|
void HeadingAdjust( double inc );
|
|
|
|
void AutoThrottleAdjust( double inc );
|
|
|
|
|
|
|
|
void HeadingSet( double value );
|
|
|
|
|
|
|
|
inline bool get_HeadingEnabled() const { return heading_hold; }
|
|
|
|
inline void set_HeadingEnabled( bool value ) { heading_hold = value; }
|
|
|
|
inline fgAutoHeadingMode get_HeadingMode() const { return heading_mode; }
|
|
|
|
void set_HeadingMode( fgAutoHeadingMode mode );
|
|
|
|
|
|
|
|
inline bool get_AltitudeEnabled() const { return altitude_hold; }
|
|
|
|
inline void set_AltitudeEnabled( bool value ) { altitude_hold = value; }
|
|
|
|
inline fgAutoAltitudeMode get_AltitudeMode() const { return altitude_mode;}
|
|
|
|
void set_AltitudeMode( fgAutoAltitudeMode mode );
|
|
|
|
|
|
|
|
inline bool get_AutoThrottleEnabled() const { return auto_throttle; }
|
|
|
|
void set_AutoThrottleEnabled( bool value );
|
|
|
|
|
2000-10-12 01:06:07 +00:00
|
|
|
/* inline void set_WayPoint( const double lon, const double lat,
|
|
|
|
const double alt, const string s ) {
|
|
|
|
waypoint = SGWayPoint( lon, lat, alt, SGWayPoint::WGS84, "Current WP" );
|
|
|
|
} */
|
2000-10-11 00:18:26 +00:00
|
|
|
inline double get_TargetLatitude() const {
|
|
|
|
return waypoint.get_target_lat();
|
|
|
|
}
|
|
|
|
inline double get_TargetLongitude() const {
|
|
|
|
return waypoint.get_target_lon();
|
|
|
|
}
|
2000-04-30 06:51:49 +00:00
|
|
|
inline void set_old_lat( double val ) { old_lat = val; }
|
|
|
|
inline void set_old_lon( double val ) { old_lon = val; }
|
|
|
|
inline double get_TargetHeading() const { return TargetHeading; }
|
|
|
|
inline void set_TargetHeading( double val ) { TargetHeading = val; }
|
2001-02-07 04:16:12 +00:00
|
|
|
inline double get_DGTargetHeading() const { return DGTargetHeading; }
|
|
|
|
inline void set_DGTargetHeading( double val ) { DGTargetHeading = val; }
|
2000-04-30 06:51:49 +00:00
|
|
|
inline double get_TargetDistance() const { return TargetDistance; }
|
|
|
|
inline void set_TargetDistance( double val ) { TargetDistance = val; }
|
|
|
|
inline double get_TargetAltitude() const { return TargetAltitude; }
|
|
|
|
inline void set_TargetAltitude( double val ) { TargetAltitude = val; }
|
2001-08-31 18:07:23 +00:00
|
|
|
inline double get_TargetAGL() const { return TargetAGL; }
|
|
|
|
inline void set_TargetAGL( double val ) { TargetAGL = val; }
|
2001-02-27 23:17:58 +00:00
|
|
|
inline double get_TargetClimbRate() const { return TargetClimbRate; }
|
|
|
|
inline void set_TargetClimbRate( double val ) { TargetClimbRate = val; }
|
2000-04-30 06:51:49 +00:00
|
|
|
|
|
|
|
inline char *get_TargetLatitudeStr() { return TargetLatitudeStr; }
|
|
|
|
inline char *get_TargetLongitudeStr() { return TargetLongitudeStr; }
|
2000-10-13 23:34:54 +00:00
|
|
|
inline char *get_TargetWP1Str() { return TargetWP1Str; }
|
|
|
|
inline char *get_TargetWP2Str() { return TargetWP2Str; }
|
|
|
|
inline char *get_TargetWP3Str() { return TargetWP3Str; }
|
2000-04-30 06:51:49 +00:00
|
|
|
inline char *get_TargetHeadingStr() { return TargetHeadingStr; }
|
|
|
|
inline char *get_TargetAltitudeStr() { return TargetAltitudeStr; }
|
|
|
|
inline char *get_TargetLatLonStr() { return TargetLatLonStr; }
|
|
|
|
|
|
|
|
// utility functions
|
|
|
|
void MakeTargetLatLonStr( double lat, double lon );
|
|
|
|
void MakeTargetAltitudeStr( double altitude );
|
|
|
|
void MakeTargetHeadingStr( double bearing );
|
2000-10-13 23:34:54 +00:00
|
|
|
void MakeTargetWPStr( double distance );
|
2000-04-30 06:51:49 +00:00
|
|
|
void update_old_control_values();
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
inline double get_MaxRoll() const { return MaxRoll; }
|
|
|
|
inline void set_MaxRoll( double val ) { MaxRoll = val; }
|
|
|
|
inline double get_RollOut() const { return RollOut; }
|
|
|
|
inline void set_RollOut( double val ) { RollOut = val; }
|
|
|
|
|
|
|
|
inline double get_MaxAileron() const { return MaxAileron; }
|
|
|
|
inline void set_MaxAileron( double val ) { MaxAileron = val; }
|
|
|
|
inline double get_RollOutSmooth() const { return RollOutSmooth; }
|
|
|
|
inline void set_RollOutSmooth( double val ) { RollOutSmooth = val; }
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern FGAutopilot *current_autopilot;
|
|
|
|
|
2001-06-26 20:14:13 +00:00
|
|
|
#define DEFAULT_AP_HEADING_LOCK FGAutopilot::FG_DG_HEADING_LOCK
|
|
|
|
// #define DEFAULT_AP_HEADING_LOCK FGAutopilot::FG_TRUE_HEADING_LOCK
|
2000-04-30 06:51:49 +00:00
|
|
|
|
|
|
|
#endif // _NEWAUTO_HXX
|