summaryrefslogtreecommitdiffstats
path: root/source/Entities/Pickup.h
blob: 488f91fb28958ceb099f933bc300da6f1391024d (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

#pragma once

#include "Entity.h"
#include "../Item.h"





class cPlayer;





// tolua_begin
class cPickup :
	public cEntity
{
	// tolua_end
	typedef cEntity super;
	
public:
	CLASS_PROTODEF(cPickup);

	cPickup(double a_X, double a_Y, double a_Z, const cItem & a_Item, float a_SpeedX = 0.f, float a_SpeedY = 0.f, float a_SpeedZ = 0.f);	// tolua_export
	
	cItem &       GetItem(void)       {return m_Item; }								// tolua_export
	const cItem & GetItem(void) const {return m_Item; }

	virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
	
	virtual bool CollectedBy(cPlayer * a_Dest);					// tolua_export

	virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
	
	/// Returns the number of ticks that this entity has existed
	int GetAge(void) const { return (int)(m_Timer / 50); }  // tolua_export
	
	/// Returns true if the pickup has already been collected
	bool IsCollected(void) const { return m_bCollected; }  // tolua_export
	
private:
	Vector3d   m_ResultingSpeed;	 //Can be used to modify the resulting speed for the current tick ;)

	Vector3d   m_WaterSpeed;

	/// The number of ticks that the entity has existed / timer between collect and destroy; in msec
	float m_Timer;

	cItem m_Item;

	bool m_bCollected;
};  // tolua_export