mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-15 10:19:39 +00:00
130 lines
4.1 KiB
PHP
130 lines
4.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* @author PocketMine Team
|
|
* @link http://www.pocketmine.net/
|
|
*
|
|
*
|
|
*/
|
|
|
|
namespace pocketmine\level;
|
|
|
|
use pocketmine\level\format\PocketChunkParser;
|
|
use pocketmine\nbt\NBT;
|
|
use pocketmine\level\format\pmf\LevelFormat;
|
|
use pocketmine\utils\Config;
|
|
|
|
class LevelImport{
|
|
private $path;
|
|
|
|
public function __construct($path){
|
|
$this->path = $path;
|
|
}
|
|
|
|
public function import(){
|
|
if(file_exists($this->path . "tileEntities.dat")){ //OldPM
|
|
$level = unserialize(file_get_contents($this->path . "level.dat"));
|
|
console("[INFO] Importing OldPM level \"" . $level["LevelName"] . "\" to PMF format");
|
|
$entities = new Config($this->path . "entities.yml", Config::YAML, unserialize(file_get_contents($this->path . "entities.dat")));
|
|
$entities->save();
|
|
$tiles = new Config($this->path . "tiles.yml", Config::YAML, unserialize(file_get_contents($this->path . "tileEntities.dat")));
|
|
$tiles->save();
|
|
}elseif(file_exists($this->path . "chunks.dat") and file_exists($this->path . "level.dat")){ //Pocket
|
|
$nbt = new NBT(NBT::LITTLE_ENDIAN);
|
|
$nbt->read(substr(file_get_contents($this->path . "level.dat"), 8));
|
|
$level = $nbt->getData();
|
|
if($level["LevelName"] == ""){
|
|
$level["LevelName"] = "world" . time();
|
|
}
|
|
console("[INFO] Importing Pocket level \"" . $level->LevelName . "\" to PMF format");
|
|
unset($level->Player);
|
|
$nbt->read(substr(file_get_contents($this->path . "entities.dat"), 12));
|
|
$entities = $nbt->getData();
|
|
if(!isset($entities->TileEntities)){
|
|
$entities->TileEntities = array();
|
|
}
|
|
$tiles = $entities->TileEntities;
|
|
$entities = $entities->Entities;
|
|
$entities = new Config($this->path . "entities.yml", Config::YAML, $entities);
|
|
$entities->save();
|
|
$tiles = new Config($this->path . "tiles.yml", Config::YAML, $tiles);
|
|
$tiles->save();
|
|
}else{
|
|
return false;
|
|
}
|
|
|
|
$pmf = new LevelFormat($this->path . "level.pmf", array(
|
|
"name" => $level->LevelName,
|
|
"seed" => $level->RandomSeed,
|
|
"time" => $level->Time,
|
|
"spawnX" => $level->SpawnX,
|
|
"spawnY" => $level->SpawnY,
|
|
"spawnZ" => $level->SpawnZ,
|
|
"height" => 8,
|
|
"generator" => "default",
|
|
"generatorSettings" => "",
|
|
"extra" => ""
|
|
));
|
|
$chunks = new PocketChunkParser();
|
|
$chunks->loadFile($this->path . "chunks.dat");
|
|
$chunks->loadMap();
|
|
for($Z = 0; $Z < 16; ++$Z){
|
|
for($X = 0; $X < 16; ++$X){
|
|
$chunk = array(
|
|
0 => "",
|
|
1 => "",
|
|
2 => "",
|
|
3 => "",
|
|
4 => "",
|
|
5 => "",
|
|
6 => "",
|
|
7 => ""
|
|
);
|
|
|
|
$pmf->initCleanChunk($X, $Z);
|
|
for($z = 0; $z < 16; ++$z){
|
|
for($x = 0; $x < 16; ++$x){
|
|
$block = $chunks->getChunkColumn($X, $Z, $x, $z, 0);
|
|
$meta = $chunks->getChunkColumn($X, $Z, $x, $z, 1);
|
|
for($Y = 0; $Y < 8; ++$Y){
|
|
$chunk[$Y] .= substr($block, $Y << 4, 16);
|
|
$chunk[$Y] .= substr($meta, $Y << 3, 8);
|
|
$chunk[$Y] .= "\x00\x00\x00\x00\x00\x00\x00\x00";
|
|
}
|
|
}
|
|
}
|
|
foreach($chunk as $Y => $data){
|
|
$pmf->setMiniChunk($X, $Z, $Y, $data);
|
|
}
|
|
$pmf->setPopulated($X, $Z);
|
|
$pmf->saveChunk($X, $Z);
|
|
}
|
|
console("[NOTICE] Importing level " . ceil(($Z + 1) / 0.16) . "%");
|
|
}
|
|
$chunks->map = null;
|
|
$chunks = null;
|
|
@unlink($this->path . "level.dat");
|
|
@unlink($this->path . "level.dat_old");
|
|
@unlink($this->path . "player.dat");
|
|
@unlink($this->path . "entities.dat");
|
|
@unlink($this->path . "chunks.dat");
|
|
@unlink($this->path . "chunks.dat.gz");
|
|
@unlink($this->path . "tiles.dat");
|
|
unset($chunks, $level, $entities, $tiles, $nbt);
|
|
|
|
return true;
|
|
}
|
|
|
|
} |