]> git.mxchange.org Git - flightgear.git/blob - Cockpit/hud.cxx
da0195b8bdd372ebd7f54bc7173968dadaebe9c8
[flightgear.git] / Cockpit / hud.cxx
1 // hud.cxx -- hud defines and prototypes
2 //
3 // Written by Michele America, started September 1997.
4 //
5 // Copyright (C) 1997  Michele F. America  - micheleamerica@geocities.com
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 <stdlib.h>
35 #include <string.h>
36
37 #ifdef HAVE_VALUES_H
38 #  include <values.h>  // for MAXINT
39 #endif
40
41 #include <Aircraft/aircraft.h>
42 #include <Debug/fg_debug.h>
43 #include <Include/fg_constants.h>
44 #include <Main/options.hxx>
45 #include <Math/fg_random.h>
46 #include <Math/mat3.h>
47 #include <Math/polar3d.hxx>
48 #include <Scenery/scenery.hxx>
49 #include <Time/fg_timer.hxx>
50 #include <Weather/weather.h>
51
52 #if defined ( __sun__ ) || defined ( __sgi )
53 extern "C" {
54   extern void *memmove(void *, const void *, size_t);
55 }
56 #endif
57
58 #include "hud.hxx"
59
60
61
62 // The following routines obtain information concerntin the aircraft's
63 // current state and return it to calling instrument display routines.
64 // They should eventually be member functions of the aircraft.
65 //
66
67 deque< instr_item * > HUD_deque;
68
69 class locRECT {
70   public:
71     RECT rect;
72
73     locRECT( UINT left, UINT top, UINT right, UINT bottom);
74     RECT get_rect(void) { return rect;}
75 };
76
77 locRECT :: locRECT( UINT left, UINT top, UINT right, UINT bottom)
78 {
79   rect.left   =  left;
80   rect.top    =  top;
81   rect.right  =  right;
82   rect.bottom =  bottom;
83
84 }
85 // #define DEBUG
86
87 void drawOneLine( UINT x1, UINT y1, UINT x2, UINT y2)
88 {
89   glBegin(GL_LINES);
90   glVertex2f(x1, y1);
91   glVertex2f(x2, y2);
92   glEnd();
93 }
94
95 void drawOneLine( RECT &rect)
96 {
97   glBegin(GL_LINES);
98   glVertex2f(rect.left, rect.top);
99   glVertex2f(rect.right, rect.bottom);
100   glEnd();
101 }
102
103 //
104 // The following code deals with painting the "instrument" on the display
105 //
106    /* textString - Bitmap font string */
107
108 void textString( int x, int y, char *msg, void *font ){
109         glRasterPos2f(x, y);
110         while (*msg) {
111                 glutBitmapCharacter(font, *msg);
112                 msg++;
113     }
114 }
115
116 /* strokeString - Stroke font string */
117
118 void strokeString(int x, int y, char *msg, void *font, float theta)
119 {
120 int xx;
121 int yy;
122
123         glPushMatrix();
124   glRotatef(theta * RAD_TO_DEG, 0.0, 0.0, 1.0);
125   xx = (int)(x * cos(theta) + y * sin( theta ));
126   yy = (int)(y * cos(theta) - x * sin( theta ));
127         glTranslatef( xx, yy, 0);
128         glScalef(.1, .1, 0.0);
129         while (*msg) {
130                 glutStrokeCharacter(font, *msg);
131                 msg++;
132         }
133         glPopMatrix();
134 }
135
136 //========================= End of Class Implementations===================
137 // fgHUDInit
138 //
139 // Constructs a HUD object and then adds in instruments. At the present
140 // the instruments are hard coded into the routine. Ultimately these need
141 // to be defined by the aircraft's instrumentation records so that the
142 // display for a Piper Cub doesn't show the speed range of a North American
143 // mustange and the engine readouts of a B36!
144 //
145
146 #define INSTRDEFS 21
147
148 int fgHUDInit( fgAIRCRAFT * /* current_aircraft */ )
149 {
150   instr_item *HIptr;
151   int index;
152
153   fgPrintf( FG_COCKPIT, FG_INFO, "Initializing current aircraft HUD\n" );
154
155   HUD_deque.erase( HUD_deque.begin(), HUD_deque.end());  // empty the HUD deque
156
157 //  hud->code = 1;
158 //  hud->status = 0;
159
160   // For now lets just hardcode the hud here.
161   // In the future, hud information has to come from the same place
162   // aircraft information came from.
163
164 //  fgHUDSetTimeMode( hud, NIGHT );
165 //  fgHUDSetBrightness( hud, BRT_LIGHT );
166
167   index = 0;
168
169   do {
170     switch ( index ) {
171       case 0:     // TBI
172         HIptr = (instr_item *) new fgTBI_instr( 270, 100, 60, 10 );
173         break;
174
175       case 1:     // Artificial Horizon
176         HIptr = (instr_item *) new HudLadder( 240, 195, 120, 180 );
177         break;
178
179       case 2:    // KIAS
180         HIptr = (instr_item *) new hud_card( 130,
181                                              170,
182                                               28,
183                                              200,
184                                              get_speed,
185                                              HUDS_LEFT | HUDS_VERT,
186                                              200.0, 0.0,
187                                              1.0,
188                                              10,  5,
189                                              0,
190                                              0,
191                                              50.0,
192                                              true);
193
194         break;
195
196       case 3:    // Radio Altimeter
197         HIptr = (instr_item *) new hud_card( 420,
198                                              195,
199                                               25,
200                                              150,
201                                              get_agl,
202                                              HUDS_LEFT | HUDS_VERT,
203                                              1000, 0,
204                                              1.0,
205                                              25,    5,
206                                              0,
207                                              0,
208                                              200.0,
209                                              true);
210         break;
211
212       case 4:    // GYRO COMPASS
213         HIptr = (instr_item *) new hud_card( 200,
214                                              375,
215                                              200,
216                                               28,
217                                              get_heading,
218                                              HUDS_TOP,
219                                              360, 0,
220                                                1.0,
221                                                5,   1,
222                                              360,
223                                                0,
224                                               25,
225                                              true);
226         break;
227
228       case 5:    // AMSL
229         HIptr = (instr_item *) new hud_card( 460,
230                                              170,
231                                               35,
232                                              200,
233                                              get_altitude,
234                                              HUDS_RIGHT | HUDS_VERT,
235                                              15000, 0,
236                                              1.0,
237                                              100,  25,
238                                              0,
239                                              0,
240                                              250,
241                                              true);
242         break;
243
244       case 6:
245         HIptr = (instr_item *) new  guage_instr( 250,            // x
246                                                  350,            // y
247                                                  100,            // width
248                                                   20,            // height
249                                                  get_aileronval, // data source
250                                                  HUDS_BOTTOM | HUDS_NOTEXT,
251                                                  100.0,
252                                                  +1.0,
253                                                  -1.0);
254         break;
255
256       case 7:
257         HIptr = (instr_item *) new  guage_instr( 170,             // x
258                                                  225,             // y
259                                                   20,             // width
260                                                  100,             // height
261                                                  get_elevatorval, // data source
262                                                  HUDS_RIGHT | HUDS_VERT | HUDS_NOTEXT,
263                                                 -100.0,           // Scale data
264                                                   +1.0,           // Data Range
265                                                   -1.0);
266         break;
267
268       case 8:
269         HIptr = (instr_item *) new  guage_instr( 250,             // x
270                                                  200,             // y
271                                                  100,             // width
272                                                   20,             // height
273                                                  get_rudderval,   // data source
274                                                  HUDS_TOP | HUDS_NOTEXT,
275                                                  100.0,
276                                                  +1.0,
277                                                  -1.0);
278         break;
279
280       case 9:
281         HIptr = (instr_item *) new  guage_instr( 100,             // x
282                                                  190,
283                                                   20,
284                                                  160,             // height
285                                                  get_throttleval, // data source
286                                                  HUDS_VERT | HUDS_RIGHT | HUDS_NOTEXT,
287                                                  100.0,
288                                                    1.0,
289                                                    0.0);
290         break;
291
292       case 10:    // Digital KIAS
293         HIptr = (instr_item *) new instr_label ( 110,
294                                                  150,
295                                                   40,
296                                                   30,
297                                                  get_speed,
298                                                  "%5.0f",
299                                                  NULL,
300                                                  " Kts",
301                                                  1.0,
302                                                  HUDS_TOP,
303                                                  RIGHT_JUST,
304                                                  SMALL,
305                                                  0,
306                                                  TRUE );
307         break;
308
309       case 11:    // Digital Rate of Climb
310         HIptr = (instr_item *) new instr_label ( 110,
311                                                  135,
312                                                   40,
313                                                   10,
314                                                  get_climb_rate,
315                                                  "%5.0f",
316                                                  " Climb",
317                                                  NULL,
318                                                  1.0,
319                                                  HUDS_TOP,
320                                                  RIGHT_JUST,
321                                                  SMALL,
322                                                  0,
323                                                  TRUE );
324         break;
325
326       case 12:    // Roll indication diagnostic
327         HIptr = (instr_item *) new instr_label ( 110,
328                                                  120,
329                                                   40,
330                                                   10,
331                                                  get_roll,
332                                                  "%5.2f",
333                                                  " Roll",
334                                                  " Deg",
335                                                  1.0,
336                                                  HUDS_TOP,
337                                                  RIGHT_JUST,
338                                                  SMALL,
339                                                  0,
340                                                  TRUE );
341         break;
342
343       case 13:    // Angle of attack diagnostic
344         HIptr = (instr_item *) new instr_label ( 440,
345                                                  150,
346                                                   60,
347                                                   10,
348                                                  get_aoa,
349                                                  "      %5.2f",
350                                                  "AOA",
351                                                  " Deg",
352                                                  1.0,
353                                                  HUDS_TOP,
354                                                  RIGHT_JUST,
355                                                  SMALL,
356                                                  0,
357                                                  TRUE );
358         break;
359
360       case 14:
361         HIptr = (instr_item *) new instr_label ( 440,
362                                                  135,
363                                                   60,
364                                                   10,
365                                                  get_heading,
366                                                  " %5.1f",
367                                                  "Heading ",
368                                                  " Deg",
369                                                  1.0,
370                                                  HUDS_TOP,
371                                                  RIGHT_JUST,
372                                                  SMALL,
373                                                  0,
374                                                  TRUE );
375         break;
376
377       case 15:
378         HIptr = (instr_item *) new instr_label ( 440,
379                                                  120,
380                                                   60,
381                                                   10,
382                                                  get_sideslip,
383                                                  "%5.2f",
384                                                  "Sideslip ",
385                                                  NULL,
386                                                  1.0,
387                                                  HUDS_TOP,
388                                                  RIGHT_JUST,
389                                                  SMALL,
390                                                  0,
391                                                  TRUE );
392         break;
393
394       case 16:
395         HIptr = (instr_item *) new instr_label( 440,
396                                                 100,
397                                                  60,
398                                                  10,
399                                                 get_throttleval,
400                                                 "%5.2f",
401                                                 "Throttle ",
402                                                 NULL,
403                                                  1.0,
404                                                 HUDS_TOP,
405                                                 RIGHT_JUST,
406                                                 SMALL,
407                                                 0,
408                                                 TRUE );
409         break;
410
411       case 17:
412         HIptr = (instr_item *) new instr_label( 440,
413                                                  85,
414                                                  60,
415                                                  10,
416                                                 get_elevatorval,
417                                                 "%5.2f",
418                                                 "Elevator ",
419                                                 NULL,
420                                                  1.0,
421                                                 HUDS_TOP,
422                                                 RIGHT_JUST,
423                                                 SMALL,
424                                                 0,
425                                                 TRUE );
426         break;
427
428       case 18:
429         HIptr = (instr_item *) new instr_label( 440,
430                                                  60,
431                                                  60,
432                                                  10,
433                                                 get_aileronval,
434                                                 "%5.2f",
435                                                 "Aileron  ",
436                                                 NULL,
437                                                  1.0,
438                                                 HUDS_TOP,
439                                                 RIGHT_JUST,
440                                                 SMALL,
441                                                 0,
442                                                 TRUE );
443         break;
444
445
446       case 19:
447         HIptr = (instr_item *) new instr_label( 10,
448                                                 10,
449                                                 60,
450                                                 10,
451                                                  get_frame_rate,
452                                                 "%.1f",
453                                                 "Frame rate = ",
454                                                 NULL,
455                                                  1.0,
456                                                 HUDS_TOP,
457                                                 RIGHT_JUST,
458                                                 SMALL,
459                                                 0,
460                                                 TRUE );
461         break;
462
463       case 20:
464           switch( current_options.get_tris_or_culled() ) {
465           case 0:
466               HIptr = (instr_item *) new instr_label( 10,
467                                                       25,
468                                                       90,
469                                                       10,
470                                                       get_vfc_tris_drawn,
471                                                       "%.0f",
472                                                       "Tris Rendered = ",
473                                                       NULL,
474                                                       1.0,
475                                                       HUDS_TOP,
476                                                       RIGHT_JUST,
477                                                       SMALL,
478                                                       0,
479                                                       TRUE );
480               break;
481           case 1:
482               HIptr = (instr_item *) new instr_label( 10,
483                                                       25,
484                                                       90,
485                                                       10,
486                                                       get_vfc_ratio,
487                                                       "%.2f",
488                                                       "VFC Ratio = ",
489                                                       NULL,
490                                                       1.0,
491                                                       HUDS_TOP,
492                                                       RIGHT_JUST,
493                                                       SMALL,
494                                                       0,
495                                                       TRUE );
496               break;
497           }
498           break;
499
500       case 21:
501         HIptr = (instr_item *) new instr_label( 10,
502                                                 40,
503                                                 90,
504                                                 10,
505                                                 get_fov,
506                                                 "%.1f",
507                                                 "FOV = ",
508                                                 NULL,
509                                                 1.0,
510                                                 HUDS_TOP,
511                                                 RIGHT_JUST,
512                                                 SMALL,
513                                                 0,
514                                                 TRUE );
515         break;
516
517       default:
518         HIptr = 0;;
519       }
520     if( HIptr ) {                   // Anything to install?
521       HUD_deque.insert( HUD_deque.begin(), HIptr);
522       }
523     index++;
524     }
525   while( HIptr );
526
527   return 0;  // For now. Later we may use this for an error code.
528 }
529
530 int fgHUDInit2( fgAIRCRAFT * /* current_aircraft */ )
531 {
532     instr_item *HIptr;
533     int index;
534
535     fgPrintf( FG_COCKPIT, FG_INFO, "Initializing current aircraft HUD\n" );
536
537     HUD_deque.erase( HUD_deque.begin(), HUD_deque.end());
538
539     //  hud->code = 1;
540     //  hud->status = 0;
541
542     // For now lets just hardcode the hud here.
543     // In the future, hud information has to come from the same place
544     // aircraft information came from.
545
546     //  fgHUDSetTimeMode( hud, NIGHT );
547     //  fgHUDSetBrightness( hud, BRT_LIGHT );
548
549     //  index = 0;
550     index = 19;  
551
552     instr_item* p;
553
554     p = new instr_label( 10, 10, 60, 10,
555                          get_frame_rate,
556                          "%.1f",
557                          "Frame rate = ",
558                          NULL,
559                          1.0,
560                          HUDS_TOP,
561                          RIGHT_JUST,
562                          SMALL,
563                          0,
564                          TRUE );
565     HUD_deque.push_front( p );
566
567     if ( current_options.get_tris_or_culled() == 0 )
568         p = new instr_label( 10, 25, 90, 10,
569                              get_vfc_tris_drawn,
570                              "%.0f",
571                              "Tris Rendered = ",
572                              NULL,
573                              1.0,
574                              HUDS_TOP,
575                              RIGHT_JUST,
576                              SMALL,
577                              0,
578                              TRUE );
579     else
580         p = new instr_label( 10, 25, 90, 10,
581                              get_vfc_ratio,
582                              "%.2f",
583                              "VFC Ratio = ",
584                              NULL,
585                              1.0,
586                              HUDS_TOP,
587                              RIGHT_JUST,
588                              SMALL,
589                              0,
590                              TRUE );
591     HUD_deque.push_front( p );
592
593     p = new instr_label( 10, 40, 90, 10,
594                          get_fov,
595                          "%.1f",
596                          "FOV = ",
597                          NULL,
598                          1.0,
599                          HUDS_TOP,
600                          RIGHT_JUST,
601                          SMALL,
602                          0,
603                          TRUE );
604     HUD_deque.push_front( p );
605
606     const int x_pos = 480;
607     p = new instr_label( x_pos, 40, 40, 30,
608                          get_speed,
609                          "%5.0f",
610                          "Airspeed ",
611                          " Kts",
612                          1.0,
613                          HUDS_TOP,
614                          RIGHT_JUST,
615                          SMALL,
616                          0,
617                          TRUE );
618     HUD_deque.push_front( p );
619
620     p = new instr_label( x_pos, 25, 40, 10,
621                          get_altitude,
622                          "%5.0f",
623                          "Altitude ",
624                          " m",
625                          1.0,
626                          HUDS_TOP,
627                          RIGHT_JUST,
628                          SMALL,
629                          0,
630                          TRUE );
631     HUD_deque.push_front( p );
632
633     p = new instr_label( x_pos, 10, 60, 10,
634                          get_heading,
635                          "%5.1f",
636                          "Heading  ",
637                          " Deg",
638                          1.0,
639                          HUDS_TOP,
640                          RIGHT_JUST,
641                          SMALL,
642                          0,
643                          TRUE );
644     HUD_deque.push_front( p );
645
646     return 0;  // For now. Later we may use this for an error code.
647 }
648
649 int global_day_night_switch = DAY;
650
651 void HUD_brightkey( bool incr_bright )
652 {
653 instr_item *pHUDInstr = HUD_deque[0];
654 int brightness        = pHUDInstr->get_brightness();
655
656   if( current_options.get_hud_status() ) {
657     if( incr_bright ) {
658       switch (brightness) {
659         case BRT_LIGHT:
660               current_options.set_hud_status(0);
661           break;
662
663         case BRT_MEDIUM:
664           brightness = BRT_LIGHT;
665           break;
666
667         case BRT_DARK:
668           brightness = BRT_MEDIUM;
669           break;
670
671         case BRT_BLACK:
672           brightness = BRT_DARK;
673           break;
674
675         default:
676           brightness = BRT_BLACK;
677         }
678       }
679     else {
680       switch (brightness) {
681         case BRT_LIGHT:
682           brightness = BRT_MEDIUM;
683           break;
684
685         case BRT_MEDIUM:
686           brightness = BRT_DARK;
687           break;
688
689         case BRT_DARK:
690           brightness = BRT_BLACK;
691           break;
692
693         case BRT_BLACK:
694         default:
695               current_options.set_hud_status(0);
696         }
697       }
698     }
699   else {
700     current_options.set_hud_status(1);
701     if( incr_bright ) {
702       if( DAY == global_day_night_switch ) {
703         brightness = BRT_BLACK;
704         }
705       else {
706         brightness = BRT_DARK;
707         global_day_night_switch = DAY;
708         }
709       }
710     else {
711       if( NIGHT == global_day_night_switch ) {
712         brightness = BRT_DARK;
713         }
714       else {
715         brightness = BRT_MEDIUM;
716         global_day_night_switch = NIGHT;
717         }
718       }
719     }
720   pHUDInstr->SetBrightness( brightness );
721 }
722
723 // fgUpdateHUD
724 //
725 // Performs a once around the list of calls to instruments installed in
726 // the HUD object with requests for redraw. Kinda. It will when this is
727 // all C++.
728 //
729 void fgUpdateHUD( void ) {
730   int i;
731   int brightness;
732 //  int day_night_sw = current_aircraft.controls->day_night_switch;
733   int day_night_sw = global_day_night_switch;
734   int hud_displays = HUD_deque.size();
735   instr_item *pHUDInstr;
736
737   if( !hud_displays ) {  // Trust everyone, but ALWAYS cut the cards!
738     return;
739     }
740
741   pHUDInstr = HUD_deque[0];
742   brightness = pHUDInstr->get_brightness();
743 //  brightness = HUD_deque.at(0)->get_brightness();
744
745   glMatrixMode(GL_PROJECTION);
746   glPushMatrix();
747
748   glLoadIdentity();
749   gluOrtho2D(0, 640, 0, 480);
750   glMatrixMode(GL_MODELVIEW);
751   glPushMatrix();
752   glLoadIdentity();
753
754   glColor3f(1.0, 1.0, 1.0);
755   glIndexi(7);
756
757   glDisable(GL_DEPTH_TEST);
758   glDisable(GL_LIGHTING);
759
760   glLineWidth(1);
761
762   deque < instr_item * > :: iterator current = HUD_deque.begin();
763   deque < instr_item * > :: iterator last = HUD_deque.end();
764
765   for ( ; current != last; ++current ) {
766     pHUDInstr = *current;
767
768     // for( i = hud_displays; i; --i) { // Draw everything
769     // if( HUD_deque.at(i)->enabled()) {
770     // pHUDInstr = HUD_deque[i - 1];
771     if( pHUDInstr->enabled()) {
772                                    // We should to respond to a dial instead
773                                    // or as well to the of time of day. Of
774                                    // course, we have no dial!
775       if( day_night_sw == DAY) {
776         switch (brightness) {
777           case BRT_LIGHT:
778             glColor3f (0.1, 0.9, 0.1);
779             break;
780
781           case BRT_MEDIUM:
782             glColor3f (0.1, 0.7, 0.0);
783             break;
784
785           case BRT_DARK:
786             glColor3f (0.0, 0.5, 0.0);
787             break;
788
789           case BRT_BLACK:
790             glColor3f( 0.0, 0.0, 0.0);
791             break;
792
793           default:;
794             }
795           }
796         else {
797           if( day_night_sw == NIGHT) {
798             switch (brightness) {
799               case BRT_LIGHT:
800                 glColor3f (0.9, 0.1, 0.1);
801                 break;
802
803               case BRT_MEDIUM:
804                 glColor3f (0.7, 0.0, 0.1);
805                 break;
806
807               case BRT_DARK:
808               default:
809                 glColor3f (0.5, 0.0, 0.0);
810               }
811             }
812           else {     // Just in case default
813             glColor3f (0.1, 0.9, 0.1);
814             }
815           }
816     //  fgPrintf( FG_COCKPIT, FG_DEBUG, "HUD Code %d  Status %d\n",
817     //            hud->code, hud->status );
818       pHUDInstr->draw();
819 //      HUD_deque.at(i)->draw(); // Responsible for broken or fixed variants.
820                               // No broken displays honored just now.
821       }
822     }
823
824   glEnable(GL_DEPTH_TEST);
825   glEnable(GL_LIGHTING);
826   glMatrixMode(GL_PROJECTION);
827   glPopMatrix();
828   glMatrixMode(GL_MODELVIEW);
829   glPopMatrix();
830 }
831
832 // $Log$
833 // Revision 1.23  1998/10/16 00:53:00  curt
834 // Mods to display a bit more info when mini-hud is active.
835 //
836 // Revision 1.22  1998/09/29 14:56:31  curt
837 // c++-ified comments.
838 //
839 // Revision 1.21  1998/09/29 02:01:07  curt
840 // Added a "rate of climb" indicator.
841 //
842 // Revision 1.20  1998/08/24 20:05:16  curt
843 // Added a second minimalistic HUD.
844 // Added code to display the number of triangles rendered.
845 //
846 // Revision 1.19  1998/07/30 23:44:05  curt
847 // Tweaks for sgi building.
848 //
849 // Revision 1.18  1998/07/20 12:47:55  curt
850 // Replace the hud rendering for loop (which linearly searches the the hud
851 // list to find the entry with the proper position) with a simple linear
852 // traversal using an "iterator."
853 //
854 // Revision 1.17  1998/07/13 21:28:02  curt
855 // Converted the aoa scale to a radio altimeter.
856 //
857 // Revision 1.16  1998/07/13 21:00:47  curt
858 // Integrated Charlies latest HUD updates.
859 // Wrote access functions for current fgOPTIONS.
860 //
861 // Revision 1.15  1998/07/08 14:41:08  curt
862 // Renamed polar3d.h to polar3d.hxx
863 //
864 // Revision 1.14  1998/07/06 21:31:20  curt
865 // Removed an extraneous ^M.
866 //
867 // Revision 1.13  1998/07/03 13:16:28  curt
868 // Added Charlie Hotchkiss's HUD updates and improvementes.
869 //
870 // Revision 1.11  1998/06/05 18:17:10  curt
871 // Added the declaration of memmove needed by the stl which apparently
872 // solaris only defines for cc compilations and not for c++ (__STDC__)
873 //
874 // Revision 1.10  1998/05/17 16:58:12  curt
875 // Added a View Frustum Culling ratio display to the hud.
876 //
877 // Revision 1.9  1998/05/16 13:04:14  curt
878 // New updates from Charlie Hotchkiss.
879 //
880 // Revision 1.8  1998/05/13 18:27:54  curt
881 // Added an fov to hud display.
882 //
883 // Revision 1.7  1998/05/11 18:13:11  curt
884 // Complete C++ rewrite of all cockpit code by Charlie Hotchkiss.
885 //
886 // Revision 1.22  1998/04/18 04:14:02  curt
887 // Moved fg_debug.c to it's own library.
888 //
889 // Revision 1.21  1998/04/03 21:55:28  curt
890 // Converting to Gnu autoconf system.
891 // Tweaks to hud.c
892 //
893 // Revision 1.20  1998/03/09 22:48:40  curt
894 // Minor "formatting" tweaks.
895 //
896 // Revision 1.19  1998/02/23 20:18:28  curt
897 // Incorporated Michele America's hud changes.
898 //
899 // Revision 1.18  1998/02/21 14:53:10  curt
900 // Added Charlie's HUD changes.
901 //
902 // Revision 1.17  1998/02/20 00:16:21  curt
903 // Thursday's tweaks.
904 //
905 // Revision 1.16  1998/02/19 13:05:49  curt
906 // Incorporated some HUD tweaks from Michelle America.
907 // Tweaked the sky's sunset/rise colors.
908 // Other misc. tweaks.
909 //
910 // Revision 1.15  1998/02/16 13:38:39  curt
911 // Integrated changes from Charlie Hotchkiss.
912 //
913 // Revision 1.14  1998/02/12 21:59:41  curt
914 // Incorporated code changes contributed by Charlie Hotchkiss
915 // <chotchkiss@namg.us.anritsu.com>
916 //
917 // Revision 1.12  1998/02/09 15:07:48  curt
918 // Minor tweaks.
919 //
920 // Revision 1.11  1998/02/07 15:29:34  curt
921 // Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
922 // <chotchkiss@namg.us.anritsu.com>
923 //
924 // Revision 1.10  1998/02/03 23:20:14  curt
925 // Lots of little tweaks to fix various consistency problems discovered by
926 // Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
927 // passed arguments along to the real printf().  Also incorporated HUD changes
928 // by Michele America.
929 //
930 // Revision 1.9  1998/01/31 00:43:04  curt
931 // Added MetroWorks patches from Carmen Volpe.
932 //
933 // Revision 1.8  1998/01/27 00:47:51  curt
934 // Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
935 // system and commandline/config file processing code.
936 //
937 // Revision 1.7  1998/01/19 18:40:20  curt
938 // Tons of little changes to clean up the code and to remove fatal errors
939 // when building with the c++ compiler.
940 //
941 // Revision 1.6  1997/12/15 23:54:34  curt
942 // Add xgl wrappers for debugging.
943 // Generate terrain normals on the fly.
944 //
945 // Revision 1.5  1997/12/10 22:37:39  curt
946 // Prepended "fg" on the name of all global structures that didn't have it yet.
947 // i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
948 //
949 // Revision 1.4  1997/09/23 00:29:32  curt
950 // Tweaks to get things to compile with gcc-win32.
951 //
952 // Revision 1.3  1997/09/05 14:17:26  curt
953 // More tweaking with stars.
954 //
955 // Revision 1.2  1997/09/04 02:17:30  curt
956 // Shufflin' stuff.
957 //
958 // Revision 1.1  1997/08/29 18:03:22  curt
959 // Initial revision.
960 //