當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Player::distance方法代碼示例

本文整理匯總了PHP中pocketmine\Player::distance方法的典型用法代碼示例。如果您正苦於以下問題:PHP Player::distance方法的具體用法?PHP Player::distance怎麽用?PHP Player::distance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pocketmine\Player的用法示例。


在下文中一共展示了Player::distance方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: broadcastMessage

 /**
  *
  * @param string $message			
  * @param Player $sender			
  */
 public function broadcastMessage($message, $sender = null)
 {
     //콘솔에 메세지 출력
     $this->getLogger()->info($message);
     //접속한 플레이어들에게 전달
     foreach ($this->getServer()->getOnlinePlayers() as $player) {
         //강제 근거리 채팅 모드이거나 해당 플레이어가 근거리 채팅 모드를 켠 경우
         if ($this->getConfig()->get("local-chat-only", false) or isset($this->db[$player->getName()]["local-chat"]) and $this->db[$player->getName()]["local-chat"] == true) {
             //@all을 넣어서 확성기를 쓴 경우나 해당 플레이어를 호명한 경우는 멀거나 다른 서버에서 말했어도 반드시 전달됨
             if (strpos($message, "@" . $player->getName()) === false and strpos($message, "@all") !== 0) {
                 //멀거나 다른 서버에서 말한 경우
                 if ($sender === null or $sender->distance($player) > intval($this->getConfig()->get("local-chat-distance", 50))) {
                     continue;
                 }
             }
         }
         //받아라 얍
         $player->sendMessage($message);
     }
 }
開發者ID:n15001,項目名稱:Chatty,代碼行數:25,代碼來源:Chatty.php

示例2: broadcastMessage

 /**
  *
  * @param string $message        	
  * @param Player $sender        	
  */
 public function broadcastMessage($message, $sender = null)
 {
     $this->getLogger()->info($message);
     foreach ($this->getServer()->getOnlinePlayers() as $player) {
         if (isset($this->db[$player->getName()]["local-chat"]) and $this->db[$player->getName()]["local-chat"] == true) {
             if ($sender === null or $sender->distance($player) > self::LOCAL_CHAT_DISTANCE) {
                 if (!isset(explode($player->getName(), $message)[1])) {
                     continue;
                 }
             }
         }
         $player->sendMessage($message);
     }
 }
開發者ID:nesgohood,項目名稱:PMMP-Plugins,代碼行數:19,代碼來源:Chatty.php


注:本文中的pocketmine\Player::distance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。