* try to resolve merge conflict
* feat: TU19 (Dec 2014) Features & Content (#32)
* December 2014 files
* Working release build
* Fix compilation issues
* Add sound to Windows64Media
* Add DLC content and force Tutorial DLC
* Revert "Add DLC content and force Tutorial DLC"
This reverts commit 97a4399472.
* Disable broken light packing
* Disable breakpoint during DLC texture map load
Allows DLC loading but the DLC textures are still broken
* Fix post build not working
* ...
* fix vs2022 build
* fix cmake build
---------
Co-authored-by: Loki <lokirautio@gmail.com>
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
#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;
|
|
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;
|
|
}
|