git-svn-id: http://mc-server.googlecode.com/svn/trunk@800 0a769ca7-a7f5-676a-18bf-c427514a06d6
35 lines
963 B
C++
35 lines
963 B
C++
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
#include "cPacket_Login.h"
|
|
|
|
|
|
|
|
|
|
|
|
const char * cPacket_Login::LEVEL_TYPE_DEFAULT = "DEFAULT";
|
|
const char * cPacket_Login::LEVEL_TYPE_SUPERFLAT = "SUPERFLAT";
|
|
|
|
|
|
|
|
|
|
|
|
int cPacket_Login::Parse(cByteBuffer & a_Buffer)
|
|
{
|
|
int TotalBytes = 0;
|
|
m_Username.clear();
|
|
HANDLE_PACKET_READ(ReadBEInt, m_ProtocolVersion, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEUTF16String16, m_Username, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEUTF16String16, m_LevelType, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEInt, m_ServerMode, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadBEInt, m_Dimension, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadChar, m_Difficulty, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadByte, m_WorldHeight, TotalBytes);
|
|
HANDLE_PACKET_READ(ReadByte, m_MaxPlayers, TotalBytes);
|
|
return TotalBytes;
|
|
}
|
|
|
|
|
|
|
|
|