2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// ProtocolRecognizer.cpp
|
|
|
|
|
2014-07-17 16:50:58 -04:00
|
|
|
// Implements the cProtocolRecognizer class representing the meta-protocol that recognizes possibly multiple
|
2013-07-29 07:13:03 -04:00
|
|
|
// protocol versions and redirects everything to them
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
|
|
|
|
#include "ProtocolRecognizer.h"
|
2013-10-30 18:24:46 -04:00
|
|
|
#include "Protocol17x.h"
|
2014-09-03 18:29:36 -04:00
|
|
|
#include "Protocol18x.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
#include "../ClientHandle.h"
|
|
|
|
#include "../Root.h"
|
2013-08-11 13:18:06 -04:00
|
|
|
#include "../Server.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
#include "../World.h"
|
|
|
|
#include "../ChatColor.h"
|
2014-08-20 16:19:50 -04:00
|
|
|
#include "Bindings/PluginManager.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cProtocolRecognizer::cProtocolRecognizer(cClientHandle * a_Client) :
|
2014-09-11 16:27:35 -04:00
|
|
|
super(a_Client),
|
2014-10-20 16:55:07 -04:00
|
|
|
m_Protocol(nullptr),
|
2014-09-17 03:38:06 -04:00
|
|
|
m_Buffer(8192) // We need a larger buffer to support BungeeCord - it sends one huge packet at the start
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cProtocolRecognizer::~cProtocolRecognizer()
|
|
|
|
{
|
|
|
|
delete m_Protocol;
|
2014-10-20 16:55:07 -04:00
|
|
|
m_Protocol = nullptr;
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AString cProtocolRecognizer::GetVersionTextFromInt(int a_ProtocolVersion)
|
|
|
|
{
|
|
|
|
switch (a_ProtocolVersion)
|
|
|
|
{
|
2013-11-08 16:09:39 -05:00
|
|
|
case PROTO_VERSION_1_7_2: return "1.7.2";
|
2014-04-14 12:52:21 -04:00
|
|
|
case PROTO_VERSION_1_7_6: return "1.7.6";
|
2014-09-03 18:29:36 -04:00
|
|
|
case PROTO_VERSION_1_8_0: return "1.8";
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
ASSERT(!"Unknown protocol version");
|
|
|
|
return Printf("Unknown protocol (%d)", a_ProtocolVersion);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-07 14:04:25 -05:00
|
|
|
void cProtocolRecognizer::DataReceived(const char * a_Data, size_t a_Size)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if (m_Protocol == nullptr)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
if (!m_Buffer.Write(a_Data, a_Size))
|
|
|
|
{
|
|
|
|
m_Client->Kick("Unsupported protocol version");
|
|
|
|
return;
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
if (!TryRecognizeProtocol())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The protocol has just been recognized, dump the whole m_Buffer contents into it for parsing:
|
|
|
|
AString Dump;
|
|
|
|
m_Buffer.ResetRead();
|
|
|
|
m_Buffer.ReadAll(Dump);
|
|
|
|
m_Protocol->DataReceived(Dump.data(), Dump.size());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Protocol->DataReceived(a_Data, a_Size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendAttachEntity(const cEntity & a_Entity, const cEntity * a_Vehicle)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendAttachEntity(a_Entity, a_Vehicle);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendBlockAction(int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2, BLOCKTYPE a_BlockType)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendBlockAction(a_BlockX, a_BlockY, a_BlockZ, a_Byte1, a_Byte2, a_BlockType);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-03-21 11:11:57 -04:00
|
|
|
void cProtocolRecognizer::SendBlockBreakAnim(UInt32 a_EntityID, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Stage)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2015-03-21 11:11:57 -04:00
|
|
|
m_Protocol->SendBlockBreakAnim(a_EntityID, a_BlockX, a_BlockY, a_BlockZ, a_Stage);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendBlockChange(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendBlockChange(a_BlockX, a_BlockY, a_BlockZ, a_BlockType, a_BlockMeta);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendBlockChanges(int a_ChunkX, int a_ChunkZ, const sSetBlockVector & a_Changes)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendBlockChanges(a_ChunkX, a_ChunkZ, a_Changes);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-09-20 18:07:53 -04:00
|
|
|
void cProtocolRecognizer::SendChat(const AString & a_Message, eChatType a_Type)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2015-09-20 18:07:53 -04:00
|
|
|
m_Protocol->SendChat(a_Message, a_Type);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-09-20 18:07:53 -04:00
|
|
|
void cProtocolRecognizer::SendChat(const cCompositeChat & a_Message, eChatType a_Type, bool a_ShouldUseChatPrefixes)
|
2014-02-15 17:16:44 -05:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2015-09-20 18:07:53 -04:00
|
|
|
m_Protocol->SendChat(a_Message, a_Type, a_ShouldUseChatPrefixes);
|
2015-06-02 13:59:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cProtocolRecognizer::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendChunkData(a_ChunkX, a_ChunkZ, a_Serializer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-06-27 14:56:29 -04:00
|
|
|
void cProtocolRecognizer::SendCollectEntity(const cEntity & a_Entity, const cPlayer & a_Player)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-06-27 14:56:29 -04:00
|
|
|
m_Protocol->SendCollectEntity(a_Entity, a_Player);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendDestroyEntity(const cEntity & a_Entity)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendDestroyEntity(a_Entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendDisconnect(const AString & a_Reason)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
if (m_Protocol != nullptr)
|
2014-09-27 17:13:37 -04:00
|
|
|
{
|
|
|
|
m_Protocol->SendDisconnect(a_Reason);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is used when the client sends a server-ping, respond with the default packet:
|
|
|
|
static const int Packet = 0xff; // PACKET_DISCONNECT
|
2015-07-29 11:04:03 -04:00
|
|
|
SendData(reinterpret_cast<const char *>(&Packet), 1); // WriteByte()
|
2014-09-27 17:13:37 -04:00
|
|
|
|
2015-09-29 11:08:40 -04:00
|
|
|
auto UTF16 = UTF8ToRawBEUTF16(a_Reason);
|
|
|
|
static const u_short Size = htons(static_cast<u_short>(UTF16.size()));
|
2015-07-29 11:04:03 -04:00
|
|
|
SendData(reinterpret_cast<const char *>(&Size), 2); // WriteShort()
|
2015-09-29 11:08:40 -04:00
|
|
|
SendData(reinterpret_cast<const char *>(UTF16.data()), UTF16.size() * sizeof(char16_t)); // WriteString()
|
2014-09-27 17:13:37 -04:00
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 15:42:05 -04:00
|
|
|
void cProtocolRecognizer::SendEditSign(int a_BlockX, int a_BlockY, int a_BlockZ)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 15:42:05 -04:00
|
|
|
m_Protocol->SendEditSign(a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-14 12:03:00 -05:00
|
|
|
void cProtocolRecognizer::SendEntityEffect(const cEntity & a_Entity, int a_EffectID, int a_Amplifier, short a_Duration)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-12-14 12:03:00 -05:00
|
|
|
m_Protocol->SendEntityEffect(a_Entity, a_EffectID, a_Amplifier, a_Duration);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cProtocolRecognizer::SendEntityEquipment(const cEntity & a_Entity, short a_SlotNum, const cItem & a_Item)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityEquipment(a_Entity, a_SlotNum, a_Item);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendEntityHeadLook(const cEntity & a_Entity)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityHeadLook(a_Entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendEntityLook(const cEntity & a_Entity)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityLook(a_Entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendEntityMetadata(const cEntity & a_Entity)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityMetadata(a_Entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendEntityProperties(const cEntity & a_Entity)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityProperties(a_Entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendEntityRelMove(const cEntity & a_Entity, char a_RelX, char a_RelY, char a_RelZ)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityRelMove(a_Entity, a_RelX, a_RelY, a_RelZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendEntityRelMoveLook(const cEntity & a_Entity, char a_RelX, char a_RelY, char a_RelZ)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityRelMoveLook(a_Entity, a_RelX, a_RelY, a_RelZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendEntityStatus(const cEntity & a_Entity, char a_Status)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityStatus(a_Entity, a_Status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendEntityVelocity(const cEntity & a_Entity)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendEntityVelocity(a_Entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendExplosion(double a_BlockX, double a_BlockY, double a_BlockZ, float a_Radius, const cVector3iArray & a_BlocksAffected, const Vector3d & a_PlayerMotion)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-07-19 08:53:41 -04:00
|
|
|
m_Protocol->SendExplosion(a_BlockX, a_BlockY, a_BlockZ, a_Radius, a_BlocksAffected, a_PlayerMotion);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendGameMode(eGameMode a_GameMode)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendGameMode(a_GameMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendHealth(void)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendHealth();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-07 10:41:19 -04:00
|
|
|
void cProtocolRecognizer::SendHideTitle(void)
|
|
|
|
{
|
|
|
|
ASSERT(m_Protocol != nullptr);
|
|
|
|
m_Protocol->SendHideTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-03 16:32:41 -04:00
|
|
|
void cProtocolRecognizer::SendWindowProperty(const cWindow & a_Window, short a_Property, short a_Value)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-08-18 07:26:37 -04:00
|
|
|
m_Protocol->SendWindowProperty(a_Window, a_Property, a_Value);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendInventorySlot(char a_WindowID, short a_SlotNum, const cItem & a_Item)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendInventorySlot(a_WindowID, a_SlotNum, a_Item);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-07-29 11:04:03 -04:00
|
|
|
void cProtocolRecognizer::SendKeepAlive(UInt32 a_PingID)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendKeepAlive(a_PingID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendLogin(const cPlayer & a_Player, const cWorld & a_World)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendLogin(a_Player, a_World);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-14 16:52:59 -04:00
|
|
|
void cProtocolRecognizer::SendLoginSuccess(void)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-04-14 16:52:59 -04:00
|
|
|
m_Protocol->SendLoginSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-30 10:50:15 -04:00
|
|
|
void cProtocolRecognizer::SendMapData(const cMap & a_Map, int a_DataStartX, int a_DataStartY)
|
2014-02-13 10:13:09 -05:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2015-06-30 10:50:15 -04:00
|
|
|
m_Protocol->SendMapData(a_Map, a_DataStartX, a_DataStartY);
|
2014-02-13 10:13:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-11 11:03:09 -04:00
|
|
|
void cProtocolRecognizer::SendParticleEffect(const AString & a_ParticleName, float a_SrcX, float a_SrcY, float a_SrcZ, float a_OffsetX, float a_OffsetY, float a_OffsetZ, float a_ParticleData, int a_ParticleAmount)
|
2013-12-22 08:45:25 -05:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-09-11 11:03:09 -04:00
|
|
|
m_Protocol->SendParticleEffect(a_ParticleName, a_SrcX, a_SrcY, a_SrcZ, a_OffsetX, a_OffsetY, a_OffsetZ, a_ParticleData, a_ParticleAmount);
|
2013-12-22 08:45:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-03-21 13:17:26 -04:00
|
|
|
|
|
|
|
void cProtocolRecognizer::SendParticleEffect(const AString & a_ParticleName, Vector3f a_Src, Vector3f a_Offset, float a_ParticleData, int a_ParticleAmount, std::array<int, 2> a_Data)
|
|
|
|
{
|
|
|
|
ASSERT(m_Protocol != nullptr);
|
|
|
|
m_Protocol->SendParticleEffect(a_ParticleName, a_Src, a_Offset, a_ParticleData, a_ParticleAmount, a_Data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-17 19:16:03 -05:00
|
|
|
void cProtocolRecognizer::SendPaintingSpawn(const cPainting & a_Painting)
|
|
|
|
{
|
|
|
|
m_Protocol->SendPaintingSpawn(a_Painting);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-22 08:45:25 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cProtocolRecognizer::SendPickupSpawn(const cPickup & a_Pickup)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendPickupSpawn(a_Pickup);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-01 11:20:15 -04:00
|
|
|
void cProtocolRecognizer::SendPlayerAbilities(void)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-11-01 11:20:15 -04:00
|
|
|
m_Protocol->SendPlayerAbilities();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-06 18:47:07 -05:00
|
|
|
void cProtocolRecognizer::SendEntityAnimation(const cEntity & a_Entity, char a_Animation)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-12-06 18:47:07 -05:00
|
|
|
m_Protocol->SendEntityAnimation(a_Entity, a_Animation);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-18 12:50:17 -04:00
|
|
|
void cProtocolRecognizer::SendPlayerListAddPlayer(const cPlayer & a_Player)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-09-18 12:50:17 -04:00
|
|
|
m_Protocol->SendPlayerListAddPlayer(a_Player);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendPlayerListRemovePlayer(const cPlayer & a_Player)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-09-18 12:50:17 -04:00
|
|
|
m_Protocol->SendPlayerListRemovePlayer(a_Player);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendPlayerListUpdateGameMode(const cPlayer & a_Player)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-09-18 12:50:17 -04:00
|
|
|
m_Protocol->SendPlayerListUpdateGameMode(a_Player);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendPlayerListUpdatePing(const cPlayer & a_Player)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-09-18 12:50:17 -04:00
|
|
|
m_Protocol->SendPlayerListUpdatePing(a_Player);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-26 11:37:19 -04:00
|
|
|
void cProtocolRecognizer::SendPlayerListUpdateDisplayName(const cPlayer & a_Player, const AString & a_CustomName)
|
2014-09-18 12:50:17 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-09-26 11:37:19 -04:00
|
|
|
m_Protocol->SendPlayerListUpdateDisplayName(a_Player, a_CustomName);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendPlayerMaxSpeed(void)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendPlayerMaxSpeed();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendPlayerMoveLook(void)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendPlayerMoveLook();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendPlayerPosition(void)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendPlayerPosition();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendPlayerSpawn(const cPlayer & a_Player)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendPlayerSpawn(a_Player);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-09 05:39:42 -05:00
|
|
|
void cProtocolRecognizer::SendPluginMessage(const AString & a_Channel, const AString & a_Message)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-01-09 05:39:42 -05:00
|
|
|
m_Protocol->SendPluginMessage(a_Channel, a_Message);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-14 12:03:00 -05:00
|
|
|
void cProtocolRecognizer::SendRemoveEntityEffect(const cEntity & a_Entity, int a_EffectID)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-12-14 12:03:00 -05:00
|
|
|
m_Protocol->SendRemoveEntityEffect(a_Entity, a_EffectID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-07 10:41:19 -04:00
|
|
|
void cProtocolRecognizer::SendResetTitle(void)
|
|
|
|
{
|
|
|
|
ASSERT(m_Protocol != nullptr);
|
|
|
|
m_Protocol->SendResetTitle();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-18 15:10:51 -04:00
|
|
|
void cProtocolRecognizer::SendRespawn(eDimension a_Dimension, bool a_ShouldIgnoreDimensionChecks)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-07-18 15:10:51 -04:00
|
|
|
m_Protocol->SendRespawn(a_Dimension, a_ShouldIgnoreDimensionChecks);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-15 10:23:50 -05:00
|
|
|
void cProtocolRecognizer::SendExperience(void)
|
2013-11-14 16:35:02 -05:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-11-15 10:23:50 -05:00
|
|
|
m_Protocol->SendExperience();
|
2013-11-14 16:35:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-25 15:43:43 -05:00
|
|
|
void cProtocolRecognizer::SendExperienceOrb(const cExpOrb & a_ExpOrb)
|
2013-11-25 14:04:01 -05:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-11-25 15:43:43 -05:00
|
|
|
m_Protocol->SendExperienceOrb(a_ExpOrb);
|
2013-11-25 14:04:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-21 08:58:17 -05:00
|
|
|
void cProtocolRecognizer::SendScoreboardObjective(const AString & a_Name, const AString & a_DisplayName, Byte a_Mode)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-01-21 08:58:17 -05:00
|
|
|
m_Protocol->SendScoreboardObjective(a_Name, a_DisplayName, a_Mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendScoreUpdate(const AString & a_Objective, const AString & a_Player, cObjective::Score a_Score, Byte a_Mode)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-01-21 08:58:17 -05:00
|
|
|
m_Protocol->SendScoreUpdate(a_Objective, a_Player, a_Score, a_Mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendDisplayObjective(const AString & a_Objective, cScoreboard::eDisplaySlot a_Display)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-01-21 08:58:17 -05:00
|
|
|
m_Protocol->SendDisplayObjective(a_Objective, a_Display);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-07 10:41:19 -04:00
|
|
|
void cProtocolRecognizer::SendSetSubTitle(const cCompositeChat & a_SubTitle)
|
|
|
|
{
|
|
|
|
ASSERT(m_Protocol != nullptr);
|
|
|
|
m_Protocol->SendSetSubTitle(a_SubTitle);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendSetRawSubTitle(const AString & a_SubTitle)
|
|
|
|
{
|
|
|
|
ASSERT(m_Protocol != nullptr);
|
|
|
|
m_Protocol->SendSetRawSubTitle(a_SubTitle);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendSetTitle(const cCompositeChat & a_Title)
|
|
|
|
{
|
|
|
|
ASSERT(m_Protocol != nullptr);
|
|
|
|
m_Protocol->SendSetTitle(a_Title);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendSetRawTitle(const AString & a_Title)
|
|
|
|
{
|
|
|
|
ASSERT(m_Protocol != nullptr);
|
|
|
|
m_Protocol->SendSetRawTitle(a_Title);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-12 20:08:02 -04:00
|
|
|
void cProtocolRecognizer::SendSoundEffect(const AString & a_SoundName, double a_X, double a_Y, double a_Z, float a_Volume, float a_Pitch)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-07-12 20:08:02 -04:00
|
|
|
m_Protocol->SendSoundEffect(a_SoundName, a_X, a_Y, a_Z, a_Volume, a_Pitch);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-11-23 18:39:19 -05:00
|
|
|
void cProtocolRecognizer::SendSoundParticleEffect(const EffectID a_EffectID, int a_SrcX, int a_SrcY, int a_SrcZ, int a_Data)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendSoundParticleEffect(a_EffectID, a_SrcX, a_SrcY, a_SrcZ, a_Data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendSpawnFallingBlock(const cFallingBlock & a_FallingBlock)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendSpawnFallingBlock(a_FallingBlock);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendSpawnMob(const cMonster & a_Mob)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendSpawnMob(a_Mob);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendSpawnObject(const cEntity & a_Entity, char a_ObjectType, int a_ObjectData, Byte a_Yaw, Byte a_Pitch)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendSpawnObject(a_Entity, a_ObjectType, a_ObjectData, a_Yaw, a_Pitch);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-29 08:47:22 -04:00
|
|
|
void cProtocolRecognizer::SendSpawnVehicle(const cEntity & a_Vehicle, char a_VehicleType, char a_VehicleSubType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-08-29 08:47:22 -04:00
|
|
|
m_Protocol->SendSpawnVehicle(a_Vehicle, a_VehicleType, a_VehicleSubType);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-05-11 07:57:06 -04:00
|
|
|
void cProtocolRecognizer::SendStatistics(const cStatManager & a_Manager)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-05-11 07:57:06 -04:00
|
|
|
m_Protocol->SendStatistics(a_Manager);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-30 16:48:59 -04:00
|
|
|
void cProtocolRecognizer::SendTabCompletionResults(const AStringVector & a_Results)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-30 16:48:59 -04:00
|
|
|
m_Protocol->SendTabCompletionResults(a_Results);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cProtocolRecognizer::SendTeleportEntity(const cEntity & a_Entity)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendTeleportEntity(a_Entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendThunderbolt(int a_BlockX, int a_BlockY, int a_BlockZ)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendThunderbolt(a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-07 10:41:19 -04:00
|
|
|
void cProtocolRecognizer::SendTitleTimes(int a_FadeInTicks, int a_DisplayTicks, int a_FadeOutTicks)
|
|
|
|
{
|
|
|
|
ASSERT(m_Protocol != nullptr);
|
|
|
|
m_Protocol->SendTitleTimes(a_FadeInTicks, a_DisplayTicks, a_FadeOutTicks);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-08-10 18:20:28 -04:00
|
|
|
void cProtocolRecognizer::SendTimeUpdate(Int64 a_WorldAge, Int64 a_TimeOfDay, bool a_DoDaylightCycle)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-08-10 18:20:28 -04:00
|
|
|
m_Protocol->SendTimeUpdate(a_WorldAge, a_TimeOfDay, a_DoDaylightCycle);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendUnloadChunk(int a_ChunkX, int a_ChunkZ)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendUnloadChunk(a_ChunkX, a_ChunkZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-19 14:42:25 -05:00
|
|
|
void cProtocolRecognizer::SendUpdateBlockEntity(cBlockEntity & a_BlockEntity)
|
2014-01-18 19:54:38 -05:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2014-01-19 14:42:25 -05:00
|
|
|
m_Protocol->SendUpdateBlockEntity(a_BlockEntity);
|
2014-01-18 19:54:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
void cProtocolRecognizer::SendUpdateSign(int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendUpdateSign(a_BlockX, a_BlockY, a_BlockZ, a_Line1, a_Line2, a_Line3, a_Line4);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-21 09:19:48 -04:00
|
|
|
void cProtocolRecognizer::SendUseBed(const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendUseBed(a_Entity, a_BlockX, a_BlockY, a_BlockZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendWeather(eWeather a_Weather)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendWeather(a_Weather);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendWholeInventory(const cWindow & a_Window)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendWholeInventory(a_Window);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cProtocolRecognizer::SendWindowClose(const cWindow & a_Window)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
m_Protocol->SendWindowClose(a_Window);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-08 15:32:14 -05:00
|
|
|
void cProtocolRecognizer::SendWindowOpen(const cWindow & a_Window)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-11-08 15:32:14 -05:00
|
|
|
m_Protocol->SendWindowOpen(a_Window);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AString cProtocolRecognizer::GetAuthServerID(void)
|
|
|
|
{
|
2014-10-20 16:55:07 -04:00
|
|
|
ASSERT(m_Protocol != nullptr);
|
2013-07-29 07:13:03 -04:00
|
|
|
return m_Protocol->GetAuthServerID();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-04 04:13:25 -04:00
|
|
|
void cProtocolRecognizer::SendData(const char * a_Data, size_t a_Size)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
// This is used only when handling the server ping
|
|
|
|
m_Client->SendData(a_Data, a_Size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cProtocolRecognizer::TryRecognizeProtocol(void)
|
|
|
|
{
|
2014-07-17 16:50:58 -04:00
|
|
|
// NOTE: If a new protocol is added or an old one is removed, adjust MCS_CLIENT_VERSIONS and
|
2013-07-29 07:13:03 -04:00
|
|
|
// MCS_PROTOCOL_VERSIONS macros in the header file, as well as PROTO_VERSION_LATEST macro
|
2013-10-30 18:24:46 -04:00
|
|
|
|
2014-09-27 09:28:14 -04:00
|
|
|
// Lengthed protocol, try if it has the entire initial handshake packet:
|
2013-10-30 18:24:46 -04:00
|
|
|
UInt32 PacketLen;
|
2015-07-29 11:04:03 -04:00
|
|
|
UInt32 ReadSoFar = static_cast<UInt32>(m_Buffer.GetReadableSpace());
|
2013-10-30 18:24:46 -04:00
|
|
|
if (!m_Buffer.ReadVarInt(PacketLen))
|
|
|
|
{
|
|
|
|
// Not enough bytes for the packet length, keep waiting
|
|
|
|
return false;
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
2015-07-29 11:04:03 -04:00
|
|
|
ReadSoFar -= static_cast<UInt32>(m_Buffer.GetReadableSpace());
|
2013-10-30 18:24:46 -04:00
|
|
|
if (!m_Buffer.CanReadBytes(PacketLen))
|
|
|
|
{
|
|
|
|
// Not enough bytes for the packet, keep waiting
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return TryRecognizeLengthedProtocol(PacketLen - ReadSoFar);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cProtocolRecognizer::TryRecognizeLengthedProtocol(UInt32 a_PacketLengthRemaining)
|
|
|
|
{
|
|
|
|
UInt32 PacketType;
|
|
|
|
if (!m_Buffer.ReadVarInt(PacketType))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (PacketType != 0x00)
|
|
|
|
{
|
|
|
|
// Not an initial handshake packet, we don't know how to talk to them
|
|
|
|
LOGINFO("Client \"%s\" uses an unsupported protocol (lengthed, initial packet %u)",
|
|
|
|
m_Client->GetIPString().c_str(), PacketType
|
|
|
|
);
|
|
|
|
m_Client->Kick("Unsupported protocol version");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
UInt32 ProtocolVersion;
|
|
|
|
if (!m_Buffer.ReadVarInt(ProtocolVersion))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-10-05 14:19:21 -04:00
|
|
|
m_Client->SetProtocolVersion(ProtocolVersion);
|
2013-10-30 18:24:46 -04:00
|
|
|
switch (ProtocolVersion)
|
|
|
|
{
|
|
|
|
case PROTO_VERSION_1_7_2:
|
|
|
|
{
|
|
|
|
AString ServerAddress;
|
2015-03-21 08:00:20 -04:00
|
|
|
UInt16 ServerPort;
|
2013-10-30 18:24:46 -04:00
|
|
|
UInt32 NextState;
|
2014-09-01 13:18:07 -04:00
|
|
|
if (!m_Buffer.ReadVarUTF8String(ServerAddress))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2015-03-21 08:00:20 -04:00
|
|
|
if (!m_Buffer.ReadBEUInt16(ServerPort))
|
2014-09-01 13:18:07 -04:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!m_Buffer.ReadVarInt(NextState))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2013-10-30 18:24:46 -04:00
|
|
|
m_Buffer.CommitRead();
|
2015-03-21 08:00:20 -04:00
|
|
|
m_Protocol = new cProtocol172(m_Client, ServerAddress, ServerPort, NextState);
|
2013-10-30 18:24:46 -04:00
|
|
|
return true;
|
|
|
|
}
|
2014-04-14 12:52:21 -04:00
|
|
|
case PROTO_VERSION_1_7_6:
|
|
|
|
{
|
|
|
|
AString ServerAddress;
|
2015-03-21 08:00:20 -04:00
|
|
|
UInt16 ServerPort;
|
2014-04-14 12:52:21 -04:00
|
|
|
UInt32 NextState;
|
2014-09-01 13:18:07 -04:00
|
|
|
if (!m_Buffer.ReadVarUTF8String(ServerAddress))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2015-03-21 08:00:20 -04:00
|
|
|
if (!m_Buffer.ReadBEUInt16(ServerPort))
|
2014-09-01 13:18:07 -04:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!m_Buffer.ReadVarInt(NextState))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2014-04-14 12:52:21 -04:00
|
|
|
m_Buffer.CommitRead();
|
2015-03-21 08:00:20 -04:00
|
|
|
m_Protocol = new cProtocol176(m_Client, ServerAddress, ServerPort, NextState);
|
2014-04-14 12:52:21 -04:00
|
|
|
return true;
|
|
|
|
}
|
2014-09-03 18:29:36 -04:00
|
|
|
case PROTO_VERSION_1_8_0:
|
|
|
|
{
|
|
|
|
AString ServerAddress;
|
2015-03-21 08:00:20 -04:00
|
|
|
UInt16 ServerPort;
|
2014-09-03 18:29:36 -04:00
|
|
|
UInt32 NextState;
|
|
|
|
if (!m_Buffer.ReadVarUTF8String(ServerAddress))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2015-03-21 08:00:20 -04:00
|
|
|
if (!m_Buffer.ReadBEUInt16(ServerPort))
|
2014-09-03 18:29:36 -04:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!m_Buffer.ReadVarInt(NextState))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
m_Buffer.CommitRead();
|
2015-03-21 08:00:20 -04:00
|
|
|
m_Protocol = new cProtocol180(m_Client, ServerAddress, ServerPort, NextState);
|
2014-09-03 18:29:36 -04:00
|
|
|
return true;
|
|
|
|
}
|
2013-10-30 18:24:46 -04:00
|
|
|
}
|
2015-03-21 08:00:20 -04:00
|
|
|
LOGINFO("Client \"%s\" uses an unsupported protocol (lengthed, version %u (0x%x))",
|
|
|
|
m_Client->GetIPString().c_str(), ProtocolVersion, ProtocolVersion
|
2013-10-30 18:24:46 -04:00
|
|
|
);
|
|
|
|
m_Client->Kick("Unsupported protocol version");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-03-22 14:46:08 -04:00
|
|
|
void cProtocolRecognizer::SendPacket(cPacketizer & a_Pkt)
|
|
|
|
{
|
|
|
|
// This function should never be called - it needs to exists so that cProtocolRecognizer can be instantiated,
|
|
|
|
// but the actual sending is done by the internal m_Protocol itself.
|
|
|
|
LOGWARNING("%s: This function shouldn't ever be called.", __FUNCTION__);
|
|
|
|
ASSERT(!"Function not to be called");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|