openmw-tes3coop/components/openmw-mp/Packets/Actor/PacketActorList.cpp
Koncord f35d35741e [General] Remove redundant code
Remove BaseEvent::worldObjectCount
Remove BaseActor::count
Use foreach loops in packets and processors
Remove redundant "&" in CellController::get().getCell() calls
2017-12-09 14:59:41 +08:00

30 lines
715 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);
for(auto &actor : actorList->baseActors)
{
RW(actor->refId, send);
RW(actor->refNumIndex, send);
RW(actor->mpNum, send);
if (actor->refId.empty() || (actor->refNumIndex != 0 && actor->mpNum != 0))
{
actorList->isValid = false;
return;
}
}
}