mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-11 12:27:51 +00:00
136 lines
3.1 KiB
PHP
136 lines
3.1 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\command;
|
|
|
|
use pocketmine\lang\TextContainer;
|
|
use pocketmine\permission\PermissibleBase;
|
|
use pocketmine\permission\Permission;
|
|
use pocketmine\permission\PermissionAttachment;
|
|
use pocketmine\permission\PermissionAttachmentInfo;
|
|
use pocketmine\plugin\Plugin;
|
|
use pocketmine\Server;
|
|
use pocketmine\utils\MainLogger;
|
|
use function explode;
|
|
use function trim;
|
|
use const PHP_INT_MAX;
|
|
|
|
class ConsoleCommandSender implements CommandSender{
|
|
|
|
/** @var PermissibleBase */
|
|
private $perm;
|
|
|
|
/** @var int|null */
|
|
protected $lineHeight = null;
|
|
|
|
public function __construct(){
|
|
$this->perm = new PermissibleBase($this);
|
|
}
|
|
|
|
/**
|
|
* @param Permission|string $name
|
|
*/
|
|
public function isPermissionSet($name) : bool{
|
|
return $this->perm->isPermissionSet($name);
|
|
}
|
|
|
|
/**
|
|
* @param Permission|string $name
|
|
*/
|
|
public function hasPermission($name) : bool{
|
|
return $this->perm->hasPermission($name);
|
|
}
|
|
|
|
public function addAttachment(Plugin $plugin, string $name = null, bool $value = null) : PermissionAttachment{
|
|
return $this->perm->addAttachment($plugin, $name, $value);
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function removeAttachment(PermissionAttachment $attachment){
|
|
$this->perm->removeAttachment($attachment);
|
|
}
|
|
|
|
public function recalculatePermissions(){
|
|
$this->perm->recalculatePermissions();
|
|
}
|
|
|
|
/**
|
|
* @return PermissionAttachmentInfo[]
|
|
*/
|
|
public function getEffectivePermissions() : array{
|
|
return $this->perm->getEffectivePermissions();
|
|
}
|
|
|
|
/**
|
|
* @return Server
|
|
*/
|
|
public function getServer(){
|
|
return Server::getInstance();
|
|
}
|
|
|
|
/**
|
|
* @param TextContainer|string $message
|
|
*
|
|
* @return void
|
|
*/
|
|
public function sendMessage($message){
|
|
if($message instanceof TextContainer){
|
|
$message = $this->getServer()->getLanguage()->translate($message);
|
|
}else{
|
|
$message = $this->getServer()->getLanguage()->translateString($message);
|
|
}
|
|
|
|
foreach(explode("\n", trim($message)) as $line){
|
|
MainLogger::getLogger()->info($line);
|
|
}
|
|
}
|
|
|
|
public function getName() : string{
|
|
return "CONSOLE";
|
|
}
|
|
|
|
public function isOp() : bool{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function setOp(bool $value){
|
|
|
|
}
|
|
|
|
public function getScreenLineHeight() : int{
|
|
return $this->lineHeight ?? PHP_INT_MAX;
|
|
}
|
|
|
|
public function setScreenLineHeight(int $height = null){
|
|
if($height !== null and $height < 1){
|
|
throw new \InvalidArgumentException("Line height must be at least 1");
|
|
}
|
|
$this->lineHeight = $height;
|
|
}
|
|
}
|