openmw-tes3coop/components/openmw-mp/Packets/Actor/PacketActorList.cpp
David Cernat 09da24f1ea [General] Rename all instances of refNumIndex into refNum
This creates symmetry with mpNum and should cause less confusion in the future.
2018-07-13 04:12:03 +03:00

38 lines
872 B
C++

#include <components/openmw-mp/NetworkMessages.hpp>
#include "PacketActorList.hpp"
using namespace mwmp;
PacketActorList::PacketActorList(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
{
packetID = ID_ACTOR_LIST;
}
void PacketActorList::Packet(RakNet::BitStream *bs, bool send)
{
if (!ActorPacket::PacketHeader(bs, send))
return;
RW(actorList->action, send);
BaseActor actor;
for (unsigned int i = 0; i < actorList->count; i++)
{
if (send)
actor = actorList->baseActors.at(i);
RW(actor.refId, send);
RW(actor.refNum, send);
RW(actor.mpNum, send);
if (actor.refId.empty() || (actor.refNum != 0 && actor.mpNum != 0))
{
actorList->isValid = false;
return;
}
if (!send)
actorList->baseActors.push_back(actor);
}
}