2016-07-23 14:02:06 +00:00
|
|
|
#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)
|
2016-07-23 14:02:06 +00:00
|
|
|
{
|
|
|
|
packetID = ID_GUI_MESSAGEBOX;
|
2017-05-08 16:38:48 +00:00
|
|
|
orderChannel = CHANNEL_SYSTEM;
|
2016-07-23 14:02:06 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 08:17:33 +00:00
|
|
|
void PacketGUIBoxes::Packet(RakNet::BitStream *newBitstream, bool send)
|
2016-07-23 14:02:06 +00:00
|
|
|
{
|
2019-12-04 08:17:33 +00:00
|
|
|
PlayerPacket::Packet(newBitstream, send);
|
2016-07-23 14:02:06 +00:00
|
|
|
|
|
|
|
RW(player->guiMessageBox.id, send);
|
|
|
|
RW(player->guiMessageBox.type, send);
|
|
|
|
RW(player->guiMessageBox.label, send);
|
|
|
|
|
2018-07-04 23:56:32 +00:00
|
|
|
RW(player->guiMessageBox.data, send, true);
|
2016-07-23 14:02:06 +00:00
|
|
|
|
2016-08-17 15:20:36 +00:00
|
|
|
if (player->guiMessageBox.type == BasePlayer::GUIMessageBox::CustomMessageBox)
|
2016-07-23 14:02:06 +00:00
|
|
|
RW(player->guiMessageBox.buttons, send);
|
2018-05-25 02:28:22 +00:00
|
|
|
else if (player->guiMessageBox.type == BasePlayer::GUIMessageBox::InputDialog ||
|
|
|
|
player->guiMessageBox.type == BasePlayer::GUIMessageBox::PasswordDialog)
|
2017-07-02 10:07:10 +00:00
|
|
|
RW(player->guiMessageBox.note, send);
|
2016-07-23 14:02:06 +00:00
|
|
|
}
|
|
|
|
|