]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/hud_lat.cxx
Updates to vacuum system model from Alex Perry.
[flightgear.git] / src / Cockpit / hud_lat.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 lat_label ::
32          lat_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 lat_label :: ~lat_label()
76 {
77 }
78
79 // Copy constructor
80 lat_label :: lat_label( const lat_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 lat_label & lat_label ::operator = (const lat_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 lat_label ::
123 draw( void )       // Required method in base class
124 {
125   char label_buffer[80];
126   int posincr;
127   int lenstr;
128   RECT  scrn_rect = get_location();
129   float lat = get_value();
130   
131   if( data_available() ) {
132      sprintf( label_buffer, format_buffer, coord_format_lat(lat) );
133     }
134   else {
135      sprintf( label_buffer, format_buffer );
136     }
137     
138 #ifdef DEBUGHUD
139   fgPrintf( FG_COCKPIT, FG_DEBUG,  format_buffer );
140   fgPrintf( FG_COCKPIT, FG_DEBUG,  "\n" );
141   fgPrintf( FG_COCKPIT, FG_DEBUG, label_buffer );
142   fgPrintf( FG_COCKPIT, FG_DEBUG, "\n" );
143 #endif
144
145         lenstr = getStringWidth(label_buffer);
146                                                 
147   if( justify == RIGHT_JUST ) {
148           posincr = scrn_rect.right - lenstr;
149   }else if( justify == CENTER_JUST ) {
150           posincr = get_span() - (lenstr/2); //  -lenstr*4;
151   }  else {
152       //  justify == LEFT_JUST
153       posincr = 0;  // 0;
154   }
155   
156   if( fontSize == SMALL ) {
157     textString( scrn_rect.left + posincr, scrn_rect.top,
158                 label_buffer, GLUT_BITMAP_8_BY_13);
159     }
160   else  {
161     if( fontSize == LARGE ) {
162       textString( scrn_rect.left + posincr, scrn_rect.top,
163                   label_buffer, GLUT_BITMAP_9_BY_15);
164       }
165     }
166 }
167