blob: 7353f9329f50883a7a0eee99910aae1985ad9946 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#include "stdafx.h"
#include <iostream>
#include "InputOutputStream.h"
#include "net.minecraft.world.entity.h"
#include "PacketListener.h"
#include "EntityActionAtPositionPacket.h"
const int EntityActionAtPositionPacket::START_SLEEP = 0;
EntityActionAtPositionPacket::EntityActionAtPositionPacket()
{
id = -1;
x = 0;
y = 0;
z = 0;
action = 0;
}
EntityActionAtPositionPacket::EntityActionAtPositionPacket(shared_ptr<Entity> e, int action, int x, int y, int z)
{
this->action = action;
this->x = x;
this->y = y;
this->z = z;
this->id = e->entityId;
}
void EntityActionAtPositionPacket::read(DataInputStream *dis) //throws IOException
{
id = dis->readInt();
action = dis->readByte();
x = dis->readInt();
y = dis->readByte();
z = dis->readInt();
}
void EntityActionAtPositionPacket::write(DataOutputStream *dos) //throws IOException
{
dos->writeInt(id);
dos->writeByte(action);
dos->writeInt(x);
dos->writeByte(y);
dos->writeInt(z);
}
void EntityActionAtPositionPacket::handle(PacketListener *listener)
{
listener->handleEntityActionAtPosition(shared_from_this());
}
int EntityActionAtPositionPacket::getEstimatedSize()
{
return 14;
}
|