virtual void Draw( class RenderOTW *renderer, int LOD );
void SetDataLabel( DWORD
type, char *labelString );
char *DataLabel( DWORD type
);
#define
DP_LABEL_HEADING
0
#define
DP_LABEL_ALT
1
#define
DP_LABEL_SPEED
2
#define
DP_LABEL_TURNRATE
3
#define
DP_LABEL_TURNRADIUS
4
void
SetTarget( BOOL val )
{
isTarget = val;
};
void
SetTargetBoxColor( DWORD val )
{
boxColor = val;
};
static BOOL
drawHeading;
// Shared by ALL drawable BSPs
static
BOOL
drawAlt;
// Shared by ALL drawable BSPs
static
BOOL
drawSpeed;
// Shared by ALL drawable BSPs
static
BOOL
drawTurnRadius; // Shared
by ALL drawable BSPs
static
BOOL
drawTurnRate;
// Shared by ALL drawable BSPs
static
BOOL
drawPole;
// Shared by ALL drawable BSPs
protected:
void DrawTargetBox( class RenderOTW *renderer, ThreeDVertex *spos );
char
heading[32];
int
headingLen;
char
alt[32];
int
altLen;
char
speed[32];
int
speedLen;
char
turnRadius[32];
int
turnRadiusLen;
char
turnRate[32];
int
turnRateLen;
BOOL
isTarget;
DWORD
boxColor;