forked from mirror/openmw-tes3mp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include <components/openmw-mp/Log.hpp>
|
|
#include "PacketContainer.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketContainer::PacketContainer(RakNet::RakPeerInterface *peer) : ObjectPacket(peer)
|
|
{
|
|
packetID = ID_CONTAINER;
|
|
hasCellData = true;
|
|
}
|
|
|
|
void PacketContainer::Packet(RakNet::BitStream *bs, bool send)
|
|
{
|
|
if (!PacketHeader(bs, send))
|
|
return;
|
|
|
|
RW(objectList->action, send);
|
|
RW(objectList->containerSubAction, send);
|
|
|
|
BaseObject baseObject;
|
|
for (unsigned int i = 0; i < objectList->baseObjectCount; i++)
|
|
{
|
|
if (send)
|
|
{
|
|
baseObject = objectList->baseObjects.at(i);
|
|
baseObject.containerItemCount = (unsigned int) (baseObject.containerItems.size());
|
|
}
|
|
else
|
|
baseObject.containerItems.clear();
|
|
|
|
Object(baseObject, send);
|
|
|
|
RW(baseObject.containerItemCount, send);
|
|
|
|
if (baseObject.containerItemCount > maxObjects || baseObject.refId.empty() || (baseObject.refNum != 0 && baseObject.mpNum != 0))
|
|
{
|
|
objectList->isValid = false;
|
|
return;
|
|
}
|
|
|
|
ContainerItem containerItem;
|
|
|
|
for (unsigned int j = 0; j < baseObject.containerItemCount; j++)
|
|
{
|
|
if (send)
|
|
containerItem = baseObject.containerItems.at(j);
|
|
|
|
RW(containerItem.refId, send, true);
|
|
RW(containerItem.count, send);
|
|
RW(containerItem.charge, send);
|
|
RW(containerItem.enchantmentCharge, send);
|
|
RW(containerItem.soul, send, true);
|
|
RW(containerItem.actionCount, send);
|
|
|
|
if (!send)
|
|
baseObject.containerItems.push_back(containerItem);
|
|
}
|
|
if (!send)
|
|
objectList->baseObjects.push_back(baseObject);
|
|
}
|
|
}
|