本文整理汇总了PHP中pocketmine\utils\Binary::readFloat方法的典型用法代码示例。如果您正苦于以下问题:PHP Binary::readFloat方法的具体用法?PHP Binary::readFloat怎么用?PHP Binary::readFloat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pocketmine\utils\Binary
的用法示例。
在下文中一共展示了Binary::readFloat方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getFloat
public function getFloat()
{
return Binary::readFloat($this->get(4));
}
示例2: readFloat
public function readFloat()
{
return Binary::readFloat($this->read(4));
}
示例3: parseLevel
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: getFloat
public function getFloat()
{
return $this->endianness === self::BIG_ENDIAN ? Binary::readFloat($this->get(4)) : Binary::readLFloat($this->get(4));
}
示例5: getFloat
protected function getFloat()
{
return Binary::readFloat($this->get(4));
}