writeShort() public static method

Writes a 16-bit signed/unsigned big-endian number
public static writeShort ( $value ) : string
$value
return string
示例#1
0
 public function putShort($v)
 {
     $this->buffer .= $this->endianness === self::BIG_ENDIAN ? Binary::writeShort($v) : Binary::writeLShort($v);
 }
 public function putSignedShort($v)
 {
     $this->buffer .= Binary::writeShort($v);
 }
示例#3
0
 public function saveData()
 {
     $this->levelData["version"] = self::VERSION;
     @ftruncate($this->fp, 5);
     $this->seek(5);
     $this->write(chr($this->levelData["version"]));
     $this->write(Binary::writeShort(strlen($this->levelData["name"])) . $this->levelData["name"]);
     $this->write(Binary::writeInt($this->levelData["seed"]));
     $this->write(Binary::writeInt($this->levelData["time"]));
     $this->write(Binary::writeFloat($this->levelData["spawnX"]));
     $this->write(Binary::writeFloat($this->levelData["spawnY"]));
     $this->write(Binary::writeFloat($this->levelData["spawnZ"]));
     $this->write(chr($this->levelData["height"]));
     $this->write(Binary::writeShort(strlen($this->levelData["generator"])) . $this->levelData["generator"]);
     $settings = serialize($this->levelData["generatorSettings"]);
     $this->write(Binary::writeShort(strlen($settings)) . $settings);
     $extra = zlib_encode($this->levelData["extra"], self::ZLIB_ENCODING, self::ZLIB_LEVEL);
     $this->write(Binary::writeShort(strlen($extra)) . $extra);
 }
 protected function putShort($v)
 {
     $this->buffer .= Binary::writeShort($v);
 }
示例#5
0
 public static function randomUUID()
 {
     return Utils::toUUID(Binary::writeInt(time()) . Binary::writeShort(getmypid()) . Binary::writeShort(getmyuid()) . Binary::writeInt(mt_rand(-0x7fffffff, 0x7fffffff)) . Binary::writeInt(mt_rand(-0x7fffffff, 0x7fffffff)), 2);
 }
 public function addNamespace($namespace, $path)
 {
     $buffer = chr(GenerationManager::PACKET_ADD_NAMESPACE) . Binary::writeShort(strlen($namespace)) . $namespace . $path;
     $this->generationThread->pushMainToThreadPacket($buffer);
 }
 public function appendShort($v)
 {
     $this->buffer .= Binary::writeShort($v);
 }