2691e8daed
This breaks plugin API! Plugins need to modify their hook functions to match those used in the Core plugin git-svn-id: http://mc-server.googlecode.com/svn/trunk@750 0a769ca7-a7f5-676a-18bf-c427514a06d6
43 lines
816 B
C++
43 lines
816 B
C++
|
|
#pragma once
|
|
|
|
#include "cPacket.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cPacket_Login : public cPacket
|
|
{
|
|
public:
|
|
cPacket_Login()
|
|
: m_ProtocolVersion( 0 )
|
|
, m_ServerMode( 0 )
|
|
, m_Dimension( 0 )
|
|
, m_Difficulty( 0 )
|
|
, m_WorldHeight( 0 )
|
|
, m_MaxPlayers( 0 )
|
|
, m_LevelType( LEVEL_TYPE_DEFAULT )
|
|
{ m_PacketID = E_LOGIN; }
|
|
virtual cPacket* Clone() const { return new cPacket_Login(*this); }
|
|
|
|
virtual int Parse(cByteBuffer & a_Buffer) override;
|
|
virtual void Serialize(AString & a_Data) const override;
|
|
|
|
int m_ProtocolVersion;
|
|
AString m_Username;
|
|
AString m_LevelType;
|
|
int m_ServerMode;
|
|
int m_Dimension;
|
|
char m_Difficulty;
|
|
unsigned char m_WorldHeight;
|
|
unsigned char m_MaxPlayers;
|
|
|
|
static const char * LEVEL_TYPE_DEFAULT;
|
|
static const char * LEVEL_TYPE_SUPERFLAT;
|
|
};
|
|
|
|
|
|
|
|
|