TrackManiaControl/core/Callbacks/Structures/ShootMania/OnEliteStartTurnStructure.php

69 lines
1.6 KiB
PHP
Raw Normal View History

<?php
namespace ManiaControl\Callbacks\Structures\ShootMania;
use ManiaControl\Callbacks\Structures\Common\BaseStructure;
use ManiaControl\ManiaControl;
/**
* Structure Class for the OnEliteStartTurn Structure Callback
*
2017-04-07 23:26:35 +02:00
* @api
* @author ManiaControl Team <mail@maniacontrol.com>
2020-01-22 10:39:35 +01:00
* @copyright 2014-2020 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class OnEliteStartTurnStructure extends BaseStructure {
protected $attacker;
protected $defenderArray;
/**
* 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->attacker = $this->maniaControl->getPlayerManager()->getPlayer($jsonObj->attacker);
$this->defenderArray = $jsonObj->defenders;
}
/**
2017-04-07 23:26:35 +02:00
* @api
* @return \ManiaControl\Players\Player
*/
public function getAttacker() {
return $this->attacker;
}
/**
* Returns a Login Array of the defenders
*
2017-04-07 23:26:35 +02:00
* @api
* @return array
*/
public function getDefenderLogins() {
return $this->defenderArray;
}
/**
* Gets an Array of the Players
*
2017-04-07 23:26:35 +02:00
* @api
* @return \ManiaControl\Players\Player[]
*/
public function getDefenders() {
$defenders = array();
foreach ($this->defenderArray as $login) {
$player = $this->maniaControl->getPlayerManager()->getPlayer($login);
if ($player) {
$defenders[$login] = $player;
}
}
return $defenders;
}
}