blob: 6665bf21fa8b6e91a4f65d717f98eb915afcbd53 (
plain) (
blame)
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: CS's custom C_PlayerResource
//
// $NoKeywords: $
//=============================================================================//
#ifndef C_CS_PLAYERRESOURCE_H
#define C_CS_PLAYERRESOURCE_H
#ifdef _WIN32
#pragma once
#endif
#include "cs_shareddefs.h"
#include "c_playerresource.h"
class C_CS_PlayerResource : public C_PlayerResource
{
DECLARE_CLASS( C_CS_PlayerResource, C_PlayerResource );
public:
DECLARE_CLIENTCLASS();
C_CS_PlayerResource();
virtual ~C_CS_PlayerResource();
bool IsVIP(int iIndex );
bool HasC4(int iIndex );
bool IsHostageAlive(int iIndex);
bool IsHostageFollowingSomeone(int iIndex);
const Vector GetHostagePosition( int index );
int GetHostageEntityID(int iIndex);
const Vector GetC4Postion();
const Vector GetBombsiteAPosition();
const Vector GetBombsiteBPosition();
const Vector GetHostageRescuePosition( int index );
int GetPlayerClass( int iIndex );
bool IsBombSpotted( void ) const;
bool IsPlayerSpotted( int iIndex );
const char *GetClanTag( int index );
int GetNumMVPs( int iIndex );
bool HasDefuser( int iIndex );
protected:
int m_iPlayerC4; // entity index of C4 carrier or 0
int m_iPlayerVIP; // entity index of VIP player or 0
Vector m_vecC4; // position of C4
Vector m_bombsiteCenterA;
Vector m_bombsiteCenterB;
bool m_bHostageAlive[MAX_HOSTAGES];
bool m_isHostageFollowingSomeone[MAX_HOSTAGES];
int m_iHostageEntityIDs[MAX_HOSTAGES];
int m_iHostageX[MAX_HOSTAGES];
int m_iHostageY[MAX_HOSTAGES];
int m_iHostageZ[MAX_HOSTAGES];
int m_hostageRescueX[MAX_HOSTAGE_RESCUES];
int m_hostageRescueY[MAX_HOSTAGE_RESCUES];
int m_hostageRescueZ[MAX_HOSTAGE_RESCUES];
bool m_bBombSpotted;
bool m_bPlayerSpotted[ MAX_PLAYERS + 1 ];
int m_iPlayerClasses[ MAX_PLAYERS + 1 ];
char m_szClan[MAX_PLAYERS+1][MAX_CLAN_TAG_LENGTH];
int m_iMVPs[ MAX_PLAYERS + 1 ];
bool m_bHasDefuser[ MAX_PLAYERS + 1 ];
};
#endif // C_CS_PLAYERRESOURCE_H
|