blob: 41d5e582b706ad121b4146b91e8e0767968d1865 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef C_TFC_PLAYER_H
#define C_TFC_PLAYER_H
#ifdef _WIN32
#pragma once
#endif
#include "tfc_playeranimstate.h"
#include "c_baseplayer.h"
#include "tfc_shareddefs.h"
#include "baseparticleentity.h"
#include "tfc_player_shared.h"
class C_TFCPlayer : public C_BasePlayer
{
public:
DECLARE_CLASS( C_TFCPlayer, C_BasePlayer );
DECLARE_CLIENTCLASS();
DECLARE_PREDICTABLE();
DECLARE_INTERPOLATION();
C_TFCPlayer();
~C_TFCPlayer();
static C_TFCPlayer* GetLocalTFCPlayer();
virtual const QAngle& GetRenderAngles();
virtual void UpdateClientSideAnimation();
virtual void PostDataUpdate( DataUpdateType_t updateType );
virtual void ProcessMuzzleFlashEvent();
public:
CTFCPlayerShared m_Shared;
// Called by shared code.
public:
void DoAnimationEvent( PlayerAnimEvent_t event, int nData );
ITFCPlayerAnimState *m_PlayerAnimState;
QAngle m_angEyeAngles;
CInterpolatedVar< QAngle > m_iv_angEyeAngles;
private:
C_TFCPlayer( const C_TFCPlayer & );
};
inline C_TFCPlayer* ToTFCPlayer( CBasePlayer *pPlayer )
{
Assert( dynamic_cast< C_TFCPlayer* >( pPlayer ) != NULL );
return static_cast< C_TFCPlayer* >( pPlayer );
}
#endif // C_TFC_PLAYER_H
|