本文整理汇总了PHP中pocketmine\Player::getPort方法的典型用法代码示例。如果您正苦于以下问题:PHP Player::getPort方法的具体用法?PHP Player::getPort怎么用?PHP Player::getPort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pocketmine\Player
的用法示例。
在下文中一共展示了Player::getPort方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: forcePlayerDisconnect
public function forcePlayerDisconnect(Player $player)
{
// https://forums.pocketmine.net/threads/temporary-solution-for-transferring-players-in-0-12-1.11759/
// find out the RakLib interface, which is the network interface that MCPE players connect with
foreach ($this->getServer()->getNetwork()->getInterfaces() as $interface) {
if ($interface instanceof RakLibInterface) {
$raklib = $interface;
break;
}
}
if (!isset($raklib)) {
Server::getInstance()->getLogger()->critical(Main::PREFIX . "rakLib not found");
return;
}
// calculate the identifier for the player used by RakLib
$identifier = $player->getAddress() . ":" . $player->getPort();
// this method call is the most important one - it sends some signal to RakLib that makes it think that the client has clicked the "Quit to Title" button (or timed out). Some RakLib internal stuff will then tell PocketMine that the player has quitted.
$raklib->closeSession($identifier, "transfer");
}
示例2: getFixedMessage
/**
* @param Player $player
* @param string $message
* @return string
*/
public function getFixedMessage(Player $player, $message = "")
{
return str_replace(["{PLAYER_ADDRESS}", "{PLAYER_DISPLAY_NAME}", "{PLAYER_NAME}", "{PLAYER_PORT}"], [$player->getAddress(), $player->getDisplayName(), $player->getName(), $player->getPort()], $message);
}
示例3: transferPlayer0
private function transferPlayer0(Player $player, $ip, $port)
{
$sp = new TransferPacket();
$sp->address = $this->getHostByName($ip);
$sp->port = $port;
$player->dataPacket($sp);
$interfaces = $this->getServer()->getNetwork()->getInterfaces();
foreach ($interfaces as $interface) {
if ($interface instanceof RakLibInterface) {
// $class = new \ReflectionClass(RakLibInterface::class);
// $prop = $class->getProperty("rakLib");
// $prop->setAccessible(true);
// /** @var RakLibServer $value */
// $value = $prop->getValue($interface);
$identifier = $player->getAddress() . ":" . $player->getPort();
// $value->pushMainToThreadPacket(RakLib::PACKET_CLOSE_SESSION . chr(strlen($identifier)) . $identifier);
$interface->closeSession($identifier, "transferring");
}
}
}