1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 17:15:33 +00:00

[Client] Ensure mwmp::Main is initialized before GUIController cleanup

Previously, certain errors early in the program's execution – such as an attempt to use two different packet processors for the same packet ID – would not be displayed because of a crash when attempting to get an uninitialized mwmp::Main in the Engine's destructor.
This commit is contained in:
David Cernat 2019-12-04 08:39:33 +02:00
parent 5b4db83d61
commit 270867a397
3 changed files with 10 additions and 2 deletions

View file

@ -345,9 +345,11 @@ OMW::Engine::~Engine()
/*
Start of tes3mp addition
Free up memory allocated by multiplayer's GUIController
Free up memory allocated by multiplayer's GUIController, but make sure
mwmp::Main has actually been initialized
*/
mwmp::Main::get().getGUIController()->cleanUp();
if (mwmp::Main::isInitialized())
mwmp::Main::get().getGUIController()->cleanUp();
/*
End of tes3mp addition
*/

View file

@ -163,6 +163,11 @@ void Main::postInit()
MWBase::Environment::get().getMechanicsManager()->toggleAI();
}
bool Main::isInitialized()
{
return pMain != nullptr;
}
void Main::destroy()
{
assert(pMain);

View file

@ -23,6 +23,7 @@ namespace mwmp
static void configure(const boost::program_options::variables_map &variables);
static bool init(std::vector<std::string> &content, Files::Collections &collections);
static void postInit();
static bool isInitialized();
static void destroy();
static const Main &get();
static void frame(float dt);