]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/hud_labl.cxx
09d18b269c6e53b0d68571add88e7a916787846b
[flightgear.git] / src / Cockpit / hud_labl.cxx
1 #ifdef HAVE_CONFIG_H
2 #  include <config.h>
3 #endif
4
5 #ifdef HAVE_WINDOWS_H
6 #  include <windows.h>
7 #endif
8
9 #include <stdlib.h>
10 #include <string.h>
11
12 #include <simgear/constants.h>
13 #include <simgear/math/fg_random.h>
14 #include <simgear/math/polar3d.hxx>
15
16 #include <Aircraft/aircraft.hxx>
17 #include <GUI/gui.h>
18 #include <Scenery/scenery.hxx>
19 #include <Time/fg_timer.hxx>
20
21 #include "hud.hxx"
22
23
24 #ifdef USE_HUD_TextList
25 #define textString( x , y, text, font )  TextString( text, x , y )
26 #else
27 #define textString( x , y, text, font )  puDrawString ( guiFnt, text, x, y );
28 #endif
29
30 //======================= Top of instr_label class =========================
31 instr_label ::
32          instr_label( int           x,
33                       int           y,
34                       UINT          width,
35                       UINT          height,
36                       FLTFNPTR      data_source,
37                       const char   *label_format,
38                       const char   *pre_label_string,
39                       const char   *post_label_string,
40                       float        scale_data,
41                       UINT          options,
42                       fgLabelJust   justification,
43                       int           font_size,
44                       int           blinking,
45                       bool          working ):
46                            instr_item( x, y, width, height,
47                                        data_source, scale_data,options, working ),
48                            pformat  ( label_format      ),
49                            pre_str  ( pre_label_string  ),
50                            post_str ( post_label_string ),
51                            justify  ( justification     ),
52                            fontSize ( font_size         ),
53                            blink    ( blinking          )
54 {
55   if( pre_str != NULL) {
56     if( post_str != NULL ) {
57       sprintf( format_buffer, "%s%s%s", pre_str, pformat, post_str );
58       }
59     else {
60       sprintf( format_buffer, "%s%s",   pre_str, pformat );
61       }
62     }
63   else {
64     if( post_str != NULL ) {
65       sprintf( format_buffer, "%s%s",   pformat, post_str );
66       }
67     } // else do nothing if both pre and post strings are nulls. Interesting.
68
69 }
70
71 // I put this in to make it easy to construct a class member using the current
72 // C code.
73
74
75 instr_label :: ~instr_label()
76 {
77 }
78
79 // Copy constructor
80 instr_label :: instr_label( const instr_label & image) :
81                               instr_item((const instr_item &)image),
82                               pformat    ( image.pformat    ),
83                               pre_str  ( image.pre_str  ),
84                               post_str ( image.post_str ),
85                               blink    ( image.blink    )
86 {
87   if( pre_str != NULL) {
88     if( post_str != NULL ) {
89       sprintf( format_buffer, "%s%s%s", pre_str, pformat, post_str );
90       }
91     else {
92       sprintf( format_buffer, "%s%s",   pre_str, pformat );
93       }
94     }
95   else {
96     if( post_str != NULL ) {
97       sprintf( format_buffer, "%s%s",   pformat, post_str );
98       }
99     } // else do nothing if both pre and post strings are nulls. Interesting.
100
101 }
102
103 instr_label & instr_label ::operator = (const instr_label & rhs )
104 {
105   if( !(this == &rhs)) {
106     instr_item::operator = (rhs);
107     pformat      = rhs.pformat;
108     fontSize   = rhs.fontSize;
109     blink      = rhs.blink;
110     justify    = rhs.justify;
111     pre_str    = rhs.pre_str;
112     post_str   = rhs.post_str;
113     strcpy(format_buffer,rhs.format_buffer);    
114     }
115   return *this;
116 }
117
118 //
119 // draw                    Draws a label anywhere in the HUD
120 //
121 //
122 void instr_label ::
123 draw( void )       // Required method in base class
124 {
125 //  char format_buffer[80];
126   char label_buffer[80];
127   int posincr;
128   int lenstr;
129   RECT  scrn_rect = get_location();
130
131   if( data_available() ) {
132     sprintf( label_buffer, format_buffer, get_value() );
133     }
134   else {
135     sprintf( label_buffer, format_buffer );
136     }
137   
138   lenstr = getStringWidth( label_buffer );
139                                                 
140     
141 #ifdef DEBUGHUD
142   fgPrintf( FG_COCKPIT, FG_DEBUG,  format_buffer );
143   fgPrintf( FG_COCKPIT, FG_DEBUG,  "\n" );
144   fgPrintf( FG_COCKPIT, FG_DEBUG, label_buffer );
145   fgPrintf( FG_COCKPIT, FG_DEBUG, "\n" );
146 #endif
147 //  lenstr = strlen( label_buffer );
148
149   if( justify == RIGHT_JUST ) {
150           posincr = scrn_rect.right - lenstr;
151   }else if( justify == CENTER_JUST ) {
152           posincr = get_span() - (lenstr/2); //  -lenstr*4;
153   }  else {
154       //  justify == LEFT_JUST
155       posincr = 0;  // 0;
156   }
157   
158   if( fontSize == SMALL ) {
159     textString( scrn_rect.left + posincr, scrn_rect.top,
160                 label_buffer, GLUT_BITMAP_8_BY_13);
161     }
162   else  {
163     if( fontSize == LARGE ) {
164       textString( scrn_rect.left + posincr, scrn_rect.top,
165                   label_buffer, GLUT_BITMAP_9_BY_15);
166       }
167     }
168 }
169