mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-06 03:47:16 +00:00
64 lines
2.0 KiB
PHP
64 lines
2.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* @author PocketMine Team
|
|
* @link http://www.pocketmine.net/
|
|
*
|
|
*
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace pocketmine\item;
|
|
|
|
use pocketmine\entity\Entity;
|
|
use pocketmine\entity\projectile\Projectile;
|
|
use pocketmine\event\entity\ProjectileLaunchEvent;
|
|
use pocketmine\level\sound\LaunchSound;
|
|
use pocketmine\math\Vector3;
|
|
use pocketmine\Player;
|
|
|
|
abstract class ProjectileItem extends Item{
|
|
|
|
abstract public function getProjectileEntityType() : string;
|
|
|
|
abstract public function getThrowForce() : float;
|
|
|
|
public function onClickAir(Player $player, Vector3 $directionVector) : bool{
|
|
$nbt = Entity::createBaseNBT($player->add(0, $player->getEyeHeight(), 0), $directionVector, $player->yaw, $player->pitch);
|
|
|
|
$projectile = Entity::createEntity($this->getProjectileEntityType(), $player->getLevel(), $nbt, $player);
|
|
if($projectile !== null){
|
|
$projectile->setMotion($projectile->getMotion()->multiply($this->getThrowForce()));
|
|
}
|
|
|
|
$this->count--;
|
|
|
|
if($projectile instanceof Projectile){
|
|
$player->getServer()->getPluginManager()->callEvent($projectileEv = new ProjectileLaunchEvent($projectile));
|
|
if($projectileEv->isCancelled()){
|
|
$projectile->flagForDespawn();
|
|
}else{
|
|
$projectile->spawnToAll();
|
|
$player->getLevel()->addSound(new LaunchSound($player), $player->getViewers());
|
|
}
|
|
}else{
|
|
$projectile->spawnToAll();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|