mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-06 00:25:02 +00:00
109 lines
3.0 KiB
C++
109 lines
3.0 KiB
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef TF_HUD_TARGET_ID_H
|
|
#define TF_HUD_TARGET_ID_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "hud.h"
|
|
#include "hudelement.h"
|
|
#include <vgui_controls/EditablePanel.h>
|
|
#include "tf_imagepanel.h"
|
|
#include "tf_spectatorgui.h"
|
|
#include "c_tf_player.h"
|
|
|
|
#define PLAYER_HINT_DISTANCE 150
|
|
#define PLAYER_HINT_DISTANCE_SQ (PLAYER_HINT_DISTANCE*PLAYER_HINT_DISTANCE)
|
|
#define MAX_ID_STRING 256
|
|
#define MAX_PREPEND_STRING 32
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose:
|
|
//-----------------------------------------------------------------------------
|
|
class CTargetID : public CHudElement, public vgui::EditablePanel
|
|
{
|
|
DECLARE_CLASS_SIMPLE( CTargetID, vgui::EditablePanel );
|
|
public:
|
|
CTargetID( const char *pElementName );
|
|
void Reset( void );
|
|
void VidInit( void );
|
|
virtual bool ShouldDraw( void );
|
|
virtual void PerformLayout( void );
|
|
virtual void ApplySettings( KeyValues *inResourceData );
|
|
virtual void ApplySchemeSettings( vgui::IScheme *scheme );
|
|
|
|
void UpdateID( void );
|
|
|
|
virtual int CalculateTargetIndex( C_TFPlayer *pLocalTFPlayer );
|
|
virtual wchar_t *GetPrepend( void ) { return NULL; }
|
|
|
|
int GetTargetIndex( void ) { return m_iTargetEntIndex; }
|
|
|
|
virtual int GetRenderGroupPriority( void );
|
|
|
|
protected:
|
|
Color GetColorForTargetTeam( int iTeamNumber );
|
|
|
|
vgui::HFont m_hFont;
|
|
int m_iLastEntIndex;
|
|
float m_flLastChangeTime;
|
|
int m_iTargetEntIndex;
|
|
bool m_bLayoutOnUpdate;
|
|
|
|
Color m_cBlueColor;
|
|
Color m_cRedColor;
|
|
Color m_cSpecColor;
|
|
|
|
vgui::Label *m_pTargetNameLabel;
|
|
vgui::Label *m_pTargetDataLabel;
|
|
CTFImagePanel *m_pBGPanel;
|
|
CTFSpectatorGUIHealth *m_pTargetHealth;
|
|
|
|
int m_iRenderPriority;
|
|
};
|
|
|
|
class CMainTargetID : public CTargetID
|
|
{
|
|
DECLARE_CLASS_SIMPLE( CMainTargetID, CTargetID );
|
|
public:
|
|
CMainTargetID( const char *pElementName ) : CTargetID( pElementName ) {}
|
|
|
|
virtual bool ShouldDraw( void );
|
|
};
|
|
|
|
class CSpectatorTargetID : public CTargetID
|
|
{
|
|
DECLARE_CLASS_SIMPLE( CSpectatorTargetID, CTargetID );
|
|
public:
|
|
CSpectatorTargetID( const char *pElementName ) : CTargetID( pElementName ) {}
|
|
|
|
virtual bool ShouldDraw( void );
|
|
virtual int CalculateTargetIndex( C_TFPlayer *pLocalTFPlayer );
|
|
};
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Second target ID that's used for displaying a second target below the primary
|
|
//-----------------------------------------------------------------------------
|
|
class CSecondaryTargetID : public CTargetID
|
|
{
|
|
DECLARE_CLASS_SIMPLE( CSecondaryTargetID, CTargetID );
|
|
public:
|
|
CSecondaryTargetID( const char *pElementName );
|
|
|
|
virtual bool ShouldDraw( void );
|
|
virtual int CalculateTargetIndex( C_TFPlayer *pLocalTFPlayer );
|
|
virtual wchar_t *GetPrepend( void ) { return m_wszPrepend; }
|
|
|
|
private:
|
|
wchar_t m_wszPrepend[ MAX_PREPEND_STRING ];
|
|
|
|
bool m_bWasHidingLowerElements;
|
|
};
|
|
|
|
#endif // TF_HUD_TARGET_ID_H
|