summaryrefslogtreecommitdiffstats
path: root/src/Entities/Boat.h
blob: 1a00d48c932d3bd4d168fafa1326258fb9b5d09d (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
79
80
81
82
83
84
85
86
87
88
89
90

// Boat.h

// Declares the cBoat class representing a boat in the world





#pragma once

#include "Entity.h"



// tolua_begin

class cBoat :
	public cEntity
{
	typedef cEntity super;

public:
	enum eMaterial
	{
		bmOak,
		bmSpruce,
		bmBirch,
		bmJungle,
		bmAcacia,
		bmDarkOak
	};

	// tolua_end

	CLASS_PROTODEF(cBoat)

	// cEntity overrides:
	virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
	virtual void OnRightClicked(cPlayer & a_Player) override;
	virtual bool DoTakeDamage(TakeDamageInfo & TDI) override;
	virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
	virtual void HandleSpeedFromAttachee(float a_Forward, float a_Sideways) override;

	cBoat(Vector3d a_Pos, eMaterial a_Material);

	int GetLastDamage(void) const { return m_LastDamage; }
	int GetForwardDirection(void) const { return m_ForwardDirection; }

	float GetDamageTaken(void) const { return m_DamageTaken; }

	// tolua_begin

	/** Returns the eMaterial of the boat */
	eMaterial GetMaterial(void) const { return m_Material; }

	/** Sets the eMaterial of the boat */
	void SetMaterial(cBoat::eMaterial a_Material) { m_Material = a_Material; }

	/** Returns the eMaterial that should be used for a boat created from the specified item. Returns bmOak if not a boat item */
	static eMaterial ItemToMaterial(const cItem & a_Item);

	/** Returns the boat item of the boat material */
	static cItem MaterialToItem(eMaterial a_Material);

	/** Returns the eMaterial as string */
	static AString MaterialToString(const eMaterial a_Material);

	/** Returns the boat material for the passed string. Returns oak if not valid */
	static eMaterial StringToMaterial(const AString & a_Material);

	// tolua_end

	bool IsRightPaddleUsed(void) const { return m_RightPaddleUsed; }
	bool IsLeftPaddleUsed(void) const { return m_LeftPaddleUsed; }

	void SetLastDamage(int TimeSinceLastHit);

	void UpdatePaddles(bool rightPaddleUsed, bool leftPaddleUsed);
private:
	int m_LastDamage;
	int m_ForwardDirection;

	float m_DamageTaken;

	eMaterial m_Material;

	bool m_RightPaddleUsed;
	bool m_LeftPaddleUsed;
} ;  // tolua_export