From: curt Date: Tue, 29 Sep 1998 02:03:36 +0000 (+0000) Subject: Autopilot mods. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a09d8f2d621a2904051f79b788fed8a4ef5f9c43;p=flightgear.git Autopilot mods. --- diff --git a/Main/GLUTkey.cxx b/Main/GLUTkey.cxx index 14659f698..7af293560 100644 --- a/Main/GLUTkey.cxx +++ b/Main/GLUTkey.cxx @@ -38,7 +38,7 @@ #include #include #include -#include // Added autopilot.h to list, Jeff Goeke-Smith +#include #include #include #include @@ -88,6 +88,12 @@ void GLUTkey(unsigned char k, int x, int y) { if ( GLUT_ACTIVE_ALT && glutGetModifiers() ) { fgPrintf( FG_INPUT, FG_DEBUG, " SHIFTED\n"); switch (k) { + case 1: // Ctrl-A key + fgAPToggleAltitude(); + return; + case 8: // Ctrl-H key + fgAPToggleHeading(); + return; case 49: // numeric keypad 1 v->goal_view_offset = FG_PI * 0.75; return; @@ -151,16 +157,6 @@ void GLUTkey(unsigned char k, int x, int y) { tmp /= 1.10; fgWeatherSetVisibility( tmp ); return; - // autopilot additions - case 65: // A key - fgAPSetMode(1); - return; - case 83: // S key - fgAPSetMode(0); - return; - case 68: // D key - fgAPSetHeading(AP_CURRENT_HEADING); - return; } } else { fgPrintf( FG_INPUT, FG_DEBUG, "\n"); @@ -200,6 +196,13 @@ void GLUTkey(unsigned char k, int x, int y) { case 51: // numeric keypad 3 (Pg Dn) fgThrottleMove(0, -0.01); return; + case 98: // b key + int b_ret; + double b_set; + b_ret = int( fgBrakeGet() ); + b_set = double(!b_ret); + fgBrakeSet(b_set); + return; case 104: // h key HUD_brightkey( false ); return; @@ -372,6 +375,9 @@ void GLUTspecialkey(int k, int x, int y) { // $Log$ +// Revision 1.25 1998/09/29 02:03:36 curt +// Autopilot mods. +// // Revision 1.24 1998/09/26 13:16:44 curt // C++-ified the comments. // diff --git a/Main/GLUTmain.cxx b/Main/GLUTmain.cxx index 68e33eb89..c47f4eed8 100644 --- a/Main/GLUTmain.cxx +++ b/Main/GLUTmain.cxx @@ -62,6 +62,7 @@ # include