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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
|
// FunctorUtils.h
// Useful functors
//========= Copyright Valve Corporation, All rights reserved. ============//
#ifndef _FUNCTOR_UTILS_H_
#define _FUNCTOR_UTILS_H_
#ifdef NEXT_BOT
#include "NextBotInterface.h"
#include "NextBotManager.h"
#endif // NEXT_BOT
//--------------------------------------------------------------------------------------------------------
/**
* NOTE: The functors in this file should ideally be game-independent,
* and work for any Source based game
*/
//--------------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------------
/**
* Count the number of living players on a given team (or TEAM_ANY)
*/
class LivePlayerCounter
{
public:
static const bool EXCLUDE_BOTS = false;
LivePlayerCounter( int team, bool includeBots = true )
{
m_team = team;
m_includeBots = includeBots;
m_count = 0;
}
bool operator() ( CBasePlayer *player )
{
if (player->IsAlive() && (m_team == TEAM_ANY || player->GetTeamNumber() == m_team))
{
if (m_includeBots || !player->IsBot())
{
++m_count;
}
}
return true;
}
int GetCount( void ) const
{
return m_count;
}
int m_team;
bool m_includeBots;
int m_count;
};
//--------------------------------------------------------------------------------------------------------
/**
* Count the number of dead players on a given team (or TEAM_ANY)
*/
class DeadPlayerCounter
{
public:
static const bool EXCLUDE_BOTS = false;
DeadPlayerCounter( int team, bool includeBots = true )
{
m_team = team;
m_includeBots = includeBots;
m_count = 0;
}
bool operator() ( CBasePlayer *player )
{
if (!player->IsAlive() && (m_team == TEAM_ANY || player->GetTeamNumber() == m_team))
{
if (m_includeBots || !player->IsBot())
{
++m_count;
}
}
return true;
}
int GetCount( void ) const
{
return m_count;
}
int m_team;
bool m_includeBots;
int m_count;
};
//--------------------------------------------------------------------------------------------------------
/**
* Count the number of players on a given team (or TEAM_ANY)
*/
class PlayerCounter
{
public:
static const bool EXCLUDE_BOTS = false;
PlayerCounter( int team, int lifeState = -1, bool includeBots = true )
{
m_team = team;
m_includeBots = includeBots;
m_count = 0;
m_lifeState = lifeState;
}
bool operator() ( CBasePlayer *player )
{
if ((player->m_lifeState == m_lifeState || m_lifeState == -1) && (m_team == TEAM_ANY || player->GetTeamNumber() == m_team))
{
if (m_includeBots || !player->IsBot())
{
++m_count;
}
}
return true;
}
int GetCount( void ) const
{
return m_count;
}
int m_lifeState;
int m_team;
bool m_includeBots;
int m_count;
};
//--------------------------------------------------------------------------------------------------------
/**
* Return the closest living player on the given team (or TEAM_ANY)
*/
class ClosestPlayerScan
{
public:
static const bool EXCLUDE_BOTS = false;
ClosestPlayerScan( const Vector &spot, int team, float maxRange = 0.0f, CBasePlayer *ignore = NULL, bool includeBots = true )
{
m_spot = spot;
m_team = team;
m_includeBots = includeBots;
m_close = NULL;
if ( maxRange > 0.0f )
{
m_closeRangeSq = maxRange * maxRange;
}
else
{
m_closeRangeSq = 999999999.9f;
}
m_ignore = ignore;
}
bool operator() ( CBasePlayer *player )
{
if (player == m_ignore)
return true;
if (player->IsAlive() && (m_team == TEAM_ANY || player->GetTeamNumber() == m_team))
{
if ( !m_includeBots && player->IsBot() )
return true;
Vector to = player->WorldSpaceCenter() - m_spot;
float rangeSq = to.LengthSqr();
if (rangeSq < m_closeRangeSq)
{
m_closeRangeSq = rangeSq;
m_close = player;
}
}
return true;
}
CBasePlayer *GetPlayer( void ) const
{
return m_close;
}
bool IsCloserThan( float range )
{
return (m_closeRangeSq < (range * range));
}
bool IsFartherThan( float range )
{
return (m_closeRangeSq > (range * range));
}
Vector m_spot;
int m_team;
bool m_includeBots;
CBasePlayer *m_close;
float m_closeRangeSq;
CBasePlayer *m_ignore;
};
//--------------------------------------------------------------------------------------------------------
/**
* Return the closest living BaseCombatCharacter on the given team (or TEAM_ANY)
*/
class ClosestActorScan
{
public:
ClosestActorScan( const Vector &spot, int team, float maxRange = 0.0f, CBaseCombatCharacter *ignore = NULL )
{
m_spot = spot;
m_team = team;
m_close = NULL;
if ( maxRange > 0.0f )
{
m_closeRangeSq = maxRange * maxRange;
}
else
{
m_closeRangeSq = 999999999.9f;
}
m_ignore = ignore;
}
bool operator() ( CBaseCombatCharacter *actor )
{
if (actor == m_ignore)
return true;
if (actor->IsAlive() && (m_team == TEAM_ANY || actor->GetTeamNumber() == m_team))
{
Vector to = actor->WorldSpaceCenter() - m_spot;
float rangeSq = to.LengthSqr();
if (rangeSq < m_closeRangeSq)
{
m_closeRangeSq = rangeSq;
m_close = actor;
}
}
return true;
}
CBaseCombatCharacter *GetClosestActor( void ) const
{
return m_close;
}
bool IsClosestActorCloserThan( float range )
{
return (m_closeRangeSq < (range * range));
}
bool IsClosestActorFartherThan( float range )
{
return (m_closeRangeSq > (range * range));
}
Vector m_spot;
int m_team;
CBaseCombatCharacter *m_close;
float m_closeRangeSq;
CBaseCombatCharacter *m_ignore;
};
//--------------------------------------------------------------------------------------------------------
class CShowViewportPanel
{
int m_team;
const char *m_panelName;
bool m_show;
KeyValues *m_data;
public:
CShowViewportPanel( int team, const char *panelName, bool show, KeyValues *data = NULL )
{
m_team = team;
m_panelName = panelName;
m_show = show;
m_data = data;
}
bool operator() ( CBasePlayer *player )
{
if ( m_team != TEAM_ANY && m_team != player->GetTeamNumber() )
return true;
player->ShowViewPortPanel( m_panelName, m_show, m_data );
return true;
}
};
//--------------------------------------------------------------------------------------------------------------
/**
* Iterate each "actor" in the game, where an actor is a Player or NextBot
*/
template < typename Functor >
inline bool ForEachActor( Functor &func )
{
// iterate all non-bot players
for( int i=1; i<=gpGlobals->maxClients; ++i )
{
CBasePlayer *player = UTIL_PlayerByIndex( i );
if ( player == NULL )
continue;
if ( FNullEnt( player->edict() ) )
continue;
if ( !player->IsPlayer() )
continue;
if ( !player->IsConnected() )
continue;
#ifdef NEXT_BOT
// skip bots - ForEachCombatCharacter will catch them
INextBot *bot = player->MyNextBotPointer();
if ( bot )
{
continue;
}
#endif // NEXT_BOT
if ( func( player ) == false )
{
return false;
}
}
#ifdef NEXT_BOT
// iterate all NextBots
return TheNextBots().ForEachCombatCharacter( func );
#else
return true;
#endif // NEXT_BOT
}
//--------------------------------------------------------------------------------------------------------------
/**
* The interface for functors for use with ForEachActor() that
* want notification before iteration starts and after interation
* is complete (successful or not).
*/
class IActorFunctor
{
public:
virtual void OnBeginIteration( void ) { } // invoked once before iteration begins
virtual bool operator() ( CBaseCombatCharacter *them ) = 0;
virtual void OnEndIteration( bool allElementsIterated ) { } // invoked once after iteration is complete whether successful or not
};
//--------------------------------------------------------------------------------------------------------------
/**
* Iterate each "actor" in the game, where an actor is a Player or NextBot
* Template specialization for IActorFunctors.
*/
template <>
inline bool ForEachActor( IActorFunctor &func )
{
func.OnBeginIteration();
bool isComplete = true;
// iterate all non-bot players
for( int i=1; i<=gpGlobals->maxClients; ++i )
{
CBasePlayer *player = UTIL_PlayerByIndex( i );
if ( player == NULL )
continue;
if ( FNullEnt( player->edict() ) )
continue;
if ( !player->IsPlayer() )
continue;
if ( !player->IsConnected() )
continue;
#ifdef NEXT_BOT
// skip bots - ForEachCombatCharacter will catch them
INextBot *bot = dynamic_cast< INextBot * >( player );
if ( bot )
{
continue;
}
#endif // NEXT_BOT
if ( func( player ) == false )
{
isComplete = false;
break;
}
}
#ifdef NEXT_BOT
if ( !isComplete )
{
// iterate all NextBots
isComplete = TheNextBots().ForEachCombatCharacter( func );
}
#endif // NEXT_BOT
func.OnEndIteration( isComplete );
return isComplete;
}
//--------------------------------------------------------------------------------------------------------
class CTraceFilterOnlyClassname : public CTraceFilterSimple
{
public:
CTraceFilterOnlyClassname( const IHandleEntity *passentity, const char *pchClassname, int collisionGroup ) :
CTraceFilterSimple( passentity, collisionGroup ), m_pchClassname( pchClassname )
{
}
virtual bool ShouldHitEntity( IHandleEntity *pHandleEntity, int contentsMask )
{
CBaseEntity *pEntity = EntityFromEntityHandle( pHandleEntity );
if ( !pEntity )
return false;
return FClassnameIs( pEntity, m_pchClassname ) && CTraceFilterSimple::ShouldHitEntity( pHandleEntity, contentsMask );
}
private:
const char *m_pchClassname;
};
#endif // _FUNCTOR_UTILS_H_
|