2017-06-21 19:25:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Callbacks\Structures\ShootMania;
|
|
|
|
|
|
|
|
use ManiaControl\Callbacks\Structures\Common\BaseStructure;
|
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Structure Class for the AFK.IsAFK Structure Callback
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
2020-01-22 10:39:35 +01:00
|
|
|
* @copyright 2014-2020 ManiaControl Team
|
2017-06-21 19:25:58 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
|
|
*/
|
|
|
|
class OnPlayersAFKStructure extends BaseStructure {
|
|
|
|
protected $logins;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a new On Hit Structure
|
|
|
|
*
|
|
|
|
* @param ManiaControl $maniaControl
|
|
|
|
* @param array $data
|
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl, $data) {
|
|
|
|
parent::__construct($maniaControl, $data);
|
|
|
|
|
|
|
|
$jsonObj = $this->getPlainJsonObject();
|
|
|
|
$this->logins = $jsonObj->logins;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a Login Array of the defenders
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAFKPlayerLogins() {
|
|
|
|
return $this->logins;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an Array of the Players
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @return \ManiaControl\Players\Player[]
|
|
|
|
*/
|
|
|
|
public function getAFKPlayers() {
|
|
|
|
$afkPlayers = array();
|
|
|
|
foreach ($this->logins as $login) {
|
|
|
|
$player = $this->maniaControl->getPlayerManager()->getPlayer($login);
|
|
|
|
if ($player) {
|
|
|
|
$afkPlayers[$login] = $player;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $afkPlayers;
|
|
|
|
}
|
|
|
|
}
|