TrinityCore
Loading...
Searching...
No Matches
ClientConfigPackets.h
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#ifndef TRINITYCORE_CLIENT_CONFIG_PACKETS_H
19#define TRINITYCORE_CLIENT_CONFIG_PACKETS_H
20
21#include "Packet.h"
22#include "PacketUtilities.h"
23#include "WorldSession.h"
24
25namespace WorldPackets
26{
27 namespace ClientConfig
28 {
29 class AccountDataTimes final : public ServerPacket
30 {
31 public:
33
34 WorldPacket const* Write() override;
35
38 std::array<Timestamp<>, NUM_ACCOUNT_DATA_TYPES> AccountTimes = { };
39 };
40
41 class ClientCacheVersion final : public ServerPacket
42 {
43 public:
45
46 WorldPacket const* Write() override;
47
49 };
50
51 class RequestAccountData final : public ClientPacket
52 {
53 public:
55
56 void Read() override;
57
60 };
61
62 class UpdateAccountData final : public ServerPacket
63 {
64 public:
66
67 WorldPacket const* Write() override;
68
73 std::vector<uint8> CompressedData;
74 };
75
77 {
78 public:
80
81 void Read() override;
82
87 std::span<uint8 const> CompressedData;
88 };
89
91 {
92 public:
94
95 WorldPacket const* Write() override;
96
100 };
101
103 {
104 public:
106
107 void Read() override;
108
109 bool Enable = false;
110 };
111 }
112}
113
114#endif // TRINITYCORE_CLIENT_CONFIG_PACKETS_H
int32_t int32
Definition Define.h:150
uint32_t uint32
Definition Define.h:154
@ SMSG_ACCOUNT_DATA_TIMES
Definition Opcodes.h:1091
@ SMSG_UPDATE_ACCOUNT_DATA
Definition Opcodes.h:2412
@ SMSG_UPDATE_ACCOUNT_DATA_COMPLETE
Definition Opcodes.h:2413
@ SMSG_CACHE_VERSION
Definition Opcodes.h:1246
@ CMSG_UPDATE_ACCOUNT_DATA
Definition Opcodes.h:1016
@ CMSG_SET_ADVANCED_COMBAT_LOGGING
Definition Opcodes.h:900
@ CMSG_REQUEST_ACCOUNT_DATA
Definition Opcodes.h:830
#define NUM_ACCOUNT_DATA_TYPES
std::array< Timestamp<>, NUM_ACCOUNT_DATA_TYPES > AccountTimes
STL namespace.