tests
This commit is contained in:
parent
2093235f0e
commit
321a332612
@ -10,18 +10,23 @@ class DressedItems
|
|||||||
protected $DB;
|
protected $DB;
|
||||||
private $dressedItem;
|
private $dressedItem;
|
||||||
|
|
||||||
public function __construct(int $user_id)
|
public function __construct() {
|
||||||
{
|
// Пустой потому что нужны разные запросы.
|
||||||
try {
|
|
||||||
$this->DB = db::c()->query('SELECT * FROM inventory WHERE owner_id = ?i AND dressed_slot > 0', $user_id);
|
|
||||||
} catch (Exception $e) {
|
|
||||||
echo '<div class="debug">' . $e . '</div>';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getDressedItems()
|
private function getDressedItems($user_id)
|
||||||
{
|
{
|
||||||
while ($row = $this->DB->fetch_assoc()) {
|
try {
|
||||||
|
return db::c()->query('SELECT * FROM inventory WHERE owner_id = ?i AND dressed_slot > 0', $user_id);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo '<div class="debug">getDressedItems: ' . $e . '</div>';
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSlots($user_id)
|
||||||
|
{
|
||||||
|
while ($row = $this->getDressedItems($user_id)->fetch_assoc()) {
|
||||||
$dressed_item[$row['dressed_slot']] = $row;
|
$dressed_item[$row['dressed_slot']] = $row;
|
||||||
$this->dressedItem[$row['dressed_slot']] = $row;
|
$this->dressedItem[$row['dressed_slot']] = $row;
|
||||||
}
|
}
|
||||||
|
@ -46,11 +46,6 @@ class User
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function getDressedItems()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Отображает куклу персонажа (образ и слоты).
|
* Отображает куклу персонажа (образ и слоты).
|
||||||
* @param int $isBattle - установить 1, если куклу нужно отобразить в поединке (показывает параметры при наведении на образ).
|
* @param int $isBattle - установить 1, если куклу нужно отобразить в поединке (показывает параметры при наведении на образ).
|
||||||
@ -65,8 +60,8 @@ class User
|
|||||||
while ($row = $dressed_items->fetch_assoc()) {
|
while ($row = $dressed_items->fetch_assoc()) {
|
||||||
$dressed_item[$row['dressed_slot']] = $row;
|
$dressed_item[$row['dressed_slot']] = $row;
|
||||||
}
|
}
|
||||||
$di = new DressedItems($this->id);
|
$di = new DressedItems();
|
||||||
$di->getDressedItems();
|
$di->getSlots($this->id);
|
||||||
// for ($i = 1; $i <= 12; $i++) {
|
// for ($i = 1; $i <= 12; $i++) {
|
||||||
// echo sprintf('<div class="slot-%s">', $i);
|
// echo sprintf('<div class="slot-%s">', $i);
|
||||||
// if (isset($dressed_item[$i])) {
|
// if (isset($dressed_item[$i])) {
|
||||||
@ -84,13 +79,13 @@ class User
|
|||||||
// }
|
// }
|
||||||
for ($i = 1; $i <= 12; $i++) {
|
for ($i = 1; $i <= 12; $i++) {
|
||||||
echo sprintf('<div class="slot-%s">', $i);
|
echo sprintf('<div class="slot-%s">', $i);
|
||||||
if (isset($di->getDressedItems()[$i])) {
|
if (isset($di->getSlots()[$i])) {
|
||||||
if (!$isBattle && $isMain) {
|
if (!$isBattle && $isMain) {
|
||||||
$itemString = '<a href="?edit=1&drop=%s"><img src="/i/sh/%s" class="item-wrap-normal" alt="%s" title="%s"></a>';
|
$itemString = '<a href="?edit=1&drop=%s"><img src="/i/sh/%s" class="item-wrap-normal" alt="%s" title="%s"></a>';
|
||||||
echo sprintf($itemString, $i, $di->getDressedItems()[$i]['image'], $di->getDressedItems()[$i]['name'], $di->getDressedItems()[$i]['name']);
|
echo sprintf($itemString, $i, $di->getSlots()[$i]['image'], $di->getSlots()[$i]['name'], $di->getSlots()[$i]['name']);
|
||||||
} else {
|
} else {
|
||||||
$itemString = '<img src="/i/sh/%s" class="item-wrap-normal tip" alt="%s"><span class="tiptext"><strong>%s</strong></span>';
|
$itemString = '<img src="/i/sh/%s" class="item-wrap-normal tip" alt="%s"><span class="tiptext"><strong>%s</strong></span>';
|
||||||
echo sprintf($itemString, $di->getDressedItems()[$i]['image'], $di->getDressedItems()[$i]['name'], $di->getDressedItems()[$i]['name']);
|
echo sprintf($itemString, $di->getSlots()[$i]['image'], $di->getSlots()[$i]['name'], $di->getSlots()[$i]['name']);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
echo sprintf('<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот [%s]" alt="Пустой слот [%s]">', $i, $i);
|
echo sprintf('<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот [%s]" alt="Пустой слот [%s]">', $i, $i);
|
||||||
|
Loading…
Reference in New Issue
Block a user