1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 17:49:55 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketGUIBoxes.cpp

29 lines
907 B
C++
Raw Normal View History

#include "PacketGUIBoxes.hpp"
#include <components/openmw-mp/NetworkMessages.hpp>
using namespace mwmp;
2016-10-17 12:54:36 +00:00
PacketGUIBoxes::PacketGUIBoxes(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
{
packetID = ID_GUI_MESSAGEBOX;
orderChannel = CHANNEL_SYSTEM;
}
void PacketGUIBoxes::Packet(RakNet::BitStream *newBitstream, bool send)
{
PlayerPacket::Packet(newBitstream, send);
RW(player->guiMessageBox.id, send);
RW(player->guiMessageBox.type, send);
RW(player->guiMessageBox.label, send);
RW(player->guiMessageBox.data, send, true);
2016-08-17 15:20:36 +00:00
if (player->guiMessageBox.type == BasePlayer::GUIMessageBox::CustomMessageBox)
RW(player->guiMessageBox.buttons, send);
else if (player->guiMessageBox.type == BasePlayer::GUIMessageBox::InputDialog ||
player->guiMessageBox.type == BasePlayer::GUIMessageBox::PasswordDialog)
RW(player->guiMessageBox.note, send);
}