mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-28 02:14:35 +00:00
87 lines
3.1 KiB
PHP
87 lines
3.1 KiB
PHP
<?php
|
||
|
||
require_once('includes/game.php');
|
||
require_once('includes/allcomments.php');
|
||
|
||
global $smarty;
|
||
global $conf_file;
|
||
global $podrazdel;
|
||
|
||
$smarty->config_load($conf_file, 'itemset');
|
||
|
||
global $DB;
|
||
global $allspells;
|
||
$id = $podrazdel;
|
||
|
||
if (!$itemset = load_cache(8, intval($id))) {
|
||
unset($itemset);
|
||
|
||
$row = $DB->selectRow("SELECT * FROM " . AOWOW . ".aowow_itemset WHERE itemsetID=? LIMIT 1", $id);
|
||
if ($row) {
|
||
$itemset = array();
|
||
$itemset['entry'] = $row['itemsetID'];
|
||
$itemset['name'] = $row['name_loc' . $_SESSION['locale']];
|
||
$itemset['minlevel'] = 255;
|
||
$itemset['maxlevel'] = 0;
|
||
$itemset['count'] = 0;
|
||
$x = 0;
|
||
$itemset['pieces'] = array();
|
||
for ($j = 1; $j <= 10; $j++) {
|
||
if ($row['item' . $j]) {
|
||
$itemset['pieces'][$itemset['count']] = array();
|
||
$itemset['pieces'][$itemset['count']] = iteminfo($row['item' . $j]);
|
||
if ($itemset['pieces'][$itemset['count']]['level'] < $itemset['minlevel'])
|
||
$itemset['minlevel'] = $itemset['pieces'][$itemset['count']]['level'];
|
||
if ($itemset['pieces'][$itemset['count']]['level'] > $itemset['maxlevel'])
|
||
$itemset['maxlevel'] = $itemset['pieces'][$itemset['count']]['level'];
|
||
$itemset['count']++;
|
||
}
|
||
}
|
||
$itemset['spells'] = array();
|
||
for ($j = 1; $j <= 8; $j++)
|
||
if ($row['spell' . $j]) {
|
||
$itemset['spells'][$x] = array();
|
||
$itemset['spells'][$x]['entry'] = $row['spell' . $j];
|
||
$itemset['spells'][$x]['tooltip'] = spell_desc($row['spell' . $j]);
|
||
$itemset['spells'][$x]['bonus'] = $row['bonus' . $j];
|
||
$x++;
|
||
}
|
||
for ($i = 0; $i <= $x - 1; $i++)
|
||
for ($j = $i; $j <= $x - 1; $j++)
|
||
if ($itemset['spells'][$j]['bonus'] < $itemset['spells'][$i]['bonus']) {
|
||
unset($tmp);
|
||
$tmp = $itemset['spells'][$i];
|
||
$itemset['spells'][$i] = $itemset['spells'][$j];
|
||
$itemset['spells'][$j] = $tmp;
|
||
}
|
||
}
|
||
save_cache(8, $id, $itemset);
|
||
}
|
||
$smarty->assign('itemset', $itemset);
|
||
|
||
global $page;
|
||
$page = array(
|
||
'Mapper' => false,
|
||
'Book' => false,
|
||
'Title' => $itemset['name'] . ' - ' . $smarty->get_config_vars('Item_Sets'),
|
||
'tab' => 0,
|
||
'type' => 4,
|
||
'typeid' => $itemset['entry'],
|
||
'path' => '[0, 2]'
|
||
);
|
||
$smarty->assign('page', $page);
|
||
|
||
// Комментарии
|
||
$smarty->assign('comments', getcomments($page['type'], $page['typeid']));
|
||
|
||
// --Передаем данные шаблонизатору--
|
||
// Количество MySQL запросов
|
||
$smarty->assign('mysql', $DB->getStatistics());
|
||
// Если хоть одна информация о вещи найдена - передаём массив с информацией о вещях шаблонизатору
|
||
if (isset($allitems))
|
||
$smarty->assign('allitems', $allitems);
|
||
if (isset($allitems))
|
||
$smarty->assign('allspells', $allspells);
|
||
// Запускаем шаблонизатор
|
||
$smarty->display('itemset.tpl');
|