blob: 7cbc3c65136b6f097326e85b3a2f97a192aa7eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#pragma once
using namespace std;
#include "Packet.h"
class Level;
class ChunkTilesUpdatePacket : public Packet, public enable_shared_from_this<ChunkTilesUpdatePacket>
{
public:
int xc, zc;
shortArray positions;
byteArray blocks;
byteArray data;
byte count; // 4J Was int but never has a value higher than 10
int levelIdx;
ChunkTilesUpdatePacket();
~ChunkTilesUpdatePacket();
ChunkTilesUpdatePacket(int xc, int zc, shortArray positions, byte count, Level *level);
virtual void read(DataInputStream *dis);
virtual void write(DataOutputStream *dos);
virtual void handle(PacketListener *listener);
virtual int getEstimatedSize();
public:
static shared_ptr<Packet> create() { return std::make_shared<ChunkTilesUpdatePacket>(); }
virtual int getId() { return 52; }
};
|