1
0

PathFinder uses UniquePtr for cell map.

This commit is contained in:
SafwatHalaby
2015-05-15 20:25:44 +03:00
committed by Mattes D
parent 5a1be26203
commit 4ffc6621a9
2 changed files with 3 additions and 8 deletions

View File

@@ -215,11 +215,6 @@ bool cPath::Step_Internal()
void cPath::FinishCalculation()
{
for (auto && pair : m_Map)
{
delete pair.second;
}
m_Map.clear();
m_OpenList = std::priority_queue<cPathCell *, std::vector<cPathCell *>, compareHeuristics>{};
}
@@ -348,7 +343,7 @@ cPathCell * cPath::GetCell(const Vector3i & a_Location)
{
Cell = new cPathCell();
Cell->m_Location = a_Location;
m_Map[a_Location] = Cell;
m_Map[a_Location] = UniquePtr<cPathCell>(Cell);
Cell->m_IsSolid = IsSolid(a_Location);
Cell->m_Status = eCellStatus::NOLIST;
#ifdef COMPILING_PATHFIND_DEBUGGER
@@ -360,6 +355,6 @@ cPathCell * cPath::GetCell(const Vector3i & a_Location)
}
else
{
return m_Map[a_Location];
return m_Map[a_Location].get();
}
}