]> git.mxchange.org Git - flightgear.git/blob - Main/GLUTkey.cxx
Turned "struct fgCONTROLS" into a class, with inlined accessor functions.
[flightgear.git] / Main / GLUTkey.cxx
1 // GLUTkey.cxx -- handle GLUT keyboard events
2 //
3 // Written by Curtis Olson, started May 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@me.umn.edu
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #ifdef HAVE_WINDOWS_H
30 #  include <windows.h>                     
31 #endif
32
33 #include <GL/glut.h>
34 #include <XGL/xgl.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37
38 #include <Aircraft/aircraft.hxx>
39 #include <Astro/solarsystem.hxx>
40 #include <Astro/sky.hxx>
41 #include <Autopilot/autopilot.hxx>
42 #include <Cockpit/hud.hxx>
43 #include <Debug/fg_debug.h>
44 #include <GUI/gui.h>
45 #include <Include/fg_constants.h>
46 #include <Objects/material.hxx>
47 #include <PUI/pu.h>
48 #include <Time/light.hxx>
49 #include <Weather/weather.hxx>
50
51 #include "GLUTkey.hxx"
52 #include "options.hxx"
53 #include "views.hxx"
54
55 #if defined(FX) && defined(XMESA)
56 #  include <GL/xmesa.h>
57    static int fullscreen = 1;
58 #endif
59
60
61 // Force an update of the sky and lighting parameters
62 static void local_update_sky_and_lighting_params( void ) {
63     // fgSunInit();
64     SolarSystem::theSolarSystem->rebuild();
65     cur_light_params.Update();
66     fgSkyColorsInit();
67 }
68
69
70 // Handle keyboard events
71 void GLUTkey(unsigned char k, int x, int y) {
72     fgFLIGHT *f;
73     fgTIME *t;
74     fgVIEW *v;
75     struct fgWEATHER *w;
76     float fov, tmp;
77     static bool winding_ccw = true;
78
79     f = current_aircraft.flight;
80     t = &cur_time_params;
81     v = &current_view;
82     w = &current_weather;
83
84     fgPrintf( FG_INPUT, FG_DEBUG, "Key hit = %d", k);
85     puKeyboard(k, PU_DOWN );
86
87     if ( GLUT_ACTIVE_ALT && glutGetModifiers() ) {
88         fgPrintf( FG_INPUT, FG_DEBUG, " SHIFTED\n");
89         switch (k) {
90         case 1: // Ctrl-A key
91             fgAPToggleAltitude();
92             return;
93         case 8: // Ctrl-H key
94             fgAPToggleHeading();
95             return;
96         case 18: // Ctrl-R key
97             // temporary
98             winding_ccw = !winding_ccw;
99             if ( winding_ccw ) {
100                 glFrontFace ( GL_CCW );
101             } else {
102                 glFrontFace ( GL_CW );
103             }
104             return;
105         case 19: // Ctrl-S key
106             fgAPToggleAutoThrottle();
107             return;
108         case 20: // Ctrl-T key
109             fgAPToggleTerrainFollow();
110             return;
111         case 49: // numeric keypad 1
112             v->goal_view_offset = FG_PI * 0.75;
113             return;
114         case 50: // numeric keypad 2
115             v->goal_view_offset = FG_PI;
116             return;
117         case 51: // numeric keypad 3
118             v->goal_view_offset = FG_PI * 1.25;
119             return;
120         case 52: // numeric keypad 4
121             v->goal_view_offset = FG_PI * 0.50;
122             return;
123         case 54: // numeric keypad 6
124             v->goal_view_offset = FG_PI * 1.50;
125             return;
126         case 55: // numeric keypad 7
127             v->goal_view_offset = FG_PI * 0.25;
128             return;
129         case 56: // numeric keypad 8
130             v->goal_view_offset = 0.00;
131             return;
132         case 57: // numeric keypad 9
133             v->goal_view_offset = FG_PI * 1.75;
134             return;
135         case 72: // H key
136             // status = current_options.get_hud_status();
137             // current_options.set_hud_status(!status);
138             HUD_brightkey( true );
139             return;
140         case 73: // i key
141             // Minimal Hud
142             fgHUDInit2(&current_aircraft);
143             return;
144         case 77: // M key
145             t->warp -= 60;
146             local_update_sky_and_lighting_params();
147             return;
148         case 84: // T key
149             t->warp_delta -= 30;
150             local_update_sky_and_lighting_params();
151             return;
152         case 87: // W key
153 #if defined(FX) && !defined(WIN32)
154             fullscreen = ( !fullscreen );
155 #if defined(XMESA_FX_FULLSCREEN) && defined(XMESA_FX_WINDOW)
156             XMesaSetFXmode(fullscreen ? XMESA_FX_FULLSCREEN : XMESA_FX_WINDOW);
157 #endif
158 #endif
159             return;
160         case 88: // X key
161             fov = current_options.get_fov();
162             fov *= 1.05;
163             if ( fov > FG_FOV_MAX ) {
164                 fov = FG_FOV_MAX;
165             }
166             current_options.set_fov(fov);
167             v->update_fov = TRUE;
168             return;
169         case 90: // Z key
170             tmp = fgWeatherGetVisibility();   // in meters
171             tmp /= 1.10;
172             fgWeatherSetVisibility( tmp );
173             return;
174         }
175     } else {
176         fgPrintf( FG_INPUT, FG_DEBUG, "\n");
177         switch (k) {
178         case 50: // numeric keypad 2
179             controls.move_elevator(-0.05);
180             return;
181         case 56: // numeric keypad 8
182             controls.move_elevator(0.05);
183             return;
184         case 49: // numeric keypad 1
185             controls.move_elevator_trim(-0.001);
186             return;
187         case 55: // numeric keypad 7
188             controls.move_elevator_trim(0.001);
189             return;
190         case 52: // numeric keypad 4
191             controls.move_aileron(-0.05);
192             return;
193         case 54: // numeric keypad 6
194             controls.move_aileron(0.05);
195             return;
196         case 48: // numeric keypad Ins
197             controls.move_rudder(-0.05);
198             return;
199         case 13: // numeric keypad Enter
200             controls.move_rudder(0.05);
201             return;
202         case 53: // numeric keypad 5
203             controls.set_aileron(0.0);
204             controls.set_elevator(0.0);
205             controls.set_rudder(0.0);
206             return;
207         case 57: // numeric keypad 9 (Pg Up)
208             controls.move_throttle( fgCONTROLS::FG_ALL_ENGINES, 0.01 );
209             return;
210         case 51: // numeric keypad 3 (Pg Dn)
211             controls.move_throttle( fgCONTROLS::FG_ALL_ENGINES, -0.01 );
212             return;
213         case 98: // b key
214             int b_ret;
215             double b_set;
216             b_ret = int( controls.get_brake( 0 ) );
217             b_set = double(!b_ret);
218             controls.set_brake( fgCONTROLS::FG_ALL_WHEELS, b_set);
219             return;
220         case 104: // h key
221             HUD_brightkey( false );
222             return;
223         case 105: // i key
224             fgHUDInit(&current_aircraft);  // normal HUD
225             return;
226         case 109: // m key
227             t->warp += 60;
228             local_update_sky_and_lighting_params();
229             return;
230         case 112: // p key
231             t->pause = !t->pause;
232             // printf position and attitude information
233             fgPrintf( FG_INPUT, FG_INFO,
234                       "Lon = %.4f  Lat = %.4f  Altitude = %.1f\n", 
235                       FG_Longitude * RAD_TO_DEG,
236                       FG_Latitude * RAD_TO_DEG,
237                       FG_Altitude * FEET_TO_METER);
238             fgPrintf( FG_INPUT, FG_INFO,
239                       "Heading = %.2f  Roll = %.2f  Pitch = %.2f\n", 
240                       FG_Psi * RAD_TO_DEG,
241                       FG_Phi * RAD_TO_DEG,
242                       FG_Theta * RAD_TO_DEG);
243             return;
244         case 116: // t key
245             t->warp_delta += 30;
246             local_update_sky_and_lighting_params();
247             return;
248         case 120: // X key
249             fov = current_options.get_fov();
250             fov /= 1.05;
251             if ( fov < FG_FOV_MIN ) {
252                 fov = FG_FOV_MIN;
253             }
254             current_options.set_fov(fov);
255             v->update_fov = TRUE;
256             return;
257         case 122: // z key
258             tmp = fgWeatherGetVisibility();   // in meters
259             tmp *= 1.10;
260             fgWeatherSetVisibility( tmp );
261             return;
262         case 27: // ESC
263             // if( fg_DebugOutput ) {
264             //   fclose( fg_DebugOutput );
265             // }
266             fgPrintf( FG_INPUT, FG_EXIT, 
267                       "Program exiting normally at user request.\n");
268         }
269     }
270 }
271
272
273 // Handle "special" keyboard events
274 void GLUTspecialkey(int k, int x, int y) {
275     fgCONTROLS *c;
276     fgVIEW *v;
277
278     c = current_aircraft.controls;
279     v = &current_view;
280
281     fgPrintf( FG_INPUT, FG_DEBUG, "Special key hit = %d", k);
282     puKeyboard(k + PU_KEY_GLUT_SPECIAL_OFFSET, PU_DOWN);
283
284     if ( GLUT_ACTIVE_SHIFT && glutGetModifiers() ) {
285         fgPrintf( FG_INPUT, FG_DEBUG, " SHIFTED\n");
286         switch (k) {
287         case GLUT_KEY_END: // numeric keypad 1
288             v->goal_view_offset = FG_PI * 0.75;
289             return;
290         case GLUT_KEY_DOWN: // numeric keypad 2
291             v->goal_view_offset = FG_PI;
292             return;
293         case GLUT_KEY_PAGE_DOWN: // numeric keypad 3
294             v->goal_view_offset = FG_PI * 1.25;
295             return;
296         case GLUT_KEY_LEFT: // numeric keypad 4
297             v->goal_view_offset = FG_PI * 0.50;
298             return;
299         case GLUT_KEY_RIGHT: // numeric keypad 6
300             v->goal_view_offset = FG_PI * 1.50;
301             return;
302         case GLUT_KEY_HOME: // numeric keypad 7
303             v->goal_view_offset = FG_PI * 0.25;
304             return;
305         case GLUT_KEY_UP: // numeric keypad 8
306             v->goal_view_offset = 0.00;
307             return;
308         case GLUT_KEY_PAGE_UP: // numeric keypad 9
309             v->goal_view_offset = FG_PI * 1.75;
310             return;
311         }
312     } else {
313         fgPrintf( FG_INPUT, FG_DEBUG, "\n");
314         switch (k) {
315         case GLUT_KEY_F8: // F8 toggles fog ... off fastest nicest...
316             current_options.cycle_fog();
317         
318             if ( current_options.get_fog() == fgOPTIONS::FG_FOG_DISABLED ) {
319                 fgPrintf( FG_INPUT, FG_INFO, "Fog disabled\n" );
320             } else if ( current_options.get_fog() == 
321                         fgOPTIONS::FG_FOG_FASTEST )
322             {
323                 fgPrintf( FG_INPUT, FG_INFO, 
324                           "Fog enabled, hint set to fastest\n" );
325             } else if ( current_options.get_fog() ==
326                         fgOPTIONS::FG_FOG_NICEST )
327             {
328                 fgPrintf( FG_INPUT, FG_INFO,
329                           "Fog enabled, hint set to nicest\n" );
330             }
331
332             return;
333         case GLUT_KEY_F9: // F9 toggles textures on and off...
334             if ( material_mgr.get_textures_loaded() ) {
335                 current_options.get_textures() ?
336                     current_options.set_textures(false) :
337                     current_options.set_textures(true);
338                 fgPrintf( FG_INPUT, FG_INFO, "Toggling texture\n" );
339             } else {
340                 fgPrintf( FG_INPUT, FG_INFO, 
341                           "No textures loaded, cannot toggle\n" );
342             }
343             return;
344         case GLUT_KEY_F10: // F10 toggles menu on and off...
345             fgPrintf(FG_INPUT, FG_INFO, "Invoking call back function");
346             hideMenuButton -> 
347                 setValue ((int) !(hideMenuButton -> getValue() ) );
348             hideMenuButton -> invokeCallback();
349             //exit(1);
350             return;
351         case GLUT_KEY_UP:
352             controls.move_elevator(0.05);
353             return;
354         case GLUT_KEY_DOWN:
355             controls.move_elevator(-0.05);
356             return;
357         case GLUT_KEY_LEFT:
358             controls.move_aileron(-0.05);
359             return;
360         case GLUT_KEY_RIGHT:
361             controls.move_aileron(0.05);
362             return;
363         case GLUT_KEY_HOME: // numeric keypad 1
364             controls.move_elevator_trim(0.001);
365             return;
366         case GLUT_KEY_END: // numeric keypad 7
367             controls.move_elevator_trim(-0.001);
368             return;
369         case GLUT_KEY_INSERT: // numeric keypad Ins
370             controls.move_rudder(-0.05);
371             return;
372         case 13: // numeric keypad Enter
373             controls.move_rudder(0.05);
374             return;
375         case 53: // numeric keypad 5
376             controls.set_aileron(0.0);
377             controls.set_elevator(0.0);
378             controls.set_rudder(0.0);
379             return;
380         case GLUT_KEY_PAGE_UP: // numeric keypad 9 (Pg Up)
381             controls.move_throttle( fgCONTROLS::FG_ALL_ENGINES, 0.01 );
382             return;
383         case GLUT_KEY_PAGE_DOWN: // numeric keypad 3 (Pg Dn)
384             controls.move_throttle( fgCONTROLS::FG_ALL_ENGINES, -0.01 );
385             return;
386         }
387     }
388 }
389
390
391 // $Log$
392 // Revision 1.30  1998/10/25 14:08:46  curt
393 // Turned "struct fgCONTROLS" into a class, with inlined accessor functions.
394 //
395 // Revision 1.29  1998/10/20 14:58:57  curt
396 // Ctrl-R now reverses default polygon winding so I can see if a hole in the
397 // terrain is a result of improper winding, or if it is just an empty hole.
398 //
399 // Revision 1.28  1998/10/17 01:34:20  curt
400 // C++ ifying ...
401 //
402 // Revision 1.27  1998/10/02 12:46:46  curt
403 // Added an "auto throttle"
404 //
405 // Revision 1.26  1998/10/01 00:38:04  curt
406 // More altitude hold tweaks.
407 //
408 // Revision 1.25  1998/09/29 02:03:36  curt
409 // Autopilot mods.
410 //
411 // Revision 1.24  1998/09/26 13:16:44  curt
412 // C++-ified the comments.
413 //
414 // Revision 1.23  1998/09/17 18:35:30  curt
415 // Added F8 to toggle fog and F9 to toggle texturing.
416 //
417 // Revision 1.22  1998/09/15 04:27:27  curt
418 // Changes for new Astro code.
419 //
420 // Revision 1.21  1998/08/29 13:09:25  curt
421 // Changes to event manager from Bernie Bright.
422 //
423 // Revision 1.20  1998/08/24 20:11:12  curt
424 // Added i/I to toggle full vs. minimal HUD.
425 // Added a --hud-tris vs --hud-culled option.
426 // Moved options accessor funtions to options.hxx.
427 //
428 // Revision 1.19  1998/08/05 00:19:33  curt
429 // Added a local routine to update lighting params every frame when time is
430 // accelerated.
431 //
432 // Revision 1.18  1998/07/30 23:48:24  curt
433 // Output position & orientation when pausing.
434 // Eliminated libtool use.
435 // Added options to specify initial position and orientation.
436 // Changed default fov to 55 degrees.
437 // Added command line option to start in paused or unpaused state.
438 //
439 // Revision 1.17  1998/07/27 18:41:23  curt
440 // Added a pause command "p"
441 // Fixed some initialization order problems between pui and glut.
442 // Added an --enable/disable-sound option.
443 //
444 // Revision 1.16  1998/07/16 17:33:34  curt
445 // "H" / "h" now control hud brightness as well with off being one of the
446 //   states.
447 // Better checking for xmesa/fx 3dfx fullscreen/window support for deciding
448 //   whether or not to build in the feature.
449 // Translucent menu support.
450 // HAVE_AUDIO_SUPPORT -> ENABLE_AUDIO_SUPPORT
451 // Use fork() / wait() for playing mp3 init music in background under unix.
452 // Changed default tile diameter to 5.
453 //
454 // Revision 1.15  1998/07/13 21:01:34  curt
455 // Wrote access functions for current fgOPTIONS.
456 //
457 // Revision 1.14  1998/07/06 02:42:02  curt
458 // Added support for switching between fullscreen and window mode for
459 // Mesa/3dfx/glide.
460 //
461 // Added a basic splash screen.  Restructured the main loop and top level
462 // initialization routines to do this.
463 //
464 // Hacked in some support for playing a startup mp3 sound file while rest
465 // of sim initializes.  Currently only works in Unix using the mpg123 player.
466 // Waits for the mpg123 player to finish before initializing internal
467 // sound drivers.
468 //
469 // Revision 1.13  1998/06/27 16:54:32  curt
470 // Replaced "extern displayInstruments" with a entry in fgOPTIONS.
471 // Don't change the view port when displaying the panel.
472 //
473 // Revision 1.12  1998/06/12 14:27:26  curt
474 // Pui -> PUI, Gui -> GUI.
475 //
476 // Revision 1.11  1998/06/12 00:57:38  curt
477 // Added support for Pui/Gui.
478 // Converted fog to GL_FOG_EXP2.
479 // Link to static simulator parts.
480 // Update runfg.bat to try to be a little smarter.
481 //
482 // Revision 1.10  1998/05/27 02:24:05  curt
483 // View optimizations by Norman Vine.
484 //
485 // Revision 1.9  1998/05/16 13:05:21  curt
486 // Added limits to fov.
487 //
488 // Revision 1.8  1998/05/13 18:29:56  curt
489 // Added a keyboard binding to dynamically adjust field of view.
490 // Added a command line option to specify fov.
491 // Adjusted terrain color.
492 // Root path info moved to fgOPTIONS.
493 // Added ability to parse options out of a config file.
494 //
495 // Revision 1.7  1998/05/07 23:14:14  curt
496 // Added "D" key binding to set autopilot heading.
497 // Made frame rate calculation average out over last 10 frames.
498 // Borland C++ floating point exception workaround.
499 // Added a --tile-radius=n option.
500 //
501 // Revision 1.6  1998/04/28 01:20:20  curt
502 // Type-ified fgTIME and fgVIEW.
503 // Added a command line option to disable textures.
504 //
505 // Revision 1.5  1998/04/25 22:06:29  curt
506 // Edited cvs log messages in source files ... bad bad bad!
507 //
508 // Revision 1.4  1998/04/25 20:24:00  curt
509 // Cleaned up initialization sequence to eliminate interdependencies
510 // between sun position, lighting, and view position.  This creates a
511 // valid single pass initialization path.
512 //
513 // Revision 1.3  1998/04/24 14:19:29  curt
514 // Fog tweaks.
515 //
516 // Revision 1.2  1998/04/24 00:49:17  curt
517 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
518 // Trying out some different option parsing code.
519 // Some code reorganization.
520 //
521 // Revision 1.1  1998/04/22 13:25:40  curt
522 // C++ - ifing the code.
523 // Starting a bit of reorganization of lighting code.
524 //
525 // Revision 1.33  1998/04/18 04:11:25  curt
526 // Moved fg_debug to it's own library, added zlib support.
527 //
528 // Revision 1.32  1998/04/14 02:21:01  curt
529 // Incorporated autopilot heading hold contributed by:  Jeff Goeke-Smith
530 // <jgoeke@voyager.net>
531 //
532 // Revision 1.31  1998/04/08 23:34:05  curt
533 // Patch from Durk to fix trim reversal with numlock key active.
534 //
535 // Revision 1.30  1998/04/03 22:09:02  curt
536 // Converting to Gnu autoconf system.
537 //
538 // Revision 1.29  1998/02/07 15:29:40  curt
539 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
540 // <chotchkiss@namg.us.anritsu.com>
541 //
542 // Revision 1.28  1998/02/03 23:20:23  curt
543 // Lots of little tweaks to fix various consistency problems discovered by
544 // Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
545 // passed arguments along to the real printf().  Also incorporated HUD changes
546 // by Michele America.
547 //
548 // Revision 1.27  1998/01/27 00:47:55  curt
549 // Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
550 // system and commandline/config file processing code.
551 //
552 // Revision 1.26  1998/01/19 19:27:07  curt
553 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
554 // This should simplify things tremendously.
555 //
556 // Revision 1.25  1998/01/05 18:44:34  curt
557 // Add an option to advance/decrease time from keyboard.
558 //
559 // Revision 1.24  1997/12/30 16:36:46  curt
560 // Merged in Durk's changes ...
561 //
562 // Revision 1.23  1997/12/15 23:54:44  curt
563 // Add xgl wrappers for debugging.
564 // Generate terrain normals on the fly.
565 //
566 // Revision 1.22  1997/12/10 22:37:45  curt
567 // Prepended "fg" on the name of all global structures that didn't have it yet.
568 // i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
569 //
570 // Revision 1.21  1997/08/27 21:32:23  curt
571 // Restructured view calculation code.  Added stars.
572 //
573 // Revision 1.20  1997/08/27 03:30:13  curt
574 // Changed naming scheme of basic shared structures.
575 //
576 // Revision 1.19  1997/08/25 20:27:21  curt
577 // Merged in initial HUD and Joystick code.
578 //
579 // Revision 1.18  1997/08/22 21:34:38  curt
580 // Doing a bit of reorganizing and house cleaning.
581 //
582 // Revision 1.17  1997/07/19 22:34:02  curt
583 // Moved PI definitions to ../constants.h
584 // Moved random() stuff to ../Utils/ and renamed fg_random()
585 //
586 // Revision 1.16  1997/07/18 23:41:24  curt
587 // Tweaks for building with Cygnus Win32 compiler.
588 //
589 // Revision 1.15  1997/07/16 20:04:47  curt
590 // Minor tweaks to aid Win32 port.
591 //
592 // Revision 1.14  1997/07/12 03:50:20  curt
593 // Added an #include <Windows32/Base.h> to help compiling for Win32
594 //
595 // Revision 1.13  1997/06/25 15:39:46  curt
596 // Minor changes to compile with rsxnt/win32.
597 //
598 // Revision 1.12  1997/06/21 17:12:52  curt
599 // Capitalized subdirectory names.
600 //
601 // Revision 1.11  1997/06/18 04:10:31  curt
602 // A couple more runway tweaks ...
603 //
604 // Revision 1.10  1997/06/18 02:21:23  curt
605 // Hacked in a runway
606 //
607 // Revision 1.9  1997/06/02 03:40:06  curt
608 // A tiny bit more view tweaking.
609 //
610 // Revision 1.8  1997/06/02 03:01:38  curt
611 // Working on views (side, front, back, transitions, etc.)
612 //
613 // Revision 1.7  1997/05/31 19:16:25  curt
614 // Elevator trim added.
615 //
616 // Revision 1.6  1997/05/31 04:13:52  curt
617 // WE CAN NOW FLY!!!
618 //
619 // Continuing work on the LaRCsim flight model integration.
620 // Added some MSFS-like keyboard input handling.
621 //
622 // Revision 1.5  1997/05/30 23:26:19  curt
623 // Added elevator/aileron controls.
624 //
625 // Revision 1.4  1997/05/27 17:44:31  curt
626 // Renamed & rearranged variables and routines.   Added some initial simple
627 // timer/alarm routines so the flight model can be updated on a regular 
628 // interval.
629 //
630 // Revision 1.3  1997/05/23 15:40:25  curt
631 // Added GNU copyright headers.
632 // Fog now works!
633 //
634 // Revision 1.2  1997/05/23 00:35:12  curt
635 // Trying to get fog to work ...
636 //
637 // Revision 1.1  1997/05/21 15:57:50  curt
638 // Renamed due to added GLUT support.
639 //
640 // Revision 1.2  1997/05/19 18:22:41  curt
641 // Parameter tweaking ... starting to stub in fog support.
642 //
643 // Revision 1.1  1997/05/16 16:05:51  curt
644 // Initial revision.
645