summaryrefslogtreecommitdiffstats
path: root/src/Entities/Boat.h
blob: 5815ff88c989b10563b6e9f1d5b7675e92711c58 (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

// Boat.h

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





#pragma once

#include "Entity.h"





class cBoat :
	public cEntity
{
	typedef cEntity super;

public:
	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(double a_X, double a_Y, double a_Z);

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

	float GetDamageTaken(void) const { return m_DamageTaken; }

	int GetType(void) const { return m_Type; }

	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;

	int m_Type;

	bool m_RightPaddleUsed;
	bool m_LeftPaddleUsed;
} ;