mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
8db396d10a
Adjust ClientScriptLocal so it refers to its previously handled integers as shorts.
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
#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);
|
|
}
|
|
}
|