mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
doing such a thing doesn't make any sense, but the system allows it, so it has to be accounted for.
122 lines
2.7 KiB
PHP
122 lines
2.7 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\event\player;
|
|
|
|
use pocketmine\command\CommandSender;
|
|
use pocketmine\event\Cancellable;
|
|
use pocketmine\permission\PermissionManager;
|
|
use pocketmine\Player;
|
|
use pocketmine\Server;
|
|
use function spl_object_id;
|
|
|
|
/**
|
|
* Called when a player chats something
|
|
*/
|
|
class PlayerChatEvent extends PlayerEvent implements Cancellable{
|
|
/** @var string */
|
|
protected $message;
|
|
|
|
/** @var string */
|
|
protected $format;
|
|
|
|
/**
|
|
* @var CommandSender[]
|
|
*/
|
|
protected $recipients = [];
|
|
|
|
/**
|
|
* @param Player $player
|
|
* @param string $message
|
|
* @param string $format
|
|
* @param CommandSender[] $recipients
|
|
*/
|
|
public function __construct(Player $player, string $message, string $format = "chat.type.text", array $recipients = null){
|
|
$this->player = $player;
|
|
$this->message = $message;
|
|
|
|
$this->format = $format;
|
|
|
|
if($recipients === null){
|
|
foreach(PermissionManager::getInstance()->getPermissionSubscriptions(Server::BROADCAST_CHANNEL_USERS) as $permissible){
|
|
if($permissible instanceof CommandSender){
|
|
$this->recipients[spl_object_id($permissible)] = $permissible;
|
|
}
|
|
}
|
|
}else{
|
|
$this->recipients = $recipients;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getMessage() : string{
|
|
return $this->message;
|
|
}
|
|
|
|
/**
|
|
* @param string $message
|
|
*/
|
|
public function setMessage(string $message) : void{
|
|
$this->message = $message;
|
|
}
|
|
|
|
/**
|
|
* Changes the player that is sending the message
|
|
*
|
|
* @param Player $player
|
|
*/
|
|
public function setPlayer(Player $player) : void{
|
|
$this->player = $player;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getFormat() : string{
|
|
return $this->format;
|
|
}
|
|
|
|
/**
|
|
* @param string $format
|
|
*/
|
|
public function setFormat(string $format) : void{
|
|
$this->format = $format;
|
|
}
|
|
|
|
/**
|
|
* @return CommandSender[]
|
|
*/
|
|
public function getRecipients() : array{
|
|
return $this->recipients;
|
|
}
|
|
|
|
/**
|
|
* @param CommandSender[] $recipients
|
|
*/
|
|
public function setRecipients(array $recipients) : void{
|
|
$this->recipients = $recipients;
|
|
}
|
|
}
|