mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-16 13:33:51 +00:00
Initial commit
This commit is contained in:
parent
def8cb4153
commit
b691c43c44
19437 changed files with 4363922 additions and 0 deletions
56
Minecraft.World/EntityActionAtPositionPacket.cpp
Normal file
56
Minecraft.World/EntityActionAtPositionPacket.cpp
Normal file
|
|
@ -0,0 +1,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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue