1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-24 19:53:51 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Worldstate/PacketClientScriptGlobal.cpp

40 lines
1.2 KiB
C++
Raw Normal View History

#include "PacketClientScriptGlobal.hpp"
#include <components/openmw-mp/NetworkMessages.hpp>
using namespace mwmp;
PacketClientScriptGlobal::PacketClientScriptGlobal(RakNet::RakPeerInterface *peer) : WorldstatePacket(peer)
{
packetID = ID_CLIENT_SCRIPT_GLOBAL;
orderChannel = CHANNEL_WORLDSTATE;
}
void PacketClientScriptGlobal::Packet(RakNet::BitStream *newBitstream, bool send)
{
WorldstatePacket::Packet(newBitstream, send);
uint32_t clientGlobalsCount;
if (send)
clientGlobalsCount = static_cast<uint32_t>(worldstate->clientGlobals.size());
RW(clientGlobalsCount, send);
if (!send)
{
worldstate->clientGlobals.clear();
worldstate->clientGlobals.resize(clientGlobalsCount);
}
for (auto &&clientGlobal : worldstate->clientGlobals)
{
RW(clientGlobal.id, send, true);
RW(clientGlobal.variableType, send);
if (clientGlobal.variableType == mwmp::VARIABLE_TYPE::SHORT || clientGlobal.variableType == mwmp::VARIABLE_TYPE::LONG)
RW(clientGlobal.intValue, send);
else if (clientGlobal.variableType == mwmp::VARIABLE_TYPE::FLOAT)
RW(clientGlobal.floatValue, send);
}
}