171 lines
5.4 KiB
PHP
171 lines
5.4 KiB
PHP
<?php
|
||
|
||
|
||
class User
|
||
{
|
||
public $id;
|
||
public $login;
|
||
public $email;
|
||
public $realname;
|
||
public $borndate;
|
||
public $info;
|
||
public $level;
|
||
public $align;
|
||
public $clan;
|
||
public $money;
|
||
public $strength;
|
||
public $dexterity;
|
||
public $intuition;
|
||
public $endurance;
|
||
public $intelligence;
|
||
public $wisdom;
|
||
public $ip;
|
||
public $session_id;
|
||
public $admin;
|
||
public $enter_game;
|
||
public $room;
|
||
public $block;
|
||
|
||
// Пока несуществующие, для совместимости.
|
||
public $married;
|
||
public $exp;
|
||
public $stats;
|
||
public $shadow;
|
||
|
||
const EMPTY_SLOT = <<<EMPTY_SLOT
|
||
<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот" alt="Пустой слот>
|
||
EMPTY_SLOT;
|
||
|
||
use Rooms;
|
||
|
||
public function __construct($user)
|
||
{
|
||
$user_query = db::c()->query('SELECT * FROM users WHERE id = "?s" OR login = "?s"', $user, $user)->fetch_assoc();
|
||
foreach ($this as $key => $value) {
|
||
if (isset($user_query[$key])) {
|
||
$this->$key = $user_query[$key];
|
||
}
|
||
}
|
||
}
|
||
|
||
protected function showItem($item = 0)
|
||
{
|
||
$itemSlot = $item['dressed_slot'] ?? 0;
|
||
$itemName = $item['name'] ?? '';
|
||
$itemImage = $item['image'] ?? '';
|
||
if ($itemSlot) {
|
||
echo <<<SLOT
|
||
<img src="/i/sh/{$itemImage}" class="item-wrap-normal tip" alt="Слот [{$itemSlot}]">
|
||
<span class="tiptext"><strong>{$itemName}</strong></span>
|
||
SLOT;
|
||
} else {
|
||
echo <<<EMPTY_SLOT
|
||
<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот [{$item}]" alt="Пустой слот [{$item}]">
|
||
EMPTY_SLOT;
|
||
}
|
||
}
|
||
|
||
public function showUserInfo()
|
||
{
|
||
$dressed_items = db::c()->query('SELECT * FROM inventory WHERE owner_id = ?i AND dressed_slot > 0', $this->id);
|
||
while ($row = $dressed_items->fetch_assoc()) {
|
||
$dressed_item[$row['dressed_slot']] = $row;
|
||
}
|
||
|
||
echo '<div class="user-info-container">';
|
||
echo '<div class="slot-1">';
|
||
if (isset($dressed_item[1])) {
|
||
$this->showItem($dressed_item[1]);
|
||
} else {
|
||
$this->showItem(1);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-2">';
|
||
if (isset($dressed_item[2])) {
|
||
$this->showItem($dressed_item[2]);
|
||
} else {
|
||
$this->showItem(2);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-3">';
|
||
if (isset($dressed_item[3])) {
|
||
$this->showItem($dressed_item[3]);
|
||
} else {
|
||
$this->showItem(3);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-4">';
|
||
if (isset($dressed_item[4])) {
|
||
$this->showItem($dressed_item[4]);
|
||
} else {
|
||
$this->showItem(4);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-5">';
|
||
if (isset($dressed_item[5])) {
|
||
$this->showItem($dressed_item[5]);
|
||
} else {
|
||
$this->showItem(5);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-6">';
|
||
if (isset($dressed_item[6])) {
|
||
$this->showItem($dressed_item[6]);
|
||
} else {
|
||
$this->showItem(6);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-7">';
|
||
if (isset($dressed_item[7])) {
|
||
$this->showItem($dressed_item[7]);
|
||
} else {
|
||
$this->showItem(7);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-8">';
|
||
if (isset($dressed_item[8])) {
|
||
$this->showItem($dressed_item[8]);
|
||
} else {
|
||
$this->showItem(8);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-lower">';
|
||
if (isset($dressed_item[9])) {
|
||
$this->showItem($dressed_item[9]);
|
||
} else {
|
||
$this->showItem(9);
|
||
}
|
||
if (isset($dressed_item[10])) {
|
||
$this->showItem($dressed_item[10]);
|
||
} else {
|
||
$this->showItem(10);
|
||
}
|
||
if (isset($dressed_item[11])) {
|
||
$this->showItem($dressed_item[11]);
|
||
} else {
|
||
$this->showItem(11);
|
||
}
|
||
echo '</div>';
|
||
echo '<div class="slot-image">';
|
||
echo sprintf('<img src="/i/shadow/%s" width="200" height="430" alt="%s">', $this->shadow, $this->login);
|
||
echo '</div>';
|
||
echo '<div class="user-signs">';
|
||
echo sprintf('<img src="i/zodiac/%s.png" alt="Родовой знак">', star_sign($this->borndate));
|
||
echo '</div>';
|
||
echo '<div class="user-info">';
|
||
echo '<div class="stats-container">';
|
||
echo '<div class="column">';
|
||
echo 'Уровень<br>Сила<br>Ловкость<br>Интуиция<br>Выносливость<br>Интеллект<br>Мудрость<br>Находится в:';
|
||
echo '</div>';
|
||
echo '<div class="column">';
|
||
echo $this->level . '<br>' . $this->strength . '<br>' . $this->dexterity . '<br>' . $this->intuition . '<br>' . $this->endurance . '<br>' . $this->intelligence . '<br>' . $this->wisdom . '<br>' . $this->getRoomName($this->room);
|
||
echo '</div>';
|
||
echo '</div>';
|
||
if ($this->married) {
|
||
echo sprintf('<a href = "inf.php?%s" target = _blank ><img alt = "В браке с %s" src = "i/married.gif" title = "В браке с %s"></a >', $this->married, $this->married, $this->married);
|
||
}
|
||
echo '</div>';
|
||
echo '</div>';
|
||
}
|
||
|
||
} |