blob: 2e90d3c60a30e0bc12eb7dc052b4c11b14f392f3 (
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 std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new ChunkTilesUpdatePacket()); }
virtual int getId() { return 52; }
};
|