TrinityCore
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 ClientConfigPackets_h__
19#define ClientConfigPackets_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
74 };
75
77 {
78 public:
80
81 void Read() override;
82
88 };
89
91 {
92 public:
94
95 void Read() override;
96
97 bool Enable = false;
98 };
99 }
100}
101
102#endif // ClientConfigPackets_h__
uint8_t uint8
Definition: Define.h:144
uint32_t uint32
Definition: Define.h:142
std::array< Timestamp<>, NUM_ACCOUNT_DATA_TYPES > AccountTimes
#define NUM_ACCOUNT_DATA_TYPES
Definition: WorldSession.h:870
@ CMSG_UPDATE_ACCOUNT_DATA
Definition: Opcodes.h:870
@ CMSG_SET_ADVANCED_COMBAT_LOGGING
Definition: Opcodes.h:767
@ CMSG_REQUEST_ACCOUNT_DATA
Definition: Opcodes.h:706
@ SMSG_ACCOUNT_DATA_TIMES
Definition: Opcodes.h:905
@ SMSG_UPDATE_ACCOUNT_DATA
Definition: Opcodes.h:2023
@ SMSG_CACHE_VERSION
Definition: Opcodes.h:1049
STL namespace.