mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-06 08:35:05 +00:00
70 lines
1.6 KiB
C++
70 lines
1.6 KiB
C++
//========= Copyright © 1996-2006, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef TF_HUD_MENU_ENGY_BUILD_H
|
|
#define TF_HUD_MENU_ENGY_BUILD_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <vgui_controls/EditablePanel.h>
|
|
#include <vgui_controls/Label.h>
|
|
#include "IconPanel.h"
|
|
#include "tf_controls.h"
|
|
|
|
using namespace vgui;
|
|
|
|
#define ALL_BUILDINGS -1
|
|
|
|
class CHudMenuEngyBuild : public CHudElement, public EditablePanel
|
|
{
|
|
DECLARE_CLASS_SIMPLE( CHudMenuEngyBuild, EditablePanel );
|
|
|
|
public:
|
|
CHudMenuEngyBuild( const char *pElementName );
|
|
|
|
virtual void ApplySchemeSettings( IScheme *scheme );
|
|
virtual bool ShouldDraw( void );
|
|
|
|
virtual void SetVisible( bool state );
|
|
|
|
virtual void OnTick( void );
|
|
|
|
int HudElementKeyInput( int down, ButtonCode_t keynum, const char *pszCurrentBinding );
|
|
|
|
virtual int GetRenderGroupPriority() { return 50; }
|
|
|
|
private:
|
|
int GetBuildingIDFromSlot( int iSlot );
|
|
|
|
void SendBuildMessage( int iSlot );
|
|
bool SendDestroyMessage( int iSlot );
|
|
|
|
void SetSelectedItem( int iSlot );
|
|
|
|
void UpdateHintLabels( void ); // show/hide the bright and dim build, destroy hint labels
|
|
|
|
private:
|
|
EditablePanel *m_pAvailableObjects[4];
|
|
EditablePanel *m_pAlreadyBuiltObjects[4];
|
|
EditablePanel *m_pCantAffordObjects[4];
|
|
|
|
// 360 layout only
|
|
CIconPanel *m_pActiveSelection;
|
|
|
|
int m_iSelectedItem;
|
|
|
|
CTFLabel *m_pBuildLabelBright;
|
|
CTFLabel *m_pBuildLabelDim;
|
|
|
|
CTFLabel *m_pDestroyLabelBright;
|
|
CTFLabel *m_pDestroyLabelDim;
|
|
|
|
bool m_bInConsoleMode;
|
|
};
|
|
|
|
#endif // TF_HUD_MENU_ENGY_BUILD_H
|