2020-08-30 10:44:57 +00:00
< ? php
2020-10-28 20:21:08 +00:00
namespace Battles ;
2020-08-30 10:44:57 +00:00
class UserInfo extends User
{
2020-08-30 16:28:15 +00:00
use Rooms ;
//Статусы того, кто смотрит на информацию.
public $watcher_id ;
private $watcherIsAdmin ;
private $watcherIsModerator ;
2020-08-30 10:44:57 +00:00
/**
* Отображает куклу персонажа ( образ и слоты ) .
*
2021-01-28 21:05:34 +00:00
* @ param int $isBattle установить 1 , если куклу нужно отобразить в поединке ( показывает параметры при наведении
2020-08-30 10:44:57 +00:00
* на образ ) .
2021-01-28 21:05:34 +00:00
* @ param int $isMain установить 1 , если куклу надо показать на странице игрока ( по клику на предмет снимает
2020-08-30 10:44:57 +00:00
* е г о ) .
*/
private function UserInfoDoll ( $isBattle = 0 , $isMain = 0 )
{
$di = new DressedItems ( $this -> id );
$dressedItems = $di -> getItemsInSlots ();
for ( $i = 1 ; $i <= 12 ; $i ++ ) {
echo sprintf ( '<div class="slot-%s">' , $i );
if ( ! empty ( $dressedItems [ $i ])) {
if ( ! $isBattle && $isMain ) {
$itemString = '<a href="?edit=%s&drop=%s"><img src="/i/sh/%s" class="item-wrap-normal" alt="%s" title="%s"></a>' ;
echo sprintf ( $itemString , mt_rand (), $i , $dressedItems [ $i ][ 'image' ], $dressedItems [ $i ][ 'name' ], $dressedItems [ $i ][ 'name' ]);
} else {
$itemString = '<img src="/i/sh/%s" class="item-wrap-normal tip" alt="%s"><span class="tiptext"><strong>%s</strong></span>' ;
echo sprintf ( $itemString , $dressedItems [ $i ][ 'image' ], $dressedItems [ $i ][ 'name' ], $dressedItems [ $i ][ 'name' ]);
}
} else {
echo sprintf ( '<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот [%s]" alt="Пустой слот [%s]">' , $i , $i );
}
echo sprintf ( '</div><!-- slot-%s -->' , $i );
}
echo '<div class="slot-image">' ;
if ( $isBattle ) {
$sh = '<img src="/i/shadow/%s" alt="%s" class="tip"><span class="tiptext"><b>%s</b>Уровень: %s<br>Сила: %s<br>Ловкость: %s<br>Интуиция: %s<br>Выносливость: %s<br>Интеллект: %s<br>Мудрость: %s</span>' ;
echo sprintf ( $sh , $this -> shadow , $this -> login , $this -> login , $this -> level , $this -> strength , $this -> dexterity , $this -> intuition , $this -> endurance , $this -> intelligence , $this -> wisdom );
unset ( $sh );
} else {
echo '<img src="/i/shadow/' . $this -> shadow . '" alt="' . $this -> login . '">' ;
}
echo '</div><!-- slot-image -->' ;
}
private function UserInfoStats ( $isMainWindow = 0 )
{
$captions = 'Уровень:<br>Сила:<br>Ловкость:<br>Интуиция:<br>Выносливость:<br>Интеллект:<br>Мудрость:<br>Местонахождение:' ;
$variables =
$this -> level . '<br>' .
parent :: getStat ( 'strength' ) . '<br>' .
parent :: getStat ( 'dexterity' ) . '<br>' .
parent :: getStat ( 'intuition' ) . '<br>' .
parent :: getStat ( 'endurance' ) . '<br>' .
parent :: getStat ( 'intelligence' ) . '<br>' .
parent :: getStat ( 'wisdom' ) . '<br>' .
2020-08-30 16:28:15 +00:00
Rooms :: $roomNames [ $this -> room ];
2020-08-30 10:44:57 +00:00
if ( $isMainWindow ) {
$this -> Bank = new Bank ( $this -> id );
$captions = 'Уровень:<br>Здоровье:<br>Сила:<br>Ловкость:<br>Интуиция:<br>Выносливость:<br>Интеллект:<br>Мудрость:<br>Опыт:<br>Очки характеристик:<br>Деньги:<br>Деньги в банке:' ;
$variables =
$this -> level . '<br>' .
$this -> health . '<br>' .
parent :: getStat ( 'strength' , 1 ) . '<br>' .
parent :: getStat ( 'dexterity' , 1 ) . '<br>' .
parent :: getStat ( 'intuition' , 1 ) . '<br>' .
parent :: getStat ( 'endurance' , 1 ) . '<br>' .
parent :: getStat ( 'intelligence' , 1 ) . '<br>' .
parent :: getStat ( 'wisdom' , 1 ) . '<br>' .
$this -> experience . '<br>' .
$this -> free_stat_points . '<br>' .
$this -> money . '<br>' .
2020-10-28 12:33:50 +00:00
$this -> Bank -> getMoney ();
2020-08-30 10:44:57 +00:00
}
$nameString = '' ;
if ( $this -> align ) {
$nameString = sprintf ( '<img src="/i/align_%s.png" alt="Склонность">' , $this -> align );
}
if ( $this -> block ) {
$nameString .= '<span class="private"><s>' . $this -> login . '</s></span>' ;
} else {
$nameString .= ' <b>' . $this -> login . '</b> ' ;
}
if ( $this -> clan ) {
$nameString .= sprintf ( '<img src="/i/clan/%s.png" alt="Клан">' , $this -> clan );
}
echo '<div class="user-info">' ;
echo '<div class="info">' ;
echo '<b>' . $nameString . '</b>' ;
echo '</div><!-- info -->' ;
echo '<div class="stats-container">' ;
echo '<div class="column">' ;
echo $captions ;
echo '</div><!-- column -->' ;
echo '<div class="column">' ;
echo $variables ;
echo '</div><!-- column -->' ;
echo '</div><!-- stats-container -->' ;
echo '</div><!-- user-info -->' ;
}
private function Info ()
{
echo '<div class="user-info-container">' ;
$this -> UserInfoDoll ();
$this -> UserInfoStats ();
echo '<div class="slot-lower">' ;
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><!-- slot-lower -->' ;
echo '<div class="user-signs">' ;
echo sprintf ( '<img src="i/zodiac/%s.png" alt="Родовой знак">' , $this -> showStarSign ());
echo '</div><!-- user-signs -->' ;
echo '</div><!-- user-info-container -->' ;
echo '<hr><!-- Нижняя часть -->' ;
echo '<div class="user-info-container-lower">' ;
echo '<h2>О б игроке</h2>' ;
if ( $this -> realname ) {
echo sprintf ( 'Имя: %s<br>' , $this -> realname );
}
if ( $this -> info ) {
echo nl2br ( $this -> info );
}
echo '</div><!-- user-info-container-lower -->' ;
if ( $this -> watcherIsAdmin || $this -> watcherIsModerator ) {
echo '<div class="secret-info">' ;
$infoString = 'E-Mail: %s<br> ДР Игрока: %s<br> IP Регистрации: %s' ;
echo sprintf ( $infoString , $this -> email , date ( 'd.m.Y' , strtotime ( $this -> borndate )), $this -> ip );
if ( $this -> watcherIsAdmin ) {
$this -> Bank = new Bank ( $this -> id );
$infoString = '<br><span>ИД Игрока: %s<br> ИД Комнаты: %s<br> Деньги: %s<br> Деньги в банке: %s<br> Опыт: %s<br> Нераспределённые очки: %s<br> Текущая сессия: %s</span>' ;
2020-10-28 12:33:50 +00:00
echo sprintf ( $infoString , $this -> id , $this -> room , $this -> money , $this -> Bank -> getMoney (), $this -> experience , $this -> free_stat_points , $this -> session_id );
2020-08-30 10:44:57 +00:00
}
2020-10-28 20:21:08 +00:00
$this -> UserLogs = new \Battles\Models\UserLogModel ( $this -> id );
2020-08-30 10:44:57 +00:00
echo '<div class="secret-info-user-log"><b>Личное дело</b><br>' ;
while ( $userLogRow = $this -> UserLogs -> getUserLog () -> fetch_object ()) {
echo sprintf ( '<code>%s</code><br>' , date ( " d.m.Y H:i " , strtotime ( $userLogRow -> date )) . $userLogRow -> text );
}
echo '</div><!-- secret-info-user-log -->' ;
echo '</div><!-- secret-info -->' ;
}
}
public function showUserInfo ()
{
$this -> WatcherStatus ();
2021-01-28 21:05:34 +00:00
$effects = new \Battles\Models\EffectsModel ( $this -> id );
2020-08-30 10:44:57 +00:00
if ( $this -> block && ( ! $this -> watcherIsAdmin || ! $this -> watcherIsModerator )) {
2020-10-28 20:21:08 +00:00
throw new \Exceptions\GameException ( '<span class="error">Персонаж ' . $this -> login . ' заблокирован!</span>' );
2021-01-28 21:05:34 +00:00
} elseif ( $effects -> getHideUserInfoStatus () && ( ! $this -> watcherIsAdmin || ! $this -> watcherIsModerator )) {
if ( $effects -> getHideUserInfoStatus () == - 1 ) {
2020-08-30 10:44:57 +00:00
$date = 'навсегда' ;
} else {
2021-01-28 21:05:34 +00:00
$date = 'до' . date ( 'd.m.Y' , strtotime ( $effects -> getHideUserInfoStatus ()));
2020-08-30 10:44:57 +00:00
}
2020-10-28 20:21:08 +00:00
throw new \Exceptions\GameException ( '<span class="error">Персонаж ' . $this -> login . ' обезличен ' . $date . '.</span>' );
2020-08-30 10:44:57 +00:00
} else {
$this -> Info ();
}
}
2020-08-30 16:28:15 +00:00
private function WatcherStatus ()
{
2021-01-28 21:05:34 +00:00
$query = parent :: $db -> fetch ( 'SELECT align, admin FROM users WHERE id = ?' , $this -> watcher_id );
2020-08-30 16:28:15 +00:00
if ( $query [ 'admin' ]) {
$this -> watcherIsAdmin = 1 ;
}
if ( $query [ 'align' ] == 1 ) {
$this -> watcherIsModerator = 1 ;
}
}
2020-08-30 10:44:57 +00:00
public function showUserDoll ( $isBattle = 0 , $isMain = 0 )
{
echo '<div class="user-info-container">' ;
$this -> UserInfoDoll ( $isBattle , $isMain );
echo '</div><!-- user-info-container -->' ;
}
public function showUserInfoMain ()
{
echo '<div class="user-info-container">' ;
$this -> UserInfoDoll ();
$this -> userInfoStats ( 1 );
echo '</div><!-- user-info-container -->' ;
}
}