blob: beda98d31e425ba63fc8597d39fd1e1996733a1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/*
* This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "SocialPackets.h"
#include "PacketOperators.h"
namespace WorldPackets::Social
{
void SendContactList::Read()
{
_worldPacket >> Flags;
}
ByteBuffer& operator<<(ByteBuffer& data, ContactInfo const& contact)
{
data << contact.Guid;
data << contact.WowAccountGuid;
data << uint32(contact.VirtualRealmAddr);
data << uint32(contact.NativeRealmAddr);
data << uint32(contact.TypeFlags);
data << uint8(contact.Status);
data << uint32(contact.AreaID);
data << uint32(contact.Level);
data << int8(contact.ClassID);
data << SizedString::BitsSize<10>(contact.Notes);
data.FlushBits();
data << SizedString::Data(contact.Notes);
return data;
}
WorldPacket const* ContactList::Write()
{
_worldPacket << uint32(Flags);
_worldPacket << BitsSize<8>(Contacts);
_worldPacket.FlushBits();
for (ContactInfo const& contact : Contacts)
_worldPacket << contact;
return &_worldPacket;
}
WorldPacket const* FriendStatus::Write()
{
_worldPacket << uint8(FriendResult);
_worldPacket << Guid;
_worldPacket << WowAccountGuid;
_worldPacket << uint32(VirtualRealmAddress);
_worldPacket << uint8(Status);
_worldPacket << uint32(AreaID);
_worldPacket << uint32(Level);
_worldPacket << int8(ClassID);
_worldPacket << SizedString::BitsSize<10>(Notes);
_worldPacket.FlushBits();
_worldPacket << SizedString::Data(Notes);
return &_worldPacket;
}
ByteBuffer& operator>>(ByteBuffer& data, QualifiedGUID& qGuid)
{
data >> qGuid.VirtualRealmAddress;
data >> qGuid.Guid;
return data;
}
void AddFriend::Read()
{
_worldPacket >> SizedString::BitsSize<9>(Name);
_worldPacket >> SizedString::BitsSize<9>(Notes);
_worldPacket >> SizedString::Data(Name);
_worldPacket >> SizedString::Data(Notes);
}
void DelFriend::Read()
{
_worldPacket >> Player;
}
void SetContactNotes::Read()
{
_worldPacket >> Player;
_worldPacket >> SizedString::BitsSize<10>(Notes);
_worldPacket >> SizedString::Data(Notes);
}
void AddIgnore::Read()
{
_worldPacket >> SizedString::BitsSize<9>(Name);
_worldPacket >> AccountGUID;
_worldPacket >> SizedString::Data(Name);
}
void DelIgnore::Read()
{
_worldPacket >> Player;
}
WorldPacket const* SocialContractRequestResponse::Write()
{
_worldPacket << Bits<1>(ShowSocialContract);
_worldPacket.FlushBits();
return &_worldPacket;
}
}
|