TrinityCore
Loading...
Searching...
No Matches
BlackMarketPackets.cpp
Go to the documentation of this file.
1/*
2 * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include "BlackMarketPackets.h"
19#include "PacketOperators.h"
20
22{
27
33
34ByteBuffer& operator<<(ByteBuffer& data, BlackMarketItem const& blackMarketItem)
35{
36 data << int32(blackMarketItem.MarketID);
37 data << int32(blackMarketItem.SellerNPC);
38 data << int32(blackMarketItem.Quantity);
39 data << uint64(blackMarketItem.MinBid);
40 data << uint64(blackMarketItem.MinIncrement);
41 data << uint64(blackMarketItem.CurrentBid);
42 data << int32(blackMarketItem.SecondsRemaining);
43 data << int32(blackMarketItem.NumBids);
44 data << blackMarketItem.Item;
45 data << Bits<1>(blackMarketItem.HighBid);
46 data.FlushBits();
47
48 return data;
49}
50
52{
53 data >> blackMarketItem.MarketID;
54 data >> blackMarketItem.SellerNPC;
55 data >> blackMarketItem.Item;
56 data >> blackMarketItem.Quantity;
57 data >> blackMarketItem.MinBid;
58 data >> blackMarketItem.MinIncrement;
59 data >> blackMarketItem.CurrentBid;
60 data >> blackMarketItem.SecondsRemaining;
61 data >> blackMarketItem.NumBids;
62 data >> Bits<1>(blackMarketItem.HighBid);
63
64 return data;
65}
66
68{
70 _worldPacket << Size<uint32>(Items);
71
72 for (BlackMarketItem const& item : Items)
73 _worldPacket << item;
74
75 return &_worldPacket;
76}
77
85
94
103
112}
int32_t int32
Definition Define.h:150
uint64_t uint64
Definition Define.h:153
void FlushBits()
Definition ByteBuffer.h:141
WorldPacket _worldPacket
Definition Packet.h:43
ByteBuffer & operator>>(ByteBuffer &data, BlackMarketItem &blackMarketItem)
ByteBuffer & operator<<(ByteBuffer &data, BlackMarketItem const &blackMarketItem)