mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-26 01:37:08 +00:00
chore: format Minecraft.World
This commit is contained in:
@@ -5,52 +5,47 @@
|
||||
#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() {
|
||||
id = -1;
|
||||
x = 0;
|
||||
y = 0;
|
||||
z = 0;
|
||||
action = 0;
|
||||
}
|
||||
|
||||
EntityActionAtPositionPacket::EntityActionAtPositionPacket(std::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;
|
||||
EntityActionAtPositionPacket::EntityActionAtPositionPacket(
|
||||
std::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
|
||||
void EntityActionAtPositionPacket::read(
|
||||
DataInputStream* dis) // throws IOException
|
||||
{
|
||||
id = dis->readInt();
|
||||
action = (int)dis->readByte();
|
||||
x = dis->readInt();
|
||||
y = (int)dis->readByte();
|
||||
z = dis->readInt();
|
||||
id = dis->readInt();
|
||||
action = (int)dis->readByte();
|
||||
x = dis->readInt();
|
||||
y = (int)dis->readByte();
|
||||
z = dis->readInt();
|
||||
}
|
||||
|
||||
void EntityActionAtPositionPacket::write(DataOutputStream *dos) //throws IOException
|
||||
void EntityActionAtPositionPacket::write(
|
||||
DataOutputStream* dos) // throws IOException
|
||||
{
|
||||
dos->writeInt(id);
|
||||
dos->writeByte((uint8_t)action);
|
||||
dos->writeInt(x);
|
||||
dos->writeByte((uint8_t)y);
|
||||
dos->writeInt(z);
|
||||
dos->writeInt(id);
|
||||
dos->writeByte((uint8_t)action);
|
||||
dos->writeInt(x);
|
||||
dos->writeByte((uint8_t)y);
|
||||
dos->writeInt(z);
|
||||
}
|
||||
|
||||
void EntityActionAtPositionPacket::handle(PacketListener *listener)
|
||||
{
|
||||
listener->handleEntityActionAtPosition(shared_from_this());
|
||||
void EntityActionAtPositionPacket::handle(PacketListener* listener) {
|
||||
listener->handleEntityActionAtPosition(shared_from_this());
|
||||
}
|
||||
|
||||
int EntityActionAtPositionPacket::getEstimatedSize()
|
||||
{
|
||||
return 14;
|
||||
}
|
||||
int EntityActionAtPositionPacket::getEstimatedSize() { return 14; }
|
||||
|
||||
Reference in New Issue
Block a user