summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Protocol_1_11.h
blob: 128b7f7e4ca1a1914537d8c0536a385c9632f98e (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

// Protocol_1_11.h

/*
Declares the 1.11 protocol classes:
	- cProtocol_1_11_0
		- release 1.11 protocol (#315)
(others may be added later in the future for the 1.11 release series)
*/





#pragma once

#include "Protocol_1_10.h"





class cProtocol_1_11_0 :
	public cProtocol_1_10_0
{
	typedef cProtocol_1_10_0 super;

public:
	cProtocol_1_11_0(cClientHandle * a_Client, const AString &a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State);

	virtual void SendCollectEntity(const cEntity & a_Entity, const cPlayer & a_Player, int a_Count) override;
	virtual void SendHideTitle    (void) override;
	virtual void SendResetTitle   (void) override;
	virtual void SendSpawnMob     (const cMonster & a_Mob) override;
	virtual void SendTitleTimes   (int a_FadeInTicks, int a_DisplayTicks, int a_FadeOutTicks) override;

protected:

	virtual void HandlePacketBlockPlace   (cByteBuffer & a_ByteBuffer) override;
	virtual void HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) override;

	virtual void WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Entity) override;
	virtual void WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_Mob) override;
	virtual void WriteBlockEntity(cPacketizer & a_Pkt, const cBlockEntity & a_BlockEntity) override;
};





class cProtocol_1_11_1 :
	public cProtocol_1_11_0
{
	typedef cProtocol_1_11_0 super;

public:
	cProtocol_1_11_1(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State);

	virtual void HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer) override;
};