forked from simulationcraft/simc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwowhead.cpp
341 lines (277 loc) · 11.4 KB
/
wowhead.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
// ==========================================================================
// Dedmonwakeen's Raid DPS/TPS Simulator.
// Send questions to [email protected]
// ==========================================================================
#include "wowhead.hpp"
#include "item/item.hpp"
#include "player/player.hpp"
#include "sim/sim.hpp"
#include "util/xml.hpp"
#include "interfaces/sc_js.hpp"
#include "rapidjson/document.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/prettywriter.h"
#include "rapidjson/prettywriter.h"
namespace {
// 2016-07-20: Wowhead's XML output for item stats produces weird results on certain items that are
// no longer available in game. Skip very high values to let the sim run, but not use completely
// silly values.
constexpr int WOWHEAD_STAT_MAX = 10000;
// source_str ===============================================================
std::string source_str( wowhead::wowhead_e source )
{
switch ( source )
{
case wowhead::PTR: return "ptr";
#if SC_BETA
case wowhead::BETA: return SC_BETA_STR;
#endif
default: return "www";
}
}
std::string source_desc_str( wowhead::wowhead_e source )
{
switch ( source )
{
case wowhead::PTR: return "PTR";
#if SC_BETA
case wowhead::BETA: return "Beta";
#endif
default: return "Live";
}
}
// download_id ==============================================================
std::shared_ptr<xml_node_t> download_id( sim_t* sim,
unsigned id,
cache::behavior_e caching,
wowhead::wowhead_e source )
{
if ( ! id )
return {};
std::string url_www = "https://" + source_str( source ) + ".wowhead.com/item="
+ util::to_string( id ) + "&xml";
auto node = xml_node_t::get( url_www, caching, "</json>" );
if ( sim -> debug && node ) node -> print();
return node;
}
} // unnamed namespace
// download_item_data =======================================================
bool wowhead::download_item_data( item_t& item, wowhead_e source, cache::behavior_e cache_behavior )
{
try
{
auto xml = download_id( item.sim, item.parsed.data.id, cache_behavior, source );
if ( ! xml )
{
if ( cache_behavior != cache::ONLY )
item.sim -> errorf( "Player %s unable to download item id '%u' from wowhead at slot %s.\n", item.player -> name(), item.parsed.data.id, item.slot_name() );
return false;
}
try
{
int id;
if (!xml->get_value(id, "item/id")) throw("id");
item.parsed.data.id = id;
if (!xml->get_value(item.name_str, "name/cdata")) throw("name");
util::tokenize(item.name_str);
xml->get_value(item.icon_str, "icon/cdata");
if (!xml->get_value(item.parsed.data.level, "level/.")) throw("level");
if (!xml->get_value(item.parsed.data.quality, "quality/id")) throw("quality");
std::string jsonequipdata;
std::string jsondata;
xml->get_value(jsonequipdata, "jsonEquip/cdata");
jsonequipdata = "{" + jsonequipdata + "}";
xml->get_value(jsondata, "json/cdata");
jsondata = "{" + jsondata + "}";
rapidjson::Document json;
rapidjson::Document jsonequip;
json.Parse(jsondata.c_str());
jsonequip.Parse(jsonequipdata.c_str());
if (json.HasParseError())
{
item.sim->error("Unable to parse JSON data for item id '{}': {} @ {}",
id, json.GetParseError(), json.GetErrorOffset());
return false;
}
if (jsonequip.HasParseError())
{
item.sim->error("Unable to parse JSON data for item id '{}': {} @ {}",
id, jsonequip.GetParseError(), json.GetErrorOffset());
return false;
}
if (item.sim->debug)
{
rapidjson::StringBuffer b;
rapidjson::PrettyWriter< rapidjson::StringBuffer > writer(b);
json.Accept(writer);
item.sim->out_debug.raw() << b.GetStringView();
rapidjson::StringBuffer b2;
rapidjson::PrettyWriter< rapidjson::StringBuffer > writer2(b2);
jsonequip.Accept(writer2);
item.sim->out_debug.raw() << b2.GetStringView();
}
if (!json.HasMember("slot"))
throw("inventory type");
if (!json.HasMember("classs"))
throw("item class");
if (!json.HasMember("subclass"))
throw("item subclass");
item.parsed.data.inventory_type = json["slot"].GetInt();
item.parsed.data.item_class = json["classs"].GetInt();
item.parsed.data.item_subclass = json["subclass"].GetInt();
if (item.parsed.data.item_subclass < 0)
item.parsed.data.item_subclass = 0;
if (json.HasMember("reqlevel"))
item.parsed.data.req_level = json["reqlevel"].GetInt();
if (json.HasMember("raidfinder"))
item.parsed.data.type_flags |= RAID_TYPE_LFR;
if (json.HasMember("heroic"))
item.parsed.data.type_flags |= RAID_TYPE_HEROIC;
if (json.HasMember("mythic"))
item.parsed.data.type_flags |= RAID_TYPE_MYTHIC;
if (json.HasMember("warforged"))
item.parsed.data.type_flags |= RAID_TYPE_WARFORGED;
if (item.parsed.data.item_class == ITEM_CLASS_WEAPON)
{
if (!jsonequip.HasMember("dmgrange"))
throw("weapon damage range");
if (!jsonequip.HasMember("speed"))
throw("weapon speed");
}
if (jsonequip.HasMember("reqskill"))
item.parsed.data.req_skill = jsonequip["reqskill"].GetInt();
if (jsonequip.HasMember("reqskillrank"))
item.parsed.data.req_skill_level = jsonequip["reqskillrank"].GetInt();
// Todo binding type, needs htmlTooltip parsing
if (item.parsed.data.item_class == ITEM_CLASS_WEAPON)
{
item.parsed.data.delay = jsonequip["speed"].GetFloat() * 1000.0F;
item.parsed.data.dmg_range = jsonequip["dmgrange"].GetFloat();
}
int races = -1;
if (jsonequip.HasMember("races"))
races = jsonequip["races"].GetInt();
item.parsed.data.race_mask = races;
int classes = -1;
if (jsonequip.HasMember("classes"))
classes = jsonequip["classes"].GetInt();
item.parsed.data.class_mask = classes;
size_t n = 0;
stat_e hybrid_stat = STAT_NONE;
for (rapidjson::Value::ConstMemberIterator i = jsonequip.MemberBegin();
i != jsonequip.MemberEnd() && n < std::size(item.parsed.data.stat_type_e); i++)
{
stat_e type = util::parse_stat_type(i->name.GetString());
// wowhead josnEquip contains redundant entries for queries, take note so we can purge
if (type == STAT_STR_AGI || type == STAT_STR_INT || type == STAT_AGI_INT)
hybrid_stat = type;
}
for (rapidjson::Value::ConstMemberIterator i = jsonequip.MemberBegin();
i != jsonequip.MemberEnd() && n < std::size(item.parsed.data.stat_type_e); i++)
{
stat_e type = util::parse_stat_type(i->name.GetString());
if (type == STAT_NONE || type == STAT_ARMOR || util::translate_stat(type) == ITEM_MOD_NONE)
continue;
// If we have a hybrid stat, don't record the excess STR/INT/AGI entries
if (hybrid_stat != STAT_NONE && (type == STAT_STRENGTH || type == STAT_INTELLECT || type == STAT_AGILITY))
continue;
// 2016-07-20: Wowhead's XML output for item stats produces weird results on certain items
// that are no longer available in game. Skip very high values to let the sim run, but not use
// completely silly values.
if (i->value.GetInt() > WOWHEAD_STAT_MAX)
{
item.sim->errorf("Warning, item %s has abnormal stat value (stat=%s value=%d) in XML output, ignoring ...",
item.name(), util::stat_type_string(type), i->value.GetInt());
continue;
}
item.parsed.data.stat_type_e[n] = util::translate_stat(type);
item.parsed.stat_val[n] = i->value.GetInt();
n++;
// Soo, weapons need a flag to indicate caster weapon for correct DPS calculation.
if (item.parsed.data.delay > 0 && (
item.parsed.data.stat_type_e[n - 1] == ITEM_MOD_INTELLECT ||
item.parsed.data.stat_type_e[n - 1] == ITEM_MOD_SPIRIT ||
item.parsed.data.stat_type_e[n - 1] == ITEM_MOD_SPELL_POWER))
item.parsed.data.flags_2 |= ITEM_FLAG2_CASTER_WEAPON;
}
int n_sockets = 0;
if (jsonequip.HasMember("nsockets"))
n_sockets = jsonequip["nsockets"].GetUint();
assert(n_sockets <= static_cast<int>(std::size(item.parsed.data.socket_color)));
for (int i = 0; i < n_sockets; i++)
{
std::string socket_str = fmt::format("socket{:d}", i + 1);
if (jsonequip.HasMember(socket_str.c_str()))
item.parsed.data.socket_color[i] = jsonequip[socket_str.c_str()].GetUint();
}
if (jsonequip.HasMember("socketbonus"))
item.parsed.data.id_socket_bonus = jsonequip["socketbonus"].GetUint();
if (jsonequip.HasMember("itemset"))
item.parsed.data.id_set = std::abs(jsonequip["itemset"].GetInt());
// Sad to the face
std::string htmltooltip;
xml->get_value(htmltooltip, "htmlTooltip/cdata");
// Parse out Equip: and On use: strings
auto htmltooltip_xml = xml_node_t::create(htmltooltip);
//htmltooltip_xml -> print( item.sim -> output_file, 2 );
std::vector<xml_node_t*> spell_links = htmltooltip_xml->get_nodes("span");
for ( auto* spell_link : spell_links )
{
int trigger_type = -1;
std::string v;
if (spell_link->get_value(v, ".") && v != "Equip: " && v != "Use: ")
continue;
if (v == "Use: ")
trigger_type = ITEM_SPELLTRIGGER_ON_USE;
else if (v == "Equip: ")
trigger_type = ITEM_SPELLTRIGGER_ON_EQUIP;
std::string url;
if (!spell_link->get_value(url, "a/href"))
continue;
size_t begin = url.rfind('=');
if (begin == std::string::npos)
continue;
else
begin++;
int parsed_spell_id = util::to_int(url.substr(begin));
if (parsed_spell_id < 0)
{
throw std::invalid_argument(fmt::format("Invalid spell id {} < 0.", parsed_spell_id));
}
if (parsed_spell_id > 0 && trigger_type != -1)
{
item.parsed.data.add_effect( as<unsigned>( parsed_spell_id ), trigger_type );
}
}
}
catch (const char* fieldname)
{
std::string error_str;
xml->get_value(error_str, "error/.");
if ( cache_behavior != cache::ONLY )
item.sim->errorf("Wowhead (%s): Player %s unable to parse item '%u' %s in slot '%s': %s\n",
source_desc_str(source).c_str(), item.player->name(), item.parsed.data.id,
fieldname, item.slot_name(), error_str.c_str());
return false;
}
}
catch( const std::exception& e )
{
if ( cache_behavior != cache::ONLY )
item.sim -> errorf( "Wowhead (%s): Player %s unable to download/parse item '%u' in slot '%s': %s\n",
source_desc_str( source ).c_str(), item.player -> name(), item.parsed.data.id,
item.slot_name(), e.what() );
return false;
}
return true;
}
// wowhead::download_item ===================================================
bool wowhead::download_item( item_t& item,
wowhead_e source,
cache::behavior_e cache_behavior )
{
bool ret = download_item_data( item, source, cache_behavior );
if ( ret )
item.source_str = "Wowhead";
return ret;
}