forked from Amit86/minimanager
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathchar_talent.php
More file actions
376 lines (320 loc) · 17.1 KB
/
char_talent.php
File metadata and controls
376 lines (320 loc) · 17.1 KB
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<?php
// page header, and any additional required libraries
require_once 'header.php';
require_once 'libs/char_lib.php';
require_once 'libs/spell_lib.php';
// minimum permission to view page
valid_login($action_permission['read']);
//########################################################################################################################
// SHOW CHARACTER TALENTS
//########################################################################################################################
function char_talent(&$sqlr, &$sqlc)
{
global $output, $lang_global, $lang_char,
$realm_id, $realm_db, $characters_db, $mmfpm_db, $server,
$action_permission, $user_lvl, $user_name, $spell_datasite;
// this page uses wowhead tooltops
wowhead_tt();
require_once 'core/char/char_security.php';
$result = $sqlc->query('SELECT account, BINARY name AS name, race, class, level, gender, (SELECT count(spell) FROM character_talent WHERE guid = '.$id.' AND talentGroup = (SELECT activeTalentGroup FROM characters WHERE guid = '.$id.')) AS talent_points
FROM characters WHERE guid = '.$id.' LIMIT 1');
if ($sqlc->num_rows($result))
{
$char = $sqlc->fetch_assoc($result);
$owner_acc_id = $char['account'];
$result = $sqlr->query('SELECT `username`, `SecurityLevel` FROM `account` LEFT JOIN `account_access` ON `account`.`id`=`account_access`.`AccountID` WHERE `account`.`id` = '.$owner_acc_id.' ORDER BY `SecurityLevel` DESC LIMIT 1');
$owner_name = $sqlr->result($result, 0, 'username');
$owner_gmlvl = $sqlr->result($result, 0, 'SecurityLevel');
if (empty($owner_gmlvl))
$owner_gmlvl = 0;
if (($user_lvl > $owner_gmlvl)||($owner_name === $user_name))
{
$result = $sqlc->query('SELECT spell FROM character_spell WHERE guid = '.$id.' and active = 1 and disabled = 0 ORDER BY spell DESC');
$output .= '
<style type="text/css">
img.grayscale {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
}
</style>';
// ---------------------------------------------------------------------------------------
$output .= '
<center>
<div id="tab_content">
<h1>'.$lang_char['talents'].'</h1>
<br />';
require_once 'core/char/char_header.php';
$output .= '
<br /><br />
<table class="lined" style="width: 550px;">
<tr valign="top" align="center">';
if ($sqlc->num_rows($result))
{
$talent_rate = (isset($server[$realmid]['talent_rate']) ? $server[$realmid]['talent_rate'] : 1);
$talent_points = ($char['level'] - 9) * $talent_rate;
$talent_points_left = $char['talent_points'];
$talent_points_used = $talent_points - $talent_points_left;
$sqlm = new SQL;
$sqlm->connect($mmfpm_db['addr'], $mmfpm_db['user'], $mmfpm_db['pass'], $mmfpm_db['name']);
$tabs = [];
$tabs_temp = [];
$l = 0; //
$talent_tabs_ids = [];
while ($talent = $sqlc->fetch_assoc($result))
{
$talent_spell_id = $talent['spell'];
$query = 'SELECT id, field_1, field_2, field_3, field_13, field_16, field_4, field_5, field_6, field_7, field_8 '.
'FROM dbc_talent '.
'WHERE field_4 = '.$talent_spell_id.' OR field_5 = '.$talent_spell_id.' OR field_6 = '.$talent_spell_id.' OR field_7 = '.$talent_spell_id.' OR field_8 = '.$talent_spell_id.' LIMIT 1';
if ($tab = $sqlm->fetch_assoc($sqlm->query($query)))
{
$talent_tabs_ids[(int)$tab['field_1']] = true;
$rank_put = 0;
if (isset($tab['field_8']) && $tab['field_8'] == $talent_spell_id)
$rank_put = 5;
elseif (isset($tab['field_7']) && $tab['field_7'] == $talent_spell_id)
$rank_put = 4;
elseif (isset($tab['field_6']) && $tab['field_6'] == $talent_spell_id)
$rank_put = 3;
elseif (isset($tab['field_5']) && $tab['field_5'] == $talent_spell_id)
$rank_put = 2;
elseif (isset($tab['field_4']) && $tab['field_4'] == $talent_spell_id)
$rank_put = 1;
if ($rank_put === 0)
continue;
$talent_key = $tab['field_1'].'_'.$tab['field_2'].'_'.$tab['field_3'];
$l += 1;
if (!isset($tabs_temp[$talent_key]) || $rank_put > $tabs_temp[$talent_key]['rank'])
{
$max_rank = 0;
for ($r = 4; $r <= 8; $r++) {
$field_name = 'field_' . $r;
if (isset($tab[$field_name]) && (int)$tab[$field_name] > 0) {
$max_rank++;
}
}
$icon_border_color = ((int)$rank_put === $max_rank) ? '5' : '2';
$tabs_temp[$talent_key] = [
'spell' => $talent_spell_id,
'rank' => $rank_put,
'color' => $icon_border_color,
'max_rank' => $max_rank,
'id_talent' => (int)$tab['id']
];
}
if ($tab['field_13'])
talent_dependencies($tabs_temp, $tab, $sqlm);
}
}
unset($tab);
unset($talent);
if (!empty($talent_tabs_ids)) {
$talent_tabs_list = implode(',', array_keys($talent_tabs_ids));
$query_all_talents = 'SELECT id, field_1, field_2, field_3, field_4, field_5, field_6, field_7, field_8, field_16 '.
'FROM dbc_talent '.
'WHERE field_1 IN ('.$talent_tabs_list.')';
$result_all = $sqlm->query($query_all_talents);
while ($all_tab = $sqlm->fetch_assoc($result_all)) {
$talent_key = $all_tab['field_1'].'_'.$all_tab['field_2'].'_'.$all_tab['field_3'];
if (!isset($tabs_temp[$talent_key])) {
$max_rank_all = 0;
for ($r = 4; $r <= 8; $r++) {
$field_name = 'field_' . $r;
if (isset($all_tab[$field_name]) && (int)$all_tab[$field_name] > 0) {
$max_rank_all++;
}
}
$tabs_temp[$talent_key] = [
'spell' => (int)$all_tab['field_4'],
'rank' => 0,
'color' => '',
'max_rank' => $max_rank_all,
'id_talent' => (int)$all_tab['id']
];
}
}
unset($result_all);
}
ksort($tabs_temp);
foreach ($tabs_temp as $key => $data) {
list($field_1, $field_2, $field_3) = explode('_', $key);
$tabs[(int)$field_1][(int)$field_2][(int)$field_3] = [$data['spell'], $data['rank'], $data['color']];
}
unset($tabs_temp);
foreach ($tabs as $k=>$data)
{
$points = 0;
$output .= '
<td>
<table class="hidden" style="width: 0px;">
<tr>
<td colspan="6" style="border-bottom-width: 0px;">
</td>
</tr>
<tr>';
for($i=0;$i<11;++$i)
{
for($j=0;$j<4;++$j)
{
if(isset($data[$i][$j]))
{
$grayscale_class = ((int)$data[$i][$j][1] === 0) ? ' grayscale' : '';
$output .= '
<td valign="bottom" align="center" style="border-top-width: 0px;border-bottom-width: 0px;">
<a href="'.$spell_datasite.$data[$i][$j][0].'" target="_blank">
<img src="'.spell_get_icon($data[$i][$j][0], $sqlm).'" width="36" height="36" class="icon_border'.($data[$i][$j][2] === '' ? '' : '_'.$data[$i][$j][2]).$grayscale_class.'" alt="" />
</a>';
if ($data[$i][$j][1] > 0)
{
$output .= '
<div style="width:0px;margin:-14px 0px 0px 30px;font-size:14px;color:black">'.$data[$i][$j][1].'</div>
<div style="width:0px;margin:-14px 0px 0px 29px;font-size:14px;color:white">'.$data[$i][$j][1].'</div>';
}
$output .= '
</td>';
$points += $data[$i][$j][1];
}
else
$output .= '
<td valign="bottom" align="center" style="border-top-width: 0px;border-bottom-width: 0px;">
<img src="img/blank.gif" width="44" height="44" alt="" />
</td>';
}
$output .= '
</tr>
<tr>';
}
$output .= '
<td colspan="6" style="border-top-width: 0px;border-bottom-width: 0px;">
</td>
</tr>
<tr>
<td colspan="6" valign="bottom" align="left">
'.$sqlm->result($sqlm->query('SELECT field_1 FROM dbc_talenttab WHERE id = '.$k.''), 0, 'field_1').': '.$points.'
</td>
</tr>
</table>
</td>';
}
unset($data);
unset($k);
unset($tabs);
$output .='
</tr>
</table>
<br />
<table>
<tr>
<td align="left">
'.$lang_char['talent_rate'].': <br />
'.$lang_char['talent_points'].': <br />
'.$lang_char['talent_points_used'].': <br />
'.$lang_char['talent_points_shown'].': <br />
'.$lang_char['talent_points_left'].':
</td>
<td align="left">
'.$talent_rate.'<br />
'.$talent_points.'<br />
'.$talent_points_used.'<br />
'.$l.'<br />
'.$talent_points_left.'
</td>
<td width="64">
</td>
<td align="right">';
unset($l);
unset($talent_rate);
unset($talent_points);
unset($talent_points_used);
unset($talent_points_left);
$result = $sqlc->query('SELECT * FROM character_glyphs WHERE guid = '.$id.' AND talentGroup = (SELECT activeTalentGroup FROM characters WHERE guid = '.$id.')');
if ($sqlc->num_rows($result))
{
$glyphs = $sqlc->fetch_assoc($result);
$glyphs = [$glyphs['glyph1'], $glyphs['glyph2'], $glyphs['glyph3'], $glyphs['glyph4'], $glyphs['glyph5'], $glyphs['glyph6']]; // didnt want to recode the block down there
}
else
$glyphs = [0,0,0,0,0,0,0];
for($i=0;$i<6;++$i)
{
if ($glyphs[$i] && $glyphs[$i] > 0)
{
$glyph = $sqlm->result($sqlm->query('select IFNULL(field_1,0) from dbc_glyphproperties where id = '.$glyphs[$i].''), 0);
$output .='
<a href="'.$spell_datasite.$glyph.'" target="_blank">
<img src="'.spell_get_icon($glyph, $sqlm).'" width="36" height="36" class="icon_border_0" alt="" />
</a>';
}
}
unset($glyphs);
$output .='
</td>';
}
//---------------Page Specific Data Ends here----------------------------
//---------------Character Tabs Footer-----------------------------------
$output .= '
</tr>
</table>
</div>
</div>
<br />';
require_once 'core/char/char_footer.php';
$output .='
<br />
</center>
';
}
else
error($lang_char['no_permission']);
}
else
error($lang_char['no_char_found']);
}
function talent_dependencies(&$tabs_temp, &$tab, &$sqlm)
{
$dep_query = 'SELECT id, field_1, field_2, field_3, field_13, field_16, field_4, field_5, field_6, field_7, field_8 '.
'FROM dbc_talent '.
'WHERE id = '.$tab['field_13'].' LIMIT 1';
if ($dep = $sqlm->fetch_assoc($sqlm->query($dep_query)))
{
$dep_max_rank = 0;
for ($r = 4; $r <= 8; $r++) {
$field_name = 'field_' . $r;
if (isset($dep[$field_name]) && (int)$dep[$field_name] > 0) {
$dep_max_rank++;
}
}
$dep_spell_id_rank1 = (int)$dep['field_4'];
$dep_key = $dep['field_1'].'_'.$dep['field_2'].'_'.$dep['field_3'];
if(!isset($tabs_temp[$dep_key]))
{
$tabs_temp[$dep_key] = [
'spell' => $dep_spell_id_rank1,
'rank' => 0,
'color' => '',
'max_rank' => $dep_max_rank,
'id_talent' => (int)$dep['id']
];
if ($dep['field_13'])
talent_dependencies($tabs_temp, $dep, $sqlm);
}
}
}
//########################################################################################################################
// MAIN
//########################################################################################################################
// action variable reserved for future use
// $action = (isset($_GET['action'])) ? $_GET['action'] : NULL;
$lang_char = lang_char();
$output .= '
<div class="top">
<h1>'.$lang_char['character'].'</h1>
</div>';
// we getting links to realm database and character database left behind by header
// header does not need them anymore, might as well reuse the link
char_talent($sqlr, $sqlc);
//unset($action);
unset($action_permission);
unset($lang_char);
require_once 'footer.php';
?>