From: curt Date: Fri, 12 Jun 1998 00:57:38 +0000 (+0000) Subject: Added support for Pui/Gui. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9ebfc125264081bb4e891151cfacef5f800866e9;p=flightgear.git Added support for Pui/Gui. Converted fog to GL_FOG_EXP2. Link to static simulator parts. Update runfg.bat to try to be a little smarter. --- diff --git a/Main/GLUTkey.cxx b/Main/GLUTkey.cxx index 3f49a0944..824217dd6 100644 --- a/Main/GLUTkey.cxx +++ b/Main/GLUTkey.cxx @@ -40,7 +40,9 @@ #include #include // Added autopilot.h to list, Jeff Goeke-Smith #include +#include #include +#include #include #include "GLUTkey.hxx" @@ -58,6 +60,7 @@ void GLUTkey(unsigned char k, int x, int y) { fgTIME *t; fgVIEW *v; struct fgWEATHER *w; + float tmp; c = current_aircraft.controls; o = ¤t_options; @@ -66,6 +69,7 @@ void GLUTkey(unsigned char k, int x, int y) { w = ¤t_weather; fgPrintf( FG_INPUT, FG_DEBUG, "Key hit = %d", k); + puKeyboard(k, PU_DOWN ); if ( GLUT_ACTIVE_ALT && glutGetModifiers() ) { fgPrintf( FG_INPUT, FG_DEBUG, " SHIFTED\n"); @@ -114,11 +118,9 @@ void GLUTkey(unsigned char k, int x, int y) { v->update_fov = TRUE; return; case 90: /* Z key */ - w->visibility /= 1.10; - xglFogf (GL_FOG_START, w->visibility / 1000000.0 ); - xglFogf(GL_FOG_END, w->visibility); - fgPrintf( FG_INPUT, FG_DEBUG, - "Fog density = %.4f\n", w->visibility ); + tmp = fgWeatherGetVisibility(); /* in meters */ + tmp /= 1.10; + fgWeatherSetVisibility( tmp ); return; // autopilot additions case 65: /* A key */ @@ -183,11 +185,9 @@ void GLUTkey(unsigned char k, int x, int y) { v->update_fov = TRUE; return; case 122: /* z key */ - w->visibility *= 1.10; - xglFogf (GL_FOG_START, w->visibility / 1000000.0 ); - xglFogf(GL_FOG_END, w->visibility); - fgPrintf( FG_INPUT, FG_DEBUG, - "Fog density = %.4f\n", w->visibility); + tmp = fgWeatherGetVisibility(); /* in meters */ + tmp *= 1.10; + fgWeatherSetVisibility( tmp ); return; case 27: /* ESC */ // if( fg_DebugOutput ) { @@ -209,6 +209,7 @@ void GLUTspecialkey(int k, int x, int y) { v = ¤t_view; fgPrintf( FG_INPUT, FG_DEBUG, "Special key hit = %d", k); + puKeyboard(k + PU_KEY_GLUT_SPECIAL_OFFSET, PU_DOWN); if ( GLUT_ACTIVE_SHIFT && glutGetModifiers() ) { fgPrintf( FG_INPUT, FG_DEBUG, " SHIFTED\n"); @@ -241,6 +242,13 @@ void GLUTspecialkey(int k, int x, int y) { } else { fgPrintf( FG_INPUT, FG_DEBUG, "\n"); switch (k) { + case GLUT_KEY_F10: /* F10 toggles menu on and off... */ + printf("Invoking call back function"); + hideMenuButton -> + setValue ((int) !(hideMenuButton -> getValue() ) ); + hideMenuButton -> invokeCallback(); + //exit(1); + return; case GLUT_KEY_UP: fgElevMove(0.05); return; @@ -282,9 +290,15 @@ void GLUTspecialkey(int k, int x, int y) { /* $Log$ -/* Revision 1.10 1998/05/27 02:24:05 curt -/* View optimizations by Norman Vine. +/* Revision 1.11 1998/06/12 00:57:38 curt +/* Added support for Pui/Gui. +/* Converted fog to GL_FOG_EXP2. +/* Link to static simulator parts. +/* Update runfg.bat to try to be a little smarter. /* + * Revision 1.10 1998/05/27 02:24:05 curt + * View optimizations by Norman Vine. + * * Revision 1.9 1998/05/16 13:05:21 curt * Added limits to fov. * diff --git a/Main/GLUTmain.cxx b/Main/GLUTmain.cxx index cc8508a18..c6cb8699e 100644 --- a/Main/GLUTmain.cxx +++ b/Main/GLUTmain.cxx @@ -58,10 +58,12 @@ #include #include +#include #include #include #include #include +#include #include #include #include