summaryrefslogtreecommitdiff
path: root/game/shared/tf2/env_laserdesignation.h
blob: c715498ff8758e3fcd2f46dceb20cfe90c4f53f8 (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
77
78
79
80
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//

#ifndef ENV_LASERDESIGNATION_H
#define ENV_LASERDESIGNATION_H
#pragma once

#if defined( CLIENT_DLL )
#define CEnvLaserDesignation C_EnvLaserDesignation
#endif

//-----------------------------------------------------------------------------
// Purpose: A laser designation point
//-----------------------------------------------------------------------------
class CEnvLaserDesignation : public CBaseAnimating
{
public:
	DECLARE_NETWORKCLASS();
	DECLARE_PREDICTABLE();
	DECLARE_CLASS( CEnvLaserDesignation, CBaseAnimating );

	CEnvLaserDesignation( void );
	~CEnvLaserDesignation( void );

	virtual void Spawn( void );
	virtual void ChangeTeam( int iTeamNum );

	// Designation
	void	SetActive( bool bActive );
	bool	IsActive( void ) { return m_bActive; }

		// All predicted weapons need to implement and return true
	virtual bool			IsPredicted( void ) const
	{ 
		return true;
	}


#if defined( CLIENT_DLL )
	virtual bool	ShouldPredict( void )
	{
		if ( GetOwnerEntity() == C_BasePlayer::GetLocalPlayer() )
			return true;

		return BaseClass::ShouldPredict();
	}

	DECLARE_ENTITY_PANEL();

	virtual void OnDataChanged( DataUpdateType_t updateType );
	virtual void SetDormant( bool bDormant );

	virtual int		DrawModel( int flags );
#else
	virtual int		UpdateTransmitState();	
	virtual int		ShouldTransmit( const CCheckTransmitInfo *pInfo );
#endif

	// Global Designator access
	static CEnvLaserDesignation *Create( CBasePlayer *pOwner );
	static CEnvLaserDesignation *CreatePredicted( CBasePlayer *pOwner );
	static int		GetNumLaserDesignators( int iTeamNumber );
	static bool		GetLaserDesignation( int iTeamNumber, int iDesignator, Vector *vecOrigin );

protected:
	static CUtlVector< EHANDLE >	m_LaserDesignatorsTeam1;
	static CUtlVector< EHANDLE >	m_LaserDesignatorsTeam2;

	CNetworkVar( bool, m_bActive );

	bool	m_bPrevActive;
private:
	CEnvLaserDesignation( const CEnvLaserDesignation& src );
};

#endif // ENV_LASERDESIGNATION_H