summaryrefslogtreecommitdiff
path: root/game/server/tf2/info_add_resources.cpp
blob: 1260bb84edd786825272ee9d8db418ffb8949d64 (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "EntityOutput.h"
#include "EntityList.h"
#include "tf_team.h"
#include "baseentity.h"
#include "tf_stats.h"

//-----------------------------------------------------------------------------
// Purpose: Map entity that gives resources to players passed into it
//-----------------------------------------------------------------------------
class CInfoAddResources : public CBaseEntity
{
	DECLARE_CLASS( CInfoAddResources, CBaseEntity );
public:
	DECLARE_DATADESC();

	void Spawn( void );

	// Inputs
	void InputPlayer( inputdata_t &inputdata );

public:
	// Outputs
	COutputEvent	m_OnAdded;

	// Data
	int		m_iResourceAmount;
};

BEGIN_DATADESC( CInfoAddResources )

	// inputs
	DEFINE_INPUTFUNC( FIELD_EHANDLE, "Player", InputPlayer ),

	// outputs
	DEFINE_OUTPUT( m_OnAdded, "OnAdded" ),

	// keys 
	DEFINE_KEYFIELD_NOT_SAVED( m_iResourceAmount, FIELD_INTEGER, "ResourceAmount" ),

END_DATADESC()

LINK_ENTITY_TO_CLASS( info_add_resources, CInfoAddResources );

//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
void CInfoAddResources::Spawn( void )
{
}

//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
void CInfoAddResources::InputPlayer( inputdata_t &inputdata )
{
	CBaseEntity *pEntity = (inputdata.value.Entity()).Get();
	if ( pEntity && pEntity->IsPlayer() )
	{
		CBaseTFPlayer *pPlayer = (CBaseTFPlayer *)pEntity;
		pPlayer->AddBankResources( m_iResourceAmount );
		TFStats()->IncrementPlayerStat( pPlayer, TF_PLAYER_STAT_RESOURCES_ACQUIRED, m_iResourceAmount );
	}

	m_OnAdded.FireOutput( inputdata.pActivator, this );
}