and more typehints

This commit is contained in:
Dylan K. Taylor 2017-07-14 10:56:51 +01:00
parent b9355387da
commit c3b8be3f60
119 changed files with 598 additions and 541 deletions

View File

@ -38,7 +38,9 @@ class CrashDump{
private $fp; private $fp;
private $time; private $time;
private $data = []; private $data = [];
private $encodedData = null; /** @var string */
private $encodedData = "";
/** @var string */
private $path; private $path;
public function __construct(Server $server){ public function __construct(Server $server){
@ -64,7 +66,7 @@ class CrashDump{
$this->encodeData(); $this->encodeData();
} }
public function getPath(){ public function getPath() : string{
return $this->path; return $this->path;
} }
@ -72,7 +74,7 @@ class CrashDump{
return $this->encodedData; return $this->encodedData;
} }
public function getData(){ public function getData() : array{
return $this->data; return $this->data;
} }

View File

@ -30,7 +30,7 @@ interface IPlayer extends ServerOperator{
/** /**
* @return bool * @return bool
*/ */
public function isOnline(); public function isOnline() : bool;
/** /**
* @return string * @return string
@ -40,22 +40,22 @@ interface IPlayer extends ServerOperator{
/** /**
* @return bool * @return bool
*/ */
public function isBanned(); public function isBanned() : bool;
/** /**
* @param bool $banned * @param bool $banned
*/ */
public function setBanned($banned); public function setBanned(bool $banned);
/** /**
* @return bool * @return bool
*/ */
public function isWhitelisted(); public function isWhitelisted() : bool;
/** /**
* @param bool $value * @param bool $value
*/ */
public function setWhitelisted($value); public function setWhitelisted(bool $value);
/** /**
* @return Player|null * @return Player|null
@ -73,8 +73,8 @@ interface IPlayer extends ServerOperator{
public function getLastPlayed(); public function getLastPlayed();
/** /**
* @return mixed * @return bool
*/ */
public function hasPlayedBefore(); public function hasPlayedBefore() : bool;
} }

View File

@ -116,11 +116,11 @@ class MemoryManager{
gc_enable(); gc_enable();
} }
public function isLowMemory(){ public function isLowMemory() : bool{
return $this->lowMemory; return $this->lowMemory;
} }
public function canUseChunkCache(){ public function canUseChunkCache() : bool{
return !($this->lowMemory and $this->chunkTrigger); return !($this->lowMemory and $this->chunkTrigger);
} }

View File

@ -48,7 +48,7 @@ class OfflinePlayer implements IPlayer, Metadatable{
} }
} }
public function isOnline(){ public function isOnline() : bool{
return $this->getPlayer() !== null; return $this->getPlayer() !== null;
} }
@ -60,11 +60,11 @@ class OfflinePlayer implements IPlayer, Metadatable{
return $this->server; return $this->server;
} }
public function isOp(){ public function isOp() : bool{
return $this->server->isOp(strtolower($this->getName())); return $this->server->isOp(strtolower($this->getName()));
} }
public function setOp($value){ public function setOp(bool $value){
if($value === $this->isOp()){ if($value === $this->isOp()){
return; return;
} }
@ -76,11 +76,11 @@ class OfflinePlayer implements IPlayer, Metadatable{
} }
} }
public function isBanned(){ public function isBanned() : bool{
return $this->server->getNameBans()->isBanned(strtolower($this->getName())); return $this->server->getNameBans()->isBanned(strtolower($this->getName()));
} }
public function setBanned($value){ public function setBanned(bool $value){
if($value === true){ if($value === true){
$this->server->getNameBans()->addBan($this->getName(), null, null, null); $this->server->getNameBans()->addBan($this->getName(), null, null, null);
}else{ }else{
@ -88,11 +88,11 @@ class OfflinePlayer implements IPlayer, Metadatable{
} }
} }
public function isWhitelisted(){ public function isWhitelisted() : bool{
return $this->server->isWhitelisted(strtolower($this->getName())); return $this->server->isWhitelisted(strtolower($this->getName()));
} }
public function setWhitelisted($value){ public function setWhitelisted(bool $value){
if($value === true){ if($value === true){
$this->server->addWhitelist(strtolower($this->getName())); $this->server->addWhitelist(strtolower($this->getName()));
}else{ }else{
@ -112,7 +112,7 @@ class OfflinePlayer implements IPlayer, Metadatable{
return $this->namedtag instanceof CompoundTag ? $this->namedtag["lastPlayed"] : null; return $this->namedtag instanceof CompoundTag ? $this->namedtag["lastPlayed"] : null;
} }
public function hasPlayedBefore(){ public function hasPlayedBefore() : bool{
return $this->namedtag instanceof CompoundTag; return $this->namedtag instanceof CompoundTag;
} }

View File

@ -77,7 +77,6 @@ use pocketmine\inventory\BigShapedRecipe;
use pocketmine\inventory\BigShapelessRecipe; use pocketmine\inventory\BigShapelessRecipe;
use pocketmine\inventory\FurnaceInventory; use pocketmine\inventory\FurnaceInventory;
use pocketmine\inventory\Inventory; use pocketmine\inventory\Inventory;
use pocketmine\inventory\InventoryHolder;
use pocketmine\inventory\PlayerInventory; use pocketmine\inventory\PlayerInventory;
use pocketmine\inventory\ShapedRecipe; use pocketmine\inventory\ShapedRecipe;
use pocketmine\inventory\ShapelessRecipe; use pocketmine\inventory\ShapelessRecipe;
@ -196,6 +195,7 @@ use pocketmine\network\mcpe\protocol\UseItemPacket;
use pocketmine\network\SourceInterface; use pocketmine\network\SourceInterface;
use pocketmine\permission\PermissibleBase; use pocketmine\permission\PermissibleBase;
use pocketmine\permission\PermissionAttachment; use pocketmine\permission\PermissionAttachment;
use pocketmine\permission\PermissionAttachmentInfo;
use pocketmine\plugin\Plugin; use pocketmine\plugin\Plugin;
use pocketmine\resourcepacks\ResourcePack; use pocketmine\resourcepacks\ResourcePack;
use pocketmine\tile\ItemFrame; use pocketmine\tile\ItemFrame;
@ -283,7 +283,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
protected $sleeping = null; protected $sleeping = null;
protected $clientID = null; protected $clientID = null;
private $loaderId = null; private $loaderId = 0;
protected $stepHeight = 0.6; protected $stepHeight = 0.6;
@ -350,11 +350,11 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
return $this->clientSecret; return $this->clientSecret;
} }
public function isBanned(){ public function isBanned() : bool{
return $this->server->getNameBans()->isBanned($this->iusername); return $this->server->getNameBans()->isBanned($this->iusername);
} }
public function setBanned($value){ public function setBanned(bool $value){
if($value === true){ if($value === true){
$this->server->getNameBans()->addBan($this->getName(), null, null, null); $this->server->getNameBans()->addBan($this->getName(), null, null, null);
$this->kick("You have been banned"); $this->kick("You have been banned");
@ -363,11 +363,11 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
} }
} }
public function isWhitelisted(){ public function isWhitelisted() : bool{
return $this->server->isWhitelisted($this->iusername); return $this->server->isWhitelisted($this->iusername);
} }
public function setWhitelisted($value){ public function setWhitelisted(bool $value){
if($value === true){ if($value === true){
$this->server->addWhitelist($this->iusername); $this->server->addWhitelist($this->iusername);
}else{ }else{
@ -387,12 +387,12 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
return $this->namedtag instanceof CompoundTag ? $this->namedtag["lastPlayed"] : null; return $this->namedtag instanceof CompoundTag ? $this->namedtag["lastPlayed"] : null;
} }
public function hasPlayedBefore(){ public function hasPlayedBefore() : bool{
return $this->playedBefore; return $this->playedBefore;
} }
public function setAllowFlight($value){ public function setAllowFlight(bool $value){
$this->allowFlight = (bool) $value; $this->allowFlight = $value;
$this->sendSettings(); $this->sendSettings();
} }
@ -453,7 +453,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
/** /**
* @return bool * @return bool
*/ */
public function getRemoveFormat(){ public function getRemoveFormat() : bool{
return $this->removeFormat; return $this->removeFormat;
} }
@ -480,7 +480,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @return bool * @return bool
*/ */
public function canSee(Player $player){ public function canSee(Player $player) : bool{
return !isset($this->hiddenPlayers[$player->getRawUniqueId()]); return !isset($this->hiddenPlayers[$player->getRawUniqueId()]);
} }
@ -539,21 +539,21 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
/** /**
* @return bool * @return bool
*/ */
public function isOnline(){ public function isOnline() : bool{
return $this->connected === true and $this->loggedIn === true; return $this->connected === true and $this->loggedIn === true;
} }
/** /**
* @return bool * @return bool
*/ */
public function isOp(){ public function isOp() : bool{
return $this->server->isOp($this->getName()); return $this->server->isOp($this->getName());
} }
/** /**
* @param bool $value * @param bool $value
*/ */
public function setOp($value){ public function setOp(bool $value){
if($value === $this->isOp()){ if($value === $this->isOp()){
return; return;
} }
@ -572,7 +572,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @return bool * @return bool
*/ */
public function isPermissionSet($name){ public function isPermissionSet($name) : bool{
return $this->perm->isPermissionSet($name); return $this->perm->isPermissionSet($name);
} }
@ -583,7 +583,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @throws \InvalidStateException if the player is closed * @throws \InvalidStateException if the player is closed
*/ */
public function hasPermission($name){ public function hasPermission($name) : bool{
if($this->closed){ if($this->closed){
throw new \InvalidStateException("Trying to get permissions of closed player"); throw new \InvalidStateException("Trying to get permissions of closed player");
} }
@ -629,9 +629,9 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
} }
/** /**
* @return permission\PermissionAttachmentInfo[] * @return PermissionAttachmentInfo[]
*/ */
public function getEffectivePermissions(){ public function getEffectivePermissions() : array{
return $this->perm->getEffectivePermissions(); return $this->perm->getEffectivePermissions();
} }
@ -698,7 +698,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @return bool * @return bool
*/ */
public function hasAchievement($achievementId){ public function hasAchievement(string $achievementId) : bool{
if(!isset(Achievement::$list[$achievementId])){ if(!isset(Achievement::$list[$achievementId])){
return false; return false;
} }
@ -709,7 +709,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
/** /**
* @return bool * @return bool
*/ */
public function isConnected(){ public function isConnected() : bool{
return $this->connected === true; return $this->connected === true;
} }
@ -718,7 +718,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @return string * @return string
*/ */
public function getDisplayName(){ public function getDisplayName() : string{
return $this->displayName; return $this->displayName;
} }
@ -744,14 +744,14 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @return string * @return string
*/ */
public function getAddress(){ public function getAddress() : string{
return $this->ip; return $this->ip;
} }
/** /**
* @return int * @return int
*/ */
public function getPort(){ public function getPort() : int{
return $this->port; return $this->port;
} }
@ -762,7 +762,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
/** /**
* @return bool * @return bool
*/ */
public function isSleeping(){ public function isSleeping() : bool{
return $this->sleeping !== null; return $this->sleeping !== null;
} }
@ -1035,7 +1035,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @return bool * @return bool
*/ */
public function batchDataPacket(DataPacket $packet){ public function batchDataPacket(DataPacket $packet) : bool{
if($this->connected === false){ if($this->connected === false){
return false; return false;
} }
@ -1133,9 +1133,9 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
/** /**
* @param Vector3 $pos * @param Vector3 $pos
* *
* @return boolean * @return bool
*/ */
public function sleepOn(Vector3 $pos){ public function sleepOn(Vector3 $pos) : bool{
if(!$this->isOnline()){ if(!$this->isOnline()){
return false; return false;
} }
@ -1209,7 +1209,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @return bool * @return bool
*/ */
public function awardAchievement($achievementId){ public function awardAchievement(string $achievementId) : bool{
if(isset(Achievement::$list[$achievementId]) and !$this->hasAchievement($achievementId)){ if(isset(Achievement::$list[$achievementId]) and !$this->hasAchievement($achievementId)){
foreach(Achievement::$list[$achievementId]["requires"] as $requirementId){ foreach(Achievement::$list[$achievementId]["requires"] as $requirementId){
if(!$this->hasAchievement($requirementId)){ if(!$this->hasAchievement($requirementId)){
@ -1233,7 +1233,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
/** /**
* @return int * @return int
*/ */
public function getGamemode(){ public function getGamemode() : int{
return $this->gamemode; return $this->gamemode;
} }
@ -1265,7 +1265,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* *
* @return bool * @return bool
*/ */
public function setGamemode(int $gm, bool $client = false){ public function setGamemode(int $gm, bool $client = false) : bool{
if($gm < 0 or $gm > 3 or $this->gamemode === $gm){ if($gm < 0 or $gm > 3 or $this->gamemode === $gm){
return false; return false;
} }
@ -1402,7 +1402,7 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
return $this->isCreative(); return $this->isCreative();
} }
public function getDrops(){ public function getDrops() : array{
if(!$this->isCreative()){ if(!$this->isCreative()){
return parent::getDrops(); return parent::getDrops();
} }
@ -3477,11 +3477,11 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
* Kicks a player from the server * Kicks a player from the server
* *
* @param string $reason * @param string $reason
* @param bool $isAdmin * @param bool $isAdmin
* *
* @return bool * @return bool
*/ */
public function kick($reason = "", $isAdmin = true){ public function kick($reason = "", bool $isAdmin = true) : bool{
$this->server->getPluginManager()->callEvent($ev = new PlayerKickEvent($this, $reason, $this->getLeaveMessage())); $this->server->getPluginManager()->callEvent($ev = new PlayerKickEvent($this, $reason, $this->getLeaveMessage()));
if(!$ev->isCancelled()){ if(!$ev->isCancelled()){
if($isAdmin){ if($isAdmin){
@ -4137,11 +4137,11 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer, Netwo
} }
public function getLoaderId(){ public function getLoaderId() : int{
return $this->loaderId; return $this->loaderId;
} }
public function isLoaderActive(){ public function isLoaderActive() : bool{
return $this->isConnected(); return $this->isConnected();
} }
} }

View File

@ -1042,12 +1042,12 @@ class Server{
* *
* @return bool * @return bool
*/ */
public function generateLevel(string $name, $seed = null, $generator = null, array $options = []){ public function generateLevel(string $name, int $seed = null, $generator = null, array $options = []) : bool{
if(trim($name) === "" or $this->isLevelGenerated($name)){ if(trim($name) === "" or $this->isLevelGenerated($name)){
return false; return false;
} }
$seed = $seed === null ? Binary::readInt(random_bytes(4)) : (int) $seed; $seed = $seed ?? Binary::readInt(random_bytes(4));
if(!isset($options["preset"])){ if(!isset($options["preset"])){
$options["preset"] = $this->getConfigString("generator-settings", ""); $options["preset"] = $this->getConfigString("generator-settings", "");
@ -1327,7 +1327,7 @@ class Server{
* *
* @return bool * @return bool
*/ */
public function isWhitelisted(string $name){ public function isWhitelisted(string $name) : bool{
return !$this->hasWhitelist() or $this->operators->exists($name, true) or $this->whitelist->exists($name, true); return !$this->hasWhitelist() or $this->operators->exists($name, true) or $this->whitelist->exists($name, true);
} }
@ -1336,7 +1336,7 @@ class Server{
* *
* @return bool * @return bool
*/ */
public function isOp(string $name){ public function isOp(string $name) : bool{
return $this->operators->exists($name, true); return $this->operators->exists($name, true);
} }
@ -1764,7 +1764,7 @@ class Server{
* *
* @return int * @return int
*/ */
public function broadcastTitle(string $title, string $subtitle = "", int $fadeIn = -1, int $stay = -1, int $fadeOut = -1, $recipients = null){ public function broadcastTitle(string $title, string $subtitle = "", int $fadeIn = -1, int $stay = -1, int $fadeOut = -1, array $recipients = null) : int{
if(!is_array($recipients)){ if(!is_array($recipients)){
/** @var Player[] $recipients */ /** @var Player[] $recipients */
$recipients = []; $recipients = [];
@ -1933,7 +1933,7 @@ class Server{
* *
* @return bool * @return bool
*/ */
public function dispatchCommand(CommandSender $sender, string $commandLine){ public function dispatchCommand(CommandSender $sender, string $commandLine) : bool{
if($this->commandMap->dispatch($sender, $commandLine)){ if($this->commandMap->dispatch($sender, $commandLine)){
return true; return true;
} }
@ -2056,6 +2056,9 @@ class Server{
} }
/**
* @return QueryRegenerateEvent
*/
public function getQueryInformation(){ public function getQueryInformation(){
return $this->queryRegenerateTask; return $this->queryRegenerateTask;
} }
@ -2430,7 +2433,7 @@ class Server{
/** /**
* Tries to execute a server tick * Tries to execute a server tick
*/ */
private function tick(){ private function tick() : bool{
$tickTime = microtime(true); $tickTime = microtime(true);
if(($tickTime - $this->nextTick) < -0.025){ //Allow half a tick of diff if(($tickTime - $this->nextTick) < -0.025){ //Allow half a tick of diff
return false; return false;

View File

@ -60,7 +60,7 @@ class ThreadManager extends \Volatile{
/** /**
* @return Worker[]|Thread[] * @return Worker[]|Thread[]
*/ */
public function getAll(){ public function getAll() : array{
$array = []; $array = [];
foreach($this as $key => $thread){ foreach($this as $key => $thread){
$array[$key] = $thread; $array[$key] = $thread;

View File

@ -100,7 +100,7 @@ abstract class Command{
* *
* @return array * @return array
*/ */
public function generateCustomCommandData(Player $player){ public function generateCustomCommandData(Player $player) : array{
//TODO: fix command permission filtering on join //TODO: fix command permission filtering on join
/*if(!$this->testPermissionSilent($player)){ /*if(!$this->testPermissionSilent($player)){
return null; return null;
@ -202,7 +202,7 @@ abstract class Command{
return $this->label; return $this->label;
} }
public function setLabel(string $name){ public function setLabel(string $name) : bool{
$this->nextLabel = $name; $this->nextLabel = $name;
if(!$this->isRegistered()){ if(!$this->isRegistered()){
if($this->timings instanceof TimingsHandler){ if($this->timings instanceof TimingsHandler){

View File

@ -47,7 +47,7 @@ interface CommandMap{
* *
* @return bool * @return bool
*/ */
public function dispatch(CommandSender $sender, $cmdLine); public function dispatch(CommandSender $sender, string $cmdLine) : bool;
/** /**
* @return void * @return void

View File

@ -31,7 +31,6 @@ use pocketmine\permission\PermissionAttachmentInfo;
use pocketmine\plugin\Plugin; use pocketmine\plugin\Plugin;
use pocketmine\Server; use pocketmine\Server;
use pocketmine\utils\MainLogger; use pocketmine\utils\MainLogger;
use pocketmine\utils\Terminal;
class ConsoleCommandSender implements CommandSender{ class ConsoleCommandSender implements CommandSender{
@ -49,7 +48,7 @@ class ConsoleCommandSender implements CommandSender{
* *
* @return bool * @return bool
*/ */
public function isPermissionSet($name){ public function isPermissionSet($name) : bool{
return $this->perm->isPermissionSet($name); return $this->perm->isPermissionSet($name);
} }
@ -58,7 +57,7 @@ class ConsoleCommandSender implements CommandSender{
* *
* @return bool * @return bool
*/ */
public function hasPermission($name){ public function hasPermission($name) : bool{
return $this->perm->hasPermission($name); return $this->perm->hasPermission($name);
} }
@ -89,14 +88,14 @@ class ConsoleCommandSender implements CommandSender{
/** /**
* @return PermissionAttachmentInfo[] * @return PermissionAttachmentInfo[]
*/ */
public function getEffectivePermissions(){ public function getEffectivePermissions() : array{
return $this->perm->getEffectivePermissions(); return $this->perm->getEffectivePermissions();
} }
/** /**
* @return bool * @return bool
*/ */
public function isPlayer(){ public function isPlayer() : bool{
return false; return false;
} }
@ -132,14 +131,14 @@ class ConsoleCommandSender implements CommandSender{
/** /**
* @return bool * @return bool
*/ */
public function isOp(){ public function isOp() : bool{
return true; return true;
} }
/** /**
* @param bool $value * @param bool $value
*/ */
public function setOp($value){ public function setOp(bool $value){
} }

View File

@ -207,7 +207,7 @@ class SimpleCommandMap implements CommandMap{
return null; return null;
} }
public function dispatch(CommandSender $sender, $commandLine){ public function dispatch(CommandSender $sender, string $commandLine) : bool{
$args = explode(" ", $commandLine); $args = explode(" ", $commandLine);
$sentCommandLabel = ""; $sentCommandLabel = "";
$target = $this->matchCommand($sentCommandLabel, $args); $target = $this->matchCommand($sentCommandLabel, $args);
@ -248,7 +248,7 @@ class SimpleCommandMap implements CommandMap{
/** /**
* @return Command[] * @return Command[]
*/ */
public function getCommands(){ public function getCommands() : array{
return $this->knownCommands; return $this->knownCommands;
} }

View File

@ -25,7 +25,6 @@ namespace pocketmine\command\defaults;
use pocketmine\command\Command; use pocketmine\command\Command;
use pocketmine\command\CommandSender; use pocketmine\command\CommandSender;
use pocketmine\command\ConsoleCommandSender;
use pocketmine\event\TranslationContainer; use pocketmine\event\TranslationContainer;
use pocketmine\utils\TextFormat; use pocketmine\utils\TextFormat;

View File

@ -24,7 +24,6 @@ declare(strict_types=1);
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\block\Block; use pocketmine\block\Block;
use pocketmine\block\Liquid;
use pocketmine\event\entity\EntityBlockChangeEvent; use pocketmine\event\entity\EntityBlockChangeEvent;
use pocketmine\event\entity\EntityDamageEvent; use pocketmine\event\entity\EntityDamageEvent;
use pocketmine\item\Item as ItemItem; use pocketmine\item\Item as ItemItem;

View File

@ -99,7 +99,7 @@ class Human extends Creature implements ProjectileSource, InventoryHolder{
/** /**
* @return string * @return string
*/ */
public function getRawUniqueId(){ public function getRawUniqueId() : string{
return $this->rawUUID; return $this->rawUUID;
} }
@ -431,7 +431,7 @@ class Human extends Creature implements ProjectileSource, InventoryHolder{
return $this->getNameTag(); return $this->getNameTag();
} }
public function getDrops(){ public function getDrops() : array{
return $this->inventory !== null ? array_values($this->inventory->getContents()) : []; return $this->inventory !== null ? array_values($this->inventory->getContents()) : [];
} }

View File

@ -33,7 +33,6 @@ use pocketmine\event\Timings;
use pocketmine\item\Item as ItemItem; use pocketmine\item\Item as ItemItem;
use pocketmine\math\Vector3; use pocketmine\math\Vector3;
use pocketmine\nbt\tag\FloatTag; use pocketmine\nbt\tag\FloatTag;
use pocketmine\nbt\tag\ShortTag;
use pocketmine\network\mcpe\protocol\EntityEventPacket; use pocketmine\network\mcpe\protocol\EntityEventPacket;
use pocketmine\utils\BlockIterator; use pocketmine\utils\BlockIterator;
@ -275,7 +274,7 @@ abstract class Living extends Entity implements Damageable{
/** /**
* @return ItemItem[] * @return ItemItem[]
*/ */
public function getDrops(){ public function getDrops() : array{
return []; return [];
} }

View File

@ -164,7 +164,7 @@ class Squid extends WaterAnimal{
parent::spawnTo($player); parent::spawnTo($player);
} }
public function getDrops(){ public function getDrops() : array{
return [ return [
ItemItem::get(ItemItem::DYE, 0, mt_rand(1, 3)) ItemItem::get(ItemItem::DYE, 0, mt_rand(1, 3))
]; ];

View File

@ -57,7 +57,7 @@ class Zombie extends Monster{
parent::spawnTo($player); parent::spawnTo($player);
} }
public function getDrops(){ public function getDrops() : array{
$drops = [ $drops = [
ItemItem::get(ItemItem::FEATHER, 0, 1) ItemItem::get(ItemItem::FEATHER, 0, 1)
]; ];

View File

@ -31,7 +31,7 @@ interface Cancellable{
/** /**
* @return bool * @return bool
*/ */
public function isCancelled(); public function isCancelled() : bool;
/** /**
* @param bool $value * @param bool $value

View File

@ -176,7 +176,7 @@ abstract class Timings{
* *
* @return TimingsHandler * @return TimingsHandler
*/ */
public static function getPluginTaskTimings(TaskHandler $task, int $period){ public static function getPluginTaskTimings(TaskHandler $task, int $period) : TimingsHandler{
$ftask = $task->getTask(); $ftask = $task->getTask();
if($ftask instanceof PluginTask and $ftask->getOwner() !== null){ if($ftask instanceof PluginTask and $ftask->getOwner() !== null){
$plugin = $ftask->getOwner()->getDescription()->getFullName(); $plugin = $ftask->getOwner()->getDescription()->getFullName();
@ -208,7 +208,7 @@ abstract class Timings{
* *
* @return TimingsHandler * @return TimingsHandler
*/ */
public static function getEntityTimings(Entity $entity){ public static function getEntityTimings(Entity $entity) : TimingsHandler{
$entityType = (new \ReflectionClass($entity))->getShortName(); $entityType = (new \ReflectionClass($entity))->getShortName();
if(!isset(self::$entityTypeTimingMap[$entityType])){ if(!isset(self::$entityTypeTimingMap[$entityType])){
if($entity instanceof Player){ if($entity instanceof Player){
@ -226,7 +226,7 @@ abstract class Timings{
* *
* @return TimingsHandler * @return TimingsHandler
*/ */
public static function getTileEntityTimings(Tile $tile){ public static function getTileEntityTimings(Tile $tile) : TimingsHandler{
$tileType = (new \ReflectionClass($tile))->getShortName(); $tileType = (new \ReflectionClass($tile))->getShortName();
if(!isset(self::$tileEntityTypeTimingMap[$tileType])){ if(!isset(self::$tileEntityTypeTimingMap[$tileType])){
self::$tileEntityTypeTimingMap[$tileType] = new TimingsHandler("** tickTileEntity - " . $tileType, self::$tickTileEntityTimer); self::$tileEntityTypeTimingMap[$tileType] = new TimingsHandler("** tickTileEntity - " . $tileType, self::$tickTileEntityTimer);
@ -240,7 +240,7 @@ abstract class Timings{
* *
* @return TimingsHandler * @return TimingsHandler
*/ */
public static function getReceiveDataPacketTimings(DataPacket $pk){ public static function getReceiveDataPacketTimings(DataPacket $pk) : TimingsHandler{
if(!isset(self::$packetReceiveTimingMap[$pk::NETWORK_ID])){ if(!isset(self::$packetReceiveTimingMap[$pk::NETWORK_ID])){
$pkName = (new \ReflectionClass($pk))->getShortName(); $pkName = (new \ReflectionClass($pk))->getShortName();
self::$packetReceiveTimingMap[$pk::NETWORK_ID] = new TimingsHandler("** receivePacket - " . $pkName . " [0x" . dechex($pk::NETWORK_ID) . "]", self::$playerNetworkReceiveTimer); self::$packetReceiveTimingMap[$pk::NETWORK_ID] = new TimingsHandler("** receivePacket - " . $pkName . " [0x" . dechex($pk::NETWORK_ID) . "]", self::$playerNetworkReceiveTimer);
@ -255,7 +255,7 @@ abstract class Timings{
* *
* @return TimingsHandler * @return TimingsHandler
*/ */
public static function getSendDataPacketTimings(DataPacket $pk){ public static function getSendDataPacketTimings(DataPacket $pk) : TimingsHandler{
if(!isset(self::$packetSendTimingMap[$pk::NETWORK_ID])){ if(!isset(self::$packetSendTimingMap[$pk::NETWORK_ID])){
$pkName = (new \ReflectionClass($pk))->getShortName(); $pkName = (new \ReflectionClass($pk))->getShortName();
self::$packetSendTimingMap[$pk::NETWORK_ID] = new TimingsHandler("** sendPacket - " . $pkName . " [0x" . dechex($pk::NETWORK_ID) . "]", self::$playerNetworkTimer); self::$packetSendTimingMap[$pk::NETWORK_ID] = new TimingsHandler("** sendPacket - " . $pkName . " [0x" . dechex($pk::NETWORK_ID) . "]", self::$playerNetworkTimer);

View File

@ -23,8 +23,6 @@ declare(strict_types=1);
namespace pocketmine\event\block; namespace pocketmine\event\block;
use pocketmine\block\Block;
class BlockFormEvent extends BlockGrowEvent{ class BlockFormEvent extends BlockGrowEvent{
public static $handlerList = null; public static $handlerList = null;

View File

@ -23,10 +23,6 @@ declare(strict_types=1);
namespace pocketmine\event\player; namespace pocketmine\event\player;
use pocketmine\block\Block;
use pocketmine\item\Item;
use pocketmine\Player;
class PlayerBucketFillEvent extends PlayerBucketEvent{ class PlayerBucketFillEvent extends PlayerBucketEvent{
public static $handlerList = null; public static $handlerList = null;
} }

View File

@ -26,7 +26,6 @@ namespace pocketmine\event\player;
use pocketmine\entity\Human; use pocketmine\entity\Human;
use pocketmine\event\Cancellable; use pocketmine\event\Cancellable;
use pocketmine\event\entity\EntityEvent; use pocketmine\event\entity\EntityEvent;
use pocketmine\Player;
class PlayerExhaustEvent extends EntityEvent implements Cancellable{ class PlayerExhaustEvent extends EntityEvent implements Cancellable{
public static $handlerList = null; public static $handlerList = null;

View File

@ -84,32 +84,32 @@ abstract class BaseInventory implements Inventory{
$this->slots = []; $this->slots = [];
} }
public function getSize(){ public function getSize() : int{
return $this->size; return $this->size;
} }
public function setSize($size){ public function setSize(int $size){
$this->size = (int) $size; $this->size = $size;
} }
public function getMaxStackSize(){ public function getMaxStackSize() : int{
return $this->maxStackSize; return $this->maxStackSize;
} }
public function getName(){ public function getName() : string{
return $this->name; return $this->name;
} }
public function getTitle(){ public function getTitle() : string{
return $this->title; return $this->title;
} }
public function getItem($index){ public function getItem(int $index) : Item{
assert($index >= 0, "Inventory slot should not be negative"); assert($index >= 0, "Inventory slot should not be negative");
return isset($this->slots[$index]) ? clone $this->slots[$index] : Item::get(Item::AIR, 0, 0); return isset($this->slots[$index]) ? clone $this->slots[$index] : Item::get(Item::AIR, 0, 0);
} }
public function getContents(){ public function getContents() : array{
return $this->slots; return $this->slots;
} }
@ -134,7 +134,7 @@ abstract class BaseInventory implements Inventory{
} }
} }
public function setItem($index, Item $item){ public function setItem(int $index, Item $item) : bool{
$item = clone $item; $item = clone $item;
if($index < 0 or $index >= $this->size){ if($index < 0 or $index >= $this->size){
return false; return false;
@ -159,7 +159,7 @@ abstract class BaseInventory implements Inventory{
return true; return true;
} }
public function contains(Item $item){ public function contains(Item $item) : bool{
$count = max(1, $item->getCount()); $count = max(1, $item->getCount());
$checkDamage = !$item->hasAnyDamageValue(); $checkDamage = !$item->hasAnyDamageValue();
$checkTags = $item->hasCompoundTag(); $checkTags = $item->hasCompoundTag();
@ -175,7 +175,7 @@ abstract class BaseInventory implements Inventory{
return false; return false;
} }
public function all(Item $item){ public function all(Item $item) : array{
$slots = []; $slots = [];
$checkDamage = !$item->hasAnyDamageValue(); $checkDamage = !$item->hasAnyDamageValue();
$checkTags = $item->hasCompoundTag(); $checkTags = $item->hasCompoundTag();
@ -199,7 +199,7 @@ abstract class BaseInventory implements Inventory{
} }
} }
public function first(Item $item){ public function first(Item $item) : int{
$count = max(1, $item->getCount()); $count = max(1, $item->getCount());
$checkDamage = !$item->hasAnyDamageValue(); $checkDamage = !$item->hasAnyDamageValue();
$checkTags = $item->hasCompoundTag(); $checkTags = $item->hasCompoundTag();
@ -213,7 +213,7 @@ abstract class BaseInventory implements Inventory{
return -1; return -1;
} }
public function firstEmpty(){ public function firstEmpty() : int{
for($i = 0; $i < $this->size; ++$i){ for($i = 0; $i < $this->size; ++$i){
if($this->getItem($i)->getId() === Item::AIR){ if($this->getItem($i)->getId() === Item::AIR){
return $i; return $i;
@ -223,7 +223,7 @@ abstract class BaseInventory implements Inventory{
return -1; return -1;
} }
public function canAddItem(Item $item){ public function canAddItem(Item $item) : bool{
$item = clone $item; $item = clone $item;
$checkDamage = !$item->hasAnyDamageValue(); $checkDamage = !$item->hasAnyDamageValue();
$checkTags = $item->hasCompoundTag(); $checkTags = $item->hasCompoundTag();
@ -245,7 +245,7 @@ abstract class BaseInventory implements Inventory{
return false; return false;
} }
public function addItem(Item ...$slots){ public function addItem(Item ...$slots) : array{
/** @var Item[] $itemSlots */ /** @var Item[] $itemSlots */
/** @var Item[] $slots */ /** @var Item[] $slots */
$itemSlots = []; $itemSlots = [];
@ -302,7 +302,7 @@ abstract class BaseInventory implements Inventory{
return $itemSlots; return $itemSlots;
} }
public function removeItem(Item ...$slots){ public function removeItem(Item ...$slots) : array{
/** @var Item[] $itemSlots */ /** @var Item[] $itemSlots */
/** @var Item[] $slots */ /** @var Item[] $slots */
$itemSlots = []; $itemSlots = [];
@ -338,7 +338,7 @@ abstract class BaseInventory implements Inventory{
return $itemSlots; return $itemSlots;
} }
public function clear($index){ public function clear(int $index) : bool{
if(isset($this->slots[$index])){ if(isset($this->slots[$index])){
$item = Item::get(Item::AIR, 0, 0); $item = Item::get(Item::AIR, 0, 0);
$old = $this->slots[$index]; $old = $this->slots[$index];
@ -372,7 +372,7 @@ abstract class BaseInventory implements Inventory{
/** /**
* @return Player[] * @return Player[]
*/ */
public function getViewers(){ public function getViewers() : array{
return $this->viewers; return $this->viewers;
} }
@ -380,11 +380,11 @@ abstract class BaseInventory implements Inventory{
return $this->holder; return $this->holder;
} }
public function setMaxStackSize($size){ public function setMaxStackSize(int $size){
$this->maxStackSize = (int) $size; $this->maxStackSize = $size;
} }
public function open(Player $who){ public function open(Player $who) : bool{
$who->getServer()->getPluginManager()->callEvent($ev = new InventoryOpenEvent($this, $who)); $who->getServer()->getPluginManager()->callEvent($ev = new InventoryOpenEvent($this, $who));
if($ev->isCancelled()){ if($ev->isCancelled()){
return false; return false;
@ -459,7 +459,7 @@ abstract class BaseInventory implements Inventory{
} }
} }
public function getType(){ public function getType() : InventoryType{
return $this->type; return $this->type;
} }

View File

@ -43,31 +43,31 @@ class BaseTransaction implements Transaction{
* @param Item $sourceItem * @param Item $sourceItem
* @param Item $targetItem * @param Item $targetItem
*/ */
public function __construct(Inventory $inventory, $slot, Item $sourceItem, Item $targetItem){ public function __construct(Inventory $inventory, int $slot, Item $sourceItem, Item $targetItem){
$this->inventory = $inventory; $this->inventory = $inventory;
$this->slot = (int) $slot; $this->slot = $slot;
$this->sourceItem = clone $sourceItem; $this->sourceItem = clone $sourceItem;
$this->targetItem = clone $targetItem; $this->targetItem = clone $targetItem;
$this->creationTime = microtime(true); $this->creationTime = microtime(true);
} }
public function getCreationTime(){ public function getCreationTime() : float{
return $this->creationTime; return $this->creationTime;
} }
public function getInventory(){ public function getInventory() : Inventory{
return $this->inventory; return $this->inventory;
} }
public function getSlot(){ public function getSlot() : int{
return $this->slot; return $this->slot;
} }
public function getSourceItem(){ public function getSourceItem() : Item{
return clone $this->sourceItem; return clone $this->sourceItem;
} }
public function getTargetItem(){ public function getTargetItem() : Item{
return clone $this->targetItem; return clone $this->targetItem;
} }
} }

View File

@ -56,7 +56,7 @@ class CraftingInventory extends BaseInventory{
return $this->resultInventory; return $this->resultInventory;
} }
public function getSize(){ public function getSize() : int{
return $this->getResultInventory()->getSize() + parent::getSize(); return $this->getResultInventory()->getSize() + parent::getSize();
} }
} }

View File

@ -161,14 +161,14 @@ class CraftingManager{
/** /**
* @return Recipe[] * @return Recipe[]
*/ */
public function getRecipes(){ public function getRecipes() : array{
return $this->recipes; return $this->recipes;
} }
/** /**
* @return FurnaceRecipe[] * @return FurnaceRecipe[]
*/ */
public function getFurnaceRecipes(){ public function getFurnaceRecipes() : array{
return $this->furnaceRecipes; return $this->furnaceRecipes;
} }
@ -239,7 +239,7 @@ class CraftingManager{
* @param ShapelessRecipe $recipe * @param ShapelessRecipe $recipe
* @return bool * @return bool
*/ */
public function matchRecipe(ShapelessRecipe $recipe){ public function matchRecipe(ShapelessRecipe $recipe) : bool{
if(!isset($this->recipeLookup[$idx = $recipe->getResult()->getId() . ":" . $recipe->getResult()->getDamage()])){ if(!isset($this->recipeLookup[$idx = $recipe->getResult()->getId() . ":" . $recipe->getResult()->getDamage()])){
return false; return false;
} }

View File

@ -50,19 +50,19 @@ class DoubleChestInventory extends ChestInventory implements InventoryHolder{
return $this->left->getHolder(); return $this->left->getHolder();
} }
public function getItem($index){ public function getItem(int $index) : Item{
return $index < $this->left->getSize() ? $this->left->getItem($index) : $this->right->getItem($index - $this->right->getSize()); return $index < $this->left->getSize() ? $this->left->getItem($index) : $this->right->getItem($index - $this->right->getSize());
} }
public function setItem($index, Item $item){ public function setItem(int $index, Item $item) : bool{
return $index < $this->left->getSize() ? $this->left->setItem($index, $item) : $this->right->setItem($index - $this->right->getSize(), $item); return $index < $this->left->getSize() ? $this->left->setItem($index, $item) : $this->right->setItem($index - $this->right->getSize(), $item);
} }
public function clear($index){ public function clear(int $index) : bool{
return $index < $this->left->getSize() ? $this->left->clear($index) : $this->right->clear($index - $this->right->getSize()); return $index < $this->left->getSize() ? $this->left->clear($index) : $this->right->clear($index - $this->right->getSize());
} }
public function getContents(){ public function getContents() : array{
$contents = []; $contents = [];
for($i = 0; $i < $this->getSize(); ++$i){ for($i = 0; $i < $this->getSize(); ++$i){
$contents[$i] = $this->getItem($i); $contents[$i] = $this->getItem($i);
@ -129,14 +129,14 @@ class DoubleChestInventory extends ChestInventory implements InventoryHolder{
/** /**
* @return ChestInventory * @return ChestInventory
*/ */
public function getLeftSide(){ public function getLeftSide() : ChestInventory{
return $this->left; return $this->left;
} }
/** /**
* @return ChestInventory * @return ChestInventory
*/ */
public function getRightSide(){ public function getRightSide() : ChestInventory{
return $this->right; return $this->right;
} }
} }

View File

@ -41,21 +41,21 @@ class FurnaceInventory extends ContainerInventory{
/** /**
* @return Item * @return Item
*/ */
public function getResult(){ public function getResult() : Item{
return $this->getItem(2); return $this->getItem(2);
} }
/** /**
* @return Item * @return Item
*/ */
public function getFuel(){ public function getFuel() : Item{
return $this->getItem(1); return $this->getItem(1);
} }
/** /**
* @return Item * @return Item
*/ */
public function getSmelting(){ public function getSmelting() : Item{
return $this->getItem(0); return $this->getItem(0);
} }
@ -64,7 +64,7 @@ class FurnaceInventory extends ContainerInventory{
* *
* @return bool * @return bool
*/ */
public function setResult(Item $item){ public function setResult(Item $item) : bool{
return $this->setItem(2, $item); return $this->setItem(2, $item);
} }
@ -73,7 +73,7 @@ class FurnaceInventory extends ContainerInventory{
* *
* @return bool * @return bool
*/ */
public function setFuel(Item $item){ public function setFuel(Item $item) : bool{
return $this->setItem(1, $item); return $this->setItem(1, $item);
} }
@ -82,7 +82,7 @@ class FurnaceInventory extends ContainerInventory{
* *
* @return bool * @return bool
*/ */
public function setSmelting(Item $item){ public function setSmelting(Item $item) : bool{
return $this->setItem(0, $item); return $this->setItem(0, $item);
} }

View File

@ -32,37 +32,48 @@ use pocketmine\Player;
interface Inventory{ interface Inventory{
const MAX_STACK = 64; const MAX_STACK = 64;
public function getSize(); /**
* @return int
*/
public function getSize() : int;
public function getMaxStackSize(); /**
* @return int
*/
public function getMaxStackSize() : int;
/** /**
* @param int $size * @param int $size
*/ */
public function setMaxStackSize($size); public function setMaxStackSize(int $size);
public function getName(); /**
* @return string
*/
public function getName() : string;
public function getTitle(); /**
* @return string
*/
public function getTitle() : string;
/** /**
* @param int $index * @param int $index
* *
* @return Item * @return Item
*/ */
public function getItem($index); public function getItem(int $index) : Item;
/** /**
* Puts an Item in a slot. * Puts an Item in a slot.
* If a plugin refuses the update or $index is invalid, it'll return false * If a plugin refuses the update or $index is invalid, it'll return false
* If a source Player is specified, it won't send a Inventory update to it
* *
* @param int $index * @param int $index
* @param Item $item * @param Item $item
* *
* @return bool * @return bool
*/ */
public function setItem($index, Item $item); public function setItem(int $index, Item $item) : bool;
/** /**
* Stores the given Items in the inventory. This will try to fill * Stores the given Items in the inventory. This will try to fill
@ -74,7 +85,7 @@ interface Inventory{
* *
* @return Item[] * @return Item[]
*/ */
public function addItem(Item ...$slots); public function addItem(Item ...$slots) : array;
/** /**
* Checks if a given Item can be added to the inventory * Checks if a given Item can be added to the inventory
@ -83,7 +94,7 @@ interface Inventory{
* *
* @return bool * @return bool
*/ */
public function canAddItem(Item $item); public function canAddItem(Item $item) : bool;
/** /**
* Removes the given Item from the inventory. * Removes the given Item from the inventory.
@ -93,12 +104,12 @@ interface Inventory{
* *
* @return Item[] * @return Item[]
*/ */
public function removeItem(Item ...$slots); public function removeItem(Item ...$slots) : array;
/** /**
* @return Item[] * @return Item[]
*/ */
public function getContents(); public function getContents() : array;
/** /**
* @param Item[] $items * @param Item[] $items
@ -124,7 +135,7 @@ interface Inventory{
* *
* @return bool * @return bool
*/ */
public function contains(Item $item); public function contains(Item $item) : bool;
/** /**
* Will return all the Items that has the same id and metadata (if not null). * Will return all the Items that has the same id and metadata (if not null).
@ -134,7 +145,7 @@ interface Inventory{
* *
* @return Item[] * @return Item[]
*/ */
public function all(Item $item); public function all(Item $item) : array;
/** /**
* Will return the first slot has the same id and metadata (if not null) as the Item. * Will return the first slot has the same id and metadata (if not null) as the Item.
@ -144,14 +155,14 @@ interface Inventory{
* *
* @return int * @return int
*/ */
public function first(Item $item); public function first(Item $item) : int;
/** /**
* Returns the first empty slot, or -1 if not found * Returns the first empty slot, or -1 if not found
* *
* @return int * @return int
*/ */
public function firstEmpty(); public function firstEmpty() : int;
/** /**
* Will remove all the Items that has the same id and metadata (if not null) * Will remove all the Items that has the same id and metadata (if not null)
@ -167,7 +178,7 @@ interface Inventory{
* *
* @return bool * @return bool
*/ */
public function clear($index); public function clear(int $index) : bool;
/** /**
* Clears all the slots * Clears all the slots
@ -180,12 +191,12 @@ interface Inventory{
* *
* @return Player[] * @return Player[]
*/ */
public function getViewers(); public function getViewers() : array;
/** /**
* @return InventoryType * @return InventoryType
*/ */
public function getType(); public function getType() : InventoryType;
/** /**
* @return InventoryHolder * @return InventoryHolder
@ -204,7 +215,7 @@ interface Inventory{
* *
* @return bool * @return bool
*/ */
public function open(Player $who); public function open(Player $who) : bool;
public function close(Player $who); public function close(Player $who);

View File

@ -91,21 +91,21 @@ class InventoryType{
/** /**
* @return int * @return int
*/ */
public function getDefaultSize(){ public function getDefaultSize() : int{
return $this->size; return $this->size;
} }
/** /**
* @return string * @return string
*/ */
public function getDefaultTitle(){ public function getDefaultTitle() : string{
return $this->title; return $this->title;
} }
/** /**
* @return int * @return int
*/ */
public function getNetworkType(){ public function getNetworkType() : int{
return $this->typeId; return $this->typeId;
} }
} }

View File

@ -46,11 +46,11 @@ class PlayerInventory extends BaseInventory{
parent::__construct($player, InventoryType::get(InventoryType::PLAYER)); parent::__construct($player, InventoryType::get(InventoryType::PLAYER));
} }
public function getSize(){ public function getSize() : int{
return parent::getSize() - 4; //Remove armor slots return parent::getSize() - 4; //Remove armor slots
} }
public function setSize($size){ public function setSize(int $size){
parent::setSize($size + 4); parent::setSize($size + 4);
$this->sendContents($this->getViewers()); $this->sendContents($this->getViewers());
} }
@ -315,7 +315,7 @@ class PlayerInventory extends BaseInventory{
return $this->setItem($this->getSize() + 3, $boots); return $this->setItem($this->getSize() + 3, $boots);
} }
public function setItem($index, Item $item){ public function setItem(int $index, Item $item) : bool{
if($index < 0 or $index >= $this->size){ if($index < 0 or $index >= $this->size){
return false; return false;
}elseif($item->getId() === 0 or $item->getCount() <= 0){ }elseif($item->getId() === 0 or $item->getCount() <= 0){
@ -346,7 +346,7 @@ class PlayerInventory extends BaseInventory{
return true; return true;
} }
public function clear($index){ public function clear(int $index) : bool{
if(isset($this->slots[$index])){ if(isset($this->slots[$index])){
$item = Item::get(Item::AIR, 0, 0); $item = Item::get(Item::AIR, 0, 0);
$old = $this->slots[$index]; $old = $this->slots[$index];

View File

@ -155,7 +155,7 @@ class ShapedRecipe implements Recipe{
* *
* @return Item * @return Item
*/ */
public function getIngredient(int $x, int $y){ public function getIngredient(int $x, int $y) : Item{
return $this->ingredients[$y][$x] ?? Item::get(Item::AIR); return $this->ingredients[$y][$x] ?? Item::get(Item::AIR);
} }

View File

@ -70,7 +70,7 @@ class ShapelessRecipe implements Recipe{
* *
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
*/ */
public function addIngredient(Item $item){ public function addIngredient(Item $item) : ShapelessRecipe{
if(count($this->ingredients) >= 9){ if(count($this->ingredients) >= 9){
throw new \InvalidArgumentException("Shapeless recipes cannot have more than 9 ingredients"); throw new \InvalidArgumentException("Shapeless recipes cannot have more than 9 ingredients");
} }

View File

@ -54,19 +54,25 @@ class SimpleTransactionGroup implements TransactionGroup{
/** /**
* @return Player * @return Player
*/ */
public function getSource(){ public function getSource() : Player{
return $this->source; return $this->source;
} }
public function getCreationTime(){ public function getCreationTime() : float{
return $this->creationTime; return $this->creationTime;
} }
public function getInventories(){ /**
* @return Inventory[]
*/
public function getInventories() : array{
return $this->inventories; return $this->inventories;
} }
public function getTransactions(){ /**
* @return Transaction[]
*/
public function getTransactions() : array{
return $this->transactions; return $this->transactions;
} }
@ -93,7 +99,7 @@ class SimpleTransactionGroup implements TransactionGroup{
* *
* @return bool * @return bool
*/ */
protected function matchItems(array &$needItems, array &$haveItems){ protected function matchItems(array &$needItems, array &$haveItems) : bool{
foreach($this->transactions as $key => $ts){ foreach($this->transactions as $key => $ts){
if($ts->getTargetItem()->getId() !== Item::AIR){ if($ts->getTargetItem()->getId() !== Item::AIR){
$needItems[] = $ts->getTargetItem(); $needItems[] = $ts->getTargetItem();
@ -128,7 +134,7 @@ class SimpleTransactionGroup implements TransactionGroup{
return true; return true;
} }
public function canExecute(){ public function canExecute() : bool{
$haveItems = []; $haveItems = [];
$needItems = []; $needItems = [];
@ -149,7 +155,10 @@ class SimpleTransactionGroup implements TransactionGroup{
return false; return false;
} }
public function execute(){ /**
* @return bool
*/
public function execute() : bool{
if($this->hasExecuted() or !$this->canExecute()){ if($this->hasExecuted() or !$this->canExecute()){
return false; return false;
} }
@ -175,7 +184,7 @@ class SimpleTransactionGroup implements TransactionGroup{
return true; return true;
} }
public function hasExecuted(){ public function hasExecuted() : bool{
return $this->hasExecuted; return $this->hasExecuted;
} }
} }

View File

@ -30,25 +30,25 @@ interface Transaction{
/** /**
* @return Inventory * @return Inventory
*/ */
public function getInventory(); public function getInventory() : Inventory;
/** /**
* @return int * @return int
*/ */
public function getSlot(); public function getSlot() : int;
/** /**
* @return Item * @return Item
*/ */
public function getSourceItem(); public function getSourceItem() : Item;
/** /**
* @return Item * @return Item
*/ */
public function getTargetItem(); public function getTargetItem() : Item;
/** /**
* @return float * @return float
*/ */
public function getCreationTime(); public function getCreationTime() : float;
} }

View File

@ -28,17 +28,17 @@ interface TransactionGroup{
/** /**
* @return float * @return float
*/ */
public function getCreationTime(); public function getCreationTime() : float;
/** /**
* @return Transaction[] * @return Transaction[]
*/ */
public function getTransactions(); public function getTransactions() : array;
/** /**
* @return Inventory[] * @return Inventory[]
*/ */
public function getInventories(); public function getInventories() : array;
/** /**
* @param Transaction $transaction * @param Transaction $transaction
@ -48,16 +48,16 @@ interface TransactionGroup{
/** /**
* @return bool * @return bool
*/ */
public function canExecute(); public function canExecute() : bool;
/** /**
* @return bool * @return bool
*/ */
public function execute(); public function execute() : bool;
/** /**
* @return bool * @return bool
*/ */
public function hasExecuted(); public function hasExecuted() : bool;
} }

View File

@ -106,7 +106,7 @@ class BaseLang{
* *
* @return string * @return string
*/ */
public function translateString($str, array $params = [], $onlyPrefix = null){ public function translateString(string $str, array $params = [], string $onlyPrefix = null) : string{
$baseText = $this->get($str); $baseText = $this->get($str);
$baseText = $this->parseTranslation(($baseText !== null and ($onlyPrefix === null or strpos($str, $onlyPrefix) === 0)) ? $baseText : $str, $onlyPrefix); $baseText = $this->parseTranslation(($baseText !== null and ($onlyPrefix === null or strpos($str, $onlyPrefix) === 0)) ? $baseText : $str, $onlyPrefix);
@ -152,7 +152,13 @@ class BaseLang{
return $id; return $id;
} }
protected function parseTranslation($text, $onlyPrefix = null){ /**
* @param string $text
* @param string|null $onlyPrefix
*
* @return string
*/
protected function parseTranslation(string $text, string $onlyPrefix = null) : string{
$newString = ""; $newString = "";
$replaceString = null; $replaceString = null;

View File

@ -45,14 +45,14 @@ interface ChunkLoader{
* *
* @return int * @return int
*/ */
public function getLoaderId(); public function getLoaderId() : int;
/** /**
* Returns if the chunk loader is currently active * Returns if the chunk loader is currently active
* *
* @return bool * @return bool
*/ */
public function isLoaderActive(); public function isLoaderActive() : bool;
/** /**
* @return Position * @return Position

View File

@ -130,7 +130,7 @@ interface ChunkManager{
* *
* @return int * @return int
*/ */
public function getSeed(); public function getSeed() : int;
/** /**
* Returns the height of the world * Returns the height of the world

View File

@ -63,7 +63,7 @@ class Explosion{
/** /**
* @return bool * @return bool
*/ */
public function explodeA(){ public function explodeA() : bool{
if($this->size < 0.1){ if($this->size < 0.1){
return false; return false;
} }
@ -114,7 +114,7 @@ class Explosion{
return true; return true;
} }
public function explodeB(){ public function explodeB() : bool{
$send = []; $send = [];
$updateBlocks = []; $updateBlocks = [];

View File

@ -292,7 +292,7 @@ class Level implements ChunkManager, Metadatable{
} }
public static function generateChunkLoaderId(ChunkLoader $loader) : int{ public static function generateChunkLoaderId(ChunkLoader $loader) : int{
if($loader->getLoaderId() === 0 or $loader->getLoaderId() === null){ if($loader->getLoaderId() === 0){
return self::$chunkLoaderCounter++; return self::$chunkLoaderCounter++;
}else{ }else{
throw new \InvalidStateException("ChunkLoader has a loader id already assigned: " . $loader->getLoaderId()); throw new \InvalidStateException("ChunkLoader has a loader id already assigned: " . $loader->getLoaderId());
@ -2774,9 +2774,9 @@ class Level implements ChunkManager, Metadatable{
/** /**
* Gets the level seed * Gets the level seed
* *
* @return int|string int value of seed, or the string numeric representation of a long in 32-bit systems * @return int
*/ */
public function getSeed(){ public function getSeed() : int{
return $this->provider->getSeed(); return $this->provider->getSeed();
} }

View File

@ -55,7 +55,7 @@ class Location extends Position{
* *
* @return Location * @return Location
*/ */
public static function fromObject(Vector3 $pos, Level $level = null, $yaw = 0.0, $pitch = 0.0){ public static function fromObject(Vector3 $pos, Level $level = null, $yaw = 0.0, $pitch = 0.0) : Location{
return new Location($pos->x, $pos->y, $pos->z, $yaw, $pitch, $level ?? (($pos instanceof Position) ? $pos->level : null)); return new Location($pos->x, $pos->y, $pos->z, $yaw, $pitch, $level ?? (($pos instanceof Position) ? $pos->level : null));
} }
@ -80,7 +80,7 @@ class Location extends Position{
return "Location (level=" . ($this->isValid() ? $this->getLevel()->getName() : "null") . ", x=$this->x, y=$this->y, z=$this->z, yaw=$this->yaw, pitch=$this->pitch)"; return "Location (level=" . ($this->isValid() ? $this->getLevel()->getName() : "null") . ", x=$this->x, y=$this->y, z=$this->z, yaw=$this->yaw, pitch=$this->pitch)";
} }
public function equals(Vector3 $v){ public function equals(Vector3 $v) : bool{
if($v instanceof Location){ if($v instanceof Location){
return parent::equals($v) and $v->yaw == $this->yaw and $v->pitch == $this->pitch; return parent::equals($v) and $v->yaw == $this->yaw and $v->pitch == $this->pitch;
} }

View File

@ -52,15 +52,15 @@ class MovingObjectPosition{
} }
/** /**
* @param int $x * @param int $x
* @param int $y * @param int $y
* @param int $z * @param int $z
* @param int $side * @param int $side
* @param Vector3 $hitVector * @param Vector3 $hitVector
* *
* @return MovingObjectPosition * @return MovingObjectPosition
*/ */
public static function fromBlock($x, $y, $z, $side, Vector3 $hitVector){ public static function fromBlock(int $x, int $y, int $z, int $side, Vector3 $hitVector) : MovingObjectPosition{
$ob = new MovingObjectPosition; $ob = new MovingObjectPosition;
$ob->typeOfHit = 0; $ob->typeOfHit = 0;
$ob->blockX = $x; $ob->blockX = $x;
@ -75,7 +75,7 @@ class MovingObjectPosition{
* *
* @return MovingObjectPosition * @return MovingObjectPosition
*/ */
public static function fromEntity(Entity $entity){ public static function fromEntity(Entity $entity) : MovingObjectPosition{
$ob = new MovingObjectPosition; $ob = new MovingObjectPosition;
$ob->typeOfHit = 1; $ob->typeOfHit = 1;
$ob->entityHit = $entity; $ob->entityHit = $entity;

View File

@ -95,7 +95,7 @@ class Position extends Vector3{
* *
* @return bool * @return bool
*/ */
public function isValid(){ public function isValid() : bool{
return $this->getLevel() instanceof Level; return $this->getLevel() instanceof Level;
} }
@ -133,7 +133,7 @@ class Position extends Vector3{
return $this; return $this;
} }
public function equals(Vector3 $v){ public function equals(Vector3 $v) : bool{
if($v instanceof Position){ if($v instanceof Position){
return parent::equals($v) and $v->getLevel() === $this->getLevel(); return parent::equals($v) and $v->getLevel() === $this->getLevel();
} }

View File

@ -164,7 +164,7 @@ class SimpleChunkManager implements ChunkManager{
* *
* @return int * @return int
*/ */
public function getSeed(){ public function getSeed() : int{
return $this->seed; return $this->seed;
} }

View File

@ -28,7 +28,6 @@ namespace pocketmine\level\format;
use pocketmine\block\Block; use pocketmine\block\Block;
use pocketmine\entity\Entity; use pocketmine\entity\Entity;
use pocketmine\level\format\ChunkException;
use pocketmine\level\Level; use pocketmine\level\Level;
use pocketmine\nbt\NBT; use pocketmine\nbt\NBT;
use pocketmine\nbt\tag\CompoundTag; use pocketmine\nbt\tag\CompoundTag;
@ -989,7 +988,7 @@ class Chunk{
* *
* @return Chunk * @return Chunk
*/ */
public static function fastDeserialize(string $data){ public static function fastDeserialize(string $data) : Chunk{
$stream = new BinaryStream(); $stream = new BinaryStream();
$stream->setBuffer($data); $stream->setBuffer($data);
$data = null; $data = null;

View File

@ -76,7 +76,7 @@ abstract class BaseLevelProvider implements LevelProvider{
return $this->level->getServer(); return $this->level->getServer();
} }
public function getLevel(){ public function getLevel() : Level{
return $this->level; return $this->level;
} }

View File

@ -174,7 +174,7 @@ interface LevelProvider{
/** /**
* @return string * @return string
*/ */
public function getName(); public function getName() : string;
/** /**
* @return int|string int, or the string numeric representation of a long in 32-bit systems * @return int|string int, or the string numeric representation of a long in 32-bit systems
@ -216,7 +216,7 @@ interface LevelProvider{
/** /**
* @return Level * @return Level
*/ */
public function getLevel(); public function getLevel() : Level;
public function close(); public function close();

View File

@ -25,7 +25,6 @@ namespace pocketmine\level\format\io\leveldb;
use pocketmine\entity\Entity; use pocketmine\entity\Entity;
use pocketmine\level\format\Chunk; use pocketmine\level\format\Chunk;
use pocketmine\level\format\ChunkException;
use pocketmine\level\format\io\BaseLevelProvider; use pocketmine\level\format\io\BaseLevelProvider;
use pocketmine\level\format\io\ChunkUtils; use pocketmine\level\format\io\ChunkUtils;
use pocketmine\level\format\io\exception\UnsupportedChunkFormatException; use pocketmine\level\format\io\exception\UnsupportedChunkFormatException;
@ -576,7 +575,7 @@ class LevelDB extends BaseLevelProvider{
/** /**
* @return \LevelDB * @return \LevelDB
*/ */
public function getDatabase(){ public function getDatabase() : \LevelDB{
return $this->db; return $this->db;
} }

View File

@ -422,7 +422,7 @@ class McRegion extends BaseLevelProvider{
* *
* @return Chunk * @return Chunk
*/ */
public function getEmptyChunk(int $chunkX, int $chunkZ){ public function getEmptyChunk(int $chunkX, int $chunkZ) : Chunk{
return Chunk::getEmptyChunk($chunkX, $chunkZ); return Chunk::getEmptyChunk($chunkX, $chunkZ);
} }

View File

@ -50,11 +50,11 @@ class Flat extends Generator{
private $populators = []; private $populators = [];
private $structure, $chunks, $options, $floorLevel, $preset; private $structure, $chunks, $options, $floorLevel, $preset;
public function getSettings(){ public function getSettings() : array{
return $this->options; return $this->options;
} }
public function getName(){ public function getName() : string{
return "flat"; return "flat";
} }
@ -155,7 +155,7 @@ class Flat extends Generator{
*/ */
} }
public function generateChunk($chunkX, $chunkZ){ public function generateChunk(int $chunkX, int $chunkZ){
if($this->chunk === null){ if($this->chunk === null){
if(isset($this->options["preset"]) and $this->options["preset"] != ""){ if(isset($this->options["preset"]) and $this->options["preset"] != ""){
$this->parsePreset($this->options["preset"], $chunkX, $chunkZ); $this->parsePreset($this->options["preset"], $chunkX, $chunkZ);
@ -169,7 +169,7 @@ class Flat extends Generator{
$this->level->setChunk($chunkX, $chunkZ, $chunk); $this->level->setChunk($chunkX, $chunkZ, $chunk);
} }
public function populateChunk($chunkX, $chunkZ){ public function populateChunk(int $chunkX, int $chunkZ){
$this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed()); $this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed());
foreach($this->populators as $populator){ foreach($this->populators as $populator){
$populator->populate($this->level, $chunkX, $chunkZ, $this->random); $populator->populate($this->level, $chunkX, $chunkZ, $this->random);
@ -177,7 +177,7 @@ class Flat extends Generator{
} }
public function getSpawn(){ public function getSpawn() : Vector3{
return new Vector3(128, $this->floorLevel, 128); return new Vector3(128, $this->floorLevel, 128);
} }
} }

View File

@ -29,12 +29,13 @@ namespace pocketmine\level\generator;
use pocketmine\level\ChunkManager; use pocketmine\level\ChunkManager;
use pocketmine\level\generator\noise\Noise; use pocketmine\level\generator\noise\Noise;
use pocketmine\level\generator\normal\Normal; use pocketmine\level\generator\normal\Normal;
use pocketmine\math\Vector3;
use pocketmine\utils\Random; use pocketmine\utils\Random;
abstract class Generator{ abstract class Generator{
private static $list = []; private static $list = [];
public static function addGenerator($object, $name){ public static function addGenerator($object, $name) : bool{
if(is_subclass_of($object, Generator::class) and !isset(Generator::$list[$name = strtolower($name)])){ if(is_subclass_of($object, Generator::class) and !isset(Generator::$list[$name = strtolower($name)])){
Generator::$list[$name] = $object; Generator::$list[$name] = $object;
@ -47,7 +48,7 @@ abstract class Generator{
/** /**
* @return string[] * @return string[]
*/ */
public static function getGeneratorList(){ public static function getGeneratorList() : array{
return array_keys(Generator::$list); return array_keys(Generator::$list);
} }
@ -76,17 +77,15 @@ abstract class Generator{
/** /**
* @param Noise $noise * @param Noise $noise
* @param int $xSize * @param int $xSize
* @param int $samplingRate * @param int $samplingRate
* @param int $x * @param int $x
* @param int $y * @param int $y
* @param int $z * @param int $z
* *
* @return \SplFixedArray * @return \SplFixedArray
*
* @throws \InvalidArgumentCountException
*/ */
public static function getFastNoise1D(Noise $noise, $xSize, $samplingRate, $x, $y, $z){ public static function getFastNoise1D(Noise $noise, int $xSize, int $samplingRate, int $x, int $y, int $z) : \SplFixedArray{
if($samplingRate === 0){ if($samplingRate === 0){
throw new \InvalidArgumentException("samplingRate cannot be 0"); throw new \InvalidArgumentException("samplingRate cannot be 0");
} }
@ -112,19 +111,16 @@ abstract class Generator{
/** /**
* @param Noise $noise * @param Noise $noise
* @param int $xSize * @param int $xSize
* @param int $zSize * @param int $zSize
* @param int $samplingRate * @param int $samplingRate
* @param int $x * @param int $x
* @param int $y * @param int $y
* @param int $z * @param int $z
* *
* @return \SplFixedArray * @return \SplFixedArray
*
* @throws \InvalidArgumentException
* @throws \InvalidArgumentCountException
*/ */
public static function getFastNoise2D(Noise $noise, $xSize, $zSize, $samplingRate, $x, $y, $z){ public static function getFastNoise2D(Noise $noise, int $xSize, int $zSize, int $samplingRate, int $x, int $y, int $z) : \SplFixedArray{
assert($samplingRate !== 0, new \InvalidArgumentException("samplingRate cannot be 0")); assert($samplingRate !== 0, new \InvalidArgumentException("samplingRate cannot be 0"));
assert($xSize % $samplingRate === 0, new \InvalidArgumentCountException("xSize % samplingRate must return 0")); assert($xSize % $samplingRate === 0, new \InvalidArgumentCountException("xSize % samplingRate must return 0"));
@ -162,22 +158,19 @@ abstract class Generator{
/** /**
* @param Noise $noise * @param Noise $noise
* @param int $xSize * @param int $xSize
* @param int $ySize * @param int $ySize
* @param int $zSize * @param int $zSize
* @param int $xSamplingRate * @param int $xSamplingRate
* @param int $ySamplingRate * @param int $ySamplingRate
* @param int $zSamplingRate * @param int $zSamplingRate
* @param int $x * @param int $x
* @param int $y * @param int $y
* @param int $z * @param int $z
* *
* @return \SplFixedArray * @return array
*
* @throws \InvalidArgumentException
* @throws \InvalidArgumentCountException
*/ */
public static function getFastNoise3D(Noise $noise, $xSize, $ySize, $zSize, $xSamplingRate, $ySamplingRate, $zSamplingRate, $x, $y, $z){ public static function getFastNoise3D(Noise $noise, int $xSize, int $ySize, int $zSize, int $xSamplingRate, int $ySamplingRate, int $zSamplingRate, int $x, int $y, int $z) : array{
assert($xSamplingRate !== 0, new \InvalidArgumentException("xSamplingRate cannot be 0")); assert($xSamplingRate !== 0, new \InvalidArgumentException("xSamplingRate cannot be 0"));
assert($zSamplingRate !== 0, new \InvalidArgumentException("zSamplingRate cannot be 0")); assert($zSamplingRate !== 0, new \InvalidArgumentException("zSamplingRate cannot be 0"));
@ -239,13 +232,13 @@ abstract class Generator{
abstract public function init(ChunkManager $level, Random $random); abstract public function init(ChunkManager $level, Random $random);
abstract public function generateChunk($chunkX, $chunkZ); abstract public function generateChunk(int $chunkX, int $chunkZ);
abstract public function populateChunk($chunkX, $chunkZ); abstract public function populateChunk(int $chunkX, int $chunkZ);
abstract public function getSettings(); abstract public function getSettings() : array;
abstract public function getName(); abstract public function getName() : string;
abstract public function getSpawn(); abstract public function getSpawn() : Vector3;
} }

View File

@ -70,7 +70,9 @@ abstract class Biome{
/** @var Populator[] */ /** @var Populator[] */
private $populators = []; private $populators = [];
/** @var int */
private $minElevation; private $minElevation;
/** @var int */
private $maxElevation; private $maxElevation;
private $groundCover = []; private $groundCover = [];
@ -78,9 +80,9 @@ abstract class Biome{
protected $rainfall = 0.5; protected $rainfall = 0.5;
protected $temperature = 0.5; protected $temperature = 0.5;
protected static function register($id, Biome $biome){ protected static function register(int $id, Biome $biome){
self::$biomes[(int) $id] = $biome; self::$biomes[$id] = $biome;
$biome->setId((int) $id); $biome->setId($id);
} }
public static function init(){ public static function init(){
@ -102,11 +104,11 @@ abstract class Biome{
} }
/** /**
* @param $id * @param int $id
* *
* @return Biome * @return Biome
*/ */
public static function getBiome($id){ public static function getBiome(int $id) : Biome{
return self::$biomes[$id] ?? self::$biomes[self::OCEAN]; return self::$biomes[$id] ?? self::$biomes[self::OCEAN];
} }
@ -118,38 +120,47 @@ abstract class Biome{
$this->populators[] = $populator; $this->populators[] = $populator;
} }
public function populateChunk(ChunkManager $level, $chunkX, $chunkZ, Random $random){ /**
* @param ChunkManager $level
* @param int $chunkX
* @param int $chunkZ
* @param Random $random
*/
public function populateChunk(ChunkManager $level, int $chunkX, int $chunkZ, Random $random){
foreach($this->populators as $populator){ foreach($this->populators as $populator){
$populator->populate($level, $chunkX, $chunkZ, $random); $populator->populate($level, $chunkX, $chunkZ, $random);
} }
} }
public function getPopulators(){ /**
* @return Populator[]
*/
public function getPopulators() : array{
return $this->populators; return $this->populators;
} }
public function setId($id){ public function setId(int $id){
if(!$this->registered){ if(!$this->registered){
$this->registered = true; $this->registered = true;
$this->id = $id; $this->id = $id;
} }
} }
public function getId(){ public function getId() : int{
return $this->id; return $this->id;
} }
abstract public function getName(); abstract public function getName() : string;
public function getMinElevation(){ public function getMinElevation() : int{
return $this->minElevation; return $this->minElevation;
} }
public function getMaxElevation(){ public function getMaxElevation() : int{
return $this->maxElevation; return $this->maxElevation;
} }
public function setElevation($min, $max){ public function setElevation(int $min, int $max){
$this->minElevation = $min; $this->minElevation = $min;
$this->maxElevation = $max; $this->maxElevation = $max;
} }
@ -157,7 +168,7 @@ abstract class Biome{
/** /**
* @return Block[] * @return Block[]
*/ */
public function getGroundCover(){ public function getGroundCover() : array{
return $this->groundCover; return $this->groundCover;
} }
@ -168,11 +179,11 @@ abstract class Biome{
$this->groundCover = $covers; $this->groundCover = $covers;
} }
public function getTemperature(){ public function getTemperature() : float{
return $this->temperature; return $this->temperature;
} }
public function getRainfall(){ public function getRainfall() : float{
return $this->rainfall; return $this->rainfall;
} }
} }

View File

@ -78,7 +78,7 @@ class BiomeSelector{
* *
* @return Biome * @return Biome
*/ */
public function pickBiome($x, $z){ public function pickBiome($x, $z) : Biome{
$temperature = (int) ($this->getTemperature($x, $z) * 63); $temperature = (int) ($this->getTemperature($x, $z) * 63);
$rainfall = (int) ($this->getRainfall($x, $z) * 63); $rainfall = (int) ($this->getRainfall($x, $z) * 63);

View File

@ -27,7 +27,7 @@ use pocketmine\level\generator\biome\Biome;
class HellBiome extends Biome{ class HellBiome extends Biome{
public function getName(){ public function getName() : string{
return "Hell"; return "Hell";
} }
} }

View File

@ -81,11 +81,11 @@ class Nether extends Generator{
} }
} }
public function getName(){ public function getName() : string{
return "nether"; return "nether";
} }
public function getSettings(){ public function getSettings() : array{
return []; return [];
} }
@ -110,7 +110,7 @@ class Nether extends Generator{
$this->populators[] = $ores;*/ $this->populators[] = $ores;*/
} }
public function generateChunk($chunkX, $chunkZ){ public function generateChunk(int $chunkX, int $chunkZ){
$this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed()); $this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed());
$noise = Generator::getFastNoise3D($this->noiseBase, 16, 128, 16, 4, 8, 4, $chunkX * 16, 0, $chunkZ * 16); $noise = Generator::getFastNoise3D($this->noiseBase, 16, 128, 16, 4, 8, 4, $chunkX * 16, 0, $chunkZ * 16);
@ -145,7 +145,7 @@ class Nether extends Generator{
} }
} }
public function populateChunk($chunkX, $chunkZ){ public function populateChunk(int $chunkX, int $chunkZ){
$this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed()); $this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed());
foreach($this->populators as $populator){ foreach($this->populators as $populator){
$populator->populate($this->level, $chunkX, $chunkZ, $this->random); $populator->populate($this->level, $chunkX, $chunkZ, $this->random);
@ -156,7 +156,7 @@ class Nether extends Generator{
$biome->populateChunk($this->level, $chunkX, $chunkZ, $this->random); $biome->populateChunk($this->level, $chunkX, $chunkZ, $this->random);
} }
public function getSpawn(){ public function getSpawn() : Vector3{
return new Vector3(127.5, 128, 127.5); return new Vector3(127.5, 128, 127.5);
} }

View File

@ -36,7 +36,7 @@ abstract class Noise{
protected $persistence; protected $persistence;
protected $expansion; protected $expansion;
public static function floor($x){ public static function floor($x) : int{
return $x >= 0 ? (int) $x : (int) ($x - 1); return $x >= 0 ? (int) $x : (int) ($x - 1);
} }

View File

@ -90,15 +90,15 @@ class Normal extends Generator{
} }
} }
public function getName(){ public function getName() : string{
return "normal"; return "normal";
} }
public function getSettings(){ public function getSettings() : array{
return []; return [];
} }
public function pickBiome($x, $z){ public function pickBiome(int $x, int $z){
$hash = $x * 2345803 ^ $z * 9236449 ^ $this->level->getSeed(); $hash = $x * 2345803 ^ $z * 9236449 ^ $this->level->getSeed();
$hash *= $hash + 223; $hash *= $hash + 223;
$xNoise = $hash >> 20 & 3; $xNoise = $hash >> 20 & 3;
@ -189,7 +189,7 @@ class Normal extends Generator{
$this->populators[] = $ores; $this->populators[] = $ores;
} }
public function generateChunk($chunkX, $chunkZ){ public function generateChunk(int $chunkX, int $chunkZ){
$this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed()); $this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed());
$noise = Generator::getFastNoise3D($this->noiseBase, 16, 128, 16, 4, 8, 4, $chunkX * 16, 0, $chunkZ * 16); $noise = Generator::getFastNoise3D($this->noiseBase, 16, 128, 16, 4, 8, 4, $chunkX * 16, 0, $chunkZ * 16);
@ -256,7 +256,7 @@ class Normal extends Generator{
} }
} }
public function populateChunk($chunkX, $chunkZ){ public function populateChunk(int $chunkX, int $chunkZ){
$this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed()); $this->random->setSeed(0xdeadbeef ^ ($chunkX << 8) ^ $chunkZ ^ $this->level->getSeed());
foreach($this->populators as $populator){ foreach($this->populators as $populator){
$populator->populate($this->level, $chunkX, $chunkZ, $this->random); $populator->populate($this->level, $chunkX, $chunkZ, $this->random);
@ -267,7 +267,7 @@ class Normal extends Generator{
$biome->populateChunk($this->level, $chunkX, $chunkZ, $this->random); $biome->populateChunk($this->level, $chunkX, $chunkZ, $this->random);
} }
public function getSpawn(){ public function getSpawn() : Vector3{
return new Vector3(127.5, 128, 127.5); return new Vector3(127.5, 128, 127.5);
} }

View File

@ -34,7 +34,7 @@ class DesertBiome extends SandyBiome{
$this->rainfall = 0; $this->rainfall = 0;
} }
public function getName(){ public function getName() : string{
return "Desert"; return "Desert";
} }
} }

View File

@ -59,7 +59,7 @@ class ForestBiome extends GrassyBiome{
} }
} }
public function getName(){ public function getName() : string{
return $this->type === self::TYPE_BIRCH ? "Birch Forest" : "Forest"; return $this->type === self::TYPE_BIRCH ? "Birch Forest" : "Forest";
} }
} }

View File

@ -41,7 +41,7 @@ class IcePlainsBiome extends SnowyBiome{
$this->rainfall = 0.8; $this->rainfall = 0.8;
} }
public function getName(){ public function getName() : string{
return "Ice Plains"; return "Ice Plains";
} }
} }

View File

@ -48,7 +48,7 @@ class MountainsBiome extends GrassyBiome{
$this->rainfall = 0.5; $this->rainfall = 0.5;
} }
public function getName(){ public function getName() : string{
return "Mountains"; return "Mountains";
} }
} }

View File

@ -41,7 +41,7 @@ class OceanBiome extends GrassyBiome{
$this->rainfall = 0.5; $this->rainfall = 0.5;
} }
public function getName(){ public function getName() : string{
return "Ocean"; return "Ocean";
} }
} }

View File

@ -41,7 +41,7 @@ class PlainBiome extends GrassyBiome{
$this->rainfall = 0.4; $this->rainfall = 0.4;
} }
public function getName(){ public function getName() : string{
return "Plains"; return "Plains";
} }
} }

View File

@ -41,7 +41,7 @@ class RiverBiome extends GrassyBiome{
$this->rainfall = 0.7; $this->rainfall = 0.7;
} }
public function getName(){ public function getName() : string{
return "River"; return "River";
} }
} }

View File

@ -32,7 +32,7 @@ class SmallMountainsBiome extends MountainsBiome{
$this->setElevation(63, 97); $this->setElevation(63, 97);
} }
public function getName(){ public function getName() : string{
return "Small Mountains"; return "Small Mountains";
} }
} }

View File

@ -34,7 +34,7 @@ class SwampBiome extends GrassyBiome{
$this->rainfall = 0.9; $this->rainfall = 0.9;
} }
public function getName(){ public function getName() : string{
return "Swamp"; return "Swamp";
} }
} }

View File

@ -47,7 +47,7 @@ class TaigaBiome extends SnowyBiome{
$this->rainfall = 0.8; $this->rainfall = 0.8;
} }
public function getName(){ public function getName() : string{
return "Taiga"; return "Taiga";
} }
} }

View File

@ -41,7 +41,7 @@ class BigTree extends Tree{
private $addLogVines = false; private $addLogVines = false;
private $addCocoaPlants = false; private $addCocoaPlants = false;
public function canPlaceObject(ChunkManager $level, $x, $y, $z, Random $random){ public function canPlaceObject(ChunkManager $level, int $x, int $y, int $z, Random $random) : bool{
return false; return false;
} }

View File

@ -37,7 +37,7 @@ class Pond{
$this->random = $random; $this->random = $random;
} }
public function canPlaceObject(ChunkManager $level, Vector3 $pos){ public function canPlaceObject(ChunkManager $level, Vector3 $pos) : bool{
return false; return false;
} }

View File

@ -75,7 +75,7 @@ abstract class Tree{
} }
public function canPlaceObject(ChunkManager $level, $x, $y, $z, Random $random){ public function canPlaceObject(ChunkManager $level, int $x, int $y, int $z, Random $random) : bool{
$radiusToCheck = 0; $radiusToCheck = 0;
for($yy = 0; $yy < $this->treeHeight + 3; ++$yy){ for($yy = 0; $yy < $this->treeHeight + 3; ++$yy){
if($yy == 1 or $yy === $this->treeHeight){ if($yy == 1 or $yy === $this->treeHeight){

View File

@ -54,7 +54,7 @@ class AxisAlignedBB{
return $this; return $this;
} }
public function addCoord($x, $y, $z){ public function addCoord($x, $y, $z) : AxisAlignedBB{
$minX = $this->minX; $minX = $this->minX;
$minY = $this->minY; $minY = $this->minY;
$minZ = $this->minZ; $minZ = $this->minZ;
@ -83,7 +83,7 @@ class AxisAlignedBB{
return new AxisAlignedBB($minX, $minY, $minZ, $maxX, $maxY, $maxZ); return new AxisAlignedBB($minX, $minY, $minZ, $maxX, $maxY, $maxZ);
} }
public function grow($x, $y, $z){ public function grow($x, $y, $z) : AxisAlignedBB{
return new AxisAlignedBB($this->minX - $x, $this->minY - $y, $this->minZ - $z, $this->maxX + $x, $this->maxY + $y, $this->maxZ + $z); return new AxisAlignedBB($this->minX - $x, $this->minY - $y, $this->minZ - $z, $this->maxX + $x, $this->maxY + $y, $this->maxZ + $z);
} }
@ -109,7 +109,7 @@ class AxisAlignedBB{
return $this; return $this;
} }
public function shrink($x, $y, $z){ public function shrink($x, $y, $z) : AxisAlignedBB{
return new AxisAlignedBB($this->minX + $x, $this->minY + $y, $this->minZ + $z, $this->maxX - $x, $this->maxY - $y, $this->maxZ - $z); return new AxisAlignedBB($this->minX + $x, $this->minY + $y, $this->minZ + $z, $this->maxX - $x, $this->maxY - $y, $this->maxZ - $z);
} }
@ -134,7 +134,7 @@ class AxisAlignedBB{
return $this; return $this;
} }
public function getOffsetBoundingBox($x, $y, $z){ public function getOffsetBoundingBox($x, $y, $z) : AxisAlignedBB{
return new AxisAlignedBB($this->minX + $x, $this->minY + $y, $this->minZ + $z, $this->maxX + $x, $this->maxY + $y, $this->maxZ + $z); return new AxisAlignedBB($this->minX + $x, $this->minY + $y, $this->minZ + $z, $this->maxX + $x, $this->maxY + $y, $this->maxZ + $z);
} }
@ -207,7 +207,7 @@ class AxisAlignedBB{
return $z; return $z;
} }
public function intersectsWith(AxisAlignedBB $bb){ public function intersectsWith(AxisAlignedBB $bb) : bool{
if($bb->maxX > $this->minX and $bb->minX < $this->maxX){ if($bb->maxX > $this->minX and $bb->minX < $this->maxX){
if($bb->maxY > $this->minY and $bb->minY < $this->maxY){ if($bb->maxY > $this->minY and $bb->minY < $this->maxY){
return $bb->maxZ > $this->minZ and $bb->minZ < $this->maxZ; return $bb->maxZ > $this->minZ and $bb->minZ < $this->maxZ;
@ -217,7 +217,7 @@ class AxisAlignedBB{
return false; return false;
} }
public function isVectorInside(Vector3 $vector){ public function isVectorInside(Vector3 $vector) : bool{
if($vector->x <= $this->minX or $vector->x >= $this->maxX){ if($vector->x <= $this->minX or $vector->x >= $this->maxX){
return false; return false;
} }
@ -232,18 +232,24 @@ class AxisAlignedBB{
return ($this->maxX - $this->minX + $this->maxY - $this->minY + $this->maxZ - $this->minZ) / 3; return ($this->maxX - $this->minX + $this->maxY - $this->minY + $this->maxZ - $this->minZ) / 3;
} }
public function isVectorInYZ(Vector3 $vector){ public function isVectorInYZ(Vector3 $vector) : bool{
return $vector->y >= $this->minY and $vector->y <= $this->maxY and $vector->z >= $this->minZ and $vector->z <= $this->maxZ; return $vector->y >= $this->minY and $vector->y <= $this->maxY and $vector->z >= $this->minZ and $vector->z <= $this->maxZ;
} }
public function isVectorInXZ(Vector3 $vector){ public function isVectorInXZ(Vector3 $vector) : bool{
return $vector->x >= $this->minX and $vector->x <= $this->maxX and $vector->z >= $this->minZ and $vector->z <= $this->maxZ; return $vector->x >= $this->minX and $vector->x <= $this->maxX and $vector->z >= $this->minZ and $vector->z <= $this->maxZ;
} }
public function isVectorInXY(Vector3 $vector){ public function isVectorInXY(Vector3 $vector) : bool{
return $vector->x >= $this->minX and $vector->x <= $this->maxX and $vector->y >= $this->minY and $vector->y <= $this->maxY; return $vector->x >= $this->minX and $vector->x <= $this->maxX and $vector->y >= $this->minY and $vector->y <= $this->maxY;
} }
/**
* @param Vector3 $pos1
* @param Vector3 $pos2
*
* @return MovingObjectPosition|null
*/
public function calculateIntercept(Vector3 $pos1, Vector3 $pos2){ public function calculateIntercept(Vector3 $pos1, Vector3 $pos2){
$v1 = $pos1->getIntermediateWithXValue($pos2, $this->minX); $v1 = $pos1->getIntermediateWithXValue($pos2, $this->minX);
$v2 = $pos1->getIntermediateWithXValue($pos2, $this->maxX); $v2 = $pos1->getIntermediateWithXValue($pos2, $this->maxX);

View File

@ -29,12 +29,12 @@ namespace pocketmine\math;
abstract class Math{ abstract class Math{
public static function floorFloat($n){ public static function floorFloat($n) : int{
$i = (int) $n; $i = (int) $n;
return $n >= $i ? $i : $i - 1; return $n >= $i ? $i : $i - 1;
} }
public static function ceilFloat($n){ public static function ceilFloat($n) : int{
$i = (int) ($n + 1); $i = (int) ($n + 1);
return $n >= $i ? $i : $i - 1; return $n >= $i ? $i : $i - 1;
} }

View File

@ -234,7 +234,7 @@ class Vector3{
); );
} }
public function equals(Vector3 $v){ public function equals(Vector3 $v) : bool{
return $this->x == $v->x and $this->y == $v->y and $this->z == $v->z; return $this->x == $v->x and $this->y == $v->y and $this->z == $v->z;
} }

View File

@ -35,7 +35,7 @@ class BlockMetadataStore extends MetadataStore{
$this->owningLevel = $owningLevel; $this->owningLevel = $owningLevel;
} }
public function disambiguate(Metadatable $block, $metadataKey){ public function disambiguate(Metadatable $block, string $metadataKey) : string{
if(!($block instanceof Block)){ if(!($block instanceof Block)){
throw new \InvalidArgumentException("Argument must be a Block instance"); throw new \InvalidArgumentException("Argument must be a Block instance");
} }

View File

@ -27,7 +27,7 @@ use pocketmine\entity\Entity;
class EntityMetadataStore extends MetadataStore{ class EntityMetadataStore extends MetadataStore{
public function disambiguate(Metadatable $entity, $metadataKey){ public function disambiguate(Metadatable $entity, string $metadataKey) : string{
if(!($entity instanceof Entity)){ if(!($entity instanceof Entity)){
throw new \InvalidArgumentException("Argument must be an Entity instance"); throw new \InvalidArgumentException("Argument must be an Entity instance");
} }

View File

@ -27,7 +27,7 @@ use pocketmine\level\Level;
class LevelMetadataStore extends MetadataStore{ class LevelMetadataStore extends MetadataStore{
public function disambiguate(Metadatable $level, $metadataKey){ public function disambiguate(Metadatable $level, string $metadataKey) : string{
if(!($level instanceof Level)){ if(!($level instanceof Level)){
throw new \InvalidArgumentException("Argument must be a Level instance"); throw new \InvalidArgumentException("Argument must be a Level instance");
} }

View File

@ -138,5 +138,5 @@ abstract class MetadataStore{
* *
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
*/ */
abstract public function disambiguate(Metadatable $subject, $metadataKey); abstract public function disambiguate(Metadatable $subject, string $metadataKey) : string;
} }

View File

@ -27,7 +27,7 @@ use pocketmine\IPlayer;
class PlayerMetadataStore extends MetadataStore{ class PlayerMetadataStore extends MetadataStore{
public function disambiguate(Metadatable $player, $metadataKey){ public function disambiguate(Metadatable $player, string $metadataKey) : string{
if(!($player instanceof IPlayer)){ if(!($player instanceof IPlayer)){
throw new \InvalidArgumentException("Argument must be an IPlayer instance"); throw new \InvalidArgumentException("Argument must be an IPlayer instance");
} }

View File

@ -237,7 +237,7 @@ class JsonNBTParser{
* @return string * @return string
* @throws \Exception * @throws \Exception
*/ */
private static function readKey(string $data, int &$offset){ private static function readKey(string $data, int &$offset) : string{
$key = ""; $key = "";
$len = strlen($data); $len = strlen($data);

View File

@ -109,7 +109,7 @@ class NBT{
} }
} }
public static function matchList(ListTag $tag1, ListTag $tag2){ public static function matchList(ListTag $tag1, ListTag $tag2) : bool{
if($tag1->getName() !== $tag2->getName() or $tag1->getCount() !== $tag2->getCount()){ if($tag1->getName() !== $tag2->getName() or $tag1->getCount() !== $tag2->getCount()){
return false; return false;
} }
@ -141,7 +141,7 @@ class NBT{
return true; return true;
} }
public static function matchTree(CompoundTag $tag1, CompoundTag $tag2){ public static function matchTree(CompoundTag $tag1, CompoundTag $tag2) : bool{
if($tag1->getName() !== $tag2->getName() or $tag1->getCount() !== $tag2->getCount()){ if($tag1->getName() !== $tag2->getName() or $tag1->getCount() !== $tag2->getCount()){
return false; return false;
} }
@ -188,7 +188,7 @@ class NBT{
$this->buffer .= $v; $this->buffer .= $v;
} }
public function feof(){ public function feof() : bool{
return !isset($this->buffer{$this->offset}); return !isset($this->buffer{$this->offset});
} }
@ -269,11 +269,11 @@ class NBT{
$tag->write($this, $network); $tag->write($this, $network);
} }
public function getByte(){ public function getByte() : int{
return Binary::readByte($this->get(1)); return Binary::readByte($this->get(1));
} }
public function getSignedByte(){ public function getSignedByte() : int{
return Binary::readSignedByte($this->get(1)); return Binary::readSignedByte($this->get(1));
} }
@ -281,7 +281,7 @@ class NBT{
$this->buffer .= Binary::writeByte($v); $this->buffer .= Binary::writeByte($v);
} }
public function getShort(){ public function getShort() : int{
return $this->endianness === self::BIG_ENDIAN ? Binary::readShort($this->get(2)) : Binary::readLShort($this->get(2)); return $this->endianness === self::BIG_ENDIAN ? Binary::readShort($this->get(2)) : Binary::readLShort($this->get(2));
} }
@ -293,7 +293,7 @@ class NBT{
$this->buffer .= $this->endianness === self::BIG_ENDIAN ? Binary::writeShort($v) : Binary::writeLShort($v); $this->buffer .= $this->endianness === self::BIG_ENDIAN ? Binary::writeShort($v) : Binary::writeLShort($v);
} }
public function getInt(bool $network = false){ public function getInt(bool $network = false) : int{
if($network === true){ if($network === true){
return Binary::readVarInt($this->buffer, $this->offset); return Binary::readVarInt($this->buffer, $this->offset);
} }
@ -308,7 +308,7 @@ class NBT{
} }
} }
public function getLong(){ public function getLong() : int{
return $this->endianness === self::BIG_ENDIAN ? Binary::readLong($this->get(8)) : Binary::readLLong($this->get(8)); return $this->endianness === self::BIG_ENDIAN ? Binary::readLong($this->get(8)) : Binary::readLLong($this->get(8));
} }
@ -316,7 +316,7 @@ class NBT{
$this->buffer .= $this->endianness === self::BIG_ENDIAN ? Binary::writeLong($v) : Binary::writeLLong($v); $this->buffer .= $this->endianness === self::BIG_ENDIAN ? Binary::writeLong($v) : Binary::writeLLong($v);
} }
public function getFloat(){ public function getFloat() : float{
return $this->endianness === self::BIG_ENDIAN ? Binary::readFloat($this->get(4)) : Binary::readLFloat($this->get(4)); return $this->endianness === self::BIG_ENDIAN ? Binary::readFloat($this->get(4)) : Binary::readLFloat($this->get(4));
} }
@ -324,7 +324,7 @@ class NBT{
$this->buffer .= $this->endianness === self::BIG_ENDIAN ? Binary::writeFloat($v) : Binary::writeLFloat($v); $this->buffer .= $this->endianness === self::BIG_ENDIAN ? Binary::writeFloat($v) : Binary::writeLFloat($v);
} }
public function getDouble(){ public function getDouble() : float{
return $this->endianness === self::BIG_ENDIAN ? Binary::readDouble($this->get(8)) : Binary::readLDouble($this->get(8)); return $this->endianness === self::BIG_ENDIAN ? Binary::readDouble($this->get(8)) : Binary::readLDouble($this->get(8));
} }
@ -346,7 +346,7 @@ class NBT{
$this->buffer .= $v; $this->buffer .= $v;
} }
public function getArray(){ public function getArray() : array{
$data = []; $data = [];
self::toArray($data, $this->data); self::toArray($data, $this->data);
return $data; return $data;

View File

@ -42,7 +42,7 @@ interface SourceInterface{
* @param bool $needACK * @param bool $needACK
* @param bool $immediate * @param bool $immediate
* *
* @return int * @return int|null
*/ */
public function putPacket(Player $player, DataPacket $packet, $needACK = false, $immediate = true); public function putPacket(Player $player, DataPacket $packet, $needACK = false, $immediate = true);

View File

@ -29,14 +29,15 @@ namespace pocketmine\network\upnp;
use pocketmine\utils\Utils; use pocketmine\utils\Utils;
abstract class UPnP{ abstract class UPnP{
public static function PortForward($port){
public static function PortForward(int $port) : bool{
if(Utils::$online === false){ if(Utils::$online === false){
return false; return false;
} }
if(Utils::getOS() != "win" or !class_exists("COM")){ if(Utils::getOS() != "win" or !class_exists("COM")){
return false; return false;
} }
$port = (int) $port;
$myLocalIP = gethostbyname(trim(`hostname`)); $myLocalIP = gethostbyname(trim(`hostname`));
try{ try{
/** @noinspection PhpUndefinedClassInspection */ /** @noinspection PhpUndefinedClassInspection */
@ -54,14 +55,14 @@ abstract class UPnP{
return true; return true;
} }
public static function RemovePortForward($port){ public static function RemovePortForward(int $port) : bool{
if(Utils::$online === false){ if(Utils::$online === false){
return false; return false;
} }
if(Utils::getOS() != "win" or !class_exists("COM")){ if(Utils::getOS() != "win" or !class_exists("COM")){
return false; return false;
} }
$port = (int) $port;
try{ try{
/** @noinspection PhpUndefinedClassInspection */ /** @noinspection PhpUndefinedClassInspection */
$com = new \COM("HNetCfg.NATUPnP") or false; $com = new \COM("HNetCfg.NATUPnP") or false;

View File

@ -28,24 +28,27 @@ use pocketmine\utils\MainLogger;
class BanEntry{ class BanEntry{
public static $format = "Y-m-d H:i:s O"; public static $format = "Y-m-d H:i:s O";
/** @var string */
private $name; private $name;
/** @var \DateTime */ /** @var \DateTime */
private $creationDate = null; private $creationDate = null;
/** @var string */
private $source = "(Unknown)"; private $source = "(Unknown)";
/** @var \DateTime */ /** @var \DateTime */
private $expirationDate = null; private $expirationDate = null;
/** @var string */
private $reason = "Banned by an operator."; private $reason = "Banned by an operator.";
public function __construct($name){ public function __construct(string $name){
$this->name = strtolower($name); $this->name = strtolower($name);
$this->creationDate = new \DateTime(); $this->creationDate = new \DateTime();
} }
public function getName(){ public function getName() : string{
return $this->name; return $this->name;
} }
public function getCreated(){ public function getCreated() : \DateTime{
return $this->creationDate; return $this->creationDate;
} }
@ -53,40 +56,40 @@ class BanEntry{
$this->creationDate = $date; $this->creationDate = $date;
} }
public function getSource(){ public function getSource() : string{
return $this->source; return $this->source;
} }
public function setSource($source){ public function setSource(string $source){
$this->source = $source; $this->source = $source;
} }
public function getExpires(){ public function getExpires() : \DateTime{
return $this->expirationDate; return $this->expirationDate;
} }
/** /**
* @param \DateTime $date * @param \DateTime $date
*/ */
public function setExpires($date){ public function setExpires(\DateTime $date){
$this->expirationDate = $date; $this->expirationDate = $date;
} }
public function hasExpired(){ public function hasExpired() : bool{
$now = new \DateTime(); $now = new \DateTime();
return $this->expirationDate === null ? false : $this->expirationDate < $now; return $this->expirationDate === null ? false : $this->expirationDate < $now;
} }
public function getReason(){ public function getReason() : string{
return $this->reason; return $this->reason;
} }
public function setReason($reason){ public function setReason(string $reason){
$this->reason = $reason; $this->reason = $reason;
} }
public function getString(){ public function getString() : string{
$str = ""; $str = "";
$str .= $this->getName(); $str .= $this->getName();
$str .= "|"; $str .= "|";

View File

@ -40,28 +40,28 @@ class BanList{
/** /**
* @param string $file * @param string $file
*/ */
public function __construct($file){ public function __construct(string $file){
$this->file = $file; $this->file = $file;
} }
/** /**
* @return bool * @return bool
*/ */
public function isEnabled(){ public function isEnabled() : bool{
return $this->enabled === true; return $this->enabled === true;
} }
/** /**
* @param bool $flag * @param bool $flag
*/ */
public function setEnabled($flag){ public function setEnabled(bool $flag){
$this->enabled = (bool) $flag; $this->enabled = $flag;
} }
/** /**
* @return BanEntry[] * @return BanEntry[]
*/ */
public function getEntries(){ public function getEntries() : array{
$this->removeExpired(); $this->removeExpired();
return $this->list; return $this->list;
@ -72,7 +72,7 @@ class BanList{
* *
* @return bool * @return bool
*/ */
public function isBanned($name){ public function isBanned(string $name) : bool{
$name = strtolower($name); $name = strtolower($name);
if(!$this->isEnabled()){ if(!$this->isEnabled()){
return false; return false;
@ -99,7 +99,7 @@ class BanList{
* *
* @return BanEntry * @return BanEntry
*/ */
public function addBan($target, $reason = null, $expires = null, $source = null){ public function addBan(string $target, string $reason = null, \DateTime $expires = null, string $source = null) : BanEntry{
$entry = new BanEntry($target); $entry = new BanEntry($target);
$entry->setSource($source != null ? $source : $entry->getSource()); $entry->setSource($source != null ? $source : $entry->getSource());
$entry->setExpires($expires); $entry->setExpires($expires);
@ -114,7 +114,7 @@ class BanList{
/** /**
* @param string $name * @param string $name
*/ */
public function remove($name){ public function remove(string $name){
$name = strtolower($name); $name = strtolower($name);
if(isset($this->list[$name])){ if(isset($this->list[$name])){
unset($this->list[$name]); unset($this->list[$name]);
@ -148,7 +148,10 @@ class BanList{
} }
} }
public function save($flag = true){ /**
* @param bool $flag
*/
public function save(bool $flag = true){
$this->removeExpired(); $this->removeExpired();
$fp = @fopen($this->file, "w"); $fp = @fopen($this->file, "w");
if(is_resource($fp)){ if(is_resource($fp)){

View File

@ -34,7 +34,7 @@ abstract class DefaultPermissions{
* *
* @return Permission * @return Permission
*/ */
public static function registerPermission(Permission $perm, Permission $parent = null){ public static function registerPermission(Permission $perm, Permission $parent = null) : Permission{
if($parent instanceof Permission){ if($parent instanceof Permission){
$parent->getChildren()[$perm->getName()] = true; $parent->getChildren()[$perm->getName()] = true;

View File

@ -34,16 +34,16 @@ interface Permissible extends ServerOperator{
* *
* @return bool * @return bool
*/ */
public function isPermissionSet($name); public function isPermissionSet($name) : bool;
/** /**
* Returns the permission value if overridden, or the default value if not * Returns the permission value if overridden, or the default value if not
* *
* @param string|Permission $name * @param string|Permission $name
* *
* @return mixed * @return bool
*/ */
public function hasPermission($name); public function hasPermission($name) : bool;
/** /**
* @param Plugin $plugin * @param Plugin $plugin
@ -68,8 +68,8 @@ interface Permissible extends ServerOperator{
public function recalculatePermissions(); public function recalculatePermissions();
/** /**
* @return Permission[] * @return PermissionAttachmentInfo[]
*/ */
public function getEffectivePermissions(); public function getEffectivePermissions() : array;
} }

View File

@ -63,7 +63,7 @@ class PermissibleBase implements Permissible{
/** /**
* @return bool * @return bool
*/ */
public function isOp(){ public function isOp() : bool{
if($this->opable === null){ if($this->opable === null){
return false; return false;
}else{ }else{
@ -76,7 +76,7 @@ class PermissibleBase implements Permissible{
* *
* @throws \Exception * @throws \Exception
*/ */
public function setOp($value){ public function setOp(bool $value){
if($this->opable === null){ if($this->opable === null){
throw new \LogicException("Cannot change op value as no ServerOperator is set"); throw new \LogicException("Cannot change op value as no ServerOperator is set");
}else{ }else{
@ -89,7 +89,7 @@ class PermissibleBase implements Permissible{
* *
* @return bool * @return bool
*/ */
public function isPermissionSet($name){ public function isPermissionSet($name) : bool{
return isset($this->permissions[$name instanceof Permission ? $name->getName() : $name]); return isset($this->permissions[$name instanceof Permission ? $name->getName() : $name]);
} }
@ -98,7 +98,7 @@ class PermissibleBase implements Permissible{
* *
* @return bool * @return bool
*/ */
public function hasPermission($name){ public function hasPermission($name) : bool{
if($name instanceof Permission){ if($name instanceof Permission){
$name = $name->getName(); $name = $name->getName();
} }
@ -214,7 +214,7 @@ class PermissibleBase implements Permissible{
/** /**
* @return PermissionAttachmentInfo[] * @return PermissionAttachmentInfo[]
*/ */
public function getEffectivePermissions(){ public function getEffectivePermissions() : array{
return $this->permissions; return $this->permissions;
} }
} }

View File

@ -111,28 +111,28 @@ class Permission{
/** /**
* @return string * @return string
*/ */
public function getName(){ public function getName() : string{
return $this->name; return $this->name;
} }
/** /**
* @return string[] * @return string[]
*/ */
public function &getChildren(){ public function &getChildren() : array{
return $this->children; return $this->children;
} }
/** /**
* @return string * @return string
*/ */
public function getDefault(){ public function getDefault() : string{
return $this->defaultValue; return $this->defaultValue;
} }
/** /**
* @param string $value * @param string $value
*/ */
public function setDefault($value){ public function setDefault(string $value){
if($value !== $this->defaultValue){ if($value !== $this->defaultValue){
$this->defaultValue = $value; $this->defaultValue = $value;
$this->recalculatePermissibles(); $this->recalculatePermissibles();
@ -142,7 +142,7 @@ class Permission{
/** /**
* @return string * @return string
*/ */
public function getDescription(){ public function getDescription() : string{
return $this->description; return $this->description;
} }
@ -156,7 +156,7 @@ class Permission{
/** /**
* @return Permissible[] * @return Permissible[]
*/ */
public function getPermissibles(){ public function getPermissibles() : array{
return Server::getInstance()->getPluginManager()->getPermissionSubscriptions($this->name); return Server::getInstance()->getPluginManager()->getPermissionSubscriptions($this->name);
} }
@ -201,7 +201,7 @@ class Permission{
* *
* @return Permission[] * @return Permission[]
*/ */
public static function loadPermissions(array $data, $default = self::DEFAULT_OP){ public static function loadPermissions(array $data, $default = self::DEFAULT_OP) : array{
$result = []; $result = [];
foreach($data as $key => $entry){ foreach($data as $key => $entry){
$result[] = self::loadPermission($key, $entry, $default, $result); $result[] = self::loadPermission($key, $entry, $default, $result);

View File

@ -30,14 +30,12 @@ interface ServerOperator{
* *
* @return bool * @return bool
*/ */
public function isOp(); public function isOp() : bool;
/** /**
* Sets the operator permission for the current object * Sets the operator permission for the current object
* *
* @param bool $value * @param bool $value
*
* @return void
*/ */
public function setOp($value); public function setOp(bool $value);
} }

View File

@ -48,10 +48,8 @@ class PharPluginLoader implements PluginLoader{
* @param string $file * @param string $file
* *
* @return Plugin|null * @return Plugin|null
*
* @throws \Exception
*/ */
public function loadPlugin($file){ public function loadPlugin(string $file){
if(($description = $this->getPluginDescription($file)) instanceof PluginDescription){ if(($description = $this->getPluginDescription($file)) instanceof PluginDescription){
$this->server->getLogger()->info($this->server->getLanguage()->translateString("pocketmine.plugin.load", [$description->getFullName()])); $this->server->getLogger()->info($this->server->getLanguage()->translateString("pocketmine.plugin.load", [$description->getFullName()]));
$dataFolder = dirname($file) . DIRECTORY_SEPARATOR . $description->getName(); $dataFolder = dirname($file) . DIRECTORY_SEPARATOR . $description->getName();
@ -80,9 +78,9 @@ class PharPluginLoader implements PluginLoader{
* *
* @param string $file * @param string $file
* *
* @return PluginDescription|null * @return null|PluginDescription
*/ */
public function getPluginDescription($file){ public function getPluginDescription(string $file){
$phar = new \Phar($file); $phar = new \Phar($file);
if(isset($phar["plugin.yml"])){ if(isset($phar["plugin.yml"])){
$pluginYml = $phar["plugin.yml"]; $pluginYml = $phar["plugin.yml"];
@ -99,7 +97,7 @@ class PharPluginLoader implements PluginLoader{
* *
* @return string * @return string
*/ */
public function getPluginFilters(){ public function getPluginFilters() : string{
return "/\\.phar$/i"; return "/\\.phar$/i";
} }

View File

@ -50,7 +50,7 @@ interface Plugin extends CommandExecutor{
/** /**
* @return bool * @return bool
*/ */
public function isEnabled(); public function isEnabled() : bool;
/** /**
* Called when the plugin is disabled * Called when the plugin is disabled
@ -58,61 +58,78 @@ interface Plugin extends CommandExecutor{
*/ */
public function onDisable(); public function onDisable();
public function isDisabled(); /**
* @return bool
*/
public function isDisabled() : bool;
/** /**
* Gets the plugin's data folder to save files and configuration. * Gets the plugin's data folder to save files and configuration.
* This directory name has a trailing slash. * This directory name has a trailing slash.
*
* @return string
*/ */
public function getDataFolder(); public function getDataFolder() : string;
/** /**
* @return PluginDescription * @return PluginDescription
*/ */
public function getDescription(); public function getDescription() : PluginDescription;
/** /**
* Gets an embedded resource in the plugin file. * Gets an embedded resource in the plugin file.
* *
* @param string $filename * @param string $filename
*
* @return
*/ */
public function getResource($filename); public function getResource(string $filename);
/** /**
* Saves an embedded resource to its relative location in the data folder * Saves an embedded resource to its relative location in the data folder
* *
* @param string $filename * @param string $filename
* @param bool $replace * @param bool $replace
*
* @return bool
*/ */
public function saveResource($filename, $replace = false); public function saveResource(string $filename, bool $replace = false) : bool;
/** /**
* Returns all the resources packaged with the plugin * Returns all the resources packaged with the plugin
*
* @return string[]
*/ */
public function getResources(); public function getResources() : array;
/** /**
* @return Config * @return Config
*/ */
public function getConfig(); public function getConfig() : Config;
public function saveConfig(); public function saveConfig();
public function saveDefaultConfig(); /**
* @return bool
*/
public function saveDefaultConfig() : bool;
public function reloadConfig(); public function reloadConfig();
/** /**
* @return Server * @return Server
*/ */
public function getServer(); public function getServer() : Server;
public function getName(); /**
* @return string
*/
public function getName() : string;
/** /**
* @return PluginLogger * @return PluginLogger
*/ */
public function getLogger(); public function getLogger() : PluginLogger;
/** /**
* @return PluginLoader * @return PluginLoader

View File

@ -48,9 +48,11 @@ abstract class PluginBase implements Plugin{
/** @var string */ /** @var string */
private $dataFolder; private $dataFolder;
private $config; /** @var Config|null */
private $config = null;
/** @var string */ /** @var string */
private $configFile; private $configFile;
/** @var string */
private $file; private $file;
/** @var PluginLogger */ /** @var PluginLogger */
@ -74,14 +76,14 @@ abstract class PluginBase implements Plugin{
/** /**
* @return bool * @return bool
*/ */
final public function isEnabled(){ final public function isEnabled() : bool{
return $this->isEnabled === true; return $this->isEnabled === true;
} }
/** /**
* @param bool $boolean * @param bool $boolean
*/ */
final public function setEnabled($boolean = true){ final public function setEnabled(bool $boolean = true){
if($this->isEnabled !== $boolean){ if($this->isEnabled !== $boolean){
$this->isEnabled = $boolean; $this->isEnabled = $boolean;
if($this->isEnabled === true){ if($this->isEnabled === true){
@ -95,15 +97,15 @@ abstract class PluginBase implements Plugin{
/** /**
* @return bool * @return bool
*/ */
final public function isDisabled(){ final public function isDisabled() : bool{
return $this->isEnabled === false; return $this->isEnabled === false;
} }
final public function getDataFolder(){ final public function getDataFolder() : string{
return $this->dataFolder; return $this->dataFolder;
} }
final public function getDescription(){ final public function getDescription() : PluginDescription{
return $this->description; return $this->description;
} }
@ -123,14 +125,14 @@ abstract class PluginBase implements Plugin{
/** /**
* @return PluginLogger * @return PluginLogger
*/ */
public function getLogger(){ public function getLogger() : PluginLogger{
return $this->logger; return $this->logger;
} }
/** /**
* @return bool * @return bool
*/ */
final public function isInitialized(){ final public function isInitialized() : bool{
return $this->initialized; return $this->initialized;
} }
@ -167,7 +169,7 @@ abstract class PluginBase implements Plugin{
/** /**
* @return bool * @return bool
*/ */
protected function isPhar(){ protected function isPhar() : bool{
return strpos($this->file, "phar://") === 0; return strpos($this->file, "phar://") === 0;
} }
@ -177,9 +179,9 @@ abstract class PluginBase implements Plugin{
* *
* @param string $filename * @param string $filename
* *
* @return resource|null Resource data, or null * @return null|resource Resource data, or null
*/ */
public function getResource($filename){ public function getResource(string $filename){
$filename = rtrim(str_replace("\\", "/", $filename), "/"); $filename = rtrim(str_replace("\\", "/", $filename), "/");
if(file_exists($this->file . "resources/" . $filename)){ if(file_exists($this->file . "resources/" . $filename)){
return fopen($this->file . "resources/" . $filename, "rb"); return fopen($this->file . "resources/" . $filename, "rb");
@ -190,11 +192,11 @@ abstract class PluginBase implements Plugin{
/** /**
* @param string $filename * @param string $filename
* @param bool $replace * @param bool $replace
* *
* @return bool * @return bool
*/ */
public function saveResource($filename, $replace = false){ public function saveResource(string $filename, bool $replace = false) : bool{
if(trim($filename) === ""){ if(trim($filename) === ""){
return false; return false;
} }
@ -223,7 +225,7 @@ abstract class PluginBase implements Plugin{
* *
* @return string[] * @return string[]
*/ */
public function getResources(){ public function getResources() : array{
$resources = []; $resources = [];
if(is_dir($this->file . "resources/")){ if(is_dir($this->file . "resources/")){
foreach(new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($this->file . "resources/")) as $resource){ foreach(new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($this->file . "resources/")) as $resource){
@ -237,8 +239,8 @@ abstract class PluginBase implements Plugin{
/** /**
* @return Config * @return Config
*/ */
public function getConfig(){ public function getConfig() : Config{
if(!isset($this->config)){ if($this->config === null){
$this->reloadConfig(); $this->reloadConfig();
} }
@ -251,7 +253,7 @@ abstract class PluginBase implements Plugin{
} }
} }
public function saveDefaultConfig(){ public function saveDefaultConfig() : bool{
if(!file_exists($this->configFile)){ if(!file_exists($this->configFile)){
return $this->saveResource("config.yml", false); return $this->saveResource("config.yml", false);
} }
@ -269,25 +271,28 @@ abstract class PluginBase implements Plugin{
/** /**
* @return Server * @return Server
*/ */
final public function getServer(){ final public function getServer() : Server{
return $this->server; return $this->server;
} }
/** /**
* @return string * @return string
*/ */
final public function getName(){ final public function getName() : string{
return $this->description->getName(); return $this->description->getName();
} }
/** /**
* @return string * @return string
*/ */
final public function getFullName(){ final public function getFullName() : string{
return $this->description->getFullName(); return $this->description->getFullName();
} }
protected function getFile(){ /**
* @return string
*/
protected function getFile() : string{
return $this->file; return $this->file;
} }

View File

@ -33,12 +33,17 @@ class PluginDescription{
private $depend = []; private $depend = [];
private $softDepend = []; private $softDepend = [];
private $loadBefore = []; private $loadBefore = [];
/** @var string */
private $version; private $version;
private $commands = []; private $commands = [];
private $description = null; /** @var string */
private $description = "";
/** @var string[] */
private $authors = []; private $authors = [];
private $website = null; /** @var string */
private $prefix = null; private $website = "";
/** @var string */
private $prefix = "";
private $order = PluginLoadOrder::POSTWORLD; private $order = PluginLoadOrder::POSTWORLD;
/** /**
@ -131,42 +136,42 @@ class PluginDescription{
/** /**
* @return string * @return string
*/ */
public function getFullName(){ public function getFullName() : string{
return $this->name . " v" . $this->version; return $this->name . " v" . $this->version;
} }
/** /**
* @return array * @return array
*/ */
public function getCompatibleApis(){ public function getCompatibleApis() : array{
return $this->api; return $this->api;
} }
/** /**
* @return array * @return string[]
*/ */
public function getAuthors(){ public function getAuthors() : array{
return $this->authors; return $this->authors;
} }
/** /**
* @return string * @return string
*/ */
public function getPrefix(){ public function getPrefix() : string{
return $this->prefix; return $this->prefix;
} }
/** /**
* @return array * @return array
*/ */
public function getCommands(){ public function getCommands() : array{
return $this->commands; return $this->commands;
} }
/** /**
* @return array * @return array
*/ */
public function getRequiredExtensions(){ public function getRequiredExtensions() : array{
return $this->extensions; return $this->extensions;
} }
@ -210,49 +215,49 @@ class PluginDescription{
/** /**
* @return array * @return array
*/ */
public function getDepend(){ public function getDepend() : array{
return $this->depend; return $this->depend;
} }
/** /**
* @return string * @return string
*/ */
public function getDescription(){ public function getDescription() : string{
return $this->description; return $this->description;
} }
/** /**
* @return array * @return array
*/ */
public function getLoadBefore(){ public function getLoadBefore() : array{
return $this->loadBefore; return $this->loadBefore;
} }
/** /**
* @return string * @return string
*/ */
public function getMain(){ public function getMain() : string{
return $this->main; return $this->main;
} }
/** /**
* @return string * @return string
*/ */
public function getName(){ public function getName() : string{
return $this->name; return $this->name;
} }
/** /**
* @return int * @return int
*/ */
public function getOrder(){ public function getOrder() : int{
return $this->order; return $this->order;
} }
/** /**
* @return Permission[] * @return Permission[]
*/ */
public function getPermissions(){ public function getPermissions() : array{
return $this->permissions; return $this->permissions;
} }
@ -266,14 +271,14 @@ class PluginDescription{
/** /**
* @return string * @return string
*/ */
public function getVersion(){ public function getVersion() : string{
return $this->version; return $this->version;
} }
/** /**
* @return string * @return string
*/ */
public function getWebsite(){ public function getWebsite() : string{
return $this->website; return $this->website;
} }
} }

View File

@ -33,25 +33,25 @@ interface PluginLoader{
* *
* @param string $file * @param string $file
* *
* @return Plugin * @return Plugin|null
*/ */
public function loadPlugin($file); public function loadPlugin(string $file);
/** /**
* Gets the PluginDescription from the file * Gets the PluginDescription from the file
* *
* @param string $file * @param string $file
* *
* @return PluginDescription * @return null|PluginDescription
*/ */
public function getPluginDescription($file); public function getPluginDescription(string $file);
/** /**
* Returns the filename regex patterns that this loader accepts * Returns the filename regex patterns that this loader accepts
* *
* @return string * @return string
*/ */
public function getPluginFilters(); public function getPluginFilters() : string;
/** /**
* @param Plugin $plugin * @param Plugin $plugin

View File

@ -119,7 +119,7 @@ class PluginManager{
* *
* @return bool * @return bool
*/ */
public function registerInterface($loaderName){ public function registerInterface(string $loaderName) : bool{
if(is_subclass_of($loaderName, PluginLoader::class)){ if(is_subclass_of($loaderName, PluginLoader::class)){
$loader = new $loaderName($this->server); $loader = new $loaderName($this->server);
}else{ }else{
@ -134,7 +134,7 @@ class PluginManager{
/** /**
* @return Plugin[] * @return Plugin[]
*/ */
public function getPlugins(){ public function getPlugins() : array{
return $this->plugins; return $this->plugins;
} }
@ -372,7 +372,7 @@ class PluginManager{
* *
* @return bool * @return bool
*/ */
public function addPermission(Permission $permission){ public function addPermission(Permission $permission) : bool{
if(!isset($this->permissions[$permission->getName()])){ if(!isset($this->permissions[$permission->getName()])){
$this->permissions[$permission->getName()] = $permission; $this->permissions[$permission->getName()] = $permission;
$this->calculatePermissionDefault($permission); $this->calculatePermissionDefault($permission);
@ -471,9 +471,9 @@ class PluginManager{
/** /**
* @param string $permission * @param string $permission
* *
* @return Permissible[] * @return array|Permissible[]
*/ */
public function getPermissionSubscriptions($permission){ public function getPermissionSubscriptions(string $permission) : array{
if(isset($this->permSubs[$permission])){ if(isset($this->permSubs[$permission])){
return $this->permSubs[$permission]; return $this->permSubs[$permission];
$subs = []; $subs = [];
@ -522,7 +522,7 @@ class PluginManager{
* *
* @return Permissible[] * @return Permissible[]
*/ */
public function getDefaultPermSubscriptions($op){ public function getDefaultPermSubscriptions(bool $op) : array{
$subs = []; $subs = [];
if($op === true){ if($op === true){
@ -555,7 +555,7 @@ class PluginManager{
/** /**
* @return Permission[] * @return Permission[]
*/ */
public function getPermissions(){ public function getPermissions() : array{
return $this->permissions; return $this->permissions;
} }
@ -594,7 +594,7 @@ class PluginManager{
* *
* @return PluginCommand[] * @return PluginCommand[]
*/ */
protected function parseYamlCommands(Plugin $plugin){ protected function parseYamlCommands(Plugin $plugin) : array{
$pluginCmds = []; $pluginCmds = [];
foreach($plugin->getDescription()->getCommands() as $key => $data){ foreach($plugin->getDescription()->getCommands() as $key => $data){
@ -799,7 +799,7 @@ class PluginManager{
* *
* @return HandlerList * @return HandlerList
*/ */
private function getEventListeners($event){ private function getEventListeners($event) : HandlerList{
if($event::$handlerList === null){ if($event::$handlerList === null){
$event::$handlerList = new HandlerList(); $event::$handlerList = new HandlerList();
} }
@ -810,15 +810,15 @@ class PluginManager{
/** /**
* @return bool * @return bool
*/ */
public function useTimings(){ public function useTimings() : bool{
return self::$useTimings; return self::$useTimings;
} }
/** /**
* @param bool $use * @param bool $use
*/ */
public function setUseTimings($use){ public function setUseTimings(bool $use){
self::$useTimings = (bool) $use; self::$useTimings = $use;
} }
} }

View File

@ -69,21 +69,21 @@ class RegisteredListener{
/** /**
* @return Listener * @return Listener
*/ */
public function getListener(){ public function getListener() : Listener{
return $this->listener; return $this->listener;
} }
/** /**
* @return Plugin * @return Plugin
*/ */
public function getPlugin(){ public function getPlugin() : Plugin{
return $this->plugin; return $this->plugin;
} }
/** /**
* @return int * @return int
*/ */
public function getPriority(){ public function getPriority() : int{
return $this->priority; return $this->priority;
} }
@ -106,7 +106,7 @@ class RegisteredListener{
/** /**
* @return bool * @return bool
*/ */
public function isIgnoringCancelled(){ public function isIgnoringCancelled() : bool{
return $this->ignoreCancelled === true; return $this->ignoreCancelled === true;
} }
} }

View File

@ -49,10 +49,8 @@ class ScriptPluginLoader implements PluginLoader{
* @param string $file * @param string $file
* *
* @return Plugin|null * @return Plugin|null
*
* @throws \Exception
*/ */
public function loadPlugin($file){ public function loadPlugin(string $file){
if(($description = $this->getPluginDescription($file)) instanceof PluginDescription){ if(($description = $this->getPluginDescription($file)) instanceof PluginDescription){
$this->server->getLogger()->info($this->server->getLanguage()->translateString("pocketmine.plugin.load", [$description->getFullName()])); $this->server->getLogger()->info($this->server->getLanguage()->translateString("pocketmine.plugin.load", [$description->getFullName()]));
$dataFolder = dirname($file) . DIRECTORY_SEPARATOR . $description->getName(); $dataFolder = dirname($file) . DIRECTORY_SEPARATOR . $description->getName();
@ -82,9 +80,9 @@ class ScriptPluginLoader implements PluginLoader{
* *
* @param string $file * @param string $file
* *
* @return PluginDescription|null * @return null|PluginDescription
*/ */
public function getPluginDescription($file){ public function getPluginDescription(string $file){
$content = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); $content = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$data = []; $data = [];
@ -122,7 +120,7 @@ class ScriptPluginLoader implements PluginLoader{
* *
* @return string * @return string
*/ */
public function getPluginFilters(){ public function getPluginFilters() : string{
return "/\\.php$/i"; return "/\\.php$/i";
} }

View File

@ -28,7 +28,7 @@ class ResourcePackInfoEntry{
protected $version; protected $version;
protected $packSize; protected $packSize;
public function __construct(string $packId, string $version, $packSize = 0){ public function __construct(string $packId, string $version, int $packSize = 0){
$this->packId = $packId; $this->packId = $packId;
$this->version = $version; $this->version = $version;
$this->packSize = $packSize; $this->packSize = $packSize;
@ -42,7 +42,7 @@ class ResourcePackInfoEntry{
return $this->version; return $this->version;
} }
public function getPackSize(){ public function getPackSize() : int{
return $this->packSize; return $this->packSize;
} }

View File

@ -34,7 +34,7 @@ class ZippedResourcePack implements ResourcePack{
* @param \stdClass $manifest * @param \stdClass $manifest
* @return bool * @return bool
*/ */
public static function verifyManifest(\stdClass $manifest){ public static function verifyManifest(\stdClass $manifest) : bool{
if(!isset($manifest->format_version) or !isset($manifest->header) or !isset($manifest->modules)){ if(!isset($manifest->format_version) or !isset($manifest->header) or !isset($manifest->modules)){
return false; return false;
} }

Some files were not shown because too many files have changed in this diff Show More