added paths 'world:' entry point
This commit is contained in:
@@ -76,6 +76,10 @@ void EnginePaths::setResources(fs::path folder) {
|
||||
this->resources = folder;
|
||||
}
|
||||
|
||||
void EnginePaths::setWorldFolder(fs::path folder) {
|
||||
this->worldFolder = folder;
|
||||
}
|
||||
|
||||
void EnginePaths::setContentPacks(std::vector<ContentPack>* contentPacks) {
|
||||
this->contentPacks = contentPacks;
|
||||
}
|
||||
@@ -96,6 +100,10 @@ fs::path EnginePaths::resolve(std::string path) {
|
||||
return userfiles/fs::path(filename);
|
||||
}
|
||||
|
||||
if (prefix == "world") {
|
||||
return worldFolder/fs::path(filename);
|
||||
}
|
||||
|
||||
if (contentPacks) {
|
||||
for (auto& pack : *contentPacks) {
|
||||
if (pack.id == prefix) {
|
||||
|
||||
Reference in New Issue
Block a user