diff options
author | peterbell10 <peterbell10@live.co.uk> | 2017-09-22 17:55:42 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2017-10-21 19:33:22 +0200 |
commit | 1537ebed6fa880ca8f9df92e5ac99324375b91a5 (patch) | |
tree | 0f141da47761e94a64331584b3924b9436777f51 /src/Root.cpp | |
parent | Fix tool builds on AppleClang (diff) | |
download | cuberite-1537ebed6fa880ca8f9df92e5ac99324375b91a5.tar cuberite-1537ebed6fa880ca8f9df92e5ac99324375b91a5.tar.gz cuberite-1537ebed6fa880ca8f9df92e5ac99324375b91a5.tar.bz2 cuberite-1537ebed6fa880ca8f9df92e5ac99324375b91a5.tar.lz cuberite-1537ebed6fa880ca8f9df92e5ac99324375b91a5.tar.xz cuberite-1537ebed6fa880ca8f9df92e5ac99324375b91a5.tar.zst cuberite-1537ebed6fa880ca8f9df92e5ac99324375b91a5.zip |
Diffstat (limited to 'src/Root.cpp')
-rw-r--r-- | src/Root.cpp | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/src/Root.cpp b/src/Root.cpp index 5c461a9ac..cdc25b2a0 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -213,7 +213,7 @@ void cRoot::Start(std::unique_ptr<cSettingsRepositoryInterface> a_OverridesRepo) m_BrewingRecipes.reset(new cBrewingRecipes()); LOGD("Loading worlds..."); - LoadWorlds(*settingsRepo, IsNewIniFile); + LoadWorlds(dd, *settingsRepo, IsNewIniFile); LOGD("Loading plugin manager..."); m_PluginManager = new cPluginManager(dd); @@ -397,7 +397,7 @@ void cRoot::LoadGlobalSettings() -void cRoot::LoadWorlds(cSettingsRepositoryInterface & a_Settings, bool a_IsNewIniFile) +void cRoot::LoadWorlds(cDeadlockDetect & a_dd, cSettingsRepositoryInterface & a_Settings, bool a_IsNewIniFile) { if (a_IsNewIniFile) { @@ -407,19 +407,28 @@ void cRoot::LoadWorlds(cSettingsRepositoryInterface & a_Settings, bool a_IsNewIn a_Settings.AddValue("WorldPaths", "world", "world"); a_Settings.AddValue("WorldPaths", "world_nether", "world_nether"); a_Settings.AddValue("WorldPaths", "world_the_end", "world_the_end"); - m_pDefaultWorld = new cWorld("world", "world"); + + AStringVector WorldNames{ "world", "world_nether", "world_the_end" }; + m_pDefaultWorld = new cWorld("world", "world", a_dd, WorldNames); m_WorldsByName["world"] = m_pDefaultWorld; - m_WorldsByName["world_nether"] = new cWorld("world_nether", "world_nether", dimNether, "world"); - m_WorldsByName["world_the_end"] = new cWorld("world_the_end", "world_the_end", dimEnd, "world"); + m_WorldsByName["world_nether"] = new cWorld("world_nether", "world_nether", a_dd, WorldNames, dimNether, "world"); + m_WorldsByName["world_the_end"] = new cWorld("world_the_end", "world_the_end", a_dd, WorldNames, dimEnd, "world"); return; } - // First get the default world + // Build a list of all world names + auto Worlds = a_Settings.GetValues("Worlds"); + AStringVector WorldNames(Worlds.size()); + for (const auto & World : Worlds) + { + WorldNames.push_back(World.second); + } + + // Get the default world AString DefaultWorldName = a_Settings.GetValueSet("Worlds", "DefaultWorld", "world"); AString DefaultWorldPath = a_Settings.GetValueSet("WorldPaths", DefaultWorldName, DefaultWorldName); - m_pDefaultWorld = new cWorld(DefaultWorldName.c_str(), DefaultWorldPath.c_str()); + m_pDefaultWorld = new cWorld(DefaultWorldName.c_str(), DefaultWorldPath.c_str(), a_dd, WorldNames); m_WorldsByName[ DefaultWorldName ] = m_pDefaultWorld; - auto Worlds = a_Settings.GetValues("Worlds"); // Then load the other worlds if (Worlds.size() <= 0) @@ -516,7 +525,7 @@ void cRoot::LoadWorlds(cSettingsRepositoryInterface & a_Settings, bool a_IsNewIn } Dimension = dimEnd; } - NewWorld = new cWorld(WorldName.c_str(), WorldPath.c_str(), Dimension, LinkTo); + NewWorld = new cWorld(WorldName.c_str(), WorldPath.c_str(), a_dd, WorldNames, Dimension, LinkTo); m_WorldsByName[WorldName] = NewWorld; } // for i - Worlds @@ -538,7 +547,7 @@ void cRoot::StartWorlds(cDeadlockDetect & a_DeadlockDetect) { for (WorldMap::iterator itr = m_WorldsByName.begin(); itr != m_WorldsByName.end(); ++itr) { - itr->second->Start(a_DeadlockDetect); + itr->second->Start(); itr->second->InitializeSpawn(); m_PluginManager->CallHookWorldStarted(*itr->second); } |