mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-27 01:44:34 +00:00
86 lines
2.8 KiB
PHP
86 lines
2.8 KiB
PHP
<?php
|
|
|
|
global $smarty;
|
|
global $conf_file;
|
|
global $podrazdel;
|
|
|
|
$smarty->config_load($conf_file, 'objects');
|
|
|
|
$type = $podrazdel;
|
|
|
|
if (!$data = load_cache(4, intval($type))) {
|
|
unset($data);
|
|
|
|
// Подключаемся к ДБ:
|
|
global $DB;
|
|
global $UDWBaseconf;
|
|
|
|
// Получаем данные по этому типу объектов
|
|
$rows = $DB->select('
|
|
SELECT g.* {, a.requiredskill1 as ?#} {, a.requiredskill2 as ?#}
|
|
{, l.name_loc?d AS `name_loc`}
|
|
FROM {' . WORLD . '.gameobject_questrelation ?#, } {' . AOWOW . '.aowow_lock ?#, } ' . WORLD . '.gameobject_template g
|
|
{LEFT JOIN (' . WORLD . '.locales_gameobject l) ON l.entry=g.entry AND ?d}
|
|
WHERE
|
|
name != ""
|
|
{ AND g.type = ? }
|
|
{ AND g.data0=a.lockID AND g.type=3 AND a.type1=2 AND 1=?}
|
|
{ AND g.data0=a.lockID AND g.type=3 AND a.type2=2 AND 1=?}
|
|
{ AND a.lockproperties1=2 AND 1=?}
|
|
{ AND a.lockproperties1=3 AND 1=?}
|
|
{ AND a.lockproperties2=1 AND 1=?}
|
|
{ AND g.entry = q.?#}
|
|
ORDER by name
|
|
{LIMIT ?d}
|
|
', (($type == -3) or ($type == -4)) ? 'skill' : DBSIMPLE_SKIP,
|
|
($type == -5) ? 'skill' : DBSIMPLE_SKIP,
|
|
($_SESSION['locale'] > 0) ? $_SESSION['locale'] : DBSIMPLE_SKIP,
|
|
($type == -2) ? 'q' : DBSIMPLE_SKIP,
|
|
(($type == -3) or ($type == -4) or ($type == -5)) ? 'a' : DBSIMPLE_SKIP,
|
|
($_SESSION['locale'] > 0) ? 1 : DBSIMPLE_SKIP,
|
|
($type > 0) ? $type : DBSIMPLE_SKIP,
|
|
(($type == -3) or ($type == -4)) ? 1 : DBSIMPLE_SKIP,
|
|
($type == -5) ? 1 : DBSIMPLE_SKIP,
|
|
($type == -3) ? 1 : DBSIMPLE_SKIP,
|
|
($type == -4) ? 1 : DBSIMPLE_SKIP,
|
|
($type == -5) ? 1 : DBSIMPLE_SKIP,
|
|
($type == -2) ? 'id' : DBSIMPLE_SKIP,
|
|
($UDWBaseconf['limit'] != 0) ? $UDWBaseconf['limit'] : DBSIMPLE_SKIP
|
|
);
|
|
|
|
|
|
$i = 0;
|
|
$data = array();
|
|
foreach ($rows as $numRow => $row) {
|
|
$data[$i] = array();
|
|
$data[$i]['entry'] = $row['entry'];
|
|
if (isset($row['skill']))
|
|
$data[$i]['skill'] = $row['skill'];
|
|
$data[$i]['name'] = $row['name_loc'] ? $row['name_loc'] : $row['name'];
|
|
// TODO: Расположение
|
|
$data[$i]['location'] = "[-1]";
|
|
// Тип объекта
|
|
$data[$i]['type'] = (isset($type)) ? $type : $row['type'];
|
|
$i++;
|
|
}
|
|
save_cache(4, intval($type), $data);
|
|
}
|
|
global $page;
|
|
$page = array(
|
|
'Mapper' => false,
|
|
'Book' => false,
|
|
'Title' => $smarty->get_config_vars('Objects'),
|
|
'tab' => 0,
|
|
'type' => 0,
|
|
'typeid' => 0,
|
|
'path' => '[0, 5,' . $podrazdel . ']'
|
|
);
|
|
$smarty->assign('page', $page);
|
|
|
|
// Передаем массив данных шаблонизатору
|
|
$smarty->assign('data', $data);
|
|
// Статистика выполнения mysql запросов
|
|
$smarty->assign('mysql', $DB->getStatistics());
|
|
|
|
$smarty->display('objects.tpl');
|