forked from MarkusNemesis/VanillaWoWDB2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
data.php
127 lines (118 loc) · 4.31 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
<?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(!in_array($class, array_keys($classes)))
exit;
if(!$p_arr = load_cache(20, $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(20, $class, $p_arr);
}
echo '$WowheadTalentCalculator.registerClass('.$class.', '.php2js($p_arr).')';
break;
case 'talent-icon':
$iconname = strtolower($_GET['icon']);
if(!$DB->selectCell('SELECT 1 FROM ?_spellicons WHERE iconname = ?', $iconname))
exit;
if($name = load_cache(21, $iconname))
{
header('Content-type: image/png');
imagejpeg(imagecreatefrompng('cache/images/'.$iconname.'.png'));
}
else
{
header('Content-type: image/png');
$im = @imagecreatefrompng('images/icons/medium/'.$iconname.'.png');
if(!$im)
exit;
imagetograyscale($im);
imagepng($im, 'cache/images/'.$iconname.'.png');
imagepng($im);
save_cache(21, $iconname, $iconname);
}
break;
default:
break;
}
?>