summaryrefslogtreecommitdiffstats
path: root/src/Entities/LeashKnot.h
blob: 1a854ef34c622a41248696b2ea724b6351265575 (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

#pragma once

#include "HangingEntity.h"


class cWorldInterface;




// tolua_begin
class cLeashKnot :
	public cHangingEntity
{
	typedef cHangingEntity super;

public:

	// tolua_end

	CLASS_PROTODEF(cLeashKnot)

	cLeashKnot(eBlockFace a_BlockFace, double a_X, double a_Y, double a_Z);

	/** Looks for mobs leashed to a player and ties them to this knot */
	void TiePlayersLeashedMobs(cPlayer & a_Player, bool a_ShouldBroadCast);

	void SetShouldSelfDestroy() { m_ShouldSelfDestroy = true; }

	/** Returns the leash knot entity representing the knot at the specified position. Returns nullptr if there's no knot. */
	static cLeashKnot * FindKnotAtPos(cWorldInterface & a_WorldInterface, Vector3i a_BlockPos);

private:

	/** When a fence is destroyed, the knot on it gets destroyed after a while. This flag turns on the countdown to self destroy. */
	bool m_ShouldSelfDestroy;
	int m_TicksToSelfDestroy;

	virtual void OnRightClicked(cPlayer & a_Player) override;
	virtual void KilledBy(TakeDamageInfo & a_TDI) override;
	virtual void GetDrops(cItems & a_Items, cEntity * a_Killer) override;
	virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
	virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;

};  // tolua_export