summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/MobSpawnerEntity.h
blob: e3bb8c634e5562c4be4545b6062447fb8d0bcb13 (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
// MobSpawnerEntity.h

// Declares the cMobSpawnerEntity class representing a single mob spawner in the world





#pragma once

#include "BlockEntity.h"
#include "../Entities/Player.h"





// tolua_begin

class cMobSpawnerEntity :
	public cBlockEntity
{
	typedef cBlockEntity super;
public:

	// tolua_end
	
	cMobSpawnerEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);

	virtual void SendTo(cClientHandle & a_Client) override;
	virtual bool UsedBy(cPlayer * a_Player) override;
	virtual bool Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;

	// tolua_begin

	/** Upate the active flag from the mob spawner. This function will called every 5 seconds from the Tick() function. */
	void UpdateActiveState(void);

	/** Sets the spawn delay to a new random value. */
	void ResetTimer(void);

	/** Spawns the entity. This function automaticly change the spawn delay! */
	void SpawnEntity(void);

	/** Returns the entity type that will be spawn by this mob spawner. */
	eMonsterType GetEntity(void) const { return m_Entity; }

	/** Sets the entity type who will be spawn by this mob spawner. */
	void SetEntity(eMonsterType a_EntityType) { m_Entity = a_EntityType; }

	/** Returns the spawn delay. This is the tick delay that is needed to spawn new monsters. */
	short GetSpawnDelay(void) const { return m_SpawnDelay; }

	/** Sets the spawn delay. */
	void SetSpawnDelay(short a_Delay) { m_SpawnDelay = a_Delay; }

	/** Returns the amount of the nearby players in a 16-block radius. */
	int GetNearbyPlayersNum(void);

	/** Returns the amount of this monster type in a 8-block radius (Y: 4-block radius). */
	int GetNearbyMonsterNum(eMonsterType a_EntityType);

	// tolua_end

	static const char * GetClassStatic(void) { return "cMobSpawnerEntity"; }

private:
	/** The entity to spawn. */
	eMonsterType m_Entity;

	short m_SpawnDelay;

	bool m_IsActive;
} ;  // tolua_end