2017-04-07 22:30:55 +02:00
|
|
|
<?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
|
2017-04-07 22:30:55 +02:00
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
2020-01-22 10:39:35 +01:00
|
|
|
* @copyright 2014-2020 ManiaControl Team
|
2017-04-07 22:30:55 +02:00
|
|
|
* @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
|
2017-04-07 22:30:55 +02:00
|
|
|
* @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
|
2017-04-07 22:30:55 +02:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getDefenderLogins() {
|
|
|
|
return $this->defenderArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets an Array of the Players
|
|
|
|
*
|
2017-04-07 23:26:35 +02:00
|
|
|
* @api
|
2017-04-07 22:30:55 +02:00
|
|
|
* @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;
|
|
|
|
}
|
|
|
|
}
|