]> git.mxchange.org Git - flightgear.git/blob - src/Autopilot/newauto.cxx
64a243bd5578c0b39e6f8353289312e04292fbc3
[flightgear.git] / src / Autopilot / newauto.cxx
1 // newauto.cxx -- autopilot defines and prototypes (very alpha)
2 // 
3 // Started April 1998  Copyright (C) 1998
4 //
5 // Contributions by Jeff Goeke-Smith <jgoeke@voyager.net>
6 //                  Norman Vine <nhv@cape.com>
7 //                  Curtis Olson <curt@flightgear.org>
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 //
23 // $Id$
24
25
26 #ifdef HAVE_CONFIG_H
27 #  include <config.h>
28 #endif
29
30 #include <stdio.h>              // sprintf()
31
32 #include <simgear/constants.h>
33 #include <simgear/debug/logstream.hxx>
34 #include <simgear/math/fg_geodesy.hxx>
35
36 #include <Cockpit/radiostack.hxx>
37 #include <Controls/controls.hxx>
38 #include <FDM/flight.hxx>
39 #include <Main/bfi.hxx>
40 #include <Main/options.hxx>
41 #include <Scenery/scenery.hxx>
42
43 #include "newauto.hxx"
44
45
46 FGAutopilot *current_autopilot;
47
48
49 // Climb speed constants
50 const double min_climb = 70.0;  // kts
51 const double best_climb = 75.0; // kts
52 const double ideal_climb_rate = 500.0; // fpm
53
54 /// These statics will eventually go into the class
55 /// they are just here while I am experimenting -- NHV :-)
56 // AutoPilot Gain Adjuster members
57 static double MaxRollAdjust;        // MaxRollAdjust       = 2 * APData->MaxRoll;
58 static double RollOutAdjust;        // RollOutAdjust       = 2 * APData->RollOut;
59 static double MaxAileronAdjust;     // MaxAileronAdjust    = 2 * APData->MaxAileron;
60 static double RollOutSmoothAdjust;  // RollOutSmoothAdjust = 2 * APData->RollOutSmooth;
61
62 static char NewTgtAirportId[16];
63 // static char NewTgtAirportLabel[] = "Enter New TgtAirport ID"; 
64
65 extern char *coord_format_lat(float);
66 extern char *coord_format_lon(float);
67                         
68
69 void FGAutopilot::MakeTargetLatLonStr( double lat, double lon ) {
70     sprintf( TargetLatitudeStr , "%s", coord_format_lat(TargetLatitude) );
71     sprintf( TargetLongitudeStr, "%s", coord_format_lon(TargetLongitude) );
72     sprintf( TargetLatLonStr, "%s  %s", TargetLatitudeStr, TargetLongitudeStr );
73 }
74
75
76 void FGAutopilot::MakeTargetAltitudeStr( double altitude ) {
77     if ( altitude_mode == FG_ALTITUDE_TERRAIN ) {
78         sprintf( TargetAltitudeStr, "APAltitude  %6.0f+", altitude );
79     } else {
80         sprintf( TargetAltitudeStr, "APAltitude  %6.0f", altitude );
81     }
82 }
83
84
85 void FGAutopilot::MakeTargetHeadingStr( double bearing ) {
86     if( bearing < 0. ) {
87         bearing += 360.;
88     } else if (bearing > 360. ) {
89         bearing -= 360.;
90     }
91     sprintf( TargetHeadingStr, "APHeading  %6.1f", bearing );
92 }
93
94
95 static inline double get_speed( void ) {
96     return( cur_fdm_state->get_V_equiv_kts() );
97 }
98
99 static inline double get_ground_speed() {
100     // starts in ft/s so we convert to kts
101     double ft_s = cur_fdm_state->get_V_ground_speed() 
102         * current_options.get_speed_up();;
103     double kts = ft_s * FEET_TO_METER * 3600 * METER_TO_NM;
104
105     return kts;
106 }
107
108
109 void FGAutopilot::MakeTargetDistanceStr( double distance ) {
110     double eta = distance*METER_TO_NM / get_ground_speed();
111     if ( eta >= 100.0 ) { eta = 99.999; }
112     int major, minor;
113     if ( eta < (1.0/6.0) ) {
114         // within 10 minutes, bump up to min/secs
115         eta *= 60.0;
116     }
117     major = (int)eta;
118     minor = (int)((eta - (int)eta) * 60.0);
119     sprintf( TargetDistanceStr, "APDistance %.2f NM  ETA %d:%02d",
120              distance*METER_TO_NM, major, minor );
121     // cout << "distance = " << distance*METER_TO_NM
122     //      << "  gndsp = " << get_ground_speed() 
123     //      << "  time = " << eta
124     //      << "  major = " << major
125     //      << "  minor = " << minor
126     //      << endl;
127 }
128
129
130 void FGAutopilot::update_old_control_values() {
131     old_aileron = FGBFI::getAileron();
132     old_elevator = FGBFI::getElevator();
133     old_elevator_trim = FGBFI::getElevatorTrim();
134     old_rudder = FGBFI::getRudder();
135 }
136
137
138 // Initialize autopilot subsystem
139 void FGAutopilot::init() {
140     FG_LOG( FG_AUTOPILOT, FG_INFO, "Init AutoPilot Subsystem" );
141
142     heading_hold = false ;      // turn the heading hold off
143     altitude_hold = false ;     // turn the altitude hold off
144     auto_throttle = false ;     // turn the auto throttle off
145
146     // Initialize target location to startup location
147     old_lat = TargetLatitude = FGBFI::getLatitude();
148     old_lon = TargetLongitude = FGBFI::getLongitude();
149
150     MakeTargetLatLonStr( TargetLatitude, TargetLongitude);
151         
152     TargetHeading = 0.0;        // default direction, due north
153     TargetAltitude = 3000;      // default altitude in meters
154     alt_error_accum = 0.0;
155     climb_error_accum = 0.0;
156
157     MakeTargetAltitudeStr( 3000.0);
158     MakeTargetHeadingStr( 0.0 );
159         
160     // These eventually need to be read from current_aircaft somehow.
161
162     // the maximum roll, in Deg
163     MaxRoll = 20;
164
165     // the deg from heading to start rolling out at, in Deg
166     RollOut = 20;
167
168     // how far can I move the aleron from center.
169     MaxAileron = .2;
170
171     // Smoothing distance for alerion control
172     RollOutSmooth = 10;
173
174     // Hardwired for now should be in options
175     // 25% max control variablilty  0.5 / 2.0
176     disengage_threshold = 1.0;
177
178 #if !defined( USING_SLIDER_CLASS )
179     MaxRollAdjust = 2 * MaxRoll;
180     RollOutAdjust = 2 * RollOut;
181     MaxAileronAdjust = 2 * MaxAileron;
182     RollOutSmoothAdjust = 2 * RollOutSmooth;
183 #endif  // !defined( USING_SLIDER_CLASS )
184
185     update_old_control_values();
186         
187     // Initialize GUI components of autopilot
188     // NewTgtAirportInit();
189     // fgAPAdjustInit() ;
190     // NewHeadingInit();
191     // NewAltitudeInit();
192 };
193
194
195 // Reset the autopilot system
196 void FGAutopilot::reset() {
197
198     heading_hold = false ;      // turn the heading hold off
199     altitude_hold = false ;     // turn the altitude hold off
200     auto_throttle = false ;     // turn the auto throttle off
201
202     TargetHeading = 0.0;        // default direction, due north
203     MakeTargetHeadingStr( TargetHeading );                      
204         
205     TargetAltitude = 3000;   // default altitude in meters
206     MakeTargetAltitudeStr( TargetAltitude );
207         
208     alt_error_accum = 0.0;
209     climb_error_accum = 0.0;
210         
211     update_old_control_values();
212
213     sprintf( NewTgtAirportId, "%s", current_options.get_airport_id().c_str() );
214         
215     TargetLatitude = FGBFI::getLatitude();
216     TargetLongitude = FGBFI::getLongitude();
217     MakeTargetLatLonStr( TargetLatitude, TargetLongitude );
218 }
219
220
221 static double NormalizeDegrees( double Input ) {
222     // normalize the input to the range (-180,180]
223     // Input should not be greater than -360 to 360.
224     // Current rules send the output to an undefined state.
225     if ( Input > 180 )
226         while(Input > 180 )
227             Input -= 360;
228     else if ( Input <= -180 )
229         while ( Input <= -180 )
230             Input += 360;
231     return ( Input );
232 };
233
234 static double LinearExtrapolate( double x, double x1, double y1, double x2, double y2 ) {
235     // This procedure extrapolates the y value for the x posistion on a line defined by x1,y1; x2,y2
236     //assert(x1 != x2); // Divide by zero error.  Cold abort for now
237
238         // Could be
239         // static double y = 0.0;
240         // double dx = x2 -x1;
241         // if( (dx < -FG_EPSILON ) || ( dx > FG_EPSILON ) )
242         // {
243
244     double m, b, y;          // the constants to find in y=mx+b
245     // double m, b;
246
247     m = ( y2 - y1 ) / ( x2 - x1 );   // calculate the m
248
249     b = y1 - m * x1;       // calculate the b
250
251     y = m * x + b;       // the final calculation
252
253     // }
254
255     return ( y );
256
257 };
258
259
260 int FGAutopilot::run() {
261     // Remove the following lines when the calling funcitons start
262     // passing in the data pointer
263
264     // get control settings 
265     // double aileron = FGBFI::getAileron();
266     // double elevator = FGBFI::getElevator();
267     // double elevator_trim = FGBFI::getElevatorTrim();
268     // double rudder = FGBFI::getRudder();
269         
270     double lat = FGBFI::getLatitude();
271     double lon = FGBFI::getLongitude();
272
273 #ifdef FG_FORCE_AUTO_DISENGAGE
274     // see if somebody else has changed them
275     if( fabs(aileron - old_aileron) > disengage_threshold ||
276         fabs(elevator - old_elevator) > disengage_threshold ||
277         fabs(elevator_trim - old_elevator_trim) > 
278         disengage_threshold ||          
279         fabs(rudder - old_rudder) > disengage_threshold )
280     {
281         // if controls changed externally turn autopilot off
282         waypoint_hold = false ;   // turn the target hold off
283         heading_hold = false ;    // turn the heading hold off
284         altitude_hold = false ;   // turn the altitude hold off
285         terrain_follow = false;   // turn the terrain_follow hold off
286         // auto_throttle = false; // turn the auto_throttle off
287
288         // stash this runs control settings
289         old_aileron = aileron;
290         old_elevator = elevator;
291         old_elevator_trim = elevator_trim;
292         old_rudder = rudder;
293         
294         return 0;
295     }
296 #endif
297         
298     // heading hold enabled?
299     if ( heading_hold == true ) {
300
301         if ( heading_mode == FG_HEADING_LOCK ) {
302             // leave target heading alone
303         } else if ( heading_mode == FG_HEADING_NAV1 ) {
304             double tgt_radial = current_radiostack->get_nav1_radial();
305             double cur_radial = current_radiostack->get_nav1_heading() + 180.0;
306             // cout << "target rad = " << tgt_radial 
307             //      << "  current rad = " << cur_radial
308             //      << endl;
309
310             double diff = (tgt_radial - cur_radial) 
311                 * (current_radiostack->get_nav1_dist() * METER_TO_NM);
312             if ( diff < -30.0 ) { diff = -30.0; }
313             if ( diff >  30.0 ) { diff =  30.0; }
314
315             TargetHeading = cur_radial - diff;
316             while ( TargetHeading <   0.0 ) { TargetHeading += 360.0; }
317             while ( TargetHeading > 360.0 ) { TargetHeading -= 360.0; }
318             // cout << "target course = " << TargetHeading << endl;
319         } else if ( heading_mode == FG_HEADING_WAYPOINT ) {
320             // update target heading to waypoint
321
322             double wp_course, wp_reverse, wp_distance;
323
324 #ifdef DO_fgAP_CORRECTED_COURSE
325             // compute course made good
326             // this needs lots of special casing before use
327             double course, reverse, distance, corrected_course;
328             // need to test for iter
329             geo_inverse_wgs_84( 0, //fgAPget_altitude(),
330                                 old_lat,
331                                 old_lon,
332                                 lat,
333                                 lon,
334                                 &course,
335                                 &reverse,
336                                 &distance );
337 #endif // DO_fgAP_CORRECTED_COURSE
338
339             // compute course to way_point
340             // need to test for iter
341             if( ! geo_inverse_wgs_84( 0, //fgAPget_altitude(),
342                                       lat,
343                                       lon,
344                                       TargetLatitude,
345                                       TargetLongitude,
346                                       &wp_course,
347                                       &wp_reverse,
348                                       &wp_distance ) ) {
349                 
350 #ifdef DO_fgAP_CORRECTED_COURSE
351                 corrected_course = course - wp_course;
352                 if( fabs(corrected_course) > 0.1 )
353                     printf("fgAP: course %f  wp_course %f  %f  %f\n",
354                            course, wp_course, fabs(corrected_course),
355                            distance );
356 #endif // DO_fgAP_CORRECTED_COURSE
357                 
358                 if ( wp_distance > 100 ) {
359                     // corrected_course = course - wp_course;
360                     TargetHeading = NormalizeDegrees(wp_course);
361                 } else {
362                     printf("distance(%f) to close\n", wp_distance);
363                     // Real Close -- set heading hold to current heading
364                     // and Ring the arival bell !!
365                     heading_mode = FG_HEADING_LOCK;
366                     // use current heading
367                     TargetHeading = FGBFI::getHeading();
368                 }
369                 MakeTargetHeadingStr( TargetHeading );
370                 // Force this just in case
371                 TargetDistance = wp_distance;
372                 MakeTargetDistanceStr( wp_distance );
373             }
374         }
375
376         double RelHeading;
377         double TargetRoll;
378         double RelRoll;
379         double AileronSet;
380
381         RelHeading = NormalizeDegrees( TargetHeading - FGBFI::getHeading() );
382         // figure out how far off we are from desired heading
383
384         // Now it is time to deterime how far we should be rolled.
385         FG_LOG( FG_AUTOPILOT, FG_DEBUG, "RelHeading: " << RelHeading );
386
387
388         // Check if we are further from heading than the roll out point
389         if ( fabs( RelHeading ) > RollOut ) {
390             // set Target Roll to Max in desired direction
391             if ( RelHeading < 0 ) {
392                 TargetRoll = 0 - MaxRoll;
393             } else {
394                 TargetRoll = MaxRoll;
395             }
396         } else {
397             // We have to calculate the Target roll
398
399             // This calculation engine thinks that the Target roll
400             // should be a line from (RollOut,MaxRoll) to (-RollOut,
401             // -MaxRoll) I hope this works well.  If I get ambitious
402             // some day this might become a fancier curve or
403             // something.
404
405             TargetRoll = LinearExtrapolate( RelHeading, -RollOut,
406                                             -MaxRoll, RollOut,
407                                             MaxRoll );
408         }
409
410         // Target Roll has now been Found.
411
412         // Compare Target roll to Current Roll, Generate Rel Roll
413
414         FG_LOG( FG_COCKPIT, FG_BULK, "TargetRoll: " << TargetRoll );
415
416         RelRoll = NormalizeDegrees( TargetRoll - FGBFI::getRoll() );
417
418         // Check if we are further from heading than the roll out smooth point
419         if ( fabs( RelRoll ) > RollOutSmooth ) {
420             // set Target Roll to Max in desired direction
421             if ( RelRoll < 0 ) {
422                 AileronSet = 0 - MaxAileron;
423             } else {
424                 AileronSet = MaxAileron;
425             }
426         } else {
427             AileronSet = LinearExtrapolate( RelRoll, -RollOutSmooth,
428                                             -MaxAileron,
429                                             RollOutSmooth,
430                                             MaxAileron );
431         }
432
433         controls.set_aileron( AileronSet );
434         controls.set_rudder( AileronSet / 4.0 );
435         // controls.set_rudder( 0.0 );
436     }
437
438     // altitude hold?
439     if ( altitude_hold ) {
440         double speed, max_climb, error;
441         double prop_error, int_error;
442         double prop_adj, int_adj, total_adj;
443
444         if ( altitude_mode == FG_ALTITUDE_LOCK ) {
445             // normal altitude hold
446             // cout << "TargetAltitude = " << TargetAltitude
447             //      << "Altitude = " << FGBFI::getAltitude() * FEET_TO_METER
448             //      << endl;
449             TargetClimbRate =
450                 ( TargetAltitude - FGBFI::getAltitude() * FEET_TO_METER ) * 8.0;
451         } else if ( altitude_mode == FG_ALTITUDE_GS1 ) {
452             double x = current_radiostack->get_nav1_dist();
453             double y = (FGBFI::getAltitude() 
454                         - current_radiostack->get_nav1_elev()) * FEET_TO_METER;
455             double angle = atan2( y, x ) * RAD_TO_DEG;
456             double gs_diff = current_radiostack->get_nav1_target_gs() - angle;
457             climb_error_accum += gs_diff * 2.0;
458             TargetClimbRate = gs_diff * 200.0 + climb_error_accum;
459         } else if ( altitude_mode == FG_ALTITUDE_TERRAIN ) {
460             // brain dead ground hugging with no look ahead
461             TargetClimbRate =
462                 ( TargetAGL - FGBFI::getAGL()*FEET_TO_METER ) * 16.0;
463             // cout << "target agl = " << TargetAGL 
464             //      << "  current agl = " << fgAPget_agl() 
465             //      << "  target climb rate = " << TargetClimbRate 
466             //      << endl;
467         } else {
468             // just try to zero out rate of climb ...
469             TargetClimbRate = 0.0;
470         }
471
472         speed = get_speed();
473
474         if ( speed < min_climb ) {
475             max_climb = 0.0;
476         } else if ( speed < best_climb ) {
477             max_climb = ((best_climb - min_climb) - (best_climb - speed)) 
478                 * ideal_climb_rate 
479                 / (best_climb - min_climb);
480         } else {                        
481             max_climb = ( speed - best_climb ) * 10.0 + ideal_climb_rate;
482         }
483
484         // this first one could be optional if we wanted to allow
485         // better climb performance assuming we have the airspeed to
486         // support it.
487         if ( TargetClimbRate > ideal_climb_rate ) {
488             TargetClimbRate = ideal_climb_rate;
489         }
490
491         if ( TargetClimbRate > max_climb ) {
492             TargetClimbRate = max_climb;
493         }
494
495         if ( TargetClimbRate < -ideal_climb_rate ) {
496             TargetClimbRate = -ideal_climb_rate;
497         }
498
499         error = FGBFI::getVerticalSpeed() * FEET_TO_METER - TargetClimbRate;
500         // cout << "climb rate = " << fgAPget_climb() 
501         //      << "  error = " << error << endl;
502
503         // accumulate the error under the curve ... this really should
504         // be *= delta t
505         alt_error_accum += error;
506
507         // calculate integral error, and adjustment amount
508         int_error = alt_error_accum;
509         // printf("error = %.2f  int_error = %.2f\n", error, int_error);
510         int_adj = int_error / 8000.0;
511
512         // caclulate proportional error
513         prop_error = error;
514         prop_adj = prop_error / 2000.0;
515
516         total_adj = 0.9 * prop_adj + 0.1 * int_adj;
517         // if ( total_adj > 0.6 ) {
518         //     total_adj = 0.6;
519         // } else if ( total_adj < -0.2 ) {
520         //     total_adj = -0.2;
521         // }
522         if ( total_adj > 1.0 ) {
523             total_adj = 1.0;
524         } else if ( total_adj < -1.0 ) {
525             total_adj = -1.0;
526         }
527
528         controls.set_elevator( total_adj );
529     }
530
531     // auto throttle enabled?
532     if ( auto_throttle ) {
533         double error;
534         double prop_error, int_error;
535         double prop_adj, int_adj, total_adj;
536
537         error = TargetSpeed - get_speed();
538
539         // accumulate the error under the curve ... this really should
540         // be *= delta t
541         speed_error_accum += error;
542         if ( speed_error_accum > 2000.0 ) {
543             speed_error_accum = 2000.0;
544         }
545         else if ( speed_error_accum < -2000.0 ) {
546             speed_error_accum = -2000.0;
547         }
548
549         // calculate integral error, and adjustment amount
550         int_error = speed_error_accum;
551
552         // printf("error = %.2f  int_error = %.2f\n", error, int_error);
553         int_adj = int_error / 200.0;
554
555         // caclulate proportional error
556         prop_error = error;
557         prop_adj = 0.5 + prop_error / 50.0;
558
559         total_adj = 0.9 * prop_adj + 0.1 * int_adj;
560         if ( total_adj > 1.0 ) {
561             total_adj = 1.0;
562         }
563         else if ( total_adj < 0.0 ) {
564             total_adj = 0.0;
565         }
566
567         controls.set_throttle( FGControls::ALL_ENGINES, total_adj );
568     }
569
570 #ifdef THIS_CODE_IS_NOT_USED
571     if (Mode == 2) // Glide slope hold
572         {
573             double RelSlope;
574             double RelElevator;
575
576             // First, calculate Relative slope and normalize it
577             RelSlope = NormalizeDegrees( TargetSlope - get_pitch());
578
579             // Now calculate the elevator offset from current angle
580             if ( abs(RelSlope) > SlopeSmooth )
581                 {
582                     if ( RelSlope < 0 )     //  set RelElevator to max in the correct direction
583                         RelElevator = -MaxElevator;
584                     else
585                         RelElevator = MaxElevator;
586                 }
587
588             else
589                 RelElevator = LinearExtrapolate(RelSlope,-SlopeSmooth,-MaxElevator,SlopeSmooth,MaxElevator);
590
591             // set the elevator
592             fgElevMove(RelElevator);
593
594         }
595 #endif // THIS_CODE_IS_NOT_USED
596
597     // stash this runs control settings
598     //  update_old_control_values();
599     old_aileron = controls.get_aileron();
600     old_elevator = controls.get_elevator();
601     old_elevator_trim = controls.get_elevator_trim();
602     old_rudder = controls.get_rudder();
603
604     // for cross track error
605     old_lat = lat;
606     old_lon = lon;
607         
608         // Ok, we are done
609     return 0;
610 }
611
612
613 void FGAutopilot::set_HeadingMode( fgAutoHeadingMode mode ) {
614     heading_mode = mode;
615
616     if ( heading_mode == FG_HEADING_LOCK ) {
617         // set heading hold to current heading
618         TargetHeading = FGBFI::getHeading();
619     } else if ( heading_mode == FG_HEADING_WAYPOINT ) {
620         double course, reverse, distance;
621         // turn on location hold
622         // turn on heading hold
623         old_lat = FGBFI::getLatitude();
624         old_lon = FGBFI::getLongitude();
625                         
626         // need to test for iter
627         if( !geo_inverse_wgs_84( FGBFI::getAltitude() * FEET_TO_METER,
628                                  FGBFI::getLatitude(),
629                                  FGBFI::getLongitude(),
630                                  TargetLatitude,
631                                  TargetLongitude,
632                                  &course,
633                                  &reverse,
634                                  &distance ) ) {
635             TargetHeading = course;
636             TargetDistance = distance;
637             MakeTargetDistanceStr( distance );
638         }
639
640         FG_LOG( FG_COCKPIT, FG_INFO, " fgAPSetLocation: ( "
641                 << TargetLatitude  << " "
642                 << TargetLongitude << " ) "
643                 );
644     }
645         
646     MakeTargetHeadingStr( TargetHeading );                      
647     update_old_control_values();
648 }
649
650
651 void FGAutopilot::set_AltitudeMode( fgAutoAltitudeMode mode ) {
652     altitude_mode = mode;
653
654     alt_error_accum = 0.0;
655
656     if ( altitude_mode == FG_ALTITUDE_LOCK ) {
657         // lock at current altitude
658         TargetAltitude = FGBFI::getAltitude() * FEET_TO_METER;
659
660         if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET ) {
661             MakeTargetAltitudeStr( TargetAltitude * METER_TO_FEET );
662         } else {
663             MakeTargetAltitudeStr( TargetAltitude * METER_TO_FEET );
664         }
665     } else if ( altitude_mode == FG_ALTITUDE_GS1 ) {
666         climb_error_accum = 0.0;
667
668     } else if ( altitude_mode == FG_ALTITUDE_TERRAIN ) {
669         TargetAGL = FGBFI::getAGL() * FEET_TO_METER;
670
671         if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET ) {
672             MakeTargetAltitudeStr( TargetAGL * METER_TO_FEET );
673         } else {
674             MakeTargetAltitudeStr( TargetAGL * METER_TO_FEET );
675         }
676     }
677     
678     update_old_control_values();
679     FG_LOG( FG_COCKPIT, FG_INFO, " set_AltitudeMode():" );
680 }
681
682
683 #if 0
684 static inline double get_aoa( void ) {
685     return( cur_fdm_state->get_Gamma_vert_rad() * RAD_TO_DEG );
686 }
687
688 static inline double fgAPget_latitude( void ) {
689     return( cur_fdm_state->get_Latitude() * RAD_TO_DEG );
690 }
691
692 static inline double fgAPget_longitude( void ) {
693     return( cur_fdm_state->get_Longitude() * RAD_TO_DEG );
694 }
695
696 static inline double fgAPget_roll( void ) {
697     return( cur_fdm_state->get_Phi() * RAD_TO_DEG );
698 }
699
700 static inline double get_pitch( void ) {
701     return( cur_fdm_state->get_Theta() );
702 }
703
704 double fgAPget_heading( void ) {
705     return( cur_fdm_state->get_Psi() * RAD_TO_DEG );
706 }
707
708 static inline double fgAPget_altitude( void ) {
709     return( cur_fdm_state->get_Altitude() * FEET_TO_METER );
710 }
711
712 static inline double fgAPget_climb( void ) {
713     // return in meters per minute
714     return( cur_fdm_state->get_Climb_Rate() * FEET_TO_METER * 60 );
715 }
716
717 static inline double get_sideslip( void ) {
718     return( cur_fdm_state->get_Beta() );
719 }
720
721 static inline double fgAPget_agl( void ) {
722     double agl;
723
724     agl = cur_fdm_state->get_Altitude() * FEET_TO_METER
725         - scenery.cur_elev;
726
727     return( agl );
728 }
729 #endif
730
731
732 void FGAutopilot::AltitudeSet( double new_altitude ) {
733     double target_alt = new_altitude;
734
735     // cout << "new altitude = " << new_altitude << endl;
736
737     if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET ) {
738         target_alt = new_altitude * FEET_TO_METER;
739     }
740
741     if( target_alt < scenery.cur_elev ) {
742         target_alt = scenery.cur_elev;
743     }
744
745     TargetAltitude = target_alt;
746     altitude_mode = FG_ALTITUDE_LOCK;
747
748     // cout << "TargetAltitude = " << TargetAltitude << endl;
749
750     if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET ) {
751         target_alt *= METER_TO_FEET;
752     }
753     // ApAltitudeDialogInput->setValue((float)target_alt);
754     MakeTargetAltitudeStr( target_alt );
755         
756     update_old_control_values();
757 }
758
759
760 void FGAutopilot::AltitudeAdjust( double inc )
761 {
762     double target_alt, target_agl;
763
764     if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET ) {
765         target_alt = TargetAltitude * METER_TO_FEET;
766         target_agl = TargetAGL * METER_TO_FEET;
767     } else {
768         target_alt = TargetAltitude;
769         target_agl = TargetAGL;
770     }
771
772     target_alt = ( int ) ( target_alt / inc ) * inc + inc;
773     target_agl = ( int ) ( target_agl / inc ) * inc + inc;
774
775     if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET ) {
776         target_alt *= FEET_TO_METER;
777         target_agl *= FEET_TO_METER;
778     }
779
780     TargetAltitude = target_alt;
781     TargetAGL = target_agl;
782         
783     if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET )
784         target_alt *= METER_TO_FEET;
785     if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET )
786         target_agl *= METER_TO_FEET;
787
788     if ( altitude_mode == FG_ALTITUDE_LOCK ) {
789         MakeTargetAltitudeStr( target_alt );
790     } else if ( altitude_mode == FG_ALTITUDE_TERRAIN ) {
791         MakeTargetAltitudeStr( target_agl );
792     }
793
794     update_old_control_values();
795 }
796
797
798 void FGAutopilot::HeadingAdjust( double inc ) {
799     heading_mode = FG_HEADING_LOCK;
800         
801     double target = ( int ) ( TargetHeading / inc ) * inc + inc;
802
803     TargetHeading = NormalizeDegrees( target );
804     // following cast needed ambiguous plib
805     // ApHeadingDialogInput -> setValue ((float)TargetHeading );
806     MakeTargetHeadingStr( TargetHeading );                      
807     update_old_control_values();
808 }
809
810
811 void FGAutopilot::HeadingSet( double new_heading ) {
812     heading_mode = FG_HEADING_LOCK;
813         
814     new_heading = NormalizeDegrees( new_heading );
815     TargetHeading = new_heading;
816     // following cast needed ambiguous plib
817     // ApHeadingDialogInput -> setValue ((float)APData->TargetHeading );
818     MakeTargetHeadingStr( TargetHeading );                      
819     update_old_control_values();
820 }
821
822 void FGAutopilot::AutoThrottleAdjust( double inc ) {
823     double target = ( int ) ( TargetSpeed / inc ) * inc + inc;
824
825     TargetSpeed = target;
826 }
827
828
829 void FGAutopilot::set_AutoThrottleEnabled( bool value ) {
830     auto_throttle = value;
831
832     if ( auto_throttle = true ) {
833         TargetSpeed = FGBFI::getAirspeed();
834         speed_error_accum = 0.0;
835     }
836
837     update_old_control_values();
838     FG_LOG( FG_COCKPIT, FG_INFO, " fgAPSetAutoThrottle: ("
839             << auto_throttle << ") " << TargetSpeed );
840 }