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-04-13 19:14:23 +02:00
|
|
|
use ManiaControl\Callbacks\Structures\Common\BaseTimeStructure;
|
2017-03-25 20:19:45 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Structure Class for the OnShotDeny Structure Callback
|
|
|
|
*
|
2017-04-07 23:26:35 +02:00
|
|
|
* @api
|
2017-03-25 20:19:45 +01:00
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
|
|
* @copyright 2014-2017 ManiaControl Team
|
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
|
|
*/
|
2017-04-13 19:14:23 +02:00
|
|
|
class OnShotDenyStructure extends BaseTimeStructure {
|
2017-03-26 12:42:20 +02:00
|
|
|
private $shooterWeapon;
|
|
|
|
private $victimWeapon;
|
2017-03-25 20:19:45 +01:00
|
|
|
|
2017-03-26 12:42:20 +02:00
|
|
|
private $shooter;
|
|
|
|
private $victim;
|
2017-03-25 20:19:45 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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->shooterWeapon = $jsonObj->victim;
|
|
|
|
$this->victimWeapon = $jsonObj->damage;
|
|
|
|
|
|
|
|
$this->shooter = $this->maniaControl->getPlayerManager()->getPlayer($this->getPlainJsonObject()->shooter);
|
|
|
|
$this->victim = $this->maniaControl->getPlayerManager()->getPlayer($this->getPlainJsonObject()->victim);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* Gets the Shooter Player
|
|
|
|
*
|
2017-04-07 23:26:35 +02:00
|
|
|
* @api
|
2017-03-26 12:42:20 +02:00
|
|
|
* @return \ManiaControl\Players\Player
|
2017-03-25 20:19:45 +01:00
|
|
|
*/
|
|
|
|
public function getShooter() {
|
|
|
|
return $this->shooter;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* Gets the Victim Player
|
|
|
|
*
|
2017-04-07 23:26:35 +02:00
|
|
|
* @api
|
2017-03-26 12:42:20 +02:00
|
|
|
* @return \ManiaControl\Players\Player
|
2017-03-25 20:19:45 +01:00
|
|
|
*/
|
|
|
|
public function getVictim() {
|
|
|
|
return $this->victim;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-04-07 23:26:35 +02:00
|
|
|
* Gets the Shooter Weapon
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
* @see \ManiaControl\Callbacks\Structures\ShootMania\Models\Weapons
|
|
|
|
* @return int Weapon
|
2017-03-25 20:19:45 +01:00
|
|
|
*/
|
|
|
|
public function getShooterWeapon() {
|
|
|
|
return $this->shooterWeapon;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* Get the Victim Weapon
|
|
|
|
*
|
2017-04-07 23:26:35 +02:00
|
|
|
* @api
|
2017-03-26 12:42:20 +02:00
|
|
|
* @see \ManiaControl\Callbacks\Structures\ShootMania\Models\Weapons
|
|
|
|
* @return int
|
2017-03-25 20:19:45 +01:00
|
|
|
*/
|
|
|
|
public function getVictimWeapon() {
|
|
|
|
return $this->victimWeapon;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|