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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "c_tf_hintmanager.h"
#include "c_tf_basehint.h"
#include <KeyValues.h>
#include "filesystem.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
// Global off switch for hint system
static ConVar tf2_hintsystem( "tf2_hintsystem", "0", 0, "Enable interface hints in TF2." );
static C_TFHintManager *g_pHintManager = NULL;
#define HINT_DISPLAY_STATS_FILE "scripts/hintdisplaystats.txt"
static float g_flLastEscapeKeyTime = -1.0f;
//-----------------------------------------------------------------------------
// Purpose: Helper to create panel in center and then shift toward right edge of screen
// Input : *panel -
// Output : static void
//-----------------------------------------------------------------------------
static void PositionPanel( C_TFBaseHint *panel )
{
int w, h;
panel->GetSize( w, h );
int x = ( ScreenWidth() - w ) / 2;
int y = ( ScreenHeight() - h ) / 2;
panel->SetPos( x, y );
panel->SetDesiredPosition( ScreenWidth() - w - 10, y - 75 );
}
IMPLEMENT_CLIENTCLASS_DT_NOBASE(C_TFHintManager, DT_TFHintManager, CTFHintManager)
END_RECV_TABLE()
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
C_TFHintManager::C_TFHintManager( void )
{
g_pHintManager = this;
m_pkvHintSystem = new KeyValues( "HintSystem" );
if ( m_pkvHintSystem )
{
bool valid = m_pkvHintSystem->LoadFromFile( filesystem, "scripts//hintsystem.txt" );
if ( !valid )
{
m_pkvHintSystem->deleteThis();
m_pkvHintSystem = NULL;
}
}
m_pkvHintDisplayStats = new KeyValues( "HintDisplayStats" );
if ( m_pkvHintDisplayStats )
{
m_pkvHintDisplayStats->LoadFromFile( filesystem, HINT_DISPLAY_STATS_FILE );
}
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : KeyValues
//-----------------------------------------------------------------------------
KeyValues *C_TFHintManager::GetHintKeyValues( void )
{
return m_pkvHintSystem;
}
KeyValues *C_TFHintManager::GetHintDisplayStats( void )
{
return m_pkvHintDisplayStats;
}
void C_TFHintManager::OnDataChanged( DataUpdateType_t updateType )
{
BaseClass::OnDataChanged( updateType );
// Think right away
if ( updateType == DATA_UPDATE_CREATED )
SetNextClientThink( 0.0f );
}
//-----------------------------------------------------------------------------
// Purpose: Remove complete hints, and activate next highest priority hint
//-----------------------------------------------------------------------------
void C_TFHintManager::ClientThink( void )
{
SetNextClientThink( gpGlobals->curtime + 1.0 );
int i;
int highestPriority = -1;
C_TFBaseHint *best = NULL;
bool anyVisible = false;
// See if any of the hints are completed, otherwise, store off the highest priority one
for ( i = m_aHints.Size() - 1; i >= 0; i-- )
{
C_TFBaseHint *hint = m_aHints[ i ];
// See if it should just be deleted
if ( hint && hint->GetCompleted() )
{
m_aHints.Remove( i );
delete hint;
continue;
}
if ( hint->IsVisible() )
{
anyVisible = true;
}
if ( !best || ( hint->GetPriority() > highestPriority ) )
{
highestPriority = hint->GetPriority();
best = hint;
}
}
// Last hint finished, show next best one
if ( !anyVisible )
{
// Now hide all but best one
for ( i = 0; i < m_aHints.Size(); i++ )
{
C_TFBaseHint *hint = m_aHints[ i ];
hint->SetVisible( hint == best );
}
}
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : playerIndex -
// hintID -
// priority -
// entityIndex -
//-----------------------------------------------------------------------------
C_TFBaseHint *C_TFHintManager::AddHint( int hintID, const char *subsection, int entityIndex, int maxduplicates )
{
if ( !tf2_hintsystem.GetBool() )
return NULL;
// Don't add the same hint more than once unless maxduplicates >= 1 has been specifically requested
int count = CountInstancesOfHintID( hintID );
if ( count > maxduplicates )
{
return NULL;
}
C_TFBaseHint *hint = C_TFBaseHint::CreateHint( hintID, subsection, entityIndex );
if ( hint )
{
// Force it to compute it's exact size
hint->PerformLayout();
PositionPanel( hint );
m_aHints.AddToTail( hint );
}
return hint;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void C_TFHintManager::ClearHints( void )
{
for ( int i = 0; i < m_aHints.Size(); i++ )
{
C_TFBaseHint *hint = m_aHints[ i ];
delete hint;
}
m_aHints.RemoveAll();
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : playerIndex -
// hintID -
//-----------------------------------------------------------------------------
void C_TFHintManager::CompleteHint( int hintID, bool visibleOnly )
{
for ( int i = m_aHints.Size() - 1; i >= 0; i-- )
{
C_TFBaseHint *hint = m_aHints[ i ];
if ( !hint )
continue;
if ( hint->GetID() != hintID )
continue;
if ( visibleOnly && !hint->IsVisible() )
continue;
delete hint;
m_aHints.Remove( i );
return;
}
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : playerIndex -
// hintID -
// Output : Number of instances in list
//-----------------------------------------------------------------------------
int C_TFHintManager::CountInstancesOfHintID( int hintID )
{
int c = 0;
for ( int i = m_aHints.Size() - 1; i >= 0; i-- )
{
C_TFBaseHint *hint = m_aHints[ i ];
if ( hint && hint->GetID() == hintID )
{
c++;
}
}
return c;
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : playerIndex -
// Output : int
//-----------------------------------------------------------------------------
int C_TFHintManager::GetCurrentHintID( void )
{
for ( int i = m_aHints.Size() - 1; i >= 0; i-- )
{
C_TFBaseHint *hint = m_aHints[ i ];
if ( hint && hint->IsVisible() )
{
return hint->GetID();
}
}
return TF_HINT_UNDEFINED;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void C_TFHintManager::ResetDisplayStats( void )
{
if ( !m_pkvHintDisplayStats )
{
Assert( 0 );
return;
}
KeyValues *kv = m_pkvHintDisplayStats->GetFirstSubKey();
while ( kv )
{
KeyValues *subKey = kv->GetFirstSubKey();
if ( subKey && stricmp( subKey->GetName(), "times_shown") )
{
while ( subKey )
{
subKey->SetString( "times_shown", "0" );
subKey = subKey->GetNextKey();
}
}
else
{
kv->SetString( "times_shown", "0" );
}
kv = kv->GetNextKey();
}
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : hintid -
// 100 -
// 1 -
// -1 -
//-----------------------------------------------------------------------------
C_TFBaseHint *CreateGlobalHint( int hintid, const char *subsection /*=NULL*/, int entity /*= -1*/, int maxduplicates /*=0*/ )
{
if ( !g_pHintManager )
{
return NULL;
}
return g_pHintManager->AddHint( hintid, subsection, entity, maxduplicates );
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : hintid -
// 100 -
// 1 -
// -1 -
//-----------------------------------------------------------------------------
C_TFBaseHint *CreateGlobalHint_Panel( vgui::Panel *targetPanel, int hintid, const char *subsection /*=NULL*/, int entity /*= -1*/, int maxduplicates /*=0*/ )
{
C_TFBaseHint *hint = CreateGlobalHint( hintid, subsection, entity, maxduplicates );
if ( hint )
{
// Find an appropriate position near the panel
hint->SetHintTarget( targetPanel );
}
return hint;
}
//-----------------------------------------------------------------------------
// Purpose: Trap the escape key when a hint is showing
// Output : Returns true if the escape key was swallowed by the hint system
//-----------------------------------------------------------------------------
// Hitting escape twice withing this amount of seconds will clear all hints pending
#define ENTER_DOUBLETAP_TIME 1.0f
bool HintSystemEscapeKey( void )
{
if ( !g_pHintManager )
return false;
int hintID = g_pHintManager->GetCurrentHintID();
if ( hintID != TF_HINT_UNDEFINED )
{
bool killall = false;
float curtime = gpGlobals->curtime;
float dt = curtime - g_flLastEscapeKeyTime;
if ( dt < ENTER_DOUBLETAP_TIME )
{
killall = true;
}
g_flLastEscapeKeyTime = curtime;
if ( killall )
{
g_pHintManager->ClearHints();
}
else
{
g_pHintManager->CompleteHint( hintID, true );
}
// Swallow the escape key
return true;
}
return false;
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : hindid -
//-----------------------------------------------------------------------------
void DestroyGlobalHint( int hintid )
{
if ( !g_pHintManager )
return;
g_pHintManager->CompleteHint( hintid, false );
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : KeyValues
//-----------------------------------------------------------------------------
KeyValues *GetHintKeyValues( void )
{
if ( !g_pHintManager )
return NULL;
return g_pHintManager->GetHintKeyValues();
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : KeyValues
//-----------------------------------------------------------------------------
KeyValues *GetHintDisplayStats( void )
{
if ( !g_pHintManager )
return NULL;
return g_pHintManager->GetHintDisplayStats();
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void ResetDisplayStats( void )
{
if ( g_pHintManager )
{
g_pHintManager->ResetDisplayStats();
}
}
static ConCommand tf2_hintreset( "tf2_hintreset", ResetDisplayStats, 0, FCVAR_CHEAT );
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
C_TFHintManager::~C_TFHintManager( void )
{
ClearHints();
g_pHintManager = NULL;
m_pkvHintSystem->deleteThis();
if ( m_pkvHintDisplayStats )
{
m_pkvHintDisplayStats->SaveToFile( filesystem, HINT_DISPLAY_STATS_FILE );
}
m_pkvHintDisplayStats->deleteThis();
}
|