1998-09-29 14:56:30 +00:00
|
|
|
// hud.cxx -- hud defines and prototypes
|
|
|
|
//
|
|
|
|
// Written by Michele America, started September 1997.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1997 Michele F. America - micheleamerica@geocities.com
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1997-08-29 18:03:19 +00:00
|
|
|
|
1998-04-24 00:45:53 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
1998-04-03 21:55:27 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_WINDOWS_H
|
1998-02-03 23:20:08 +00:00
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
1998-11-23 21:48:09 +00:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
# define exception c_exception
|
|
|
|
#endif
|
|
|
|
#include <math.h>
|
|
|
|
|
1997-08-29 18:03:19 +00:00
|
|
|
#include <GL/glut.h>
|
|
|
|
#include <stdlib.h>
|
1998-02-03 23:20:08 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/constants.h>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
2000-05-13 00:02:43 +00:00
|
|
|
//#include <simgear/math/fg_random.h>
|
|
|
|
//#include <simgear/math/polar3d.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
#include <Aircraft/aircraft.hxx>
|
2000-04-30 06:51:49 +00:00
|
|
|
#include <Autopilot/newauto.hxx>
|
1999-05-12 02:04:38 +00:00
|
|
|
#include <GUI/gui.h>
|
1998-07-13 21:00:45 +00:00
|
|
|
#include <Main/options.hxx>
|
2000-01-12 18:40:04 +00:00
|
|
|
#ifdef FG_NETWORK_OLK
|
2000-01-12 18:09:35 +00:00
|
|
|
#include <NetworkOLK/network.h>
|
2000-01-12 18:40:04 +00:00
|
|
|
#endif
|
1998-04-30 12:35:59 +00:00
|
|
|
#include <Scenery/scenery.hxx>
|
2000-05-13 00:02:43 +00:00
|
|
|
//#include <Time/fg_timer.hxx>
|
1997-08-29 18:03:19 +00:00
|
|
|
|
1998-07-30 23:44:05 +00:00
|
|
|
#if defined ( __sun__ ) || defined ( __sgi )
|
1998-07-03 13:16:27 +00:00
|
|
|
extern "C" {
|
|
|
|
extern void *memmove(void *, const void *, size_t);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-07-30 23:44:05 +00:00
|
|
|
#include "hud.hxx"
|
|
|
|
|
1998-11-03 12:33:11 +00:00
|
|
|
static char units[5];
|
1998-06-05 18:17:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// The following routines obtain information concerning the aircraft's
|
1998-02-07 15:29:31 +00:00
|
|
|
// current state and return it to calling instrument display routines.
|
|
|
|
// They should eventually be member functions of the aircraft.
|
|
|
|
//
|
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
deque< instr_item * > HUD_deque;
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
fgTextList HUD_TextList;
|
|
|
|
fgLineList HUD_LineList;
|
|
|
|
fgLineList HUD_StippleLineList;
|
1998-02-16 13:38:39 +00:00
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
fntRenderer *HUDtext = 0;
|
|
|
|
float HUD_TextSize = 0;
|
|
|
|
int HUD_style = 0;
|
|
|
|
|
|
|
|
float HUD_matrix[16];
|
|
|
|
static float hud_trans_alpha = 0.67f;
|
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
void fgHUDalphaInit( void );
|
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
class locRECT {
|
|
|
|
public:
|
|
|
|
RECT rect;
|
1998-02-16 13:38:39 +00:00
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
locRECT( UINT left, UINT top, UINT right, UINT bottom);
|
|
|
|
RECT get_rect(void) { return rect;}
|
|
|
|
};
|
1998-02-16 13:38:39 +00:00
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
locRECT :: locRECT( UINT left, UINT top, UINT right, UINT bottom)
|
1998-02-16 13:38:39 +00:00
|
|
|
{
|
1998-05-11 18:13:10 +00:00
|
|
|
rect.left = left;
|
|
|
|
rect.top = top;
|
|
|
|
rect.right = right;
|
|
|
|
rect.bottom = bottom;
|
1998-02-16 13:38:39 +00:00
|
|
|
|
|
|
|
}
|
1998-05-11 18:13:10 +00:00
|
|
|
// #define DEBUG
|
1998-02-16 13:38:39 +00:00
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
#ifdef OLD_CODE
|
1998-05-11 18:13:10 +00:00
|
|
|
void drawOneLine( UINT x1, UINT y1, UINT x2, UINT y2)
|
|
|
|
{
|
|
|
|
glBegin(GL_LINES);
|
|
|
|
glVertex2f(x1, y1);
|
|
|
|
glVertex2f(x2, y2);
|
|
|
|
glEnd();
|
1998-02-16 13:38:39 +00:00
|
|
|
}
|
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
void drawOneLine( RECT &rect)
|
1998-02-07 15:29:31 +00:00
|
|
|
{
|
1998-05-11 18:13:10 +00:00
|
|
|
glBegin(GL_LINES);
|
|
|
|
glVertex2f(rect.left, rect.top);
|
|
|
|
glVertex2f(rect.right, rect.bottom);
|
|
|
|
glEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// The following code deals with painting the "instrument" on the display
|
|
|
|
//
|
|
|
|
/* textString - Bitmap font string */
|
1998-02-07 15:29:31 +00:00
|
|
|
|
1998-07-03 13:16:27 +00:00
|
|
|
void textString( int x, int y, char *msg, void *font ){
|
1999-05-12 02:04:38 +00:00
|
|
|
|
|
|
|
if(*msg)
|
|
|
|
{
|
|
|
|
// puDrawString ( NULL, msg, x, y );
|
|
|
|
glRasterPos2f(x, y);
|
|
|
|
while (*msg) {
|
|
|
|
glutBitmapCharacter(font, *msg);
|
|
|
|
msg++;
|
|
|
|
}
|
1998-05-11 18:13:10 +00:00
|
|
|
}
|
1998-02-07 15:29:31 +00:00
|
|
|
}
|
|
|
|
|
1998-07-03 13:16:27 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
/* strokeString - Stroke font string */
|
1998-07-03 13:16:27 +00:00
|
|
|
void strokeString(int x, int y, char *msg, void *font, float theta)
|
1998-02-07 15:29:31 +00:00
|
|
|
{
|
1999-05-12 02:04:38 +00:00
|
|
|
int xx;
|
|
|
|
int yy;
|
|
|
|
int c;
|
|
|
|
float sintheta,costheta;
|
|
|
|
|
|
|
|
|
|
|
|
if(*msg)
|
|
|
|
{
|
|
|
|
glPushMatrix();
|
|
|
|
glRotatef(theta * RAD_TO_DEG, 0.0, 0.0, 1.0);
|
|
|
|
sintheta = sin(theta);
|
|
|
|
costheta = cos(theta);
|
|
|
|
xx = (int)(x * costheta + y * sintheta);
|
|
|
|
yy = (int)(y * costheta - x * sintheta);
|
|
|
|
glTranslatef( xx, yy, 0);
|
|
|
|
glScalef(.1, .1, 0.0);
|
|
|
|
while( (c=*msg++) ) {
|
|
|
|
glutStrokeCharacter(font, c);
|
|
|
|
}
|
|
|
|
glPopMatrix();
|
|
|
|
}
|
1998-02-07 15:29:31 +00:00
|
|
|
}
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
int getStringWidth ( char *str )
|
|
|
|
{
|
|
|
|
if ( HUDtext && str )
|
|
|
|
{
|
|
|
|
float r, l ;
|
|
|
|
guiFntHandle->getBBox ( str, HUD_TextSize, 0, &l, &r, NULL, NULL ) ;
|
|
|
|
return FloatToInt( r - l );
|
|
|
|
}
|
|
|
|
return 0 ;
|
|
|
|
}
|
2000-05-13 00:02:43 +00:00
|
|
|
#endif // OLD_CODE
|
1999-06-01 21:17:10 +00:00
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
//========================= End of Class Implementations===================
|
1998-02-07 15:29:31 +00:00
|
|
|
// fgHUDInit
|
|
|
|
//
|
|
|
|
// Constructs a HUD object and then adds in instruments. At the present
|
|
|
|
// the instruments are hard coded into the routine. Ultimately these need
|
|
|
|
// to be defined by the aircraft's instrumentation records so that the
|
|
|
|
// display for a Piper Cub doesn't show the speed range of a North American
|
|
|
|
// mustange and the engine readouts of a B36!
|
|
|
|
//
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1998-07-03 13:16:27 +00:00
|
|
|
#define INSTRDEFS 21
|
1998-05-11 18:13:10 +00:00
|
|
|
|
|
|
|
int fgHUDInit( fgAIRCRAFT * /* current_aircraft */ )
|
1997-08-29 18:03:19 +00:00
|
|
|
{
|
1998-05-11 18:13:10 +00:00
|
|
|
instr_item *HIptr;
|
1999-05-12 02:04:38 +00:00
|
|
|
// int index;
|
|
|
|
|
1999-10-15 20:42:28 +00:00
|
|
|
// int off = 50;
|
1999-05-12 02:04:38 +00:00
|
|
|
int min_x = 25; //off/2;
|
|
|
|
int max_x = 615; //640-(off/2);
|
|
|
|
// int min_y = off;
|
|
|
|
int max_y = 430; //480-off;
|
|
|
|
int cen_x = 320;
|
|
|
|
int cen_y = 240;
|
|
|
|
unsigned int text_h = 10;
|
|
|
|
unsigned int ladr_w2 = 60;
|
|
|
|
int ladr_h2 = 90;
|
|
|
|
int ladr_t = 35;
|
1999-06-01 21:17:10 +00:00
|
|
|
int compass_w = 200;
|
1999-05-12 02:04:38 +00:00
|
|
|
int gap = 10;
|
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
// int font_size = current_options.get_xsize() / 60;
|
|
|
|
int font_size = (current_options.get_xsize() > 1000) ? LARGE : SMALL;
|
1999-06-01 21:17:10 +00:00
|
|
|
|
|
|
|
HUD_style = 1;
|
1998-02-07 15:29:31 +00:00
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_COCKPIT, FG_INFO, "Initializing current aircraft HUD" );
|
1998-02-09 15:07:47 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// deque < instr_item * > :: iterator first = HUD_deque.begin();
|
|
|
|
// deque < instr_item * > :: iterator last = HUD_deque.end();
|
|
|
|
// HUD_deque.erase( first, last); // empty the HUD deque
|
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
HUD_deque.erase( HUD_deque.begin(), HUD_deque.end()); // empty the HUD deque
|
1998-02-07 15:29:31 +00:00
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
// hud->code = 1;
|
|
|
|
// hud->status = 0;
|
1998-02-07 15:29:31 +00:00
|
|
|
|
1998-02-12 21:58:27 +00:00
|
|
|
// For now lets just hardcode the hud here.
|
1998-02-07 15:29:31 +00:00
|
|
|
// In the future, hud information has to come from the same place
|
|
|
|
// aircraft information came from.
|
1998-02-21 14:53:10 +00:00
|
|
|
|
1998-05-11 18:13:10 +00:00
|
|
|
// fgHUDSetTimeMode( hud, NIGHT );
|
|
|
|
// fgHUDSetBrightness( hud, BRT_LIGHT );
|
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 0: // TBI
|
1999-10-15 20:42:28 +00:00
|
|
|
// int x = 290; /*cen_x-30*/
|
|
|
|
// int y = 45; /*off-5*/
|
1999-05-12 02:04:38 +00:00
|
|
|
// HIptr = (instr_item *) new fgTBI_instr( x, y, ladr_w2, text_h );
|
|
|
|
HIptr = (instr_item *) new fgTBI_instr( 290, 45, 60, 10 );
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 1: // Artificial Horizon
|
|
|
|
HIptr = (instr_item *) new HudLadder( cen_x-ladr_w2, cen_y-ladr_h2,
|
|
|
|
2*ladr_w2, 2*ladr_h2 );
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 4: // GYRO COMPASS
|
1999-06-01 21:17:10 +00:00
|
|
|
HIptr = (instr_item *) new hud_card( cen_x-(compass_w/2),
|
1999-05-12 02:04:38 +00:00
|
|
|
max_y,
|
1999-06-01 21:17:10 +00:00
|
|
|
compass_w,
|
1999-05-12 02:04:38 +00:00
|
|
|
28,
|
|
|
|
get_heading,
|
|
|
|
HUDS_TOP,
|
|
|
|
360, 0,
|
|
|
|
1.0,
|
|
|
|
5, 1,
|
|
|
|
360,
|
|
|
|
0,
|
|
|
|
25,
|
|
|
|
true);
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 5: // AMSL
|
|
|
|
HIptr = (instr_item *) new hud_card( max_x - 35 -15, // 15 to balance speed card
|
1999-06-01 21:17:10 +00:00
|
|
|
cen_y-(compass_w/2),
|
1999-05-12 02:04:38 +00:00
|
|
|
35,
|
1999-06-01 21:17:10 +00:00
|
|
|
compass_w,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_altitude,
|
|
|
|
// HUDS_RIGHT | HUDS_VERT,
|
|
|
|
HUDS_LEFT | HUDS_VERT,
|
|
|
|
5000, -1000,
|
|
|
|
1.0,
|
|
|
|
100, 25,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
250,
|
|
|
|
true);
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 6:
|
|
|
|
HIptr = (instr_item *) new guage_instr( cen_x-50, // x
|
|
|
|
cen_y + ladr_h2 -20, // y
|
|
|
|
100, // width
|
|
|
|
20, // height
|
|
|
|
get_aileronval, // data source
|
|
|
|
HUDS_BOTTOM | HUDS_NOTEXT,
|
|
|
|
100.0,
|
|
|
|
+1.0,
|
|
|
|
-1.0);
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 3: // Radio Altimeter
|
|
|
|
HIptr = (instr_item *) new hud_card( cen_x + ladr_w2 + gap + 13 + ladr_t,
|
|
|
|
cen_y-75,
|
|
|
|
25,
|
|
|
|
150,
|
|
|
|
get_agl,
|
|
|
|
HUDS_LEFT | HUDS_VERT,
|
|
|
|
1000, 0,
|
|
|
|
1.0,
|
1999-06-01 21:17:10 +00:00
|
|
|
25, 5,
|
1999-05-12 02:04:38 +00:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
200.0,
|
|
|
|
true);
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 7:
|
|
|
|
HIptr = (instr_item *) new guage_instr( cen_x -ladr_w2 -gap -13 -20 -ladr_t,
|
|
|
|
cen_y-50, // y
|
|
|
|
20, // width
|
|
|
|
100, // height
|
|
|
|
get_elevatorval, // data source
|
|
|
|
HUDS_RIGHT | HUDS_VERT | HUDS_NOTEXT,
|
|
|
|
-100.0, // Scale data
|
|
|
|
+1.0, // Data Range
|
|
|
|
-1.0);
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 8:
|
|
|
|
HIptr = (instr_item *) new guage_instr( cen_x-50, // x
|
|
|
|
cen_y -gap -ladr_w2 -20, //-85 // y
|
|
|
|
100, // width
|
|
|
|
20, // height
|
|
|
|
get_rudderval, // data source
|
|
|
|
HUDS_TOP | HUDS_NOTEXT,
|
|
|
|
100.0,
|
|
|
|
+1.0,
|
|
|
|
-1.0);
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 2: // KIAS
|
|
|
|
HIptr = (instr_item *) new hud_card( min_x +10 +5, //min_x +18,
|
1999-06-01 21:17:10 +00:00
|
|
|
cen_y-(compass_w/2),
|
1999-05-12 02:04:38 +00:00
|
|
|
28,
|
1999-06-01 21:17:10 +00:00
|
|
|
compass_w,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_speed,
|
|
|
|
// HUDS_LEFT | HUDS_VERT,
|
|
|
|
HUDS_RIGHT | HUDS_VERT,
|
|
|
|
200.0, 0.0,
|
|
|
|
1.0,
|
|
|
|
10, 5,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
50.0,
|
|
|
|
true);
|
|
|
|
|
2000-01-10 21:06:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
|
|
|
|
// case 10: // Digital Mach number
|
|
|
|
HIptr = (instr_item *) new instr_label ( min_x , //same as speed tape
|
|
|
|
cen_y-(compass_w/2) -10, //below speed tape
|
|
|
|
40,
|
|
|
|
30,
|
|
|
|
get_mach,
|
|
|
|
"%4.2f",
|
|
|
|
"",
|
|
|
|
NULL,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
|
|
|
RIGHT_JUST,
|
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 9:
|
|
|
|
HIptr = (instr_item *) new guage_instr( min_x-10, // x
|
|
|
|
cen_y -75, // y
|
|
|
|
20, // width
|
|
|
|
150, // height
|
|
|
|
get_throttleval, // data source
|
|
|
|
// HUDS_VERT | HUDS_RIGHT | HUDS_NOTEXT,
|
|
|
|
HUDS_VERT | HUDS_LEFT | HUDS_NOTEXT, 100.0,
|
|
|
|
1.0,
|
|
|
|
0.0
|
|
|
|
);
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
// Remove this when below uncommented
|
|
|
|
// case 10:
|
|
|
|
HIptr = (instr_item *) new instr_label( 10,
|
1999-06-01 21:17:10 +00:00
|
|
|
25,
|
1999-05-12 02:04:38 +00:00
|
|
|
60,
|
|
|
|
10,
|
|
|
|
get_frame_rate,
|
|
|
|
"%5.1f",
|
|
|
|
"",
|
|
|
|
NULL,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
|
|
|
RIGHT_JUST,
|
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
HIptr = (instr_item *) new lat_label( (cen_x - (compass_w/2))/2,
|
1999-05-12 02:04:38 +00:00
|
|
|
max_y,
|
1999-06-01 21:17:10 +00:00
|
|
|
1,
|
1999-05-12 02:04:38 +00:00
|
|
|
text_h,
|
|
|
|
get_latitude,
|
|
|
|
"%s%", //"%.0f",
|
|
|
|
"", //"Lat ",
|
|
|
|
"",
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
|
|
|
CENTER_JUST,
|
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
HIptr = (instr_item *) new lon_label(((cen_x+compass_w/2)+(2*cen_x))/2,
|
|
|
|
max_y,
|
|
|
|
1, text_h,
|
|
|
|
get_longitude,
|
|
|
|
"%s%",//"%.0f",
|
|
|
|
"", //"Lon ",
|
|
|
|
"",
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
|
|
|
CENTER_JUST,
|
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
// case 10: // Digital KIAS
|
1998-07-13 21:00:45 +00:00
|
|
|
HIptr = (instr_item *) new instr_label ( 110,
|
1998-07-03 13:16:27 +00:00
|
|
|
150,
|
|
|
|
40,
|
|
|
|
30,
|
1998-05-11 18:13:10 +00:00
|
|
|
get_speed,
|
|
|
|
"%5.0f",
|
|
|
|
NULL,
|
|
|
|
" Kts",
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 11: // Digital Rate of Climb
|
1998-07-13 21:00:45 +00:00
|
|
|
HIptr = (instr_item *) new instr_label ( 110,
|
1998-07-03 13:16:27 +00:00
|
|
|
135,
|
|
|
|
40,
|
|
|
|
10,
|
1998-09-29 02:01:06 +00:00
|
|
|
get_climb_rate,
|
|
|
|
"%5.0f",
|
|
|
|
" Climb",
|
1998-05-11 18:13:10 +00:00
|
|
|
NULL,
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-09-29 02:01:06 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 12: // Roll indication diagnostic
|
1998-07-13 21:00:45 +00:00
|
|
|
HIptr = (instr_item *) new instr_label ( 110,
|
1998-07-03 13:16:27 +00:00
|
|
|
120,
|
|
|
|
40,
|
|
|
|
10,
|
1998-05-11 18:13:10 +00:00
|
|
|
get_roll,
|
|
|
|
"%5.2f",
|
|
|
|
" Roll",
|
|
|
|
" Deg",
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 13: // Angle of attack diagnostic
|
1998-07-03 13:16:27 +00:00
|
|
|
HIptr = (instr_item *) new instr_label ( 440,
|
|
|
|
150,
|
|
|
|
60,
|
|
|
|
10,
|
1998-05-11 18:13:10 +00:00
|
|
|
get_aoa,
|
1998-07-03 13:16:27 +00:00
|
|
|
" %5.2f",
|
|
|
|
"AOA",
|
1998-05-11 18:13:10 +00:00
|
|
|
" Deg",
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 14:
|
1998-07-03 13:16:27 +00:00
|
|
|
HIptr = (instr_item *) new instr_label ( 440,
|
|
|
|
135,
|
|
|
|
60,
|
|
|
|
10,
|
1998-05-11 18:13:10 +00:00
|
|
|
get_heading,
|
1998-07-13 21:00:45 +00:00
|
|
|
" %5.1f",
|
1998-07-03 13:16:27 +00:00
|
|
|
"Heading ",
|
1998-05-11 18:13:10 +00:00
|
|
|
" Deg",
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 15:
|
1998-07-03 13:16:27 +00:00
|
|
|
HIptr = (instr_item *) new instr_label ( 440,
|
|
|
|
120,
|
|
|
|
60,
|
|
|
|
10,
|
1998-05-11 18:13:10 +00:00
|
|
|
get_sideslip,
|
|
|
|
"%5.2f",
|
1998-05-16 13:04:13 +00:00
|
|
|
"Sideslip ",
|
1998-05-11 18:13:10 +00:00
|
|
|
NULL,
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 16:
|
1998-07-03 13:16:27 +00:00
|
|
|
HIptr = (instr_item *) new instr_label( 440,
|
|
|
|
100,
|
|
|
|
60,
|
|
|
|
10,
|
|
|
|
get_throttleval,
|
|
|
|
"%5.2f",
|
1998-05-16 13:04:13 +00:00
|
|
|
"Throttle ",
|
1998-05-11 18:13:10 +00:00
|
|
|
NULL,
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 17:
|
1998-07-03 13:16:27 +00:00
|
|
|
HIptr = (instr_item *) new instr_label( 440,
|
|
|
|
85,
|
|
|
|
60,
|
|
|
|
10,
|
|
|
|
get_elevatorval,
|
1998-05-11 18:13:10 +00:00
|
|
|
"%5.2f",
|
1998-07-03 13:16:27 +00:00
|
|
|
"Elevator ",
|
1998-05-11 18:13:10 +00:00
|
|
|
NULL,
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-05-11 18:13:10 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 18:
|
1998-07-03 13:16:27 +00:00
|
|
|
HIptr = (instr_item *) new instr_label( 440,
|
|
|
|
60,
|
|
|
|
60,
|
|
|
|
10,
|
|
|
|
get_aileronval,
|
1998-05-11 18:13:10 +00:00
|
|
|
"%5.2f",
|
1998-07-03 13:16:27 +00:00
|
|
|
"Aileron ",
|
1998-05-11 18:13:10 +00:00
|
|
|
NULL,
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
1998-07-03 13:16:27 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 19:
|
1998-07-03 13:16:27 +00:00
|
|
|
HIptr = (instr_item *) new instr_label( 10,
|
|
|
|
10,
|
|
|
|
60,
|
|
|
|
10,
|
|
|
|
get_frame_rate,
|
1999-05-12 02:04:38 +00:00
|
|
|
"%.1f",
|
1998-05-11 18:13:10 +00:00
|
|
|
"Frame rate = ",
|
|
|
|
NULL,
|
1998-07-13 21:00:45 +00:00
|
|
|
1.0,
|
1998-07-03 13:16:27 +00:00
|
|
|
HUDS_TOP,
|
1998-05-11 18:13:10 +00:00
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-05-11 18:13:10 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
|
|
|
|
// case 20:
|
|
|
|
switch( current_options.get_tris_or_culled() ) {
|
|
|
|
case 0:
|
|
|
|
HIptr = (instr_item *) new instr_label( 10,
|
|
|
|
25,
|
|
|
|
120,
|
|
|
|
10,
|
|
|
|
get_vfc_tris_drawn,
|
|
|
|
"%.0f",
|
|
|
|
"Tris Rendered = ",
|
|
|
|
NULL,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
|
|
|
RIGHT_JUST,
|
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
HIptr = (instr_item *) new instr_label( 10,
|
|
|
|
25,
|
|
|
|
90,
|
|
|
|
10,
|
|
|
|
get_vfc_ratio,
|
|
|
|
"%.2f",
|
|
|
|
"VFC Ratio = ",
|
|
|
|
NULL,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
|
|
|
RIGHT_JUST,
|
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// case 21:
|
1998-07-03 13:16:27 +00:00
|
|
|
HIptr = (instr_item *) new instr_label( 10,
|
1998-08-24 20:05:15 +00:00
|
|
|
40,
|
1998-07-03 13:16:27 +00:00
|
|
|
90,
|
|
|
|
10,
|
1998-08-24 20:05:15 +00:00
|
|
|
get_fov,
|
|
|
|
"%.1f",
|
|
|
|
"FOV = ",
|
|
|
|
NULL,
|
1999-05-12 02:04:38 +00:00
|
|
|
1.0,
|
1998-08-24 20:05:15 +00:00
|
|
|
HUDS_TOP,
|
|
|
|
RIGHT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
1998-08-24 20:05:15 +00:00
|
|
|
0,
|
|
|
|
TRUE );
|
1999-05-12 02:04:38 +00:00
|
|
|
HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
*/
|
|
|
|
// default:
|
|
|
|
// HIptr = 0;;
|
|
|
|
// }
|
|
|
|
// if( HIptr ) { // Anything to install?
|
|
|
|
// HUD_deque.insert( HUD_deque.begin(), HIptr);
|
|
|
|
// }
|
|
|
|
// index++;
|
|
|
|
// }
|
|
|
|
// while( HIptr );
|
1998-08-24 20:05:15 +00:00
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
fgHUDalphaInit();
|
2000-05-13 00:02:43 +00:00
|
|
|
fgHUDReshape();
|
2000-05-11 19:17:02 +00:00
|
|
|
return 0; // For now. Later we may use this for an error code.
|
1999-05-12 02:04:38 +00:00
|
|
|
|
1998-08-24 20:05:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int fgHUDInit2( fgAIRCRAFT * /* current_aircraft */ )
|
|
|
|
{
|
1999-05-12 02:04:38 +00:00
|
|
|
// instr_item *HIptr;
|
|
|
|
// int index;
|
|
|
|
|
|
|
|
int off = 50;
|
|
|
|
// int min_x = off;
|
|
|
|
// int max_x = 640-off;
|
|
|
|
// int min_y = off;
|
|
|
|
int max_y = 480-off;
|
|
|
|
int cen_x = 640 / 2;
|
1999-10-15 20:42:28 +00:00
|
|
|
int cen_y = 480 / 2;
|
1999-05-12 02:04:38 +00:00
|
|
|
int text_h = 10;
|
|
|
|
int ladr_w2 = 60;
|
1999-10-15 20:42:28 +00:00
|
|
|
int ladr_h2 = 90;
|
1999-05-12 02:04:38 +00:00
|
|
|
// int ladr_t = 35;
|
1999-06-01 21:17:10 +00:00
|
|
|
int compass_w = 200;
|
1999-05-12 02:04:38 +00:00
|
|
|
// int gap = 10;
|
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
// int font_size = current_options.get_xsize() / 60;
|
|
|
|
int font_size = (current_options.get_xsize() > 1000) ? LARGE : SMALL;
|
1998-10-16 00:53:00 +00:00
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
HUD_style = 2;
|
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_COCKPIT, FG_INFO, "Initializing current aircraft HUD" );
|
1998-10-16 00:53:00 +00:00
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// deque < instr_item * > :: iterator first = HUD_deque.begin();
|
|
|
|
// deque < instr_item * > :: iterator last = HUD_deque.end();
|
|
|
|
// HUD_deque.erase( first, last); // empty the HUD deque
|
1998-10-16 00:53:00 +00:00
|
|
|
HUD_deque.erase( HUD_deque.begin(), HUD_deque.end());
|
|
|
|
|
|
|
|
// hud->code = 1;
|
|
|
|
// hud->status = 0;
|
|
|
|
|
|
|
|
// For now lets just hardcode the hud here.
|
|
|
|
// In the future, hud information has to come from the same place
|
|
|
|
// aircraft information came from.
|
|
|
|
|
|
|
|
// fgHUDSetTimeMode( hud, NIGHT );
|
|
|
|
// fgHUDSetBrightness( hud, BRT_LIGHT );
|
|
|
|
|
|
|
|
// index = 0;
|
1999-05-12 02:04:38 +00:00
|
|
|
// index = 19;
|
1998-10-16 00:53:00 +00:00
|
|
|
|
|
|
|
instr_item* p;
|
|
|
|
|
1999-10-15 20:42:28 +00:00
|
|
|
p = new HudLadder( cen_x-ladr_w2, cen_y-ladr_h2, 2*ladr_w2, 2*ladr_h2, 1 );
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
// case 4: // GYRO COMPASS
|
1999-06-01 21:17:10 +00:00
|
|
|
p =new hud_card( cen_x-(compass_w/2),
|
1999-05-12 02:04:38 +00:00
|
|
|
max_y,
|
1999-06-01 21:17:10 +00:00
|
|
|
compass_w,
|
1999-05-12 02:04:38 +00:00
|
|
|
28,
|
|
|
|
get_view_direction,
|
|
|
|
HUDS_TOP,
|
|
|
|
360, 0,
|
|
|
|
1.0,
|
|
|
|
5, 1,
|
|
|
|
360,
|
|
|
|
0,
|
|
|
|
25,
|
|
|
|
true);
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
p = new lat_label( (cen_x - compass_w/2)/2,
|
1999-05-12 02:04:38 +00:00
|
|
|
max_y,
|
1999-06-01 21:17:10 +00:00
|
|
|
0, text_h,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_latitude,
|
|
|
|
"%s%", //"%.0f",
|
|
|
|
"", //"Lat ",
|
|
|
|
"",
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
|
|
|
CENTER_JUST,
|
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
|
|
|
// p = new instr_label( 140, 450, 60, 10,
|
|
|
|
// get_lat_min,
|
|
|
|
// "%05.2f",
|
|
|
|
// "",
|
|
|
|
// NULL,
|
|
|
|
// 1.0,
|
|
|
|
// HUDS_TOP,
|
|
|
|
// CENTER_JUST,
|
|
|
|
// font_size,
|
|
|
|
// 0,
|
|
|
|
// TRUE );
|
|
|
|
// HUD_deque.push_front( p );
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
p = new lon_label(((cen_x+compass_w/2)+(2*cen_x))/2,
|
1999-05-12 02:04:38 +00:00
|
|
|
max_y,
|
1999-06-01 21:17:10 +00:00
|
|
|
1, text_h,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_longitude,
|
|
|
|
"%s%",//"%.0f",
|
|
|
|
"", //"Lon ",
|
|
|
|
"",
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
|
|
|
CENTER_JUST,
|
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
int x_pos = 40;
|
1999-05-12 02:04:38 +00:00
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
p = new instr_label( x_pos, 25, 60, 10,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_frame_rate,
|
|
|
|
"%7.1f",
|
|
|
|
"Frame rate =",
|
|
|
|
NULL,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
1998-10-16 00:53:00 +00:00
|
|
|
HUD_deque.push_front( p );
|
1999-10-15 20:42:28 +00:00
|
|
|
#if 0
|
1999-06-01 21:17:10 +00:00
|
|
|
p = new instr_label( x_pos, 40, 120, 10,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_vfc_tris_culled,
|
|
|
|
"%7.0f",
|
1999-06-01 21:17:10 +00:00
|
|
|
"Culled =",
|
1999-05-12 02:04:38 +00:00
|
|
|
NULL,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
1998-10-16 00:53:00 +00:00
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
p = new instr_label( x_pos, 55, 120, 10,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_vfc_tris_drawn,
|
|
|
|
"%7.0f",
|
|
|
|
"Rendered =",
|
|
|
|
NULL,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
HUD_deque.push_front( p );
|
1999-10-15 20:42:28 +00:00
|
|
|
#endif // 0
|
|
|
|
|
|
|
|
// p = new instr_label( x_pos, 70, 90, 10,
|
|
|
|
p = new instr_label( x_pos, 40, 90, 10,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_fov,
|
|
|
|
"%7.1f",
|
1999-06-01 21:17:10 +00:00
|
|
|
"FOV = ",
|
1999-05-12 02:04:38 +00:00
|
|
|
NULL,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
1998-10-16 00:53:00 +00:00
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1999-06-01 21:17:10 +00:00
|
|
|
x_pos = 480;
|
1999-05-12 02:04:38 +00:00
|
|
|
|
|
|
|
p = new instr_label ( x_pos,
|
|
|
|
70,
|
|
|
|
60,
|
|
|
|
10,
|
|
|
|
get_aoa,
|
|
|
|
"%7.2f",
|
1999-06-01 21:17:10 +00:00
|
|
|
"AOA ",
|
1999-05-12 02:04:38 +00:00
|
|
|
" Deg",
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
|
|
|
p = new instr_label( x_pos, 55, 40, 30,
|
|
|
|
get_speed,
|
|
|
|
"%5.0f",
|
|
|
|
"Airspeed ",
|
|
|
|
" Kts",
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
1998-10-16 00:53:00 +00:00
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1998-11-03 12:33:11 +00:00
|
|
|
if ( current_options.get_units() == fgOPTIONS::FG_UNITS_FEET ) {
|
1999-05-12 02:04:38 +00:00
|
|
|
strcpy(units, " ft");
|
1998-11-03 12:33:11 +00:00
|
|
|
} else {
|
1999-05-12 02:04:38 +00:00
|
|
|
strcpy(units, " m");
|
1998-11-03 12:33:11 +00:00
|
|
|
}
|
1999-05-12 02:04:38 +00:00
|
|
|
p = new instr_label( x_pos, 40, 40, 10,
|
|
|
|
get_altitude,
|
|
|
|
"%5.0f",
|
|
|
|
"Altitude ",
|
|
|
|
units,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1998-10-16 00:53:00 +00:00
|
|
|
p = new instr_label( x_pos, 25, 40, 10,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_agl,
|
|
|
|
"%5.0f",
|
|
|
|
"Elvation ",
|
|
|
|
units,
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
1998-10-16 00:53:00 +00:00
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
|
|
|
p = new instr_label( x_pos, 10, 60, 10,
|
1999-05-12 02:04:38 +00:00
|
|
|
get_heading,
|
|
|
|
"%5.1f",
|
|
|
|
"Heading ",
|
|
|
|
" Deg",
|
|
|
|
1.0,
|
|
|
|
HUDS_TOP,
|
1999-06-01 21:17:10 +00:00
|
|
|
LEFT_JUST,
|
1999-05-12 02:04:38 +00:00
|
|
|
font_size,
|
|
|
|
0,
|
|
|
|
TRUE );
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
|
|
|
p = new fgTBI_instr( 290, 55, 60, 10 ); // 270
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
|
|
|
p = new guage_instr( 270, //250, // x
|
|
|
|
390, //360, //400, //45, //420, // y
|
|
|
|
100, // width
|
|
|
|
20, // height
|
|
|
|
get_aileronval, // data source
|
|
|
|
HUDS_BOTTOM | HUDS_NOTEXT,
|
|
|
|
100.0,
|
|
|
|
+1.0,
|
|
|
|
-1.0);
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
|
|
|
p = new guage_instr( 20, // x
|
|
|
|
240-50, // y
|
|
|
|
20, // width
|
|
|
|
100, // height
|
|
|
|
get_elevatorval, // data source
|
|
|
|
HUDS_RIGHT | HUDS_VERT | HUDS_NOTEXT,
|
|
|
|
-100.0, // Scale data
|
|
|
|
+1.0, // Data Range
|
|
|
|
-1.0);
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
|
|
|
p = new guage_instr( 270, //250, // x
|
|
|
|
10+15, // y
|
|
|
|
100, // width
|
|
|
|
20, // height
|
|
|
|
get_rudderval, // data source
|
|
|
|
HUDS_TOP | HUDS_NOTEXT,
|
|
|
|
100.0,
|
|
|
|
+1.0,
|
|
|
|
-1.0);
|
1998-10-16 00:53:00 +00:00
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1999-05-12 02:04:38 +00:00
|
|
|
p = new guage_instr( 600, // x
|
|
|
|
240-80,
|
|
|
|
20,
|
|
|
|
160, // height
|
|
|
|
get_throttleval, // data source
|
|
|
|
HUDS_VERT | HUDS_LEFT | HUDS_NOTEXT,
|
|
|
|
100.0,
|
|
|
|
1.0,
|
|
|
|
0.0);
|
|
|
|
HUD_deque.push_front( p );
|
|
|
|
|
1998-10-16 00:53:00 +00:00
|
|
|
return 0; // For now. Later we may use this for an error code.
|
1997-08-29 18:03:19 +00:00
|
|
|
}
|
|
|
|
|
1998-07-13 21:00:45 +00:00
|
|
|
int global_day_night_switch = DAY;
|
|
|
|
|
|
|
|
void HUD_brightkey( bool incr_bright )
|
|
|
|
{
|
|
|
|
instr_item *pHUDInstr = HUD_deque[0];
|
|
|
|
int brightness = pHUDInstr->get_brightness();
|
|
|
|
|
|
|
|
if( current_options.get_hud_status() ) {
|
|
|
|
if( incr_bright ) {
|
|
|
|
switch (brightness) {
|
|
|
|
case BRT_LIGHT:
|
1999-05-12 02:04:38 +00:00
|
|
|
current_options.set_hud_status(0);
|
1998-07-13 21:00:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_MEDIUM:
|
|
|
|
brightness = BRT_LIGHT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_DARK:
|
|
|
|
brightness = BRT_MEDIUM;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_BLACK:
|
|
|
|
brightness = BRT_DARK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
brightness = BRT_BLACK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
switch (brightness) {
|
|
|
|
case BRT_LIGHT:
|
|
|
|
brightness = BRT_MEDIUM;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_MEDIUM:
|
|
|
|
brightness = BRT_DARK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_DARK:
|
|
|
|
brightness = BRT_BLACK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_BLACK:
|
|
|
|
default:
|
1999-05-12 02:04:38 +00:00
|
|
|
current_options.set_hud_status(0);
|
1998-07-13 21:00:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
current_options.set_hud_status(1);
|
|
|
|
if( incr_bright ) {
|
|
|
|
if( DAY == global_day_night_switch ) {
|
|
|
|
brightness = BRT_BLACK;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
brightness = BRT_DARK;
|
|
|
|
global_day_night_switch = DAY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( NIGHT == global_day_night_switch ) {
|
|
|
|
brightness = BRT_DARK;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
brightness = BRT_MEDIUM;
|
|
|
|
global_day_night_switch = NIGHT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pHUDInstr->SetBrightness( brightness );
|
|
|
|
}
|
1997-08-29 18:03:19 +00:00
|
|
|
|
1999-06-30 20:21:04 +00:00
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
#define fgAP_CLAMP(val,min,max) ( (val) = (val) > (max) ? (max) : (val) < (min) ? (min) : (val) )
|
|
|
|
|
|
|
|
static puDialogBox *HUDalphaDialog;
|
|
|
|
static puText *HUDalphaText;
|
|
|
|
static puSlider *HUDalphaHS0;
|
2000-05-13 00:02:43 +00:00
|
|
|
//static puText *HUDtextText;
|
|
|
|
//static puSlider *HUDalphaHS1;
|
|
|
|
static char SliderText[2][ 8 ];
|
2000-05-11 19:17:02 +00:00
|
|
|
|
|
|
|
static void alpha_adj( puObject *hs ) {
|
|
|
|
float val ;
|
|
|
|
|
|
|
|
hs-> getValue ( &val ) ;
|
|
|
|
fgAP_CLAMP ( val, 0.1, 1.0 ) ;
|
|
|
|
// printf ( "maxroll_adj( %p ) %f %f\n", hs, val, MaxRollAdjust * val ) ;
|
|
|
|
hud_trans_alpha = val;
|
|
|
|
sprintf( SliderText[ 0 ], "%05.2f", hud_trans_alpha );
|
|
|
|
HUDalphaText -> setLabel ( SliderText[ 0 ] ) ;
|
|
|
|
}
|
1999-06-01 21:17:10 +00:00
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
void fgHUDalphaAdjust( puObject * ) {
|
2000-05-13 00:02:43 +00:00
|
|
|
current_options.set_anti_alias_hud(1);
|
2000-05-11 19:17:02 +00:00
|
|
|
FG_PUSH_PUI_DIALOG( HUDalphaDialog );
|
|
|
|
}
|
1998-02-07 15:29:31 +00:00
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
static void goAwayHUDalphaAdjust (puObject *)
|
|
|
|
{
|
|
|
|
FG_POP_PUI_DIALOG( HUDalphaDialog );
|
1997-08-29 18:03:19 +00:00
|
|
|
}
|
1999-09-11 02:07:48 +00:00
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
static void cancelHUDalphaAdjust (puObject *)
|
|
|
|
{
|
|
|
|
current_options.set_anti_alias_hud(0);
|
|
|
|
FG_POP_PUI_DIALOG( HUDalphaDialog );
|
|
|
|
}
|
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
// Done once at system initialization
|
|
|
|
void fgHUDalphaInit( void ) {
|
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
// printf("fgHUDalphaInit\n");
|
2000-05-11 19:17:02 +00:00
|
|
|
#define HORIZONTAL FALSE
|
|
|
|
|
|
|
|
int DialogX = 40;
|
|
|
|
int DialogY = 100;
|
2000-05-13 00:02:43 +00:00
|
|
|
int DialogWidth = 240;
|
2000-05-11 19:17:02 +00:00
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
char Label[] = "HUD Adjuster";
|
2000-05-11 19:17:02 +00:00
|
|
|
char *s;
|
|
|
|
|
|
|
|
int labelX = (DialogWidth / 2) -
|
|
|
|
(puGetStringWidth( puGetDefaultLabelFont(), Label ) / 2);
|
2000-05-13 00:02:43 +00:00
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
int nSliders = 1;
|
|
|
|
int slider_x = 10;
|
|
|
|
int slider_y = 55;
|
2000-05-13 00:02:43 +00:00
|
|
|
int slider_width = 220;
|
2000-05-11 19:17:02 +00:00
|
|
|
int slider_title_x = 15;
|
|
|
|
int slider_value_x = 160;
|
|
|
|
float slider_delta = 0.05f;
|
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
puFont HUDalphaLegendFont;
|
|
|
|
puFont HUDalphaLabelFont;
|
|
|
|
puGetDefaultFonts ( &HUDalphaLegendFont, &HUDalphaLabelFont );
|
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
HUDalphaDialog = new puDialogBox ( DialogX, DialogY ); {
|
|
|
|
int horiz_slider_height = puGetStringHeight (HUDalphaLabelFont) +
|
|
|
|
puGetStringDescender (HUDalphaLabelFont) +
|
|
|
|
PUSTR_TGAP + PUSTR_BGAP + 5;
|
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
puFrame *
|
2000-05-11 19:17:02 +00:00
|
|
|
HUDalphaFrame = new puFrame ( 0, 0,
|
|
|
|
DialogWidth,
|
|
|
|
85 + nSliders * horiz_slider_height );
|
2000-05-13 00:02:43 +00:00
|
|
|
|
|
|
|
puText *
|
2000-05-11 19:17:02 +00:00
|
|
|
HUDalphaDialogMessage = new puText ( labelX,
|
|
|
|
52 + nSliders
|
|
|
|
* horiz_slider_height );
|
|
|
|
HUDalphaDialogMessage -> setDefaultValue ( Label );
|
|
|
|
HUDalphaDialogMessage -> getDefaultValue ( &s );
|
|
|
|
HUDalphaDialogMessage -> setLabel ( s );
|
|
|
|
|
|
|
|
HUDalphaHS0 = new puSlider ( slider_x, slider_y,
|
|
|
|
slider_width, HORIZONTAL ) ;
|
2000-05-13 00:02:43 +00:00
|
|
|
HUDalphaHS0-> setDelta ( slider_delta ) ;
|
|
|
|
HUDalphaHS0-> setValue ( hud_trans_alpha ) ;
|
|
|
|
HUDalphaHS0-> setCBMode ( PUSLIDER_DELTA ) ;
|
|
|
|
HUDalphaHS0-> setCallback ( alpha_adj ) ;
|
|
|
|
|
|
|
|
puText *
|
|
|
|
HUDalphaTitle = new puText ( slider_title_x, slider_y ) ;
|
|
|
|
HUDalphaTitle-> setDefaultValue ( "Alpha" ) ;
|
2000-05-11 19:17:02 +00:00
|
|
|
HUDalphaTitle-> getDefaultValue ( &s ) ;
|
2000-05-13 00:02:43 +00:00
|
|
|
HUDalphaTitle-> setLabel ( s ) ;
|
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
HUDalphaText = new puText ( slider_value_x, slider_y ) ;
|
2000-05-13 00:02:43 +00:00
|
|
|
sprintf( SliderText[ 0 ], "%05.2f", hud_trans_alpha );
|
2000-05-11 19:17:02 +00:00
|
|
|
HUDalphaText-> setLabel ( SliderText[ 0 ] ) ;
|
|
|
|
|
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
puOneShot *
|
|
|
|
HUDalphaOkButton = new puOneShot ( 10, 10, 60, 45 );
|
|
|
|
HUDalphaOkButton-> setLegend ( gui_msg_OK );
|
2000-05-11 19:17:02 +00:00
|
|
|
HUDalphaOkButton-> makeReturnDefault ( TRUE );
|
2000-05-13 00:02:43 +00:00
|
|
|
HUDalphaOkButton-> setCallback ( goAwayHUDalphaAdjust );
|
|
|
|
|
|
|
|
puOneShot *
|
|
|
|
HUDalphaNoButton = new puOneShot ( 160, 10, 230, 45 );
|
|
|
|
HUDalphaNoButton-> setLegend ( gui_msg_CANCEL );
|
|
|
|
HUDalphaNoButton-> setCallback ( cancelHUDalphaAdjust );
|
2000-05-11 19:17:02 +00:00
|
|
|
}
|
|
|
|
FG_FINALIZE_PUI_DIALOG( HUDalphaDialog );
|
|
|
|
|
|
|
|
#undef HORIZONTAL
|
|
|
|
}
|
1999-09-11 02:07:48 +00:00
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
void fgHUDReshape(void) {
|
|
|
|
if ( HUDtext )
|
|
|
|
delete HUDtext;
|
|
|
|
|
|
|
|
HUD_TextSize = current_options.get_xsize() / 60;
|
2000-05-14 01:41:11 +00:00
|
|
|
HUD_TextSize = 10;
|
2000-05-13 00:02:43 +00:00
|
|
|
HUDtext = new fntRenderer();
|
|
|
|
HUDtext -> setFont ( guiFntHandle ) ;
|
|
|
|
HUDtext -> setPointSize ( HUD_TextSize ) ;
|
|
|
|
HUD_TextList.setFont( HUDtext );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void set_hud_color(float r, float g, float b) {
|
|
|
|
current_options.get_anti_alias_hud() ?
|
|
|
|
glColor4f(r,g,b,hud_trans_alpha) :
|
|
|
|
glColor3f(r,g,b);
|
|
|
|
}
|
|
|
|
|
1999-09-11 02:07:48 +00:00
|
|
|
// fgUpdateHUD
|
|
|
|
//
|
|
|
|
// Performs a once around the list of calls to instruments installed in
|
|
|
|
// the HUD object with requests for redraw. Kinda. It will when this is
|
|
|
|
// all C++.
|
|
|
|
//
|
|
|
|
void fgUpdateHUD( void ) {
|
|
|
|
int brightness;
|
|
|
|
// int day_night_sw = current_aircraft.controls->day_night_switch;
|
|
|
|
int day_night_sw = global_day_night_switch;
|
|
|
|
int hud_displays = HUD_deque.size();
|
|
|
|
instr_item *pHUDInstr;
|
|
|
|
float line_width;
|
|
|
|
|
|
|
|
if( !hud_displays ) { // Trust everyone, but ALWAYS cut the cards!
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
HUD_TextList.erase();
|
|
|
|
HUD_LineList.erase();
|
|
|
|
// HUD_StippleLineList.erase();
|
|
|
|
|
|
|
|
pHUDInstr = HUD_deque[0];
|
|
|
|
brightness = pHUDInstr->get_brightness();
|
|
|
|
// brightness = HUD_deque.at(0)->get_brightness();
|
|
|
|
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
glPushMatrix();
|
|
|
|
|
|
|
|
glLoadIdentity();
|
|
|
|
gluOrtho2D(0, 640, 0, 480);
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
glPushMatrix();
|
|
|
|
glLoadIdentity();
|
|
|
|
|
|
|
|
glDisable(GL_DEPTH_TEST);
|
|
|
|
glDisable(GL_LIGHTING);
|
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
if( current_options.get_anti_alias_hud() ) {
|
|
|
|
glEnable(GL_LINE_SMOOTH);
|
|
|
|
// glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glHint(GL_LINE_SMOOTH_HINT,GL_DONT_CARE);
|
|
|
|
glLineWidth(1.5);
|
|
|
|
} else {
|
|
|
|
glLineWidth(1.0);
|
|
|
|
}
|
2000-05-11 19:17:02 +00:00
|
|
|
|
1999-09-11 02:07:48 +00:00
|
|
|
if( day_night_sw == DAY) {
|
|
|
|
switch (brightness) {
|
|
|
|
case BRT_LIGHT:
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color (0.1f, 0.9f, 0.1f);
|
1999-09-11 02:07:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_MEDIUM:
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color (0.1f, 0.7f, 0.0f);
|
1999-09-11 02:07:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_DARK:
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color (0.0f, 0.6f, 0.0f);
|
1999-09-11 02:07:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_BLACK:
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color( 0.0f, 0.0f, 0.0f);
|
1999-09-11 02:07:48 +00:00
|
|
|
break;
|
|
|
|
|
2000-05-11 19:17:02 +00:00
|
|
|
default:
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color (0.1f, 0.9f, 0.1f);
|
1999-09-11 02:07:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( day_night_sw == NIGHT) {
|
|
|
|
switch (brightness) {
|
|
|
|
case BRT_LIGHT:
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color (0.9f, 0.1f, 0.1f);
|
1999-09-11 02:07:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_MEDIUM:
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color (0.7f, 0.0f, 0.1f);
|
1999-09-11 02:07:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BRT_DARK:
|
|
|
|
default:
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color (0.6f, 0.0f, 0.0f);
|
1999-09-11 02:07:48 +00:00
|
|
|
}
|
|
|
|
}
|
2000-05-11 19:17:02 +00:00
|
|
|
else { // Just in case default
|
2000-05-13 00:02:43 +00:00
|
|
|
set_hud_color (0.1f, 0.9f, 0.1f);
|
2000-05-11 19:17:02 +00:00
|
|
|
}
|
1999-09-11 02:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
deque < instr_item * > :: iterator current = HUD_deque.begin();
|
|
|
|
deque < instr_item * > :: iterator last = HUD_deque.end();
|
|
|
|
|
|
|
|
for ( ; current != last; ++current ) {
|
|
|
|
pHUDInstr = *current;
|
|
|
|
|
|
|
|
if( pHUDInstr->enabled()) {
|
|
|
|
// fgPrintf( FG_COCKPIT, FG_DEBUG, "HUD Code %d Status %d\n",
|
|
|
|
// hud->code, hud->status );
|
|
|
|
pHUDInstr->draw();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *gmt_str = get_formated_gmt_time();
|
|
|
|
HUD_TextList.add( fgText(40, 10, gmt_str) );
|
|
|
|
|
2000-01-12 18:09:35 +00:00
|
|
|
#ifdef FG_NETWORK_OLK
|
|
|
|
if ( net_hud_display ) {
|
|
|
|
net_hud_update();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-09-11 02:07:48 +00:00
|
|
|
// temporary
|
2000-04-30 06:51:49 +00:00
|
|
|
// extern bool fgAPAltitudeEnabled( void );
|
|
|
|
// extern bool fgAPHeadingEnabled( void );
|
|
|
|
// extern bool fgAPWayPointEnabled( void );
|
|
|
|
// extern char *fgAPget_TargetDistanceStr( void );
|
|
|
|
// extern char *fgAPget_TargetHeadingStr( void );
|
|
|
|
// extern char *fgAPget_TargetAltitudeStr( void );
|
|
|
|
// extern char *fgAPget_TargetLatLonStr( void );
|
1999-09-11 02:07:48 +00:00
|
|
|
|
|
|
|
int apY = 480 - 80;
|
1999-10-15 20:42:28 +00:00
|
|
|
// char scratch[128];
|
1999-09-11 02:07:48 +00:00
|
|
|
// HUD_TextList.add( fgText( "AUTOPILOT", 20, apY) );
|
|
|
|
// apY -= 15;
|
2000-04-30 06:51:49 +00:00
|
|
|
if( current_autopilot->get_HeadingEnabled() ) {
|
|
|
|
HUD_TextList.add( fgText( 40, apY,
|
|
|
|
current_autopilot->get_TargetHeadingStr()) );
|
1999-09-11 02:07:48 +00:00
|
|
|
apY -= 15;
|
|
|
|
}
|
2000-04-30 06:51:49 +00:00
|
|
|
if( current_autopilot->get_AltitudeEnabled() ) {
|
|
|
|
HUD_TextList.add( fgText( 40, apY,
|
|
|
|
current_autopilot->get_TargetAltitudeStr()) );
|
1999-09-11 02:07:48 +00:00
|
|
|
apY -= 15;
|
|
|
|
}
|
2000-04-30 06:51:49 +00:00
|
|
|
if( current_autopilot->get_HeadingMode() ==
|
|
|
|
FGAutopilot::FG_HEADING_WAYPOINT ) {
|
|
|
|
HUD_TextList.add( fgText( 40, apY,
|
|
|
|
current_autopilot->get_TargetLatLonStr()) );
|
1999-09-11 02:07:48 +00:00
|
|
|
apY -= 15;
|
2000-04-30 06:51:49 +00:00
|
|
|
HUD_TextList.add( fgText( 40, apY,
|
|
|
|
current_autopilot->get_TargetDistanceStr() ) );
|
1999-09-11 02:07:48 +00:00
|
|
|
apY -= 15;
|
|
|
|
}
|
|
|
|
|
|
|
|
HUD_TextList.draw();
|
|
|
|
|
|
|
|
HUD_LineList.draw();
|
|
|
|
|
|
|
|
// glEnable(GL_LINE_STIPPLE);
|
|
|
|
// glLineStipple( 1, 0x00FF );
|
|
|
|
// HUD_StippleLineList.draw();
|
|
|
|
// glDisable(GL_LINE_STIPPLE);
|
|
|
|
|
2000-05-13 00:02:43 +00:00
|
|
|
if( current_options.get_anti_alias_hud() ) {
|
|
|
|
// glDisable(GL_BLEND);
|
|
|
|
glDisable(GL_LINE_SMOOTH);
|
|
|
|
glLineWidth(1.0);
|
|
|
|
}
|
2000-05-11 19:17:02 +00:00
|
|
|
|
1999-09-11 02:07:48 +00:00
|
|
|
glEnable(GL_DEPTH_TEST);
|
|
|
|
glEnable(GL_LIGHTING);
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
|
|
|
glPopMatrix();
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
|
|
glPopMatrix();
|
|
|
|
}
|
|
|
|
|