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/>.
*/
#ifndef _PLAYER_DUMP_H
#define _PLAYER_DUMP_H
#include "ObjectGuid.h"
#include <string>
#include <iosfwd>
#include <set>
enum DumpTableType
{
DTT_CHARACTER, // // characters
DTT_CHAR_TABLE, // // character_achievement, character_achievement_progress,
// character_action, character_aura, character_homebind,
// character_queststatus, character_queststatus_rewarded, character_reputation,
// character_spell, character_spell_cooldown, character_ticket, character_talent,
// character_cuf_profiles
DTT_CURRENCY, // // character_currency
DTT_EQSET_TABLE, // <- guid // character_equipmentsets
DTT_INVENTORY, // -> item guids collection // character_inventory
DTT_CHAR_TRANSMOG, // <- guid // character_transmog_outfits
DTT_MAIL, // -> mail ids collection // mail
// -> item_text
DTT_MAIL_ITEM, // <- mail ids // mail_items
// -> item guids collection
DTT_ITEM, // <- item guids // item_instance
// -> item_text
DTT_ITEM_GIFT, // <- item guids // character_gifts
DTT_ITEM_TABLE, // <- item guids // item_instance_artifact, item_instance_artifact_powers, item_instance_azerite
// item_instance_azerite_empowered, item_instance_azerite_milestone_power,
// item_instance_azerite_unlocked_essence, item_instance_gems, item_instance_modifiers,
// item_instance_transmog
DTT_PET, // -> pet guids collection // character_pet
DTT_PET_TABLE // <- pet guids // pet_aura, pet_spell, pet_spell_cooldown
};
enum DumpReturn
{
DUMP_SUCCESS,
DUMP_FILE_OPEN_ERROR,
DUMP_TOO_MANY_CHARS,
DUMP_FILE_BROKEN,
DUMP_CHARACTER_DELETED
};
struct DumpTable;
struct TableStruct;
class StringTransaction;
class TC_GAME_API PlayerDump
{
public:
PlayerDump(PlayerDump const&) = delete;
PlayerDump(PlayerDump&&) = delete;
PlayerDump& operator=(PlayerDump const&) = delete;
PlayerDump& operator=(PlayerDump&&) = delete;
static void InitializeTables();
protected:
PlayerDump() = default;
~PlayerDump() = default;
};
class TC_GAME_API PlayerDumpWriter final : public PlayerDump
{
public:
PlayerDumpWriter();
bool GetDump(ObjectGuid::LowType guid, std::string& dump);
DumpReturn WriteDumpToFile(std::string const& file, ObjectGuid::LowType guid);
DumpReturn WriteDumpToString(std::string& dump, ObjectGuid::LowType guid);
private:
bool AppendTable(StringTransaction& trans, ObjectGuid::LowType guid, TableStruct const& tableStruct, DumpTable const& dumpTable);
void PopulateGuids(ObjectGuid::LowType guid);
std::set<uint32> _pets;
std::set<uint32> _mails;
std::set<ObjectGuid::LowType> _items;
std::set<uint64> _itemSets;
};
class TC_GAME_API PlayerDumpReader final : public PlayerDump
{
public:
PlayerDumpReader() = default;
DumpReturn LoadDumpFromFile(std::string const& file, uint32 account, std::string name, ObjectGuid::LowType guid);
DumpReturn LoadDumpFromString(std::string const& dump, uint32 account, std::string name, ObjectGuid::LowType guid);
private:
DumpReturn LoadDump(std::istream& input, uint32 account, std::string name, ObjectGuid::LowType guid);
};
#endif
|