summaryrefslogtreecommitdiff
path: root/game/client/tf/tf_hud_notification_panel.h
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/client/tf/tf_hud_notification_panel.h
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'game/client/tf/tf_hud_notification_panel.h')
-rw-r--r--game/client/tf/tf_hud_notification_panel.h81
1 files changed, 81 insertions, 0 deletions
diff --git a/game/client/tf/tf_hud_notification_panel.h b/game/client/tf/tf_hud_notification_panel.h
new file mode 100644
index 0000000..f835270
--- /dev/null
+++ b/game/client/tf/tf_hud_notification_panel.h
@@ -0,0 +1,81 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================
+
+#ifndef TF_HUD_NOTIFICATION_PANEL_H
+#define TF_HUD_NOTIFICATION_PANEL_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+#include "hudelement.h"
+#include "IconPanel.h"
+#include <vgui_controls/ImagePanel.h>
+
+using namespace vgui;
+
+//-----------------------------------------------------------------------------
+// Purpose:
+//-----------------------------------------------------------------------------
+class CHudNotificationPanel : public CHudElement, public EditablePanel
+{
+ DECLARE_CLASS_SIMPLE( CHudNotificationPanel, EditablePanel );
+
+public:
+
+ typedef enum
+ {
+ kBackground_Blue,
+ kBackground_Red,
+ kBackground_Black,
+ } BackgroundType_t;
+
+ CHudNotificationPanel( const char *pElementName );
+
+ virtual void Init( void );
+ virtual void ApplySchemeSettings( IScheme *scheme );
+ virtual bool ShouldDraw( void );
+ virtual void OnTick( void );
+ virtual void PerformLayout( void );
+
+ const char *GetNotificationByType( int iType, float& flDuration );
+
+ void MsgFunc_HudNotify( bf_read &msg );
+ void MsgFunc_HudNotifyCustom( bf_read &msg );
+
+ void SetupNotifyCustom( const char *pszText, const char *pszIcon, int iBackgroundTeam );
+ void SetupNotifyCustom( const wchar_t *pszText, const char *pszIcon, int iBackgroundTeam );
+ void SetupNotifyCustom( const wchar_t *pszText, HudNotification_t type, float overrideDuration = 0.0f );
+
+ virtual void LevelInit( void ) { m_flFadeTime = 0; };
+
+ bool LoadManifest( void );
+
+private:
+ float m_flFadeTime;
+
+ Label *m_pText;
+ CIconPanel *m_pIcon;
+ ImagePanel *m_pBackground;
+
+ struct ShowCount_t
+ {
+ ShowCount_t() {}
+
+ ShowCount_t( int nMaxShowCount, float flCooldown, ConVar* pConVar )
+ : m_nMaxShowCount( nMaxShowCount )
+ , m_flCooldown( flCooldown )
+ , m_pConVar( pConVar )
+ , m_flNextAllowedTime( 0.f )
+ {}
+ int m_nMaxShowCount;
+ ConVar* m_pConVar;
+ float m_flCooldown;
+ float m_flNextAllowedTime;
+ };
+ CUtlMap< int, ShowCount_t > m_mapShowCounts;
+};
+
+#endif // TF_HUD_NOTIFICATION_PANEL_H