From aaf2da3d969130fe7c835709fba8559f8fc118f7 Mon Sep 17 00:00:00 2001 From: AIPTU Date: Fri, 22 Oct 2021 09:43:01 +0700 Subject: [PATCH] CS --- .../AutoClearChunk/AutoClearChunk.php | 160 +++++++++--------- 1 file changed, 80 insertions(+), 80 deletions(-) diff --git a/src/HazardTeam/AutoClearChunk/AutoClearChunk.php b/src/HazardTeam/AutoClearChunk/AutoClearChunk.php index 6c81581..d3314ea 100644 --- a/src/HazardTeam/AutoClearChunk/AutoClearChunk.php +++ b/src/HazardTeam/AutoClearChunk/AutoClearChunk.php @@ -20,84 +20,84 @@ class AutoClearChunk extends PluginBase implements Listener { - private array $worlds = []; - - public function onEnable(): void - { - $this->checkConfig(); - - $interval = $this->getConfig()->get("clear-interval", 600); - - foreach (array_diff(scandir($this->getServer()->getDataPath() . "worlds"), ["..", "."]) as $levelName) { - if (!in_array($levelName, $this->getConfig()->getAll()["blacklisted-worlds"], true)) { - $this->worlds[] = $levelName; - } - } - - $this->getScheduler()->scheduleDelayedRepeatingTask(new ClosureTask( - function (int $currentTick): void { - $this->clearChunk(); - } - ), 20 * $interval, 20 * $interval); - - $this->getServer()->getPluginManager()->registerEvents($this, $this); - - UpdateNotifier::checkUpdate($this->getDescription()->getName(), $this->getDescription()->getVersion()); - } - - private function checkConfig(): void - { - $this->saveDefaultConfig(); - - foreach ([ - "clear-interval" => "integer", - "message" => "string", - "blacklisted-worlds" => "array" - ] as $option => $expectedType) { - if (($type = gettype($this->getConfig()->getNested($option))) != $expectedType) { - throw new \TypeError("Config error: Option ($option) must be of type $expectedType, $type was given"); - } - } - } - - public function onLevelChange(EntityLevelChangeEvent $event): void - { - $entity = $event->getEntity(); - $levelName = $event->getOrigin()->getFolderName(); - - if ($event->isCancelled()) { - return; - } - - if (!$entity instanceof Player) { - return; - } - - if (!in_array($levelName, $this->getConfig()->getAll()["blacklisted-worlds"], true)) { - $this->worlds[] = $levelName; - } - } - - public function clearChunk(): void - { - $cleared = 0; - - foreach ($this->worlds as $world) { - $worlds = $this->getServer()->getLevelByName($world); - - if ($worlds !== null) { - foreach ($worlds->getChunks() as $chunk) { - $count = count($worlds->getChunkPlayers($chunk->getX(), $chunk->getZ())); //Check if the player is in the chunk - - if ($count === 0) { - $cleared += 1; - $worlds->unloadChunk($chunk->getX(), $chunk->getZ()); - } - } - } - } - - $message = TextFormat::colorize($this->getConfig()->get("message", "Successfully cleared {COUNT} chunks")); - $this->getServer()->broadcastMessage(str_replace("{COUNT}", (string) $cleared, $message)); - } + private array $worlds = []; + + public function onEnable(): void + { + $this->checkConfig(); + + $interval = $this->getConfig()->get('clear-interval', 600); + + foreach (array_diff(scandir($this->getServer()->getDataPath() . 'worlds'), ['..', '.']) as $levelName) { + if (!in_array($levelName, $this->getConfig()->getAll()['blacklisted-worlds'], true)) { + $this->worlds[] = $levelName; + } + } + + $this->getScheduler()->scheduleDelayedRepeatingTask(new ClosureTask( + function (int $currentTick): void { + $this->clearChunk(); + } + ), 20 * $interval, 20 * $interval); + + $this->getServer()->getPluginManager()->registerEvents($this, $this); + + UpdateNotifier::checkUpdate($this->getDescription()->getName(), $this->getDescription()->getVersion()); + } + + public function onLevelChange(EntityLevelChangeEvent $event): void + { + $entity = $event->getEntity(); + $levelName = $event->getOrigin()->getFolderName(); + + if ($event->isCancelled()) { + return; + } + + if (!$entity instanceof Player) { + return; + } + + if (!in_array($levelName, $this->getConfig()->getAll()['blacklisted-worlds'], true)) { + $this->worlds[] = $levelName; + } + } + + public function clearChunk(): void + { + $cleared = 0; + + foreach ($this->worlds as $world) { + $worlds = $this->getServer()->getLevelByName($world); + + if ($worlds !== null) { + foreach ($worlds->getChunks() as $chunk) { + $count = count($worlds->getChunkPlayers($chunk->getX(), $chunk->getZ())); //Check if the player is in the chunk + + if ($count === 0) { + ++$cleared; + $worlds->unloadChunk($chunk->getX(), $chunk->getZ()); + } + } + } + } + + $message = TextFormat::colorize($this->getConfig()->get('message', 'Successfully cleared {COUNT} chunks')); + $this->getServer()->broadcastMessage(str_replace('{COUNT}', (string) $cleared, $message)); + } + + private function checkConfig(): void + { + $this->saveDefaultConfig(); + + foreach ([ + 'clear-interval' => 'integer', + 'message' => 'string', + 'blacklisted-worlds' => 'array', + ] as $option => $expectedType) { + if (($type = gettype($this->getConfig()->getNested($option))) !== $expectedType) { + throw new \TypeError("Config error: Option ({$option}) must be of type {$expectedType}, {$type} was given"); + } + } + } }