本文整理汇总了PHP中pocketmine\event\player\PlayerQuitEvent::getAutoSave方法的典型用法代码示例。如果您正苦于以下问题:PHP PlayerQuitEvent::getAutoSave方法的具体用法?PHP PlayerQuitEvent::getAutoSave怎么用?PHP PlayerQuitEvent::getAutoSave使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pocketmine\event\player\PlayerQuitEvent
的用法示例。
在下文中一共展示了PlayerQuitEvent::getAutoSave方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: close
/**
* Note for plugin developers: use kick() with the isAdmin
* flag set to kick without the "Kicked by admin" part instead of this method.
*
* @param string $message Message to be broadcasted
* @param string $reason Reason showed in console
* @param bool $notify
*/
public final function close($message = "", $reason = "generic reason", $notify = true)
{
if ($this->connected and !$this->closed) {
if ($notify and strlen((string) $reason) > 0) {
$pk = new DisconnectPacket();
$pk->message = $reason;
$this->directDataPacket($pk);
}
$this->connected = false;
if (strlen($this->getName()) > 0) {
$this->server->getPluginManager()->callEvent($ev = new PlayerQuitEvent($this, $message, true));
if ($this->loggedIn === true and $ev->getAutoSave()) {
$this->save();
}
}
foreach ($this->server->getOnlinePlayers() as $player) {
if (!$player->canSee($this)) {
$player->showPlayer($this);
}
}
$this->hiddenPlayers = [];
foreach ($this->windowIndex as $window) {
$this->removeWindow($window);
}
foreach ($this->usedChunks as $index => $d) {
Level::getXZ($index, $chunkX, $chunkZ);
$this->level->unregisterChunkLoader($this, $chunkX, $chunkZ);
unset($this->usedChunks[$index]);
}
parent::close();
$this->interface->close($this, $notify ? $reason : "");
if ($this->loggedIn) {
$this->server->removeOnlinePlayer($this);
}
$this->loggedIn = false;
if (isset($ev) and $this->username != "" and $this->spawned !== false and $ev->getQuitMessage() != "") {
$this->server->broadcastMessage($ev->getQuitMessage());
}
$this->server->getPluginManager()->unsubscribeFromPermission(Server::BROADCAST_CHANNEL_USERS, $this);
$this->spawned = false;
$this->server->getLogger()->info($this->getServer()->getLanguage()->translateString("pocketmine.player.logOut", [TextFormat::AQUA . $this->getName() . TextFormat::WHITE, $this->ip, $this->port, $this->getServer()->getLanguage()->translateString($reason)]));
$this->windows = new \SplObjectStorage();
$this->windowIndex = [];
$this->usedChunks = [];
$this->loadQueue = [];
$this->hasSpawned = [];
$this->spawnPosition = null;
unset($this->buffer);
}
if ($this->perm !== null) {
$this->perm->clearPermissions();
$this->perm = null;
}
if ($this->inventory !== null) {
$this->inventory = null;
$this->currentTransaction = null;
}
$this->chunk = null;
$this->server->removePlayer($this);
}
示例2: close
/**
* Note for plugin developers: use kick() with the isAdmin
* flag set to kick without the "Kicked by admin" part instead of this method.
*
* @param string $message Message to be broadcasted
* @param string $reason Reason showed in console
* @param bool $notify
*/
public final function close($message = "", $reason = "generic reason", $notify = true)
{
if ($this->connected and !$this->closed) {
if ($notify and strlen((string) $reason) > 0) {
$pk = new DisconnectPacket();
$pk->message = $reason;
$this->directDataPacket($pk);
}
//$this->setLinked();
if ($this->fishingHook instanceof FishingHook) {
$this->fishingHook->close();
$this->fishingHook = null;
}
$this->removeEffect(Effect::HEALTH_BOOST);
$this->connected = false;
if (strlen($this->getName()) > 0) {
$this->server->getPluginManager()->callEvent($ev = new PlayerQuitEvent($this, $message, true));
if ($this->loggedIn === true and $ev->getAutoSave()) {
$this->save();
}
}
foreach ($this->server->getOnlinePlayers() as $player) {
if (!$player->canSee($this)) {
$player->showPlayer($this);
}
}
$this->hiddenPlayers = [];
foreach ($this->windowIndex as $window) {
$this->removeWindow($window);
}
foreach ($this->usedChunks as $index => $d) {
Level::getXZ($index, $chunkX, $chunkZ);
$this->level->unregisterChunkLoader($this, $chunkX, $chunkZ);
unset($this->usedChunks[$index]);
}
parent::close();
$this->interface->close($this, $notify ? $reason : "");
if ($this->loggedIn) {
$this->server->removeOnlinePlayer($this);
}
$this->loggedIn = false;
if (isset($ev) and $this->username != "" and $this->spawned !== false and $ev->getQuitMessage() != "") {
if ($this->server->playerMsgType === Server::PLAYER_MSG_TYPE_MESSAGE) {
$this->server->broadcastMessage($ev->getQuitMessage());
} elseif ($this->server->playerMsgType === Server::PLAYER_MSG_TYPE_TIP) {
$this->server->broadcastTip(str_replace("@player", $this->getName(), $this->server->playerLogoutMsg));
} elseif ($this->server->playerMsgType === Server::PLAYER_MSG_TYPE_POPUP) {
$this->server->broadcastPopup(str_replace("@player", $this->getName(), $this->server->playerLogoutMsg));
}
}
$this->server->getPluginManager()->unsubscribeFromPermission(Server::BROADCAST_CHANNEL_USERS, $this);
$this->spawned = false;
$this->server->getLogger()->info($this->getServer()->getLanguage()->translateString("pocketmine.player.logOut", [TextFormat::AQUA . $this->getName() . TextFormat::WHITE, $this->ip, $this->port, $this->getServer()->getLanguage()->translateString($reason)]));
$this->windows = new \SplObjectStorage();
$this->windowIndex = [];
$this->usedChunks = [];
$this->loadQueue = [];
$this->hasSpawned = [];
$this->spawnPosition = null;
unset($this->buffer);
if ($this->server->dserverConfig["enable"] and $this->server->dserverConfig["queryAutoUpdate"]) {
$this->server->updateQuery();
}
}
if ($this->perm !== null) {
$this->perm->clearPermissions();
$this->perm = null;
}
$this->inventory = null;
$this->transactionQueue = null;
$this->chunk = null;
$this->server->removePlayer($this);
}