Skip to content

Commit

Permalink
Fixed crash on restart
Browse files Browse the repository at this point in the history
  • Loading branch information
tigerw committed Dec 21, 2014
1 parent d4c9dad commit 0d6672b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
15 changes: 12 additions & 3 deletions src/Root.cpp
Expand Up @@ -135,8 +135,9 @@ void cRoot::Start(void)
}

LOG("Starting server...");
m_MojangAPI = new cMojangAPI;
bool ShouldAuthenticate = IniFile.GetValueSetB("Authentication", "Authenticate", true);
m_MojangAPI.Start(IniFile, ShouldAuthenticate); // Mojang API needs to be started before plugins, so that plugins may use it for DB upgrades on server init
m_MojangAPI->Start(IniFile, ShouldAuthenticate); // Mojang API needs to be started before plugins, so that plugins may use it for DB upgrades on server init
if (!m_Server->InitServer(IniFile, ShouldAuthenticate))
{
IniFile.WriteFile("settings.ini");
Expand All @@ -149,7 +150,7 @@ void cRoot::Start(void)

LOGD("Loading settings...");
m_RankManager.reset(new cRankManager());
m_RankManager->Initialize(m_MojangAPI);
m_RankManager->Initialize(*m_MojangAPI);
m_CraftingRecipes = new cCraftingRecipes;
m_FurnaceRecipe = new cFurnaceRecipe();

Expand Down Expand Up @@ -196,7 +197,7 @@ void cRoot::Start(void)
}
#endif

LOG("Startup complete, took %ld ms!", static_cast<long int>(std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now() - BeginTime).count()));
LOG("Startup complete, took %ldms!", static_cast<long int>(std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now() - BeginTime).count()));
#ifdef _WIN32
EnableMenuItem(hmenu, SC_CLOSE, MF_ENABLED); // Re-enable close button
#endif
Expand All @@ -213,21 +214,28 @@ void cRoot::Start(void)

// Stop the server:
m_WebAdmin->Stop();

LOG("Shutting down server...");
m_Server->Shutdown();
delete m_MojangAPI; m_MojangAPI = nullptr;

LOGD("Shutting down deadlock detector...");
dd.Stop();

LOGD("Stopping world threads...");
StopWorlds();

LOGD("Stopping authenticator...");
m_Authenticator.Stop();

LOGD("Freeing MonsterConfig...");
delete m_MonsterConfig; m_MonsterConfig = nullptr;
delete m_WebAdmin; m_WebAdmin = nullptr;

LOGD("Unloading recipes...");
delete m_FurnaceRecipe; m_FurnaceRecipe = nullptr;
delete m_CraftingRecipes; m_CraftingRecipes = nullptr;

LOGD("Unloading worlds...");
UnloadWorlds();

Expand All @@ -238,6 +246,7 @@ void cRoot::Start(void)

LOG("Cleaning up...");
delete m_Server; m_Server = nullptr;

LOG("Shutdown successful!");
}

Expand Down
4 changes: 2 additions & 2 deletions src/Root.h
Expand Up @@ -86,7 +86,7 @@ class cRoot
cWebAdmin * GetWebAdmin (void) { return m_WebAdmin; } // tolua_export
cPluginManager * GetPluginManager (void) { return m_PluginManager; } // tolua_export
cAuthenticator & GetAuthenticator (void) { return m_Authenticator; }
cMojangAPI & GetMojangAPI (void) { return m_MojangAPI; }
cMojangAPI & GetMojangAPI (void) { return *m_MojangAPI; }
cRankManager * GetRankManager (void) { return m_RankManager.get(); }

/** Queues a console command for execution through the cServer class.
Expand Down Expand Up @@ -191,7 +191,7 @@ class cRoot
cWebAdmin * m_WebAdmin;
cPluginManager * m_PluginManager;
cAuthenticator m_Authenticator;
cMojangAPI m_MojangAPI;
cMojangAPI * m_MojangAPI;

std::unique_ptr<cRankManager> m_RankManager;

Expand Down

0 comments on commit 0d6672b

Please sign in to comment.