readFloat() 공개 정적인 메소드

public static readFloat ( $str )
예제 #1
0
 public function getFloat()
 {
     return Binary::readFloat($this->get(4));
 }
 public function readFloat()
 {
     return Binary::readFloat($this->read(4));
 }
예제 #3
0
 protected function parseLevel()
 {
     if ($this->getType() !== 0x0) {
         return false;
     }
     $this->seek(5);
     $this->levelData["version"] = ord($this->read(1));
     if ($this->levelData["version"] > self::VERSION) {
         MainLogger::getLogger()->error("New unsupported PMF Level format version #" . $this->levelData["version"] . ", current version is #" . self::VERSION);
         return false;
     }
     $this->levelData["name"] = $this->read(Binary::readShort($this->read(2)));
     $this->levelData["seed"] = Binary::readInt($this->read(4));
     $this->levelData["time"] = Binary::readInt($this->read(4));
     $this->levelData["spawnX"] = Binary::readFloat($this->read(4));
     $this->levelData["spawnY"] = Binary::readFloat($this->read(4));
     $this->levelData["spawnZ"] = Binary::readFloat($this->read(4));
     if ($this->levelData["version"] === 0) {
         $this->read(1);
         $this->levelData["height"] = ord($this->read(1));
     } else {
         $this->levelData["height"] = ord($this->read(1));
         if ($this->levelData["height"] !== 8) {
             return false;
         }
         $this->levelData["generator"] = $this->read(Binary::readShort($this->read(2)));
         $this->levelData["generatorSettings"] = unserialize($this->read(Binary::readShort($this->read(2))));
     }
     $this->levelData["extra"] = @zlib_decode($this->read(Binary::readShort($this->read(2))));
     $upgrade = false;
     if ($this->levelData["version"] === 0) {
         $this->upgrade_From0_To1();
         $upgrade = true;
     }
     if ($this->levelData["version"] === 1) {
         $this->upgrade_From1_To2();
         $upgrade = true;
     }
     if ($upgrade === true) {
         $this->saveData();
     }
 }
예제 #4
0
파일: NBT.php 프로젝트: ianju/PocketMine-MP
 public function getFloat()
 {
     return $this->endianness === self::BIG_ENDIAN ? Binary::readFloat($this->get(4)) : Binary::readLFloat($this->get(4));
 }
예제 #5
0
 protected function getFloat()
 {
     return Binary::readFloat($this->get(4));
 }