-
Notifications
You must be signed in to change notification settings - Fork 15
/
data.php
executable file
·175 lines (161 loc) · 5.79 KB
/
data.php
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
<?php
header('Content-type: application/x-javascript');
require_once('configs/config.php');
require_once('includes/allutil.php');
switch($_GET['data'])
{
case 'talents':
// i - id скилла (id из aowow_talent)
// n - название (spellname из aowow_spell для spellID=rank1)
// m - кол-во ранков (6-количество_пустых_ранков)
// s - спеллы для ранков (rank1, rank2, ..., rank5 из aowow_talent)
// d - описания спеллов
// x - столбец (col из aowow_talent)
// y - строка (row из aowow_talent)
// r - от чего и какого ранка зависит: "r: [r_1, r_2]", где r_1 - номер (нумерация с 0) таланта, r_2 - ранк
$class = intval($_GET['class']);
if(!$p_arr = load_cache(TALENT_DATA, $class))
{
unset($p_arr);
require_once('includes/allspells.php');
// Все "Табы" талантов заданного класса
$tabs = $DB->select('
SELECT `id`, name_loc?d AS `name`
FROM ?_talenttab
WHERE classes = ?d
ORDER BY `order`
',
$_SESSION['locale'],
pow(2, $_GET['class']-1)
);
$t_nums = array();
$p_arr = array();
$i = 0;
foreach($tabs as $tab)
{
$p_arr[$i] = array();
$p_arr[$i]['n'] = $tab['name'];
$talents = $DB->select('
SELECT t.*, s.spellname_loc?d as `spellname`, i.`iconname`
FROM ?_talent t, ?_spell s
{LEFT JOIN (?_spellicons i) ON i.`id`=s.`spellicon`}
WHERE
t.`tab`=?d AND
s.`spellID` = t.`rank1`
ORDER by t.`row`, t.`col`
',
$_SESSION['locale'],
$tab['id']
);
$j = 0;
$p_arr[$i]['t'] = array();
// Массив ссылок на зависимости
$dep_links = array();
foreach($talents as $talent)
{
$t_nums[$talent['id']] = $j;
$p_arr[$i]['t'][$j] = array();
$p_arr[$i]['t'][$j]['i'] = (integer) $talent['id'];
$p_arr[$i]['t'][$j]['n'] = (string) $talent['spellname'];
$p_arr[$i]['t'][$j]['m'] = (integer) ($talent['rank2']==0 ? 1 : ($talent['rank3']==0 ? 2 : (($talent['rank4']==0 ? 3 : (($talent['rank5']==0 ? 4 : 5))))));
for ($k=0;$k<=($p_arr[$i]['t'][$j]['m']-1);$k++)
{
$p_arr[$i]['t'][$j]['s'][] = (integer) $talent['rank'.($k+1)];
$p_arr[$i]['t'][$j]['d'][] = (string) spell_desc($talent['rank'.($k+1)]);
}
$p_arr[$i]['t'][$j]['x'] = (integer) $talent['col'];
$p_arr[$i]['t'][$j]['y'] = (integer) $talent['row'];
if ($talent['dependsOn'])
{
// Если талант, от которого зависит текущий талант ещё не встречался, создадим ссылку в массив ссылок на зависимости
if (!isset($t_nums[$talent['dependsOn']])) $dep_links[$talent['dependsOn']] = $j;
$p_arr[$i]['t'][$j]['r'] = array($t_nums[$talent['dependsOn']], $talent['dependsOnRank']+1);
}
// Spell icons
$p_arr[$i]['t'][$j]['iconname'] = (string) $talent['iconname'];
// Если на этот талант есть ссылка, добавляем его в массив зависимого таланта
if (isset($dep_links[$talent['id']]))
{
$p_arr[$i]['t'][$dep_links[$talent['id']]]['r'][0] = $j;
unset ($dep_links[$talent['id']]);
}
++$j;
}
// Удаляем все зависимости, для которых талант так и не был найден
foreach ($dep_links as $dep_link) unset ($p_arr[$i]['t'][$dep_link]['r']);
++$i;
}
save_cache(TALENT_DATA, $class, $p_arr);
}
echo '$WowheadTalentCalculator.registerClass('.$class.', '.php2js($p_arr).')';
break;
case 'glyphs':
if(!$g_glyphs = load_cache(GLYPHS, 'x'))
{
/*
name - Имя вещи
description - Тултип спелла
icon - Иконка вещи
*/
require_once('includes/allspells.php');
$glyphs = array();
$glyphs = $DB->select('
SELECT it.entry, it.name, it.subclass, it.spellid_1 AS spellid, i.iconname, gp.typeflags
{, l.name_loc?d AS name_loc }
FROM ?_glyphproperties gp, ?_spell s, ?_icons i, item_template it
{ LEFT JOIN locales_item l ON (l.entry = it.entry AND ?) }
WHERE
it.class = 16
AND it.displayid = i.id
AND it.spellid_1 = s.spellid
AND s.effect1id = ?d
AND gp.id = s.effect1MiscValue
',
$_SESSION['locale'] > 0 ? $_SESSION['locale'] : DBSIMPLE_SKIP,
$_SESSION['locale'] > 0 ? 1 : DBSIMPLE_SKIP,
74 // SPELL_EFFECT_APPLY_GLYPH
);
$g_glyphs = array();
foreach($glyphs as $glyph)
{
$name = localizedName($glyph);
if($_SESSION['locale'] == 0)
$name = str_replace(LOCALE_GLYPH_OF, '', $name);
$g_glyphs[$glyph['entry']] = array(
'name' => (string)$name,
'description' => (string)spell_desc($glyph['spellid']),
'icon' => (string)$glyph['iconname'],
'type' => (int)($glyph['typeflags']&1 ? 2 : 1), // 1 - Большой символ, 2 - Малый символ
'class' => (int)$glyph['subclass'],
'skill' => (int)2 // Skill???
);
}
save_cache(GLYPHS, 'x', $g_glyphs);
}
echo 'var g_glyphs='.php2js($g_glyphs);
break;
case 'talent-icon':
$iconname = strtolower($_GET['icon']);
if(!$DB->selectCell('SELECT 1 FROM ?_spellicons WHERE iconname = ?', $iconname))
exit;
if($name = load_cache(TALENT_ICON, $iconname))
{
header('Content-type: image/jpeg');
imagejpeg(imagecreatefromjpeg('cache/images/'.$iconname.'.jpg'));
}
else
{
header('Content-type: image/jpeg');
$im = imagecreatefromjpeg('images/icons/medium/'.$iconname.'.jpg');
if(!$im)
exit;
@imagetograyscale($im);
imagejpeg($im, 'cache/images/'.$iconname.'.jpg');
imagejpeg($im);
save_cache(TALENT_ICON, $iconname, $iconname);
}
break;
default:
break;
}
?>