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

89 lines
1.9 KiB
PHP
Raw Normal View History

2017-03-25 20:19:45 +01:00
<?php
namespace ManiaControl\Callbacks\Structures\ShootMania;
use ManiaControl\Callbacks\Structures\BaseStructure;
use ManiaControl\ManiaControl;
/**
* Structure Class for the OnShotDeny 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 OnShotDenyStructure extends BaseStructure {
private $time;
private $shooterWeapon;
private $victimWeapon;
2017-03-25 20:19:45 +01: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->time = $jsonObj->time;
$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);
}
/**
* ServerTime The Event Happened //TODO add Trait for the Time Property
*
2017-03-25 20:19:45 +01:00
* @return int
*/
public function getTime() {
return $this->time;
}
/**
* Gets the Shooter Player
*
* @return \ManiaControl\Players\Player
2017-03-25 20:19:45 +01:00
*/
public function getShooter() {
return $this->shooter;
}
/**
* Gets the Victim Player
*
* @return \ManiaControl\Players\Player
2017-03-25 20:19:45 +01:00
*/
public function getVictim() {
return $this->victim;
}
/**
* @return mixed
*/
public function getShooterWeapon() {
return $this->shooterWeapon;
}
/**
* Get the Victim Weapon
*
* @see \ManiaControl\Callbacks\Structures\ShootMania\Models\Weapons
* @return int
2017-03-25 20:19:45 +01:00
*/
public function getVictimWeapon() {
return $this->victimWeapon;
}
}