Files
MinecraftConsoles/Minecraft.World/ContainerSetContentPacket.cpp
Loki Rautio 087b7e7abf Revert "Project modernization (#630)"
This code was not tested and breaks in Release builds, reverting to restore
functionality of the nightly. All in-game menus do not work and generating
a world crashes.

This reverts commit a9be52c41a.
2026-03-07 21:12:22 -06:00

61 lines
1.4 KiB
C++

#include "stdafx.h"
#include <iostream>
#include "InputOutputStream.h"
#include "net.minecraft.world.item.h"
#include "PacketListener.h"
#include "ContainerSetContentPacket.h"
ContainerSetContentPacket::~ContainerSetContentPacket()
{
delete[] items.data;
}
ContainerSetContentPacket::ContainerSetContentPacket()
{
containerId = 0;
}
ContainerSetContentPacket::ContainerSetContentPacket(int containerId, vector<shared_ptr<ItemInstance> > *newItems)
{
this->containerId = containerId;
items = ItemInstanceArray((int)newItems->size());
for (unsigned int i = 0; i < items.length; i++)
{
shared_ptr<ItemInstance> item = newItems->at(i);
items[i] = item == NULL ? nullptr : item->copy();
}
}
void ContainerSetContentPacket::read(DataInputStream *dis) //throws IOException
{
containerId = dis->readByte();
int count = dis->readShort();
items = ItemInstanceArray(count);
for (int i = 0; i < count; i++)
{
items[i] = readItem(dis);
}
}
void ContainerSetContentPacket::write(DataOutputStream *dos) //throws IOException
{
dos->writeByte(containerId);
dos->writeShort(items.length);
for (unsigned int i = 0; i < items.length; i++)
{
writeItem(items[i], dos);
}
}
void ContainerSetContentPacket::handle(PacketListener *listener)
{
listener->handleContainerContent(shared_from_this());
}
int ContainerSetContentPacket::getEstimatedSize()
{
return 3 + items.length * 5;
}