]> git.mxchange.org Git - flightgear.git/blob - Cockpit/hud.hxx
Added an fov to hud display.
[flightgear.git] / Cockpit / hud.hxx
1 /**************************************************************************
2  * hud.hxx -- hud defines and prototypes (initial draft)
3  *
4  * Written by Michele America, started September 1997.
5  *
6  * Copyright (C) 1997  Michele F. America  - nomimarketing@mail.telepac.pt
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * $Id$
23  * (Log is kept at end of this file)
24  **************************************************************************/
25
26
27 #ifndef _HUD_HXX
28 #define _HUD_HXX
29
30
31 #ifndef __cplusplus
32 # error This library requires C++
33 #endif
34
35
36 #include <config.h>
37
38
39 #include <fg_typedefs.h>
40 #include <fg_constants.h>
41 #include <Aircraft/aircraft.h>
42 #include <Flight/flight.h>
43 #include <Controls/controls.h>
44
45 //using namespace std;
46
47 #include <deque.h>       // STL
48
49
50 #ifndef WIN32
51
52   typedef struct {
53       int x, y;
54   } POINT;
55
56   typedef struct {
57       int top, bottom, left, right;
58   } RECT;
59
60 #endif
61
62
63 // View mode definitions
64
65 enum VIEW_MODES{ HUD_VIEW, PANEL_VIEW, CHASE_VIEW, TOWER_VIEW };
66
67 // DAY, NIGHT and brightness levels need to be visible where dialogs and
68 // controls can be used to set intensity and appropriate color. This will
69 // be moved.
70 // Hud general constants
71 #define DAY                1
72 #define NIGHT              2
73 #define BRT_DARK           3
74 #define BRT_MEDIUM         4
75 #define BRT_LIGHT          5
76 #define SIZE_SMALL         6
77 #define SIZE_LARGE         7
78
79 // Label constants
80 #define SMALL              1
81 #define LARGE              2
82
83 #define BLINK              3
84 #define NOBLINK            4
85
86 enum fgLabelJust{ LEFT_JUST, CENTER_JUST, RIGHT_JUST } ;
87
88 // Ladder constants
89 #define NONE               1
90 #define UPPER_LEFT         2
91 #define UPPER_CENTER       3
92 #define UPPER_RIGHT        4
93 #define CENTER_RIGHT       5
94 #define LOWER_RIGHT        6
95 #define LOWER_CENTER       7
96 #define LOWER_LEFT         8
97 #define CENTER_LEFT        9
98 #define SOLID_LINES       10
99 #define DASHED_LINES      11
100 #define DASHED_NEG_LINES  12
101
102
103 #define HORIZON_FIXED   1
104 #define HORIZON_MOVING  2
105 #define LABEL_COUNTER   1
106 #define LABEL_WARNING   2
107
108 // Ladder orientaion
109 // #define HUD_VERTICAL        1
110 // #define HUD_HORIZONTAL               2
111 // #define HUD_FREEFLOAT                3
112
113 // Ladder orientation modes
114 // #define HUD_LEFT             1
115 // #define HUD_RIGHT            2
116 // #define HUD_TOP              1
117 // #define HUD_BOTTOM           2
118 // #define HUD_V_LEFT                   1
119 // #define HUD_V_RIGHT          2
120 // #define HUD_H_TOP            1
121 // #define HUD_H_BOTTOM         2
122
123
124 // Ladder sub-types
125 // #define HUD_LIM                              1
126 // #define HUD_NOLIM                    2
127 // #define HUD_CIRC                     3
128
129 // #define HUD_INSTR_LADDER     1
130 // #define HUD_INSTR_CLADDER    2
131 // #define HUD_INSTR_HORIZON    3
132 // #define HUD_INSTR_LABEL              4
133
134 extern double get_throttleval ( void );
135 extern double get_aileronval  ( void );
136 extern double get_elevatorval ( void );
137 extern double get_elev_trimval( void );
138 extern double get_rudderval   ( void );
139 extern double get_speed       ( void );
140 extern double get_aoa         ( void );
141 extern double get_roll        ( void );
142 extern double get_pitch       ( void );
143 extern double get_heading     ( void );
144 extern double get_altitude    ( void );
145 extern double get_sideslip    ( void );
146 extern double get_frame_rate  ( void );
147 extern double get_fov         ( void );
148
149 enum  hudinstype{ HUDno_instr,
150               HUDscale,
151               HUDlabel,
152               HUDladder,
153               HUDcirc_ladder,
154               HUDhorizon,
155               HUDguage,
156               HUDdual_inst,
157               HUDmoving_scale,
158               HUDtbi
159               };
160
161 enum ReadOriented{ ReadRIGHT, ReadLEFT, ReadTOP, ReadBOTTOM };
162
163 class instr_item {  // An Abstract Base Class (ABC)
164   private:
165     static UINT      instances;     // More than 64K instruments? Nah!
166     UINT             handle;
167     RECT             scrn_pos;      // Framing - affects scale dimensions
168                                     // and orientation. Vert vs Horz, etc.
169     DBLFNPTR         load_value_fn;
170     ReadOriented     oriented;
171     bool             is_enabled;
172     bool             broken;
173     int              brightness;
174     UINT             scr_span;      // Working values for draw;
175     POINT            mid_span;      //
176
177   public:
178     instr_item( RECT           scrn_pos,
179                 DBLFNPTR       data_source,
180                 ReadOriented   orient,
181                 bool           working      = true);
182
183     instr_item( const instr_item & image );
184
185     instr_item & operator = ( const instr_item & rhs );
186     virtual ~instr_item ();
187
188     int          get_brightness  ( void ) { return brightness;}
189     RECT         get_location    ( void ) { return scrn_pos;  }
190     bool         is_broken       ( void ) { return broken;    }
191     bool         enabled         ( void ) { return is_enabled;}
192     double       get_value       ( void ) { return load_value_fn();}
193     UINT         get_span        ( void ) { return scr_span;  }
194     POINT        get_centroid    ( void ) { return mid_span;  }
195     ReadOriented get_orientation ( void ) { return oriented;  }
196
197     virtual void display_enable( bool working ) { is_enabled = !! working;}
198
199
200     virtual void update( void );
201     virtual void break_display ( bool bad );
202     virtual void SetBrightness( int illumination_level ); // fgHUDSetBright...
203     UINT    get_Handle( void );
204     virtual void draw( void ) = 0;   // Required method in derived classes
205 };
206
207 typedef instr_item *HIptr;
208 extern deque< instr_item *> HUD_deque;
209
210 // instr_item           This class has no other purpose than to maintain
211 //                      a linked list of instrument and derived class
212 // object pointers.
213
214
215 class instr_label : public instr_item {
216   private:
217     const char *pformat;
218     const char *pre_str;
219     const char *post_str;
220     fgLabelJust justify;
221     int         fontSize;
222     int         blink;
223
224   public:
225     instr_label( RECT         the_box,
226                  DBLFNPTR     data_source,
227                  const char  *label_format,
228                  const char  *pre_label_string    = 0,
229                  const char  *post_label_string   = 0,
230                  ReadOriented orientation         = ReadTOP,
231                  fgLabelJust  justification       = CENTER_JUST,
232                  int          font_size           = SMALL,
233                  int          blinking            = NOBLINK,
234                  bool         working             = true);
235
236     ~instr_label();
237
238     instr_label( const instr_label & image);
239     instr_label & operator = (const instr_label & rhs );
240
241     virtual void draw( void );       // Required method in base class
242 };
243
244 typedef instr_label * pInstlabel;
245
246 //
247 // instr_scale           This class is an abstract base class for both moving
248 //                       scale and moving needle (fixed scale) indicators. It
249 // does not draw itself, but is not instanciable.
250 //
251
252 class instr_scale : public instr_item {
253   private:
254     int    range_shown;   // Width Units.
255     int    Maximum_value; //                ceiling.
256     int    Minimum_value; // Representation floor.
257     UINT   Maj_div;       // major division marker units
258     UINT   Min_div;       // minor division marker units
259     UINT   Modulo;        // Roll over point
260     double scale_factor;  // factor => screen units/range values.
261
262   public:
263     instr_scale( RECT         the_box,
264                  DBLFNPTR     load_fn,
265                  ReadOriented orient,
266                  int          show_range,
267                  int          max_value,
268                  int          min_value    =   0,
269                  UINT         major_divs   =  10,
270                  UINT         minor_divs   =   5,
271                  UINT         rollover     =   0,
272                  bool         working      = true);
273
274     virtual ~instr_scale();
275     instr_scale( const instr_scale & image);
276     instr_scale & operator = (const instr_scale & rhs);
277
278     virtual void draw   ( void ) {}; // No-op here. Defined in derived classes.
279     UINT   div_min      ( void ) { return Min_div;}
280     UINT   div_max      ( void ) { return Maj_div;}
281     int    min_val      ( void ) { return Minimum_value;}
282     int    max_val      ( void ) { return Maximum_value;}
283     UINT   modulo       ( void ) { return Modulo; }
284     double factor       ( void ) { return scale_factor;}
285     double range_to_show( void ) { return range_shown;}
286 };
287
288 // moving_scale_instr      This class displays the indicated quantity on
289 //                         a scale that moves past the pointer. It may be
290 // horizontal or vertical, read above(left) or below(right) of the base
291 // line.
292
293 class moving_scale : public instr_scale {
294   private:
295     double val_span;
296     double half_width_units;
297
298   public:
299     moving_scale( RECT         box,
300                   DBLFNPTR     load_fn,
301                   ReadOriented readway,
302                   int          maxValue,
303                   int          minValue,
304                   UINT         major_divs,
305                   UINT         minor_divs,
306                   UINT         modulator,
307                   double       value_span,
308                   bool         working = true);
309
310     ~moving_scale();
311     moving_scale( const moving_scale & image);
312     moving_scale & operator = (const moving_scale & rhs );
313 //    virtual void display_enable( bool setting );
314     virtual void draw( void );       // Required method in base class
315 };
316
317 typedef moving_scale * pMoveScale;
318
319 class guage_instr : public instr_scale {
320   private:
321
322   public:
323     guage_instr( RECT         box,
324                  DBLFNPTR     load_fn,
325                  ReadOriented readway,
326                  int          maxValue,
327                  int          minValue,
328                  UINT         major_divs,
329                  UINT         minor_divs,
330                  UINT         modulus,
331                  bool         working = true);
332
333     ~guage_instr();
334     guage_instr( const guage_instr & image);
335     guage_instr & operator = (const guage_instr & rhs );
336     virtual void draw( void );       // Required method in base class
337 };
338
339 typedef guage_instr * pGuageInst;
340 //
341 // dual_instr_item         This class was created to form the base class
342 //                         for both panel and HUD Turn Bank Indicators.
343
344 class dual_instr_item : public instr_item {
345   private:
346     DBLFNPTR alt_data_source;
347
348   public:
349     dual_instr_item ( RECT         the_box,
350                       DBLFNPTR     chn1_source,
351                       DBLFNPTR     chn2_source,
352                       bool         working     = true,
353                       ReadOriented readway  = ReadTOP);
354
355     virtual ~dual_instr_item() {};
356     dual_instr_item( const dual_instr_item & image);
357     dual_instr_item & operator = (const dual_instr_item & rhs );
358
359     double current_ch1( void ) { return alt_data_source();}
360     double current_ch2( void ) { return get_value();}
361     virtual void draw ( void ) { }
362 };
363
364 class fgTBI_instr : public dual_instr_item {
365   private:
366     UINT BankLimit;
367     UINT SlewLimit;
368     UINT scr_hole;
369
370   public:
371     fgTBI_instr( RECT      the_box,
372                  DBLFNPTR  chn1_source  = get_roll,
373                  DBLFNPTR  chn2_source  = get_sideslip,
374                  UINT      maxBankAngle = 45,
375                  UINT      maxSlipAngle =  5,
376                  UINT      gap_width    =  5,
377                  bool      working      =  true);
378
379     fgTBI_instr( const fgTBI_instr & image);
380     fgTBI_instr & operator = (const fgTBI_instr & rhs );
381
382     ~fgTBI_instr();
383
384     UINT bank_limit( void ) { return BankLimit;}
385     UINT slew_limit( void ) { return SlewLimit;}
386
387     virtual void draw( void );       // Required method in base class
388 };
389
390 typedef fgTBI_instr * pTBI;
391
392 class HudLadder : public dual_instr_item {
393   private:
394     UINT   width_units;
395     int    div_units;
396     UINT   minor_div;
397     UINT   label_pos;
398     UINT   scr_hole;
399     int    vmax;
400     int    vmin;
401     double factor;
402
403   public:
404     HudLadder( RECT      the_box,
405                DBLFNPTR  ptch_source    = get_roll,
406                DBLFNPTR  roll_source    = get_pitch,
407                UINT      span_units     = 45,
408                int       division_units = 10,
409                UINT      minor_division = 0,
410                UINT      screen_hole    = 70,
411                UINT      lbl_pos        = 0,
412                bool      working        = true );
413
414     ~HudLadder();
415
416     HudLadder( const HudLadder & image );
417     HudLadder & operator = ( const HudLadder & rhs );
418     virtual void draw( void );
419 };
420
421
422 //using namespace std;
423 //deque <instr_item>  * Hdeque_ptr;
424
425 extern int  fgHUDInit( fgAIRCRAFT * /* current_aircraft */ );
426 extern void fgUpdateHUD( void );
427
428 /*
429 bool AddHUDInstrument( instr_item *pBlackBox );
430 void DrawHUD ( void );
431 bool DamageInstrument( INSTR_HANDLE unit );
432 bool RepairInstrument( INSTR_HANDLE unit );
433
434
435 void fgUpdateHUD ( Hptr hud );
436 void fgUpdateHUD2( Hptr hud ); // Future use?
437 void fgHUDSetTimeMode( Hptr hud, int time_of_day );
438 */
439
440 #endif // _HUD_H
441
442 /* $Log$
443 /* Revision 1.3  1998/05/13 18:27:55  curt
444 /* Added an fov to hud display.
445 /*
446  * Revision 1.2  1998/05/11 18:13:12  curt
447  * Complete C++ rewrite of all cockpit code by Charlie Hotchkiss.
448  *
449  * Revision 1.15  1998/02/23 19:07:57  curt
450  * Incorporated Durk's Astro/ tweaks.  Includes unifying the sun position
451  * calculation code between sun display, and other FG sections that use this
452  * for things like lighting.
453  *
454  * Revision 1.14  1998/02/21 14:53:14  curt
455  * Added Charlie's HUD changes.
456  *
457  * Revision 1.13  1998/02/20 00:16:22  curt
458  * Thursday's tweaks.
459  *
460  * Revision 1.12  1998/02/19 13:05:52  curt
461  * Incorporated some HUD tweaks from Michelle America.
462  * Tweaked the sky's sunset/rise colors.
463  * Other misc. tweaks.
464  *
465  * Revision 1.11  1998/02/16 13:38:42  curt
466  * Integrated changes from Charlie Hotchkiss.
467  *
468  * Revision 1.11  1998/02/16 13:38:42  curt
469  * Integrated changes from Charlie Hotchkiss.
470  *
471  * Revision 1.10  1998/02/12 21:59:42  curt
472  * Incorporated code changes contributed by Charlie Hotchkiss
473  * <chotchkiss@namg.us.anritsu.com>
474  *
475  * Revision 1.8  1998/02/07 15:29:35  curt
476  * Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss
477  * <chotchkiss@namg.us.anritsu.com>
478  *
479  * Revision 1.7  1998/02/03 23:20:15  curt
480  * Lots of little tweaks to fix various consistency problems discovered by
481  * Solaris' CC.  Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
482  * passed arguments along to the real printf().  Also incorporated HUD changes
483  * by Michele America.
484  *
485  * Revision 1.6  1998/01/22 02:59:30  curt
486  * Changed #ifdef FILE_H to #ifdef _FILE_H
487  *
488  * Revision 1.5  1998/01/19 19:27:01  curt
489  * Merged in make system changes from Bob Kuehne <rpk@sgi.com>
490  * This should simplify things tremendously.
491  *
492  * Revision 1.4  1998/01/19 18:40:21  curt
493  * Tons of little changes to clean up the code and to remove fatal errors
494  * when building with the c++ compiler.
495  *
496  * Revision 1.3  1997/12/30 16:36:41  curt
497  * Merged in Durk's changes ...
498  *
499  * Revision 1.2  1997/12/10 22:37:40  curt
500  * Prepended "fg" on the name of all global structures that didn't have it yet.
501  * i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
502  *
503  * Revision 1.1  1997/08/29 18:03:22  curt
504  * Initial revision.
505  *
506  */