blob: 414b578bd69e8ba732b335d953a220ff9fc4ace7 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef TF_CLASS_ESCORT_H
#define TF_CLASS_ESCORT_H
#ifdef _WIN32
#pragma once
#endif
#include "tf_playerclass.h"
#include "TFClassData_Shared.h"
#include "tf_shieldshared.h"
class CShield;
class CWeaponShield;
//=====================================================================
// Indirect
class CPlayerClassEscort : public CPlayerClass
{
public:
DECLARE_CLASS( CPlayerClassEscort, CPlayerClass );
CPlayerClassEscort( CBaseTFPlayer *pPlayer, TFClass iClass );
~CPlayerClassEscort();
virtual void ClassActivate( void );
virtual const char* GetClassModelString( int nTeam );
// Class Initialization
virtual void CreateClass( void ); // Create the class upon initial spawn
virtual bool ResupplyAmmo( float flPercentage, ResupplyReason_t reason );
virtual void SetupMoveData( void ); // Override class specific movement data here.
virtual void SetupSizeData( void ); // Override class specific size data here.
virtual void ResetViewOffset( void );
PlayerClassEscortData_t *GetClassData( void ) { return &m_ClassData; }
// Hooks
virtual void SetPlayerHull( void );
// Powerups
virtual void PowerupStart( int iPowerup, float flAmount, CBaseEntity *pAttacker, CDamageModifier *pDamageModifier );
virtual void PowerupEnd( int iPowerup );
private:
// Purpose:
CWeaponShield *GetProjectedShield( void );
protected:
PlayerClassEscortData_t m_ClassData;
CHandle<CWeaponShield> m_hWeaponProjectedShield;
};
EXTERN_SEND_TABLE( DT_PlayerClassEscortData )
#endif // TF_CLASS_ESCORT_H
|