2017-03-24 22:49:43 +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 11:54:44 +01:00
|
|
|
use ManiaControl\Callbacks\Structures\ShootMania\Models\Position;
|
2017-03-24 22:49:43 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Players\Player;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-03-30 19:02:18 +02:00
|
|
|
* Structure Base Class for the OnHit/OnNearMiss/OnArmorEmpty Structure Callback
|
2017-03-24 22:49:43 +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-03-30 19:02:18 +02:00
|
|
|
class OnHitNearMissArmorEmptyBaseStructure extends BaseStructure {
|
2017-03-26 12:42:20 +02:00
|
|
|
private $time;
|
|
|
|
private $weapon;
|
2017-03-24 22:49:43 +01:00
|
|
|
|
2017-03-26 12:42:20 +02:00
|
|
|
private $shooterPosition;
|
|
|
|
private $victimPosition;
|
|
|
|
private $shooter;
|
|
|
|
private $victim;
|
2017-03-24 22:49:43 +01:00
|
|
|
|
|
|
|
//private $shooterPoints; (was in mp3)
|
|
|
|
//private $hitDistance; (was in mp3)
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a new On Hit Structure
|
|
|
|
*
|
|
|
|
* @param ManiaControl $maniaControl
|
|
|
|
* @param array $data
|
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl, $data) {
|
|
|
|
parent::__construct($maniaControl, $data);
|
|
|
|
|
2017-03-25 12:55:09 +01:00
|
|
|
$jsonObj = $this->getPlainJsonObject();
|
|
|
|
$this->time = $jsonObj->time;
|
|
|
|
$this->weapon = $jsonObj->weapon;
|
2017-03-25 11:53:55 +01:00
|
|
|
|
|
|
|
$this->shooterPosition = new Position();
|
|
|
|
$this->shooterPosition->setX($jsonObj->shooterposition->x);
|
|
|
|
$this->shooterPosition->setY($jsonObj->shooterposition->y);
|
|
|
|
$this->shooterPosition->setZ($jsonObj->shooterposition->z);
|
|
|
|
|
|
|
|
$this->victimPosition = new Position();
|
|
|
|
$this->victimPosition->setX($jsonObj->victimposition->x);
|
|
|
|
$this->victimPosition->setY($jsonObj->victimposition->y);
|
|
|
|
$this->victimPosition->setZ($jsonObj->victimposition->z);
|
|
|
|
|
2017-03-24 22:49:43 +01:00
|
|
|
$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
|
|
|
* < Server time when the event occured
|
|
|
|
*
|
2017-03-24 22:49:43 +01:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getTime() {
|
|
|
|
return $this->time;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* < Id of the weapon [1-Laser, 2-Rocket, 3-Nucleus, 5-Arrow]
|
|
|
|
*
|
|
|
|
* @see \ManiaControl\Callbacks\Structures\ShootMania\Models\Weapons
|
2017-03-24 22:49:43 +01:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getWeapon() {
|
2017-03-31 22:07:00 +02:00
|
|
|
return intval($this->weapon);
|
2017-03-24 22:49:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* < Position of the Shooter at the time
|
2017-03-24 22:49:43 +01:00
|
|
|
*
|
2017-03-25 11:53:55 +01:00
|
|
|
* @return Position
|
2017-03-24 22:49:43 +01:00
|
|
|
*/
|
|
|
|
public function getShooterPosition() {
|
|
|
|
return $this->shooterPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* < Position of the Victim at the time
|
2017-03-24 22:49:43 +01:00
|
|
|
*
|
2017-03-26 12:42:20 +02:00
|
|
|
* @return \ManiaControl\Callbacks\Structures\ShootMania\Models\Position
|
2017-03-24 22:49:43 +01:00
|
|
|
*/
|
|
|
|
public function getVictimPosition() {
|
|
|
|
return $this->victimPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* < Shooter Player
|
|
|
|
*
|
2017-03-24 22:49:43 +01:00
|
|
|
* @return Player
|
|
|
|
*/
|
|
|
|
public function getShooter() {
|
|
|
|
return $this->shooter;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* < Victim Player
|
|
|
|
*
|
2017-03-24 22:49:43 +01:00
|
|
|
* @return Player
|
|
|
|
*/
|
|
|
|
public function getVictim() {
|
|
|
|
return $this->victim;
|
|
|
|
}
|
|
|
|
|
2017-03-30 19:02:18 +02:00
|
|
|
|
2017-03-25 11:53:55 +01:00
|
|
|
|
2017-03-24 22:49:43 +01:00
|
|
|
}
|