1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#include "cbase.h"
#include "c_vguiscreen.h"
#include "vgui_controls/Label.h"
#include "vgui_bitmappanel.h"
#include <vgui/IVGui.h>
#include "c_neurotoxin_countdown.h"
#include "ienginevgui.h"
#include "fmtstr.h"
#include "vgui_controls/ImagePanel.h"
using namespace vgui;
//-----------------------------------------------------------------------------
// Control screen
//-----------------------------------------------------------------------------
class CNeurotoxinCountdownScreen : public CVGuiScreenPanel
{
DECLARE_CLASS( CNeurotoxinCountdownScreen, CVGuiScreenPanel );
public:
CNeurotoxinCountdownScreen( vgui::Panel *parent, const char *panelName );
virtual void ApplySchemeSettings( IScheme *pScheme );
virtual bool Init( KeyValues* pKeyValues, VGuiScreenInitData_t* pInitData );
virtual void OnTick();
private:
void Update( C_NeurotoxinCountdown *pNeurotoxinCountdown );
private:
vgui::Label *m_pDisplayTextLabel;
int iLastSlideIndex;
Color m_cDefault;
Color m_cInvisible;
bool bIsAlreadyVisible;
//ImagePanel *(m_pNumberImages[ 6 ][ 10 ]);
};
DECLARE_VGUI_SCREEN_FACTORY( CNeurotoxinCountdownScreen, "neurotoxin_countdown_screen" );
//-----------------------------------------------------------------------------
// Constructor:
//-----------------------------------------------------------------------------
CNeurotoxinCountdownScreen::CNeurotoxinCountdownScreen( vgui::Panel *parent, const char *panelName )
: BaseClass( parent, "CNeurotoxinCountdownScreen", vgui::scheme()->LoadSchemeFromFileEx( enginevgui->GetPanel( PANEL_CLIENTDLL ), "resource/NeurotoxinCountdownScreen.res", "NeuroToxinScreen" ) )
{
m_pDisplayTextLabel = new vgui::Label( this, "NumberDisplay", "x" );
iLastSlideIndex = 0;
}
void CNeurotoxinCountdownScreen::ApplySchemeSettings( IScheme *pScheme )
{
assert( pScheme );
m_cDefault = pScheme->GetColor( "CNeurotoxinCountdownScreen_Default", GetFgColor() );
m_cInvisible = Color( 0, 0, 0, 0 );
m_pDisplayTextLabel->SetFgColor( m_cDefault );
}
//-----------------------------------------------------------------------------
// Initialization
//-----------------------------------------------------------------------------
bool CNeurotoxinCountdownScreen::Init( KeyValues* pKeyValues, VGuiScreenInitData_t* pInitData )
{
// Make sure we get ticked...
vgui::ivgui()->AddTickSignal( GetVPanel() );
if (!BaseClass::Init(pKeyValues, pInitData))
return false;
//for ( int iDigit = 0; iDigit < 6; ++iDigit )
//{
// for ( int iNumber = 0; iNumber < 6; ++iNumber )
// {
// m_pNumberImages[ iDigit ][ iNumber ] = SETUP_PANEL( new ImagePanel( this, "SlideshowImage" ) );
// m_pNumberImages[ iDigit ][ iNumber ]->SetImage( "" );
// m_pNumberImages[ iDigit ][ iNumber ]->SetZPos( -2 );
// m_pNumberImages[ iDigit ][ iNumber ]->SetVisible( false );
// }
//}
return true;
}
//-----------------------------------------------------------------------------
// Update the display string
//-----------------------------------------------------------------------------
void CNeurotoxinCountdownScreen::OnTick()
{
BaseClass::OnTick();
if ( g_NeurotoxinCountdowns.Count() <= 0 )
return;
C_NeurotoxinCountdown *pNeurotoxinCountdown = NULL;
for ( int iDisplayScreens = 0; iDisplayScreens < g_NeurotoxinCountdowns.Count(); ++iDisplayScreens )
{
C_NeurotoxinCountdown *pNeurotoxinCountdownTemp = g_NeurotoxinCountdowns[ iDisplayScreens ];
if ( pNeurotoxinCountdownTemp && pNeurotoxinCountdownTemp->IsEnabled() )
{
pNeurotoxinCountdown = pNeurotoxinCountdownTemp;
break;
}
}
if( !pNeurotoxinCountdown )
{
// All display screens are disabled
if ( bIsAlreadyVisible )
{
SetVisible( false );
bIsAlreadyVisible = false;
}
return;
}
if ( !bIsAlreadyVisible )
{
SetVisible( true );
bIsAlreadyVisible = true;
}
Update( pNeurotoxinCountdown );
}
void CNeurotoxinCountdownScreen::Update( C_NeurotoxinCountdown *pNeurotoxinCountdown )
{
char szBuff[ 256 ];
char szMinutesBuff[ 4 ];
char szSecondsBuff[ 4 ];
char szMillisecondsBuff[ 4 ];
int iMinutes = pNeurotoxinCountdown->GetMinutes();
int iSeconds = pNeurotoxinCountdown->GetSeconds();
int iMilliseconds;
if ( iMinutes <= 0 && iSeconds <= 0 )
{
iMinutes = 0;
iSeconds = 0;
iMilliseconds = 0;
// Blink!
m_pDisplayTextLabel->SetVisible( static_cast<int>( gpGlobals->curtime * 10.0f ) % 2 == 0 );
}
else
{
iMilliseconds = pNeurotoxinCountdown->GetMilliseconds();
m_pDisplayTextLabel->SetVisible( true );
}
if ( iMinutes < 10 )
sprintf( szMinutesBuff, "0%i", iMinutes );
else
sprintf( szMinutesBuff, "%i", iMinutes );
if ( iSeconds < 10 )
sprintf( szSecondsBuff, "0%i", iSeconds );
else
sprintf( szSecondsBuff, "%i", iSeconds );
if ( iMilliseconds < 10 )
sprintf( szMillisecondsBuff, "0%i", iMilliseconds );
else
sprintf( szMillisecondsBuff, "%i", iMilliseconds );
sprintf( szBuff, "%s:%s:%s", szMinutesBuff, szSecondsBuff, szMillisecondsBuff );
m_pDisplayTextLabel->SetText( szBuff );
}
|