From de5cec741985a7c2be52d0629a79b616921b6d57 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Fri, 5 Jul 2013 19:40:19 +0000 Subject: Initial 1.6.1 protocol support. The client connects and is capable of basic gameplay, but the player moves at an incredible speed (50 blocks / sec). git-svn-id: http://mc-server.googlecode.com/svn/trunk@1646 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Protocol/Protocol16x.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 source/Protocol/Protocol16x.h (limited to 'source/Protocol/Protocol16x.h') diff --git a/source/Protocol/Protocol16x.h b/source/Protocol/Protocol16x.h new file mode 100644 index 000000000..60e3d1360 --- /dev/null +++ b/source/Protocol/Protocol16x.h @@ -0,0 +1,43 @@ + +// Protocol16x.h + +/* +Declares the 1.6.x protocol classes: + - cProtocol161 + - release 1.6.1 protocol (#73) +(others may be added later in the future for the 1.6 release series) +*/ + + + + + +#pragma once + +#include "Protocol15x.h" + + + + + +class cProtocol161 : + public cProtocol150 +{ + typedef cProtocol150 super; + +public: + cProtocol161(cClientHandle * a_Client); + + // cProtocol150 overrides: + virtual void SendAttachEntity(const cEntity & a_Entity, const cEntity * a_Vehicle) override; + virtual void SendChat (const AString & a_Message) override; + virtual void SendHealth (void) override; + virtual void SendWindowOpen (char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots) override; + + virtual int ParseEntityAction (void) override; + virtual int ParsePlayerAbilities(void) override; +} ; + + + + -- cgit v1.2.3