2017-03-25 20:19:45 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Callbacks\Structures\ShootMania;
|
|
|
|
|
|
|
|
|
2017-03-30 19:49:45 +02:00
|
|
|
use ManiaControl\Callbacks\Structures\Common\BaseStructure;
|
2017-03-25 20:19:45 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Players\Player;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Structure Class for the OnPlayerRequestRespawnStructure Structure Callback
|
|
|
|
*
|
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
|
|
* @copyright 2014-2017 ManiaControl Team
|
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
|
|
*/
|
|
|
|
class OnPlayerRequestRespawnStructure extends BaseStructure {
|
2017-03-26 12:42:20 +02:00
|
|
|
private $time;
|
2017-03-25 20:19:45 +01:00
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* @var Player $player
|
2017-03-25 20:19:45 +01:00
|
|
|
*/
|
|
|
|
private $player;
|
|
|
|
|
|
|
|
public function __construct(ManiaControl $maniaControl, $data) {
|
|
|
|
parent::__construct($maniaControl, $data);
|
|
|
|
|
|
|
|
$this->time = $this->getPlainJsonObject()->time;
|
2017-03-25 20:37:39 +01:00
|
|
|
$this->player = $this->maniaControl->getPlayerManager()->getPlayer($this->getPlainJsonObject()->login);
|
2017-03-26 12:42:20 +02:00
|
|
|
|
2017-03-25 20:19:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* Returns the Time the Event Happened
|
|
|
|
*
|
2017-03-25 20:19:45 +01:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getTime() {
|
|
|
|
return $this->time;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* Gets the Player
|
|
|
|
*
|
|
|
|
* @return \ManiaControl\Players\Player
|
2017-03-25 20:19:45 +01:00
|
|
|
*/
|
|
|
|
public function getPlayer() {
|
|
|
|
return $this->player;
|
|
|
|
}
|
|
|
|
}
|