Recast: fix incorrect renaming

Everything 'dtAlloc', 'rcAlloc', 'dtAlloc', 'dtFree', got renamed into 'rdAlloc', 'rdFree'. There were a lot of object allocators that used these suffixes which were not accounted for causing those to be renamed. Everything has been renamed back to their original names (excluding the actual rdAlloc/rdFree functions as these were supposed to be renamed).

No code logic was changed in this commit.
The accidental renaming was caused in commit fa8d89d287752782ebdd5d9563f04fa72ef0bee9
This commit is contained in:
Kawe Mazidjatari 2024-07-07 17:25:42 +02:00
parent 3fbe657577
commit c64ebe12c2
25 changed files with 143 additions and 143 deletions

View File

@ -115,7 +115,7 @@ CrowdToolState::CrowdToolState() :
memset(m_trails, 0, sizeof(m_trails));
m_vod = rdAllocObstacleAvoidanceDebugData();
m_vod = dtAllocObstacleAvoidanceDebugData();
m_vod->init(2048);
memset(&m_agentDebug, 0, sizeof(m_agentDebug));
@ -125,7 +125,7 @@ CrowdToolState::CrowdToolState() :
CrowdToolState::~CrowdToolState()
{
rdFreeObstacleAvoidanceDebugData(m_vod);
dtFreeObstacleAvoidanceDebugData(m_vod);
}
void CrowdToolState::init(class Editor* editor)

View File

@ -68,8 +68,8 @@ Editor::Editor() :
m_ctx(0)
{
resetCommonSettings();
m_navQuery = rdAllocNavMeshQuery();
m_crowd = rdAllocCrowd();
m_navQuery = dtAllocNavMeshQuery();
m_crowd = dtAllocCrowd();
for (int i = 0; i < MAX_TOOLS; i++)
m_toolStates[i] = 0;
@ -77,9 +77,9 @@ Editor::Editor() :
Editor::~Editor()
{
rdFreeNavMeshQuery(m_navQuery);
rdFreeNavMesh(m_navMesh);
rdFreeCrowd(m_crowd);
dtFreeNavMeshQuery(m_navQuery);
dtFreeNavMesh(m_navMesh);
dtFreeCrowd(m_crowd);
delete m_tool;
for (int i = 0; i < MAX_TOOLS; i++)
delete m_toolStates[i];
@ -354,7 +354,7 @@ dtNavMesh* Editor::loadAll(std::string path)
return 0;
}
dtNavMesh* mesh = rdAllocNavMesh();
dtNavMesh* mesh = dtAllocNavMesh();
if (!mesh)
{
fclose(fp);

View File

@ -48,7 +48,7 @@ Editor_Debug::Editor_Debug() :
resetCommonSettings();
// Test
/* m_chf = rdAllocCompactHeightfield();
/* m_chf = rcAllocCompactHeightfield();
FileIO io;
if (!io.openForRead("test.chf"))
{
@ -125,7 +125,7 @@ Editor_Debug::Editor_Debug() :
{
m_cset = rdAllocContourSet();
m_cset = rcAllocContourSet();
if (m_cset)
{
FileIO io;
@ -151,7 +151,7 @@ Editor_Debug::Editor_Debug() :
/* if (m_cset)
{
m_pmesh = rdAllocPolyMesh();
m_pmesh = rcAllocPolyMesh();
if (m_pmesh)
{
rcBuildPolyMesh(m_ctx, *m_cset, 6, *m_pmesh);
@ -163,9 +163,9 @@ Editor_Debug::Editor_Debug() :
Editor_Debug::~Editor_Debug()
{
rdFreeCompactHeightfield(m_chf);
rdFreeContourSet(m_cset);
rdFreePolyMesh(m_pmesh);
rcFreeCompactHeightfield(m_chf);
rcFreeContourSet(m_cset);
rcFreePolyMesh(m_pmesh);
}
void Editor_Debug::handleSettings()
@ -357,11 +357,11 @@ bool Editor_Debug::handleBuild()
if (m_chf)
{
rdFreeContourSet(m_cset);
rcFreeContourSet(m_cset);
m_cset = 0;
// Create contours.
m_cset = rdAllocContourSet();
m_cset = rcAllocContourSet();
if (!m_cset)
{
m_ctx->log(RC_LOG_ERROR, "buildNavigation: Out of memory 'cset'.");

View File

@ -195,7 +195,7 @@ Editor_TileMesh::Editor_TileMesh() :
Editor_TileMesh::~Editor_TileMesh()
{
cleanup();
rdFreeNavMesh(m_navMesh);
dtFreeNavMesh(m_navMesh);
m_navMesh = 0;
}
@ -203,15 +203,15 @@ void Editor_TileMesh::cleanup()
{
delete [] m_triareas;
m_triareas = 0;
rdFreeHeightField(m_solid);
rcFreeHeightField(m_solid);
m_solid = 0;
rdFreeCompactHeightfield(m_chf);
rcFreeCompactHeightfield(m_chf);
m_chf = 0;
rdFreeContourSet(m_cset);
rcFreeContourSet(m_cset);
m_cset = 0;
rdFreePolyMesh(m_pmesh);
rcFreePolyMesh(m_pmesh);
m_pmesh = 0;
rdFreePolyMeshDetail(m_dmesh);
rcFreePolyMeshDetail(m_dmesh);
m_dmesh = 0;
}
const hulldef hulls[NAVMESH_COUNT] = {
@ -296,7 +296,7 @@ void Editor_TileMesh::handleSettings()
if (imguiButton("Load"))
{
rdFreeNavMesh(m_navMesh);
dtFreeNavMesh(m_navMesh);
m_navMesh = Editor::loadAll(m_modelName.c_str());
m_navQuery->init(m_navMesh, 2048);
@ -653,7 +653,7 @@ void Editor_TileMesh::handleMeshChanged(InputGeom* geom)
cleanup();
rdFreeNavMesh(m_navMesh);
dtFreeNavMesh(m_navMesh);
m_navMesh = 0;
if (m_tool)
@ -673,9 +673,9 @@ bool Editor_TileMesh::handleBuild()
return false;
}
rdFreeNavMesh(m_navMesh);
dtFreeNavMesh(m_navMesh);
m_navMesh = rdAllocNavMesh();
m_navMesh = dtAllocNavMesh();
if (!m_navMesh)
{
m_ctx->log(RC_LOG_ERROR, "buildTiledNavigation: Could not allocate navmesh.");
@ -974,7 +974,7 @@ unsigned char* Editor_TileMesh::buildTileMesh(const int tx, const int ty, const
m_ctx->log(RC_LOG_PROGRESS, " - %.1fK verts, %.1fK tris", nverts/1000.0f, ntris/1000.0f);
// Allocate voxel heightfield where we rasterize our input data to.
m_solid = rdAllocHeightfield();
m_solid = rcAllocHeightfield();
if (!m_solid)
{
m_ctx->log(RC_LOG_ERROR, "buildNavigation: Out of memory 'solid'.");
@ -1072,7 +1072,7 @@ unsigned char* Editor_TileMesh::buildTileMesh(const int tx, const int ty, const
// Compact the heightfield so that it is faster to handle from now on.
// This will result more cache coherent data as well as the neighbours
// between walkable cells will be calculated.
m_chf = rdAllocCompactHeightfield();
m_chf = rcAllocCompactHeightfield();
if (!m_chf)
{
m_ctx->log(RC_LOG_ERROR, "buildNavigation: Out of memory 'chf'.");
@ -1086,7 +1086,7 @@ unsigned char* Editor_TileMesh::buildTileMesh(const int tx, const int ty, const
if (!m_keepInterResults)
{
rdFreeHeightField(m_solid);
rcFreeHeightField(m_solid);
m_solid = 0;
}
@ -1166,7 +1166,7 @@ unsigned char* Editor_TileMesh::buildTileMesh(const int tx, const int ty, const
}
// Create contours.
m_cset = rdAllocContourSet();
m_cset = rcAllocContourSet();
if (!m_cset)
{
m_ctx->log(RC_LOG_ERROR, "buildNavigation: Out of memory 'cset'.");
@ -1184,7 +1184,7 @@ unsigned char* Editor_TileMesh::buildTileMesh(const int tx, const int ty, const
}
// Build polygon navmesh from the contours.
m_pmesh = rdAllocPolyMesh();
m_pmesh = rcAllocPolyMesh();
if (!m_pmesh)
{
m_ctx->log(RC_LOG_ERROR, "buildNavigation: Out of memory 'pmesh'.");
@ -1197,7 +1197,7 @@ unsigned char* Editor_TileMesh::buildTileMesh(const int tx, const int ty, const
}
// Build detail mesh.
m_dmesh = rdAllocPolyMeshDetail();
m_dmesh = rcAllocPolyMeshDetail();
if (!m_dmesh)
{
m_ctx->log(RC_LOG_ERROR, "buildNavigation: Out of memory 'dmesh'.");
@ -1216,9 +1216,9 @@ unsigned char* Editor_TileMesh::buildTileMesh(const int tx, const int ty, const
//rcFlipPolyMeshDetail(*m_dmesh,m_pmesh->nverts);
if (!m_keepInterResults)
{
rdFreeCompactHeightfield(m_chf);
rcFreeCompactHeightfield(m_chf);
m_chf = 0;
rdFreeContourSet(m_cset);
rcFreeContourSet(m_cset);
m_cset = 0;
}

View File

@ -795,12 +795,12 @@ int calcTraversalTableSize(const int numPolyGroups);
/// Allocates a navigation mesh object using the Detour allocator.
/// @return A navigation mesh that is ready for initialization, or null on failure.
/// @ingroup detour
dtNavMesh* rdAllocNavMesh();
dtNavMesh* dtAllocNavMesh();
/// Frees the specified navigation mesh object using the Detour allocator.
/// @param[in] navmesh A navigation mesh allocated using #rdAllocNavMesh
/// @param[in] navmesh A navigation mesh allocated using #dtAllocNavMesh
/// @ingroup detour
void rdFreeNavMesh(dtNavMesh* navmesh);
void dtFreeNavMesh(dtNavMesh* navmesh);
#endif // DETOURNAVMESH_H

View File

@ -592,11 +592,11 @@ private:
/// Allocates a query object using the Detour allocator.
/// @return An allocated query object, or null on failure.
/// @ingroup detour
dtNavMeshQuery* rdAllocNavMeshQuery();
dtNavMeshQuery* dtAllocNavMeshQuery();
/// Frees the specified query object using the Detour allocator.
/// @param[in] query A query object allocated using #rdAllocNavMeshQuery
/// @param[in] query A query object allocated using #dtAllocNavMeshQuery
/// @ingroup detour
void rdFreeNavMeshQuery(dtNavMeshQuery* query);
void dtFreeNavMeshQuery(dtNavMeshQuery* query);
#endif // DETOURNAVMESHQUERY_H

View File

@ -145,7 +145,7 @@ int calcTraversalTableSize(const int numPolyGroups)
return sizeof(int)*(numPolyGroups*((numPolyGroups+(DT_BITS_PER_BIT_CELL-1))/DT_BITS_PER_BIT_CELL));
}
dtNavMesh* rdAllocNavMesh()
dtNavMesh* dtAllocNavMesh()
{
void* mem = rdAlloc(sizeof(dtNavMesh), RD_ALLOC_PERM);
if (!mem) return 0;
@ -156,7 +156,7 @@ dtNavMesh* rdAllocNavMesh()
///
/// This function will only free the memory for tiles with the #DT_TILE_FREE_DATA
/// flag set.
void rdFreeNavMesh(dtNavMesh* navmesh)
void dtFreeNavMesh(dtNavMesh* navmesh)
{
if (!navmesh) return;
navmesh->~dtNavMesh();
@ -192,7 +192,7 @@ Notes:
- This class does not implement any asynchronous methods. So the ::dtStatus result of all methods will
always contain either a success or failure flag.
@see dtNavMeshQuery, dtCreateNavMeshData, dtNavMeshCreateParams, #rdAllocNavMesh, #rdFreeNavMesh
@see dtNavMeshQuery, dtCreateNavMeshData, dtNavMeshCreateParams, #dtAllocNavMesh, #dtFreeNavMesh
*/
dtNavMesh::dtNavMesh() :

View File

@ -103,14 +103,14 @@ inline float dtQueryFilter::getCost(const float* pa, const float* pb,
static const float H_SCALE = 0.999f; // Search heuristic scale.
dtNavMeshQuery* rdAllocNavMeshQuery()
dtNavMeshQuery* dtAllocNavMeshQuery()
{
void* mem = rdAlloc(sizeof(dtNavMeshQuery), RD_ALLOC_PERM);
if (!mem) return 0;
return new(mem) dtNavMeshQuery;
}
void rdFreeNavMeshQuery(dtNavMeshQuery* navmesh)
void dtFreeNavMeshQuery(dtNavMeshQuery* navmesh)
{
if (!navmesh) return;
navmesh->~dtNavMeshQuery();
@ -133,7 +133,7 @@ void rdFreeNavMeshQuery(dtNavMeshQuery* navmesh)
/// considered impassable. A @e portal is a passable segment between polygons.
/// A portal may be treated as a wall based on the dtQueryFilter used for a query.
///
/// @see dtNavMesh, dtQueryFilter, #rdAllocNavMeshQuery(), #rdAllocNavMeshQuery()
/// @see dtNavMesh, dtQueryFilter, #dtAllocNavMeshQuery(), #dtAllocNavMeshQuery()
dtNavMeshQuery::dtNavMeshQuery() :
m_nav(0),

View File

@ -363,12 +363,12 @@ private:
/// Allocates a crowd object using the Detour allocator.
/// @return A crowd object that is ready for initialization, or null on failure.
/// @ingroup crowd
dtCrowd* rdAllocCrowd();
dtCrowd* dtAllocCrowd();
/// Frees the specified crowd object using the Detour allocator.
/// @param[in] ptr A crowd object allocated using #rdAllocCrowd
/// @param[in] ptr A crowd object allocated using #dtAllocCrowd
/// @ingroup crowd
void rdFreeCrowd(dtCrowd* ptr);
void dtFreeCrowd(dtCrowd* ptr);
#endif // DETOURCROWD_H

View File

@ -73,8 +73,8 @@ private:
float* m_tpen;
};
dtObstacleAvoidanceDebugData* rdAllocObstacleAvoidanceDebugData();
void rdFreeObstacleAvoidanceDebugData(dtObstacleAvoidanceDebugData* ptr);
dtObstacleAvoidanceDebugData* dtAllocObstacleAvoidanceDebugData();
void dtFreeObstacleAvoidanceDebugData(dtObstacleAvoidanceDebugData* ptr);
static const int DT_MAX_PATTERN_DIVS = 32; ///< Max numver of adaptive divs.
@ -152,8 +152,8 @@ private:
int m_nsegments;
};
dtObstacleAvoidanceQuery* rdAllocObstacleAvoidanceQuery();
void rdFreeObstacleAvoidanceQuery(dtObstacleAvoidanceQuery* ptr);
dtObstacleAvoidanceQuery* dtAllocObstacleAvoidanceQuery();
void dtFreeObstacleAvoidanceQuery(dtObstacleAvoidanceQuery* ptr);
#endif // DETOUROBSTACLEAVOIDANCE_H

View File

@ -66,8 +66,8 @@ private:
dtProximityGrid& operator=(const dtProximityGrid&);
};
dtProximityGrid* rdAllocProximityGrid();
void rdFreeProximityGrid(dtProximityGrid* ptr);
dtProximityGrid* dtAllocProximityGrid();
void dtFreeProximityGrid(dtProximityGrid* ptr);
#endif // DETOURPROXIMITYGRID_H

View File

@ -32,14 +32,14 @@
#include "Shared\Include\SharedAlloc.h"
dtCrowd* rdAllocCrowd()
dtCrowd* dtAllocCrowd()
{
void* mem = rdAlloc(sizeof(dtCrowd), RD_ALLOC_PERM);
if (!mem) return 0;
return new(mem) dtCrowd;
}
void rdFreeCrowd(dtCrowd* ptr)
void dtFreeCrowd(dtCrowd* ptr)
{
if (!ptr) return;
ptr->~dtCrowd();
@ -67,7 +67,7 @@ of the crowd features.
A common method for setting up the crowd is as follows:
-# Allocate the crowd using #rdAllocCrowd.
-# Allocate the crowd using #dtAllocCrowd.
-# Initialize the crowd using #init().
-# Set the avoidance configurations using #setObstacleAvoidanceParams().
-# Add agents using #addAgent() and make an initial movement request using #requestMoveTarget().
@ -92,7 +92,7 @@ Notes:
- This class is meant to provide 'local' movement. There is a limit of 256 polygons in the path corridor.
So it is not meant to provide automatic pathfinding services over long distances.
@see rdAllocCrowd(), rdFreeCrowd(), init(), dtCrowdAgent
@see dtAllocCrowd(), dtFreeCrowd(), init(), dtCrowdAgent
*/
@ -133,13 +133,13 @@ void dtCrowd::purge()
rdFree(m_pathResult);
m_pathResult = 0;
rdFreeProximityGrid(m_grid);
dtFreeProximityGrid(m_grid);
m_grid = 0;
rdFreeObstacleAvoidanceQuery(m_obstacleQuery);
dtFreeObstacleAvoidanceQuery(m_obstacleQuery);
m_obstacleQuery = 0;
rdFreeNavMeshQuery(m_navquery);
dtFreeNavMeshQuery(m_navquery);
m_navquery = 0;
}
@ -156,13 +156,13 @@ bool dtCrowd::init(const int maxAgents, const float maxAgentRadius, dtNavMesh* n
// Larger than agent radius because it is also used for agent recovery.
dtVset(m_agentPlacementHalfExtents, m_maxAgentRadius*2.0f, m_maxAgentRadius*1.5f, m_maxAgentRadius*2.0f);
m_grid = rdAllocProximityGrid();
m_grid = dtAllocProximityGrid();
if (!m_grid)
return false;
if (!m_grid->init(m_maxAgents*4, maxAgentRadius*3))
return false;
m_obstacleQuery = rdAllocObstacleAvoidanceQuery();
m_obstacleQuery = dtAllocObstacleAvoidanceQuery();
if (!m_obstacleQuery)
return false;
if (!m_obstacleQuery->init(6, 8))
@ -220,7 +220,7 @@ bool dtCrowd::init(const int maxAgents, const float maxAgentRadius, dtNavMesh* n
}
// The navquery is mostly used for local searches, no need for large node pool.
m_navquery = rdAllocNavMeshQuery();
m_navquery = dtAllocNavMeshQuery();
if (!m_navquery)
return false;
if (dtStatusFailed(m_navquery->init(nav, MAX_COMMON_NODES)))

View File

@ -67,14 +67,14 @@ static int isectRaySeg(const float* ap, const float* u,
dtObstacleAvoidanceDebugData* rdAllocObstacleAvoidanceDebugData()
dtObstacleAvoidanceDebugData* dtAllocObstacleAvoidanceDebugData()
{
void* mem = rdAlloc(sizeof(dtObstacleAvoidanceDebugData), RD_ALLOC_PERM);
if (!mem) return 0;
return new(mem) dtObstacleAvoidanceDebugData;
}
void rdFreeObstacleAvoidanceDebugData(dtObstacleAvoidanceDebugData* ptr)
void dtFreeObstacleAvoidanceDebugData(dtObstacleAvoidanceDebugData* ptr)
{
if (!ptr) return;
ptr->~dtObstacleAvoidanceDebugData();
@ -189,14 +189,14 @@ void dtObstacleAvoidanceDebugData::normalizeSamples()
}
dtObstacleAvoidanceQuery* rdAllocObstacleAvoidanceQuery()
dtObstacleAvoidanceQuery* dtAllocObstacleAvoidanceQuery()
{
void* mem = rdAlloc(sizeof(dtObstacleAvoidanceQuery), RD_ALLOC_PERM);
if (!mem) return 0;
return new(mem) dtObstacleAvoidanceQuery;
}
void rdFreeObstacleAvoidanceQuery(dtObstacleAvoidanceQuery* ptr)
void dtFreeObstacleAvoidanceQuery(dtObstacleAvoidanceQuery* ptr)
{
if (!ptr) return;
ptr->~dtObstacleAvoidanceQuery();

View File

@ -41,7 +41,7 @@ dtPathQueue::~dtPathQueue()
void dtPathQueue::purge()
{
rdFreeNavMeshQuery(m_navquery);
dtFreeNavMeshQuery(m_navquery);
m_navquery = 0;
for (int i = 0; i < MAX_QUEUE; ++i)
{
@ -54,7 +54,7 @@ bool dtPathQueue::init(const int maxPathSize, const int maxSearchNodeCount, dtNa
{
purge();
m_navquery = rdAllocNavMeshQuery();
m_navquery = dtAllocNavMeshQuery();
if (!m_navquery)
return false;
if (dtStatusFailed(m_navquery->init(nav, maxSearchNodeCount)))

View File

@ -25,14 +25,14 @@
#include "Shared\Include\SharedAssert.h"
dtProximityGrid* rdAllocProximityGrid()
dtProximityGrid* dtAllocProximityGrid()
{
void* mem = rdAlloc(sizeof(dtProximityGrid), RD_ALLOC_PERM);
if (!mem) return 0;
return new(mem) dtProximityGrid;
}
void rdFreeProximityGrid(dtProximityGrid* ptr)
void dtFreeProximityGrid(dtProximityGrid* ptr)
{
if (!ptr) return;
ptr->~dtProximityGrid();

View File

@ -256,7 +256,7 @@ private:
int m_nupdate;
};
dtTileCache* rdAllocTileCache();
void rdFreeTileCache(dtTileCache* tc);
dtTileCache* dtAllocTileCache();
void dtFreeTileCache(dtTileCache* tc);
#endif

View File

@ -112,17 +112,17 @@ dtStatus dtBuildTileCacheLayer(dtTileCacheCompressor* comp,
const unsigned char* cons,
unsigned char** outData, int* outDataSize);
void rdFreeTileCacheLayer(dtTileCacheAlloc* alloc, dtTileCacheLayer* layer);
void dtFreeTileCacheLayer(dtTileCacheAlloc* alloc, dtTileCacheLayer* layer);
dtStatus dtDecompressTileCacheLayer(dtTileCacheAlloc* alloc, dtTileCacheCompressor* comp,
unsigned char* compressed, const int compressedSize,
dtTileCacheLayer** layerOut);
dtTileCacheContourSet* rdAllocTileCacheContourSet(dtTileCacheAlloc* alloc);
void rdFreeTileCacheContourSet(dtTileCacheAlloc* alloc, dtTileCacheContourSet* cset);
dtTileCacheContourSet* dtAllocTileCacheContourSet(dtTileCacheAlloc* alloc);
void dtFreeTileCacheContourSet(dtTileCacheAlloc* alloc, dtTileCacheContourSet* cset);
dtTileCachePolyMesh* rdAllocTileCachePolyMesh(dtTileCacheAlloc* alloc);
void rdFreeTileCachePolyMesh(dtTileCacheAlloc* alloc, dtTileCachePolyMesh* lmesh);
dtTileCachePolyMesh* dtAllocTileCachePolyMesh(dtTileCacheAlloc* alloc);
void dtFreeTileCachePolyMesh(dtTileCacheAlloc* alloc, dtTileCachePolyMesh* lmesh);
dtStatus dtMarkCylinderArea(dtTileCacheLayer& layer, const float* orig, const float cs, const float ch,
const float* pos, const float radius, const float height, const unsigned char areaId);

View File

@ -9,14 +9,14 @@
#include <string.h>
#include <new>
dtTileCache* rdAllocTileCache()
dtTileCache* dtAllocTileCache()
{
void* mem = rdAlloc(sizeof(dtTileCache), RD_ALLOC_PERM);
if (!mem) return 0;
return new(mem) dtTileCache;
}
void rdFreeTileCache(dtTileCache* tc)
void dtFreeTileCache(dtTileCache* tc)
{
if (!tc) return;
tc->~dtTileCache();
@ -46,11 +46,11 @@ struct NavMeshTileBuildContext
inline ~NavMeshTileBuildContext() { purge(); }
void purge()
{
rdFreeTileCacheLayer(alloc, layer);
dtFreeTileCacheLayer(alloc, layer);
layer = 0;
rdFreeTileCacheContourSet(alloc, lcset);
dtFreeTileCacheContourSet(alloc, lcset);
lcset = 0;
rdFreeTileCachePolyMesh(alloc, lmesh);
dtFreeTileCachePolyMesh(alloc, lmesh);
lmesh = 0;
}
struct dtTileCacheLayer* layer;
@ -701,7 +701,7 @@ dtStatus dtTileCache::buildNavMeshTile(const dtCompressedTileRef ref, dtNavMesh*
if (dtStatusFailed(status))
return status;
bc.lcset = rdAllocTileCacheContourSet(m_talloc);
bc.lcset = dtAllocTileCacheContourSet(m_talloc);
if (!bc.lcset)
return DT_FAILURE | DT_OUT_OF_MEMORY;
status = dtBuildTileCacheContours(m_talloc, *bc.layer, walkableClimbVx,
@ -709,7 +709,7 @@ dtStatus dtTileCache::buildNavMeshTile(const dtCompressedTileRef ref, dtNavMesh*
if (dtStatusFailed(status))
return status;
bc.lmesh = rdAllocTileCachePolyMesh(m_talloc);
bc.lmesh = dtAllocTileCachePolyMesh(m_talloc);
if (!bc.lmesh)
return DT_FAILURE | DT_OUT_OF_MEMORY;
status = dtBuildTileCachePolyMesh(m_talloc, *bc.lcset, *bc.lmesh);

View File

@ -54,7 +54,7 @@ static const int MAX_REM_EDGES = 48; // TODO: make this an expression.
dtTileCacheContourSet* rdAllocTileCacheContourSet(dtTileCacheAlloc* alloc)
dtTileCacheContourSet* dtAllocTileCacheContourSet(dtTileCacheAlloc* alloc)
{
rdAssert(alloc);
@ -63,7 +63,7 @@ dtTileCacheContourSet* rdAllocTileCacheContourSet(dtTileCacheAlloc* alloc)
return cset;
}
void rdFreeTileCacheContourSet(dtTileCacheAlloc* alloc, dtTileCacheContourSet* cset)
void dtFreeTileCacheContourSet(dtTileCacheAlloc* alloc, dtTileCacheContourSet* cset)
{
rdAssert(alloc);
@ -74,7 +74,7 @@ void rdFreeTileCacheContourSet(dtTileCacheAlloc* alloc, dtTileCacheContourSet* c
alloc->free(cset);
}
dtTileCachePolyMesh* rdAllocTileCachePolyMesh(dtTileCacheAlloc* alloc)
dtTileCachePolyMesh* dtAllocTileCachePolyMesh(dtTileCacheAlloc* alloc)
{
rdAssert(alloc);
@ -83,7 +83,7 @@ dtTileCachePolyMesh* rdAllocTileCachePolyMesh(dtTileCacheAlloc* alloc)
return lmesh;
}
void rdFreeTileCachePolyMesh(dtTileCacheAlloc* alloc, dtTileCachePolyMesh* lmesh)
void dtFreeTileCachePolyMesh(dtTileCacheAlloc* alloc, dtTileCachePolyMesh* lmesh)
{
rdAssert(alloc);
@ -2145,7 +2145,7 @@ dtStatus dtBuildTileCacheLayer(dtTileCacheCompressor* comp,
return DT_SUCCESS;
}
void rdFreeTileCacheLayer(dtTileCacheAlloc* alloc, dtTileCacheLayer* layer)
void dtFreeTileCacheLayer(dtTileCacheAlloc* alloc, dtTileCacheLayer* layer)
{
rdAssert(alloc);
// The layer is allocated as one conitguous blob of data.

View File

@ -399,7 +399,7 @@ struct rcHeightfieldLayer
/// Represents a set of heightfield layers.
/// @ingroup recast
/// @see rdAllocHeightfieldLayerSet, rdFreeHeightfieldLayerSet
/// @see rcAllocHeightfieldLayerSet, rcFreeHeightfieldLayerSet
struct rcHeightfieldLayerSet
{
rcHeightfieldLayerSet();
@ -506,74 +506,74 @@ private:
/// Allocates a heightfield object using the Recast allocator.
/// @return A heightfield that is ready for initialization, or null on failure.
/// @ingroup recast
/// @see rcCreateHeightfield, rdFreeHeightField
rcHeightfield* rdAllocHeightfield();
/// @see rcCreateHeightfield, rcFreeHeightField
rcHeightfield* rcAllocHeightfield();
/// Frees the specified heightfield object using the Recast allocator.
/// @param[in] heightfield A heightfield allocated using #rdAllocHeightfield
/// @param[in] heightfield A heightfield allocated using #rcAllocHeightfield
/// @ingroup recast
/// @see rdAllocHeightfield
void rdFreeHeightField(rcHeightfield* heightfield);
/// @see rcAllocHeightfield
void rcFreeHeightField(rcHeightfield* heightfield);
/// Allocates a compact heightfield object using the Recast allocator.
/// @return A compact heightfield that is ready for initialization, or null on failure.
/// @ingroup recast
/// @see rcBuildCompactHeightfield, rdFreeCompactHeightfield
rcCompactHeightfield* rdAllocCompactHeightfield();
/// @see rcBuildCompactHeightfield, rcFreeCompactHeightfield
rcCompactHeightfield* rcAllocCompactHeightfield();
/// Frees the specified compact heightfield object using the Recast allocator.
/// @param[in] compactHeightfield A compact heightfield allocated using #rdAllocCompactHeightfield
/// @param[in] compactHeightfield A compact heightfield allocated using #rcAllocCompactHeightfield
/// @ingroup recast
/// @see rdAllocCompactHeightfield
void rdFreeCompactHeightfield(rcCompactHeightfield* compactHeightfield);
/// @see rcAllocCompactHeightfield
void rcFreeCompactHeightfield(rcCompactHeightfield* compactHeightfield);
/// Allocates a heightfield layer set using the Recast allocator.
/// @return A heightfield layer set that is ready for initialization, or null on failure.
/// @ingroup recast
/// @see rcBuildHeightfieldLayers, rdFreeHeightfieldLayerSet
rcHeightfieldLayerSet* rdAllocHeightfieldLayerSet();
/// @see rcBuildHeightfieldLayers, rcFreeHeightfieldLayerSet
rcHeightfieldLayerSet* rcAllocHeightfieldLayerSet();
/// Frees the specified heightfield layer set using the Recast allocator.
/// @param[in] layerSet A heightfield layer set allocated using #rdAllocHeightfieldLayerSet
/// @param[in] layerSet A heightfield layer set allocated using #rcAllocHeightfieldLayerSet
/// @ingroup recast
/// @see rdAllocHeightfieldLayerSet
void rdFreeHeightfieldLayerSet(rcHeightfieldLayerSet* layerSet);
/// @see rcAllocHeightfieldLayerSet
void rcFreeHeightfieldLayerSet(rcHeightfieldLayerSet* layerSet);
/// Allocates a contour set object using the Recast allocator.
/// @return A contour set that is ready for initialization, or null on failure.
/// @ingroup recast
/// @see rcBuildContours, rdFreeContourSet
rcContourSet* rdAllocContourSet();
/// @see rcBuildContours, rcFreeContourSet
rcContourSet* rcAllocContourSet();
/// Frees the specified contour set using the Recast allocator.
/// @param[in] contourSet A contour set allocated using #rdAllocContourSet
/// @param[in] contourSet A contour set allocated using #rcAllocContourSet
/// @ingroup recast
/// @see rdAllocContourSet
void rdFreeContourSet(rcContourSet* contourSet);
/// @see rcAllocContourSet
void rcFreeContourSet(rcContourSet* contourSet);
/// Allocates a polygon mesh object using the Recast allocator.
/// @return A polygon mesh that is ready for initialization, or null on failure.
/// @ingroup recast
/// @see rcBuildPolyMesh, rdFreePolyMesh
rcPolyMesh* rdAllocPolyMesh();
/// @see rcBuildPolyMesh, rcFreePolyMesh
rcPolyMesh* rcAllocPolyMesh();
/// Frees the specified polygon mesh using the Recast allocator.
/// @param[in] polyMesh A polygon mesh allocated using #rdAllocPolyMesh
/// @param[in] polyMesh A polygon mesh allocated using #rcAllocPolyMesh
/// @ingroup recast
/// @see rdAllocPolyMesh
void rdFreePolyMesh(rcPolyMesh* polyMesh);
/// @see rcAllocPolyMesh
void rcFreePolyMesh(rcPolyMesh* polyMesh);
/// Allocates a detail mesh object using the Recast allocator.
/// @return A detail mesh that is ready for initialization, or null on failure.
/// @ingroup recast
/// @see rcBuildPolyMeshDetail, rdFreePolyMeshDetail
rcPolyMeshDetail* rdAllocPolyMeshDetail();
/// @see rcBuildPolyMeshDetail, rcFreePolyMeshDetail
rcPolyMeshDetail* rcAllocPolyMeshDetail();
/// Frees the specified detail mesh using the Recast allocator.
/// @param[in] detailMesh A detail mesh allocated using #rdAllocPolyMeshDetail
/// @param[in] detailMesh A detail mesh allocated using #rcAllocPolyMeshDetail
/// @ingroup recast
/// @see rdAllocPolyMeshDetail
void rdFreePolyMeshDetail(rcPolyMeshDetail* detailMesh);
/// @see rcAllocPolyMeshDetail
void rcFreePolyMeshDetail(rcPolyMeshDetail* detailMesh);
/// @}
@ -843,7 +843,7 @@ void rcCalcGridSize(const float* minBounds, const float* maxBounds, float cellSi
/// Initializes a new heightfield.
/// See the #rcConfig documentation for more information on the configuration parameters.
///
/// @see rdAllocHeightfield, rcHeightfield
/// @see rcAllocHeightfield, rcHeightfield
/// @ingroup recast
///
/// @param[in,out] context The build context to use during the operation.
@ -1081,7 +1081,7 @@ int rcGetHeightFieldSpanCount(rcContext* context, const rcHeightfield& heightfie
///
/// See the #rcConfig documentation for more information on the configuration parameters.
///
/// @see rdAllocCompactHeightfield, rcHeightfield, rcCompactHeightfield, rcConfig
/// @see rcAllocCompactHeightfield, rcHeightfield, rcCompactHeightfield, rcConfig
/// @ingroup recast
///
/// @param[in,out] context The build context to use during the operation.

View File

@ -83,12 +83,12 @@ void rcContext::doResetLog()
// Defined out of line to fix the weak v-tables warning
}
rcHeightfield* rdAllocHeightfield()
rcHeightfield* rcAllocHeightfield()
{
return rcNew<rcHeightfield>(RD_ALLOC_PERM);
}
void rdFreeHeightField(rcHeightfield* heightfield)
void rcFreeHeightField(rcHeightfield* heightfield)
{
rcDelete(heightfield);
}
@ -119,12 +119,12 @@ rcHeightfield::~rcHeightfield()
}
}
rcCompactHeightfield* rdAllocCompactHeightfield()
rcCompactHeightfield* rcAllocCompactHeightfield()
{
return rcNew<rcCompactHeightfield>(RD_ALLOC_PERM);
}
void rdFreeCompactHeightfield(rcCompactHeightfield* compactHeightfield)
void rcFreeCompactHeightfield(rcCompactHeightfield* compactHeightfield)
{
rcDelete(compactHeightfield);
}
@ -157,12 +157,12 @@ rcCompactHeightfield::~rcCompactHeightfield()
rdFree(areas);
}
rcHeightfieldLayerSet* rdAllocHeightfieldLayerSet()
rcHeightfieldLayerSet* rcAllocHeightfieldLayerSet()
{
return rcNew<rcHeightfieldLayerSet>(RD_ALLOC_PERM);
}
void rdFreeHeightfieldLayerSet(rcHeightfieldLayerSet* layerSet)
void rcFreeHeightfieldLayerSet(rcHeightfieldLayerSet* layerSet)
{
rcDelete(layerSet);
}
@ -185,12 +185,12 @@ rcHeightfieldLayerSet::~rcHeightfieldLayerSet()
}
rcContourSet* rdAllocContourSet()
rcContourSet* rcAllocContourSet()
{
return rcNew<rcContourSet>(RD_ALLOC_PERM);
}
void rdFreeContourSet(rcContourSet* contourSet)
void rcFreeContourSet(rcContourSet* contourSet)
{
rcDelete(contourSet);
}
@ -219,12 +219,12 @@ rcContourSet::~rcContourSet()
rdFree(conts);
}
rcPolyMesh* rdAllocPolyMesh()
rcPolyMesh* rcAllocPolyMesh()
{
return rcNew<rcPolyMesh>(RD_ALLOC_PERM);
}
void rdFreePolyMesh(rcPolyMesh* polyMesh)
void rcFreePolyMesh(rcPolyMesh* polyMesh)
{
rcDelete(polyMesh);
}
@ -257,12 +257,12 @@ rcPolyMesh::~rcPolyMesh()
rdFree(areas);
}
rcPolyMeshDetail* rdAllocPolyMeshDetail()
rcPolyMeshDetail* rcAllocPolyMeshDetail()
{
return rcNew<rcPolyMeshDetail>(RD_ALLOC_PERM);
}
void rdFreePolyMeshDetail(rcPolyMeshDetail* detailMesh)
void rcFreePolyMeshDetail(rcPolyMeshDetail* detailMesh)
{
if (detailMesh == NULL)
{

View File

@ -819,7 +819,7 @@ static void mergeRegionHoles(rcContext* ctx, rcContourRegion& region)
///
/// See the #rcConfig documentation for more information on the configuration parameters.
///
/// @see rdAllocContourSet, rcCompactHeightfield, rcContourSet, rcConfig
/// @see rcAllocContourSet, rcCompactHeightfield, rcContourSet, rcConfig
bool rcBuildContours(rcContext* ctx, const rcCompactHeightfield& chf,
const float maxError, const int maxEdgeLen,
rcContourSet& cset, const int buildFlags)

View File

@ -88,7 +88,7 @@ struct rcLayerSweepSpan
///
/// See the #rcConfig documentation for more information on the configuration parameters.
///
/// @see rdAllocHeightfieldLayerSet, rcCompactHeightfield, rcHeightfieldLayerSet, rcConfig
/// @see rcAllocHeightfieldLayerSet, rcCompactHeightfield, rcHeightfieldLayerSet, rcConfig
bool rcBuildHeightfieldLayers(rcContext* ctx, rcCompactHeightfield& chf,
const int borderSize, const int walkableHeight,
rcHeightfieldLayerSet& lset)

View File

@ -1050,7 +1050,7 @@ static bool removeVertex(rcContext* ctx, rcPolyMesh& mesh, const unsigned short
/// @note If the mesh data is to be used to construct a Detour navigation mesh, then the upper
/// limit must be restricted to <= #DT_VERTS_PER_POLYGON.
///
/// @see rdAllocPolyMesh, rcContourSet, rcPolyMesh, rcConfig
/// @see rcAllocPolyMesh, rcContourSet, rcPolyMesh, rcConfig
bool rcBuildPolyMesh(rcContext* ctx, rcContourSet& cset, const int nvp, rcPolyMesh& mesh)
{
rdAssert(ctx);
@ -1380,7 +1380,7 @@ bool rcBuildPolyMesh(rcContext* ctx, rcContourSet& cset, const int nvp, rcPolyMe
return true;
}
/// @see rdAllocPolyMesh, rcPolyMesh
/// @see rcAllocPolyMesh, rcPolyMesh
bool rcMergePolyMeshes(rcContext* ctx, rcPolyMesh** meshes, const int nmeshes, rcPolyMesh& mesh)
{
rdAssert(ctx);

View File

@ -1284,7 +1284,7 @@ static void getHeightData(rcContext* ctx, const rcCompactHeightfield& chf,
///
/// See the #rcConfig documentation for more information on the configuration parameters.
///
/// @see rdAllocPolyMeshDetail, rcPolyMesh, rcCompactHeightfield, rcPolyMeshDetail, rcConfig
/// @see rcAllocPolyMeshDetail, rcPolyMesh, rcCompactHeightfield, rcPolyMeshDetail, rcConfig
bool rcBuildPolyMeshDetail(rcContext* ctx, const rcPolyMesh& mesh, const rcCompactHeightfield& chf,
const float sampleDist, const float sampleMaxError,
rcPolyMeshDetail& dmesh)
@ -1504,7 +1504,7 @@ bool rcBuildPolyMeshDetail(rcContext* ctx, const rcPolyMesh& mesh, const rcCompa
return true;
}
/// @see rdAllocPolyMeshDetail, rcPolyMeshDetail
/// @see rcAllocPolyMeshDetail, rcPolyMeshDetail
bool rcMergePolyMeshDetails(rcContext* ctx, rcPolyMeshDetail** meshes, const int nmeshes, rcPolyMeshDetail& mesh)
{
rdAssert(ctx);