encode() abstract public method

abstract public encode ( ) : DataPacket | DataPacket[]
return pocketmine\network\protocol\DataPacket | pocketmine\network\protocol\DataPacket[]
示例#1
0
 public function addSound(Sound $sound, array $players = null)
 {
     $pk = $sound->encode();
     if ($players === null) {
         $players = $this->getUsingChunk($sound->x >> 4, $sound->z >> 4);
     }
     if ($pk !== null) {
         if (!is_array($pk)) {
             Server::broadcastPacket($players, $pk->setChannel(Network::CHANNEL_WORLD_EVENTS));
         } else {
             $this->server->batchPackets($players, $pk, false, Network::CHANNEL_WORLD_EVENTS);
         }
     }
 }
示例#2
0
 public function addSound(Sound $sound, array $players = null)
 {
     $pk = $sound->encode();
     if ($players === null) {
         $players = $this->getUsingChunk($sound->x >> 4, $sound->z >> 4);
     }
     if ($pk !== null) {
         if (!is_array($pk)) {
             Server::broadcastPacket($players, $pk);
         } else {
             $this->server->batchPackets($players, $pk, false);
         }
     }
 }
示例#3
0
 public function addSound(Sound $sound, array $players = \null)
 {
     $pk = $sound->encode();
     if ($players === \null) {
         if ($pk !== \null) {
             if (!\is_array($pk)) {
                 $this->addChunkPacket($sound->x >> 4, $sound->z >> 4, $pk);
             } else {
                 foreach ($pk as $e) {
                     $this->addChunkPacket($sound->x >> 4, $sound->z >> 4, $e);
                 }
             }
         }
     } else {
         if ($pk !== \null) {
             if (!\is_array($pk)) {
                 Server::broadcastPacket($players, $pk);
             } else {
                 $this->server->batchPackets($players, $pk, \false);
             }
         }
     }
 }