forked from cmangos/mangos-tbc
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTemplateMgr.cpp
165 lines (139 loc) · 6.06 KB
/
TemplateMgr.cpp
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#include "precompiled.h"
#include "system/system.h"
#include "TemplateMgr.h"
INSTANTIATE_SINGLETON_1(TemplateMgr);
void TemplateMgr::LoadItems()
{
QueryResult* result = SD2Database.Query(
"SELECT templateEntry, itemEntry, itemAmount, enchantEntry, gemEntry1, gemEntry2, gemEntry3"
" FROM template_item");
if (result)
{
do
{
Field* pFields = result->Fetch();
TemplateItem pTemp;
uint32 templateEntry = pFields[0].GetUInt32();
pTemp.itemEntry = pFields[1].GetUInt32();
pTemp.itemAmount = pFields[2].GetUInt32();
pTemp.enchantEntry = pFields[3].GetUInt32();
for (uint8 i = 0; i < MAX_GEM_SOCKETS; ++i)
pTemp.gemEnchantEntry[i] = pFields[4 + i].GetUInt32();
templateItems[templateEntry].push_back(pTemp);
} while (result->NextRow());
delete result;
}
}
void TemplateMgr::LoadSpells()
{
QueryResult* result = SD2Database.Query(
"SELECT templateEntry, spellEntry"
" FROM template_spell");
if (result)
{
do
{
Field* pFields = result->Fetch();
uint32 templateEntry = pFields[0].GetUInt32();
uint32 spellEntry = pFields[1].GetUInt32();
templateSpells[templateEntry].push_back(spellEntry);
} while (result->NextRow());
delete result;
}
}
void TemplateMgr::LoadReputations()
{
QueryResult* result = SD2Database.Query(
"SELECT templateEntry, factionEntry, factionStanding"
" FROM template_reputation");
if (result)
{
do
{
Field* pFields = result->Fetch();
TemplateReputation pTemp;
uint32 templateEntry = pFields[0].GetUInt32();
pTemp.factionEntry = pFields[1].GetUInt32();
pTemp.factionStanding = pFields[2].GetUInt32();
templateReputations[templateEntry].push_back(pTemp);
} while (result->NextRow());
delete result;
}
}
void TemplateMgr::AddItems(Player* player, TemplateItemEntry te)
{
auto it = templateItems.find(uint32(te));
if (it != templateItems.end())
{
for (auto it2 : it->second)
{
uint32 itemEntry = it2.itemEntry;
uint32 itemAmount = it2.itemAmount;
uint32 enchantEntry = itemAmount > 1 ? 0 : it2.enchantEntry;
uint32 gemEnchantEntry[MAX_GEM_SOCKETS];
for (uint8 i = 0; i < MAX_GEM_SOCKETS; ++i)
gemEnchantEntry[i] = it2.gemEnchantEntry[i];
// equip item
player->StoreNewItemInBestSlots(itemEntry, itemAmount);
if (Item* item = player->GetItemByEntry(itemEntry))
{
uint32 slot = item->GetSlot();
// enchant item
if (enchantEntry)
{
// remove old enchanting before applying new
player->ApplyEnchantment(item, PERM_ENCHANTMENT_SLOT, false);
item->SetEnchantment(PERM_ENCHANTMENT_SLOT, enchantEntry, 0, 0);
player->ApplyEnchantment(item, PERM_ENCHANTMENT_SLOT, true);
}
// socket item
if (gemEnchantEntry)
{
bool SocketBonusActivated = item->GemsFitSockets(); // save state of socketbonus
player->ToggleMetaGemsActive(slot, false); // turn off all metagems (except for the target item)
// if a meta gem is being equipped, all information has to be written to the item before testing if the conditions for the gem are met
// remove ALL enchants
for (uint32 enchant_slot = SOCK_ENCHANTMENT_SLOT; enchant_slot < SOCK_ENCHANTMENT_SLOT + MAX_GEM_SOCKETS; ++enchant_slot)
player->ApplyEnchantment(item, EnchantmentSlot(enchant_slot), false);
for (uint8 i = 0; i < MAX_GEM_SOCKETS; ++i)
{
if (gemEnchantEntry[i])
item->SetEnchantment(EnchantmentSlot(SOCK_ENCHANTMENT_SLOT + i), gemEnchantEntry[i], 0, 0);
}
for (uint32 enchant_slot = SOCK_ENCHANTMENT_SLOT; enchant_slot < SOCK_ENCHANTMENT_SLOT + MAX_GEM_SOCKETS; ++enchant_slot)
player->ApplyEnchantment(item, EnchantmentSlot(enchant_slot), true);
bool SocketBonusToBeActivated = item->GemsFitSockets(); // current socketbonus state
if (SocketBonusActivated != SocketBonusToBeActivated) // if there was a change...
{
player->ApplyEnchantment(item, BONUS_ENCHANTMENT_SLOT, false);
item->SetEnchantment(BONUS_ENCHANTMENT_SLOT, (SocketBonusToBeActivated ? item->GetProto()->socketBonus : 0), 0, 0);
player->ApplyEnchantment(item, BONUS_ENCHANTMENT_SLOT, true);
// it is not displayed, client has an inbuilt system to determine if the bonus is activated
}
player->ToggleMetaGemsActive(slot, true); // turn on all metagems (except for target item)
}
}
}
}
}
void TemplateMgr::AddSpells(Player* player, TemplateSpellEntry te)
{
auto it = templateSpells.find(uint32(te));
if (it != templateSpells.end())
{
for (auto spellEntry : it->second)
player->learnSpell(spellEntry, false);
}
}
void TemplateMgr::AddReputations(Player* player, TemplateReputationEntry te)
{
auto it = templateReputations.find(uint32(te));
if (it != templateReputations.end())
{
for (auto it2 : it->second)
{
if (FactionEntry const* fe = sFactionStore.LookupEntry(it2.factionEntry))
player->GetReputationMgr().ModifyReputation(fe, it2.factionStanding);
}
}
}