blob: 3a7f4ee69f487b7a50f67c99bd2cbc747425b302 (
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
|
#pragma once
#include "Entity.h"
// tolua_begin
class cExpOrb:
public cEntity
{
// tolua_end
using Super = cEntity;
public: // tolua_export
CLASS_PROTODEF(cExpOrb)
cExpOrb(Vector3d a_Pos, int a_Reward);
// Override functions
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
virtual void SpawnOn(cClientHandle & a_Client) override;
// tolua_begin
/** Returns the number of ticks that this entity has existed */
int GetAge(void) const { return std::chrono::duration_cast<cTickTime>(m_Timer).count(); }
/** Set the number of ticks that this entity has existed */
void SetAge(int a_Age) { m_Timer = cTickTime(a_Age); }
/** Get the exp amount */
int GetReward(void) const { return m_Reward; }
/** Set the exp amount */
void SetReward(int a_Reward) { m_Reward = a_Reward; }
// tolua_end
/** Split reward into small values according to regular Minecraft rules */
static std::vector<int> Split(int a_Reward);
protected:
int m_Reward;
/** The number of ticks that the entity has existed / timer between collect and destroy; in msec */
std::chrono::milliseconds m_Timer;
} ; // tolua_export
|