chore: format Minecraft.World

This commit is contained in:
Tropical
2026-03-13 17:06:56 -05:00
parent bd6284025d
commit 33d0737d1d
1511 changed files with 108661 additions and 115521 deletions

View File

@@ -5,54 +5,46 @@
#include "PacketListener.h"
#include "AddPaintingPacket.h"
AddPaintingPacket::AddPaintingPacket()
{
id = -1;
x = 0;
y = 0;
z = 0;
dir = 0;
motive = L"";
AddPaintingPacket::AddPaintingPacket() {
id = -1;
x = 0;
y = 0;
z = 0;
dir = 0;
motive = L"";
}
AddPaintingPacket::AddPaintingPacket(std::shared_ptr<Painting> e)
{
id = e->entityId;
x = e->xTile;
y = e->yTile;
z = e->zTile;
dir = e->dir;
motive = e->motive->name;
AddPaintingPacket::AddPaintingPacket(std::shared_ptr<Painting> e) {
id = e->entityId;
x = e->xTile;
y = e->yTile;
z = e->zTile;
dir = e->dir;
motive = e->motive->name;
}
void AddPaintingPacket::read(DataInputStream *dis) //throws IOException
void AddPaintingPacket::read(DataInputStream* dis) // throws IOException
{
id = dis->readInt();
motive = readUtf(dis, Painting::Motive::MAX_MOTIVE_NAME_LENGTH);
x = dis->readInt();
y = dis->readInt();
z = dis->readInt();
dir = dis->readInt();
id = dis->readInt();
motive = readUtf(dis, Painting::Motive::MAX_MOTIVE_NAME_LENGTH);
x = dis->readInt();
y = dis->readInt();
z = dis->readInt();
dir = dis->readInt();
}
void AddPaintingPacket::write(DataOutputStream *dos) //throws IOException
void AddPaintingPacket::write(DataOutputStream* dos) // throws IOException
{
dos->writeInt(id);
writeUtf(motive, dos);
dos->writeInt(x);
dos->writeInt(y);
dos->writeInt(z);
dos->writeInt(dir);
dos->writeInt(id);
writeUtf(motive, dos);
dos->writeInt(x);
dos->writeInt(y);
dos->writeInt(z);
dos->writeInt(dir);
}
void AddPaintingPacket::handle(PacketListener *listener)
{
listener->handleAddPainting(shared_from_this());
void AddPaintingPacket::handle(PacketListener* listener) {
listener->handleAddPainting(shared_from_this());
}
int AddPaintingPacket::getEstimatedSize()
{
return 24;
}
int AddPaintingPacket::getEstimatedSize() { return 24; }