mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 06:23:51 +00:00
35 lines
873 B
C++
35 lines
873 B
C++
#include "PacketPlayerAttribute.hpp"
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketPlayerAttribute::PacketPlayerAttribute(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_PLAYER_ATTRIBUTE;
|
|
}
|
|
|
|
void PacketPlayerAttribute::Packet(RakNet::BitStream *bs, bool send)
|
|
{
|
|
PlayerPacket::Packet(bs, send);
|
|
|
|
uint32_t count;
|
|
if (send)
|
|
count = static_cast<uint32_t>(player->attributeIndexChanges.size());
|
|
|
|
RW(count, send);
|
|
|
|
if (!send)
|
|
{
|
|
player->attributeIndexChanges.clear();
|
|
player->attributeIndexChanges.resize(count);
|
|
}
|
|
|
|
for (auto &&attributeIndex : player->attributeIndexChanges)
|
|
{
|
|
RW(attributeIndex, send);
|
|
|
|
RW(player->creatureStats.mAttributes[attributeIndex], send);
|
|
RW(player->npcStats.mSkillIncrease[attributeIndex], send);
|
|
}
|
|
}
|