|
PocketMine-MP 5.42.1 git-d77520d210fcb967a02bc11817ad625393c8ebc6
|
Inheritance diagram for pocketmine\world\format\io\data\BaseNbtWorldData:
Collaboration diagram for pocketmine\world\format\io\data\BaseNbtWorldData:Public Member Functions | |
| __construct (protected string $dataPath) | |
| getCompoundTag () | |
| getDifficulty () | |
| getGenerator () | |
| getGeneratorOptions () | |
| getLightningLevel () | |
| getLightningTime () | |
| getName () | |
| getRainLevel () | |
| getRainTime () | |
| getSeed () | |
| getSpawn () | |
| getTime () | |
| save () | |
| setDifficulty (int $difficulty) | |
| setLightningLevel (float $level) | |
| setLightningTime (int $ticks) | |
| setName (string $value) | |
| setRainLevel (float $level) | |
| setRainTime (int $ticks) | |
| setSpawn (Vector3 $pos) | |
| setTime (int $value) | |
Protected Member Functions | |
| fix () | |
| load () | |
Static Protected Member Functions | |
| static | hackyFixForGeneratorClasspathInLevelDat (string $className) |
Protected Attributes | |
| CompoundTag | $compoundTag |
| const | TAG_GENERATOR_NAME = "generatorName" |
| const | TAG_GENERATOR_OPTIONS = "generatorOptions" |
| const | TAG_LEVEL_NAME = "LevelName" |
| const | TAG_RANDOM_SEED = "RandomSeed" |
| const | TAG_SPAWN_X = "SpawnX" |
| const | TAG_SPAWN_Y = "SpawnY" |
| const | TAG_SPAWN_Z = "SpawnZ" |
| const | TAG_TIME = "Time" |
Definition at line 34 of file BaseNbtWorldData.php.
| pocketmine\world\format\io\data\BaseNbtWorldData::__construct | ( | protected string | $dataPath | ) |
| CorruptedWorldException | |
| UnsupportedWorldFormatException |
Definition at line 50 of file BaseNbtWorldData.php.
References pocketmine\world\format\io\data\BaseNbtWorldData\fix(), and pocketmine\world\format\io\data\BaseNbtWorldData\load().
Here is the call graph for this function:
|
abstractprotected |
| CorruptedWorldException | |
| UnsupportedWorldFormatException |
Reimplemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
Referenced by pocketmine\world\format\io\data\BaseNbtWorldData\__construct().
Here is the caller graph for this function:| pocketmine\world\format\io\data\BaseNbtWorldData::getCompoundTag | ( | ) |
Definition at line 109 of file BaseNbtWorldData.php.
|
inherited |
Returns the world difficulty. This will be one of the World constants.
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
| pocketmine\world\format\io\data\BaseNbtWorldData::getGenerator | ( | ) |
Returns the generator name
Implements pocketmine\world\format\io\WorldData.
Definition at line 123 of file BaseNbtWorldData.php.
| pocketmine\world\format\io\data\BaseNbtWorldData::getGeneratorOptions | ( | ) |
Implements pocketmine\world\format\io\WorldData.
Definition at line 127 of file BaseNbtWorldData.php.
|
inherited |
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
|
inherited |
Returns the time in ticks to the next lightning level change.
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
| pocketmine\world\format\io\data\BaseNbtWorldData::getName | ( | ) |
Implements pocketmine\world\format\io\WorldData.
Definition at line 115 of file BaseNbtWorldData.php.
|
inherited |
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
|
inherited |
Returns the time in ticks to the next rain level change.
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
| pocketmine\world\format\io\data\BaseNbtWorldData::getSeed | ( | ) |
Implements pocketmine\world\format\io\WorldData.
Definition at line 131 of file BaseNbtWorldData.php.
| pocketmine\world\format\io\data\BaseNbtWorldData::getSpawn | ( | ) |
Implements pocketmine\world\format\io\WorldData.
Definition at line 146 of file BaseNbtWorldData.php.
| pocketmine\world\format\io\data\BaseNbtWorldData::getTime | ( | ) |
Implements pocketmine\world\format\io\WorldData.
Definition at line 135 of file BaseNbtWorldData.php.
|
staticprotected |
Hack to fix worlds broken previously by older versions of PocketMine-MP which incorrectly saved classpaths of generators into level.dat on imported (not generated) worlds.
This should only have affected leveldb worlds as far as I know, because PC format worlds include the generatorName tag by default. However, MCPE leveldb ones didn't, and so they would get filled in with something broken.
This bug took a long time to get found because previously the generator manager would just return the default generator silently on failure to identify the correct generator, which caused lots of unexpected bugs.
Only classnames which were written into the level.dat from "fixing" the level data are included here. These are hardcoded to avoid problems fixing broken worlds in the future if these classes get moved, renamed or removed.
| string | $className | Classname saved in level.dat |
Definition at line 95 of file BaseNbtWorldData.php.
|
abstractprotected |
| CorruptedWorldException | |
| UnsupportedWorldFormatException |
Reimplemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
Referenced by pocketmine\world\format\io\data\BaseNbtWorldData\__construct().
Here is the caller graph for this function:
|
inherited |
Saves information about the world state, such as weather, time, etc.
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
|
inherited |
Sets the world difficulty.
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
|
inherited |
| float | $level | 0.0 - 1.0 |
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
|
inherited |
Sets the time in ticks to the next lightning level change.
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
| pocketmine\world\format\io\data\BaseNbtWorldData::setName | ( | string | $value | ) |
Implements pocketmine\world\format\io\WorldData.
Definition at line 119 of file BaseNbtWorldData.php.
|
inherited |
| float | $level | 0.0 - 1.0 |
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
|
inherited |
Sets the time in ticks to the next rain level change.
Implemented in pocketmine\world\format\io\data\BedrockWorldData, and pocketmine\world\format\io\data\JavaWorldData.
| pocketmine\world\format\io\data\BaseNbtWorldData::setSpawn | ( | Vector3 | $pos | ) |
Implements pocketmine\world\format\io\WorldData.
Definition at line 150 of file BaseNbtWorldData.php.
| pocketmine\world\format\io\data\BaseNbtWorldData::setTime | ( | int | $value | ) |
Implements pocketmine\world\format\io\WorldData.
Definition at line 142 of file BaseNbtWorldData.php.
|
protected |
Definition at line 44 of file BaseNbtWorldData.php.
|
protected |
Definition at line 36 of file BaseNbtWorldData.php.
|
protected |
Definition at line 37 of file BaseNbtWorldData.php.
|
protected |
Definition at line 35 of file BaseNbtWorldData.php.
|
protected |
Definition at line 38 of file BaseNbtWorldData.php.
|
protected |
Definition at line 40 of file BaseNbtWorldData.php.
|
protected |
Definition at line 41 of file BaseNbtWorldData.php.
|
protected |
Definition at line 42 of file BaseNbtWorldData.php.
|
protected |
Definition at line 39 of file BaseNbtWorldData.php.