1
0

MultiBlock packet is working partly.. I really don't understand what's wrong with this packet :/

git-svn-id: http://mc-server.googlecode.com/svn/trunk@351 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth
2012-03-02 01:22:06 +00:00
parent a2f6ab93b6
commit 4dda2a5c2b
4 changed files with 54 additions and 2 deletions

View File

@@ -10,13 +10,28 @@
class cPacket_MultiBlock : public cPacket
{
public:
struct sBlockChange
{
sBlockChange()
: Data( 0 )
{}
unsigned int Data;
// short Data; // 4bits metadata ... 12bits block ID
// short Coords; // 8bits Y ... 4bits Z ... 4bits X
};
cPacket_MultiBlock()
: m_ChunkX( 0 )
, m_ChunkZ( 0 )
, m_NumBlocks( 0 )
#if (MINECRAFT_1_2_2 == 1)
, m_DataSize( 0 )
, m_Data( 0 )
#else
, m_BlockCoordinates( 0 )
, m_BlockTypes( 0 )
, m_BlockMetas( 0 )
#endif
{ m_PacketID = E_MULTI_BLOCK; }
cPacket_MultiBlock( const cPacket_MultiBlock & a_Copy );
~cPacket_MultiBlock();
@@ -28,11 +43,17 @@ public:
int m_ChunkZ;
short m_NumBlocks;
#if (MINECRAFT_1_2_2 == 1)
int m_DataSize; // Should be 4*m_NumBlocks ??
sBlockChange* m_Data;
static const unsigned int cSize = 1 + 4 + 4 + 2 + 4; // Minimum size (when NumBlocks == 0)
#else
static const unsigned int c_Size = 1 + 4 + 4 + 2; // Minimum size (when NumBlocks == 0)
unsigned short* m_BlockCoordinates; // x<<12 | z<<8 | y
char* m_BlockTypes;
char* m_BlockMetas;
#endif
};