Rename Detour_Free() to Detour_LevelShutdown()

Added the missing call to v_Detour_LevelInit(), which was removed for debugging purposes.
This commit is contained in:
Kawe Mazidjatari 2022-11-05 00:11:17 +01:00
parent 4bd164a535
commit 8147431b0f
3 changed files with 7 additions and 5 deletions

View File

@ -66,7 +66,7 @@ void Detour_LevelInit()
//-----------------------------------------------------------------------------
// Purpose: free's the memory used by all valid NavMesh slots
//-----------------------------------------------------------------------------
void Detour_Free()
void Detour_LevelShutdown()
{
for (int i = 0; i < MAX_HULLS; i++)
{
@ -80,7 +80,7 @@ void Detour_Free()
}
//-----------------------------------------------------------------------------
// Purpose: checks if a NavMesh has failed to load
// Purpose: checks if the NavMesh has failed to load
// Output : true if a NavMesh has successfully loaded, false otherwise
//-----------------------------------------------------------------------------
bool Detour_IsLoaded()
@ -109,7 +109,9 @@ bool Detour_IsLoaded()
void Detour_HotSwap()
{
// Free and re-init NavMesh.
Detour_Free();
Detour_LevelShutdown();
v_Detour_LevelInit();
if (!Detour_IsLoaded())
Error(eDLL_T::SERVER, NOERROR, "%s - Failed to hot swap NavMesh\n", __FUNCTION__);
}

View File

@ -50,7 +50,7 @@ dtNavMesh* GetNavMeshForHull(int hullSize);
uint32_t GetHullMaskById(int hullId);
void Detour_LevelInit();
void Detour_Free();
void Detour_LevelShutdown();
bool Detour_IsLoaded();
void Detour_HotSwap();
///////////////////////////////////////////////////////////////////////////////

View File

@ -225,7 +225,7 @@ Detour_HotSwap_f
void Detour_HotSwap_f(const CCommand& args)
{
if (!g_pServer->IsActive())
return;
return; // Only execute if server is initialized and active.
DevMsg(eDLL_T::SERVER, "Executing NavMesh hot swap for level '%s'\n",
g_ServerGlobalVariables->m_pszMapName);