mirror of
https://github.com/recastnavigation/recastnavigation.git
synced 2026-08-16 08:09:53 +00:00
1544 lines
38 KiB
C++
1544 lines
38 KiB
C++
//
|
|
// Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
|
|
//
|
|
// This software is provided 'as-is', without any express or implied
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
// arising from the use of this software.
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
// including commercial applications, and to alter it and redistribute it
|
|
// freely, subject to the following restrictions:
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
// claim that you wrote the original software. If you use this software
|
|
// in a product, an acknowledgment in the product documentation would be
|
|
// appreciated but is not required.
|
|
// 2. Altered source versions must be plainly marked as such, and must not be
|
|
// misrepresented as being the original software.
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
|
//
|
|
|
|
#include "SDL.h"
|
|
#include "SDL_opengl.h"
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#ifdef __APPLE__
|
|
# include <OpenGL/glu.h>
|
|
#else
|
|
# include <GL/glu.h>
|
|
#endif
|
|
#include "DetourCommon.h"
|
|
#include "DetourDebugDraw.h"
|
|
#include "DetourNavMesh.h"
|
|
#include "DetourNavMeshBuilder.h"
|
|
#include "DetourPathCorridor.h"
|
|
#include "NavMeshTesterTool.h"
|
|
#include "Recast.h"
|
|
#include "RecastDebugDraw.h"
|
|
#include "Sample.h"
|
|
#include "imguiHelpers.h"
|
|
|
|
#include <imgui.h>
|
|
|
|
#ifdef WIN32
|
|
# define snprintf _snprintf
|
|
#endif
|
|
|
|
// Uncomment this to dump all the requests in stdout.
|
|
#define DUMP_REQS
|
|
|
|
// Returns a random number [0..1]
|
|
static float frand()
|
|
{
|
|
return (float)rand() / (float)RAND_MAX;
|
|
}
|
|
|
|
inline bool inRange(const float* v1, const float* v2, const float r, const float h)
|
|
{
|
|
const float dx = v2[0] - v1[0];
|
|
const float dy = v2[1] - v1[1];
|
|
const float dz = v2[2] - v1[2];
|
|
return (dx * dx + dz * dz) < r * r && fabsf(dy) < h;
|
|
}
|
|
|
|
// This function checks if the path has a small U-turn, that is,
|
|
// a polygon further in the path is adjacent to the first polygon
|
|
// in the path. If that happens, a shortcut is taken.
|
|
// This can happen if the target (T) location is at tile boundary,
|
|
// and we're (S) approaching it parallel to the tile edge.
|
|
// The choice at the vertex can be arbitrary,
|
|
// +---+---+
|
|
// |:::|:::|
|
|
// +-S-+-T-+
|
|
// |:::| | <-- the step can end up in here, resulting U-turn path.
|
|
// +---+---+
|
|
static int fixupShortcuts(dtPolyRef* path, int npath, dtNavMeshQuery* navQuery)
|
|
{
|
|
if (npath < 3) { return npath; }
|
|
|
|
// Get connected polygons
|
|
static const int maxNeis = 16;
|
|
dtPolyRef neis[maxNeis];
|
|
int nneis = 0;
|
|
|
|
const dtMeshTile* tile = 0;
|
|
const dtPoly* poly = 0;
|
|
if (dtStatusFailed(navQuery->getAttachedNavMesh()->getTileAndPolyByRef(path[0], &tile, &poly))) { return npath; }
|
|
|
|
for (unsigned int k = poly->firstLink; k != DT_NULL_LINK; k = tile->links[k].next)
|
|
{
|
|
const dtLink* link = &tile->links[k];
|
|
if (link->ref != 0)
|
|
{
|
|
if (nneis < maxNeis)
|
|
{
|
|
neis[nneis++] = link->ref;
|
|
}
|
|
}
|
|
}
|
|
|
|
// If any of the neighbour polygons is within the next few polygons
|
|
// in the path, short cut to that polygon directly.
|
|
static const int maxLookAhead = 6;
|
|
int cut = 0;
|
|
for (int i = dtMin(maxLookAhead, npath) - 1; i > 1 && cut == 0; i--)
|
|
{
|
|
for (int j = 0; j < nneis; j++)
|
|
{
|
|
if (path[i] == neis[j])
|
|
{
|
|
cut = i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (cut > 1)
|
|
{
|
|
int offset = cut - 1;
|
|
npath -= offset;
|
|
for (int i = 1; i < npath; i++)
|
|
{
|
|
path[i] = path[i + offset];
|
|
}
|
|
}
|
|
|
|
return npath;
|
|
}
|
|
|
|
static bool getSteerTarget(dtNavMeshQuery* navQuery,
|
|
const float* startPos,
|
|
const float* endPos,
|
|
const float minTargetDist,
|
|
const dtPolyRef* path,
|
|
const int pathSize,
|
|
float* steerPos,
|
|
unsigned char& steerPosFlag,
|
|
dtPolyRef& steerPosRef,
|
|
float* outPoints = 0,
|
|
int* outPointCount = 0)
|
|
{
|
|
// Find steer target.
|
|
static const int MAX_STEER_POINTS = 3;
|
|
float steerPath[MAX_STEER_POINTS * 3];
|
|
unsigned char steerPathFlags[MAX_STEER_POINTS];
|
|
dtPolyRef steerPathPolys[MAX_STEER_POINTS];
|
|
int nsteerPath = 0;
|
|
navQuery->findStraightPath(
|
|
startPos,
|
|
endPos,
|
|
path,
|
|
pathSize,
|
|
steerPath,
|
|
steerPathFlags,
|
|
steerPathPolys,
|
|
&nsteerPath,
|
|
MAX_STEER_POINTS);
|
|
|
|
if (!nsteerPath) { return false; }
|
|
|
|
if (outPoints && outPointCount)
|
|
{
|
|
*outPointCount = nsteerPath;
|
|
for (int i = 0; i < nsteerPath; ++i)
|
|
{
|
|
dtVcopy(&outPoints[i * 3], &steerPath[i * 3]);
|
|
}
|
|
}
|
|
|
|
// Find vertex far enough to steer to.
|
|
int ns = 0;
|
|
while (ns < nsteerPath)
|
|
{
|
|
// Stop at Off-Mesh link or when point is further than slop away.
|
|
if ((steerPathFlags[ns] & DT_STRAIGHTPATH_OFFMESH_CONNECTION)) { break; }
|
|
if (!inRange(&steerPath[ns * 3], startPos, minTargetDist, 1000.0f)) { break; }
|
|
ns++;
|
|
}
|
|
// Failed to find good point to steer to.
|
|
if (ns >= nsteerPath) { return false; }
|
|
|
|
dtVcopy(steerPos, &steerPath[ns * 3]);
|
|
steerPos[1] = startPos[1];
|
|
steerPosFlag = steerPathFlags[ns];
|
|
steerPosRef = steerPathPolys[ns];
|
|
|
|
return true;
|
|
}
|
|
|
|
NavMeshTesterTool::NavMeshTesterTool()
|
|
{
|
|
filter.setIncludeFlags(SAMPLE_POLYFLAGS_ALL ^ SAMPLE_POLYFLAGS_DISABLED);
|
|
filter.setExcludeFlags(0);
|
|
}
|
|
|
|
void NavMeshTesterTool::init(Sample* newSample)
|
|
{
|
|
sample = newSample;
|
|
navMesh = sample->navMesh;
|
|
navmeshQuery = sample->navQuery;
|
|
recalc();
|
|
|
|
if (navmeshQuery)
|
|
{
|
|
// Change costs.
|
|
filter.setAreaCost(SAMPLE_POLYAREA_GROUND, 1.0f);
|
|
filter.setAreaCost(SAMPLE_POLYAREA_WATER, 10.0f);
|
|
filter.setAreaCost(SAMPLE_POLYAREA_ROAD, 1.0f);
|
|
filter.setAreaCost(SAMPLE_POLYAREA_DOOR, 1.0f);
|
|
filter.setAreaCost(SAMPLE_POLYAREA_GRASS, 2.0f);
|
|
filter.setAreaCost(SAMPLE_POLYAREA_JUMP, 1.5f);
|
|
}
|
|
|
|
neighbourhoodRadius = sample->getAgentRadius() * 20.0f;
|
|
randomRadius = sample->getAgentRadius() * 30.0f;
|
|
}
|
|
|
|
void NavMeshTesterTool::handleMenu()
|
|
{
|
|
if (ImGui::RadioButton("Pathfind Follow", toolMode == TOOLMODE_PATHFIND_FOLLOW))
|
|
{
|
|
toolMode = TOOLMODE_PATHFIND_FOLLOW;
|
|
recalc();
|
|
}
|
|
if (ImGui::RadioButton("Pathfind Straight", toolMode == TOOLMODE_PATHFIND_STRAIGHT))
|
|
{
|
|
toolMode = TOOLMODE_PATHFIND_STRAIGHT;
|
|
recalc();
|
|
}
|
|
if (toolMode == TOOLMODE_PATHFIND_STRAIGHT)
|
|
{
|
|
ImGui::Indent();
|
|
("Vertices at crossings");
|
|
if (ImGui::RadioButton("None", straightPathOptions == 0))
|
|
{
|
|
straightPathOptions = 0;
|
|
recalc();
|
|
}
|
|
if (ImGui::RadioButton("Area", straightPathOptions == DT_STRAIGHTPATH_AREA_CROSSINGS))
|
|
{
|
|
straightPathOptions = DT_STRAIGHTPATH_AREA_CROSSINGS;
|
|
recalc();
|
|
}
|
|
if (ImGui::RadioButton("All", straightPathOptions == DT_STRAIGHTPATH_ALL_CROSSINGS))
|
|
{
|
|
straightPathOptions = DT_STRAIGHTPATH_ALL_CROSSINGS;
|
|
recalc();
|
|
}
|
|
|
|
ImGui::Unindent();
|
|
}
|
|
if (ImGui::RadioButton("Pathfind Sliced", toolMode == TOOLMODE_PATHFIND_SLICED))
|
|
{
|
|
toolMode = TOOLMODE_PATHFIND_SLICED;
|
|
recalc();
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::RadioButton("Distance to Wall", toolMode == TOOLMODE_DISTANCE_TO_WALL))
|
|
{
|
|
toolMode = TOOLMODE_DISTANCE_TO_WALL;
|
|
recalc();
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::RadioButton("Raycast", toolMode == TOOLMODE_RAYCAST))
|
|
{
|
|
toolMode = TOOLMODE_RAYCAST;
|
|
recalc();
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::RadioButton("Find Polys in Circle", toolMode == TOOLMODE_FIND_POLYS_IN_CIRCLE))
|
|
{
|
|
toolMode = TOOLMODE_FIND_POLYS_IN_CIRCLE;
|
|
recalc();
|
|
}
|
|
if (ImGui::RadioButton("Find Polys in Shape", toolMode == TOOLMODE_FIND_POLYS_IN_SHAPE))
|
|
{
|
|
toolMode = TOOLMODE_FIND_POLYS_IN_SHAPE;
|
|
recalc();
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::RadioButton("Find Local Neighbourhood", toolMode == TOOLMODE_FIND_LOCAL_NEIGHBOURHOOD))
|
|
{
|
|
toolMode = TOOLMODE_FIND_LOCAL_NEIGHBOURHOOD;
|
|
recalc();
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::Button("Set Random Start"))
|
|
{
|
|
dtStatus status = navmeshQuery->findRandomPoint(&filter, frand, &startRef, spos);
|
|
if (dtStatusSucceed(status))
|
|
{
|
|
sposSet = true;
|
|
recalc();
|
|
}
|
|
}
|
|
|
|
ImGui::BeginDisabled(!sposSet);
|
|
if (ImGui::Button("Set Random End"))
|
|
{
|
|
if (sposSet)
|
|
{
|
|
dtStatus status = navmeshQuery->findRandomPointAroundCircle(
|
|
startRef,
|
|
spos,
|
|
randomRadius,
|
|
&filter,
|
|
frand,
|
|
&endRef,
|
|
epos);
|
|
if (dtStatusSucceed(status))
|
|
{
|
|
eposSet = true;
|
|
recalc();
|
|
}
|
|
}
|
|
}
|
|
ImGui::EndDisabled();
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::Button("Make Random Points"))
|
|
{
|
|
randPointsInCircle = false;
|
|
nrandPoints = 0;
|
|
for (int i = 0; i < MAX_RAND_POINTS; i++)
|
|
{
|
|
float pt[3];
|
|
dtPolyRef ref;
|
|
dtStatus status = navmeshQuery->findRandomPoint(&filter, frand, &ref, pt);
|
|
if (dtStatusSucceed(status))
|
|
{
|
|
dtVcopy(&randPoints[nrandPoints * 3], pt);
|
|
nrandPoints++;
|
|
}
|
|
}
|
|
}
|
|
ImGui::BeginDisabled(!sposSet);
|
|
if (ImGui::Button("Make Random Points Around"))
|
|
{
|
|
if (sposSet)
|
|
{
|
|
nrandPoints = 0;
|
|
randPointsInCircle = true;
|
|
for (int i = 0; i < MAX_RAND_POINTS; i++)
|
|
{
|
|
float pt[3];
|
|
dtPolyRef ref;
|
|
dtStatus status = navmeshQuery->findRandomPointAroundCircle(
|
|
startRef,
|
|
spos,
|
|
randomRadius,
|
|
&filter,
|
|
frand,
|
|
&ref,
|
|
pt);
|
|
if (dtStatusSucceed(status))
|
|
{
|
|
dtVcopy(&randPoints[nrandPoints * 3], pt);
|
|
nrandPoints++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
ImGui::EndDisabled();
|
|
|
|
ImGui::Separator();
|
|
|
|
ImGui::Text("Include Flags");
|
|
|
|
ImGui::Indent();
|
|
bool walk = (filter.getIncludeFlags() & SAMPLE_POLYFLAGS_WALK) != 0;
|
|
if (ImGui::Checkbox("Walk", &walk))
|
|
{
|
|
filter.setIncludeFlags(filter.getIncludeFlags() ^ SAMPLE_POLYFLAGS_WALK);
|
|
recalc();
|
|
}
|
|
bool swim = (filter.getIncludeFlags() & SAMPLE_POLYFLAGS_SWIM) != 0;
|
|
if (ImGui::Checkbox("Swim", &swim))
|
|
{
|
|
filter.setIncludeFlags(filter.getIncludeFlags() ^ SAMPLE_POLYFLAGS_SWIM);
|
|
recalc();
|
|
}
|
|
bool door = (filter.getIncludeFlags() & SAMPLE_POLYFLAGS_DOOR) != 0;
|
|
if (ImGui::Checkbox("Door", &door))
|
|
{
|
|
filter.setIncludeFlags(filter.getIncludeFlags() ^ SAMPLE_POLYFLAGS_DOOR);
|
|
recalc();
|
|
}
|
|
bool jump = (filter.getIncludeFlags() & SAMPLE_POLYFLAGS_JUMP) != 0;
|
|
if (ImGui::Checkbox("Jump", &jump))
|
|
{
|
|
filter.setIncludeFlags(filter.getIncludeFlags() ^ SAMPLE_POLYFLAGS_JUMP);
|
|
recalc();
|
|
}
|
|
ImGui::Unindent();
|
|
|
|
ImGui::Separator();
|
|
ImGui::Text("Exclude Flags");
|
|
|
|
ImGui::Indent();
|
|
bool excludeWalk = (filter.getExcludeFlags() & SAMPLE_POLYFLAGS_WALK) != 0;
|
|
if (ImGui::Checkbox("Walk", &excludeWalk))
|
|
{
|
|
filter.setExcludeFlags(filter.getExcludeFlags() ^ SAMPLE_POLYFLAGS_WALK);
|
|
recalc();
|
|
}
|
|
bool excludeSwim = (filter.getExcludeFlags() & SAMPLE_POLYFLAGS_SWIM) != 0;
|
|
if (ImGui::Checkbox("Swim", &excludeSwim))
|
|
{
|
|
filter.setExcludeFlags(filter.getExcludeFlags() ^ SAMPLE_POLYFLAGS_SWIM);
|
|
recalc();
|
|
}
|
|
bool excludeDoor = (filter.getExcludeFlags() & SAMPLE_POLYFLAGS_DOOR) != 0;
|
|
if (ImGui::Checkbox("Door", &excludeDoor))
|
|
{
|
|
filter.setExcludeFlags(filter.getExcludeFlags() ^ SAMPLE_POLYFLAGS_DOOR);
|
|
recalc();
|
|
}
|
|
bool excludeJump = (filter.getExcludeFlags() & SAMPLE_POLYFLAGS_JUMP) != 0;
|
|
if (ImGui::Checkbox("Jump", &excludeJump))
|
|
{
|
|
filter.setExcludeFlags(filter.getExcludeFlags() ^ SAMPLE_POLYFLAGS_JUMP);
|
|
recalc();
|
|
}
|
|
ImGui::Unindent();
|
|
|
|
ImGui::Separator();
|
|
}
|
|
|
|
void NavMeshTesterTool::handleClick(const float* /*s*/, const float* p, bool shift)
|
|
{
|
|
if (shift)
|
|
{
|
|
sposSet = true;
|
|
dtVcopy(spos, p);
|
|
}
|
|
else
|
|
{
|
|
eposSet = true;
|
|
dtVcopy(epos, p);
|
|
}
|
|
recalc();
|
|
}
|
|
|
|
void NavMeshTesterTool::handleStep() {}
|
|
|
|
void NavMeshTesterTool::handleToggle()
|
|
{
|
|
// TODO: merge separate to a path iterator. Use same code in recalc() too.
|
|
if (toolMode != TOOLMODE_PATHFIND_FOLLOW) { return; }
|
|
|
|
if (!sposSet || !eposSet || !startRef || !endRef) { return; }
|
|
|
|
static const float STEP_SIZE = 0.5f;
|
|
static const float SLOP = 0.01f;
|
|
|
|
if (pathIterNum == 0)
|
|
{
|
|
navmeshQuery->findPath(startRef, endRef, spos, epos, &filter, polys, &npolys, MAX_POLYS);
|
|
nsmoothPath = 0;
|
|
|
|
pathIterPolyCount = npolys;
|
|
if (pathIterPolyCount)
|
|
{
|
|
memcpy(pathIterPolys, polys, sizeof(dtPolyRef) * pathIterPolyCount);
|
|
}
|
|
|
|
if (pathIterPolyCount)
|
|
{
|
|
// Iterate over the path to find smooth path on the detail mesh surface.
|
|
navmeshQuery->closestPointOnPoly(startRef, spos, iterPos, 0);
|
|
navmeshQuery->closestPointOnPoly(pathIterPolys[pathIterPolyCount - 1], epos, targetPos, 0);
|
|
|
|
nsmoothPath = 0;
|
|
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], iterPos);
|
|
nsmoothPath++;
|
|
}
|
|
}
|
|
|
|
dtVcopy(prevIterPos, iterPos);
|
|
|
|
pathIterNum++;
|
|
|
|
if (!pathIterPolyCount) { return; }
|
|
|
|
if (nsmoothPath >= MAX_SMOOTH) { return; }
|
|
|
|
// Move towards target a small advancement at a time until target reached or
|
|
// when ran out of memory to store the path.
|
|
|
|
// Find location to steer towards.
|
|
float steerPos[3];
|
|
unsigned char steerPosFlag;
|
|
dtPolyRef steerPosRef;
|
|
|
|
if (!getSteerTarget(
|
|
navmeshQuery,
|
|
iterPos,
|
|
targetPos,
|
|
SLOP,
|
|
pathIterPolys,
|
|
pathIterPolyCount,
|
|
steerPos,
|
|
steerPosFlag,
|
|
steerPosRef,
|
|
steerPoints,
|
|
&steerPointCount))
|
|
{
|
|
return;
|
|
}
|
|
|
|
dtVcopy(steerPos, steerPos);
|
|
|
|
bool endOfPath = (steerPosFlag & DT_STRAIGHTPATH_END) ? true : false;
|
|
bool offMeshConnection = (steerPosFlag & DT_STRAIGHTPATH_OFFMESH_CONNECTION) ? true : false;
|
|
|
|
// Find movement delta.
|
|
float delta[3], len;
|
|
dtVsub(delta, steerPos, iterPos);
|
|
len = sqrtf(dtVdot(delta, delta));
|
|
// If the steer target is end of path or off-mesh link, do not move past the location.
|
|
if ((endOfPath || offMeshConnection) && len < STEP_SIZE)
|
|
{
|
|
len = 1;
|
|
}
|
|
else
|
|
{
|
|
len = STEP_SIZE / len;
|
|
}
|
|
float moveTgt[3];
|
|
dtVmad(moveTgt, iterPos, delta, len);
|
|
|
|
// Move
|
|
float result[3];
|
|
dtPolyRef visited[16];
|
|
int nvisited = 0;
|
|
navmeshQuery->moveAlongSurface(pathIterPolys[0], iterPos, moveTgt, &filter, result, visited, &nvisited, 16);
|
|
pathIterPolyCount = dtMergeCorridorStartMoved(pathIterPolys, pathIterPolyCount, MAX_POLYS, visited, nvisited);
|
|
pathIterPolyCount = fixupShortcuts(pathIterPolys, pathIterPolyCount, navmeshQuery);
|
|
|
|
float h = 0;
|
|
navmeshQuery->getPolyHeight(pathIterPolys[0], result, &h);
|
|
result[1] = h;
|
|
dtVcopy(iterPos, result);
|
|
|
|
// Handle end of path and off-mesh links when close enough.
|
|
if (endOfPath && inRange(iterPos, steerPos, SLOP, 1.0f))
|
|
{
|
|
// Reached end of path.
|
|
dtVcopy(iterPos, targetPos);
|
|
if (nsmoothPath < MAX_SMOOTH)
|
|
{
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], iterPos);
|
|
nsmoothPath++;
|
|
}
|
|
return;
|
|
}
|
|
else if (offMeshConnection && inRange(iterPos, steerPos, SLOP, 1.0f))
|
|
{
|
|
// Reached off-mesh connection.
|
|
float startPos[3], endPos[3];
|
|
|
|
// Advance the path up to and over the off-mesh connection.
|
|
dtPolyRef prevRef = 0, polyRef = pathIterPolys[0];
|
|
int npos = 0;
|
|
while (npos < pathIterPolyCount && polyRef != steerPosRef)
|
|
{
|
|
prevRef = polyRef;
|
|
polyRef = pathIterPolys[npos];
|
|
npos++;
|
|
}
|
|
for (int i = npos; i < pathIterPolyCount; ++i)
|
|
{
|
|
pathIterPolys[i - npos] = pathIterPolys[i];
|
|
}
|
|
pathIterPolyCount -= npos;
|
|
|
|
// Handle the connection.
|
|
dtStatus status = navMesh->getOffMeshConnectionPolyEndPoints(prevRef, polyRef, startPos, endPos);
|
|
if (dtStatusSucceed(status))
|
|
{
|
|
if (nsmoothPath < MAX_SMOOTH)
|
|
{
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], startPos);
|
|
nsmoothPath++;
|
|
// Hack to make the dotted path not visible during off-mesh connection.
|
|
if (nsmoothPath & 1)
|
|
{
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], startPos);
|
|
nsmoothPath++;
|
|
}
|
|
}
|
|
// Move position at the other side of the off-mesh link.
|
|
dtVcopy(iterPos, endPos);
|
|
float eh = 0.0f;
|
|
navmeshQuery->getPolyHeight(pathIterPolys[0], iterPos, &eh);
|
|
iterPos[1] = eh;
|
|
}
|
|
}
|
|
|
|
// Store results.
|
|
if (nsmoothPath < MAX_SMOOTH)
|
|
{
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], iterPos);
|
|
nsmoothPath++;
|
|
}
|
|
}
|
|
|
|
void NavMeshTesterTool::handleUpdate(const float /*dt*/)
|
|
{
|
|
if (toolMode == TOOLMODE_PATHFIND_SLICED)
|
|
{
|
|
if (dtStatusInProgress(pathFindStatus))
|
|
{
|
|
pathFindStatus = navmeshQuery->updateSlicedFindPath(1, 0);
|
|
}
|
|
if (dtStatusSucceed(pathFindStatus))
|
|
{
|
|
navmeshQuery->finalizeSlicedFindPath(polys, &npolys, MAX_POLYS);
|
|
nstraightPath = 0;
|
|
if (npolys)
|
|
{
|
|
// In case of partial path, make sure the end point is clamped to the last polygon.
|
|
float epos[3];
|
|
dtVcopy(epos, epos);
|
|
if (polys[npolys - 1] != endRef)
|
|
{
|
|
navmeshQuery->closestPointOnPoly(polys[npolys - 1], epos, epos, 0);
|
|
}
|
|
|
|
navmeshQuery->findStraightPath(
|
|
spos,
|
|
epos,
|
|
polys,
|
|
npolys,
|
|
straightPath,
|
|
straightPathFlags,
|
|
straightPathPolys,
|
|
&nstraightPath,
|
|
MAX_POLYS,
|
|
DT_STRAIGHTPATH_ALL_CROSSINGS);
|
|
}
|
|
|
|
pathFindStatus = DT_FAILURE;
|
|
}
|
|
}
|
|
}
|
|
|
|
void NavMeshTesterTool::reset()
|
|
{
|
|
startRef = 0;
|
|
endRef = 0;
|
|
npolys = 0;
|
|
nstraightPath = 0;
|
|
nsmoothPath = 0;
|
|
memset(hitPos, 0, sizeof(hitPos));
|
|
memset(hitNormal, 0, sizeof(hitNormal));
|
|
distanceToWall = 0;
|
|
}
|
|
|
|
void NavMeshTesterTool::recalc()
|
|
{
|
|
if (!navMesh) { return; }
|
|
|
|
if (sposSet)
|
|
{
|
|
navmeshQuery->findNearestPoly(spos, polyPickExt, &filter, &startRef, 0);
|
|
}
|
|
else
|
|
{
|
|
startRef = 0;
|
|
}
|
|
|
|
if (eposSet)
|
|
{
|
|
navmeshQuery->findNearestPoly(epos, polyPickExt, &filter, &endRef, 0);
|
|
}
|
|
else
|
|
{
|
|
endRef = 0;
|
|
}
|
|
|
|
pathFindStatus = DT_FAILURE;
|
|
|
|
if (toolMode == TOOLMODE_PATHFIND_FOLLOW)
|
|
{
|
|
pathIterNum = 0;
|
|
if (sposSet && eposSet && startRef && endRef)
|
|
{
|
|
#ifdef DUMP_REQS
|
|
printf("pi %f %f %f %f %f %f 0x%x 0x%x\n",
|
|
spos[0],
|
|
spos[1],
|
|
spos[2],
|
|
epos[0],
|
|
epos[1],
|
|
epos[2],
|
|
filter.getIncludeFlags(),
|
|
filter.getExcludeFlags());
|
|
#endif
|
|
|
|
navmeshQuery->findPath(startRef, endRef, spos, epos, &filter, polys, &npolys, MAX_POLYS);
|
|
|
|
nsmoothPath = 0;
|
|
|
|
if (npolys)
|
|
{
|
|
// Iterate over the path to find smooth path on the detail mesh surface.
|
|
dtPolyRef polys[MAX_POLYS];
|
|
memcpy(polys, polys, sizeof(dtPolyRef) * npolys);
|
|
int npolys = npolys;
|
|
|
|
float iterPos[3], targetPos[3];
|
|
navmeshQuery->closestPointOnPoly(startRef, spos, iterPos, 0);
|
|
navmeshQuery->closestPointOnPoly(polys[npolys - 1], epos, targetPos, 0);
|
|
|
|
static const float STEP_SIZE = 0.5f;
|
|
static const float SLOP = 0.01f;
|
|
|
|
nsmoothPath = 0;
|
|
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], iterPos);
|
|
nsmoothPath++;
|
|
|
|
// Move towards target a small advancement at a time until target reached or
|
|
// when ran out of memory to store the path.
|
|
while (npolys && nsmoothPath < MAX_SMOOTH)
|
|
{
|
|
// Find location to steer towards.
|
|
float steerPos[3];
|
|
unsigned char steerPosFlag;
|
|
dtPolyRef steerPosRef;
|
|
|
|
if (!getSteerTarget(
|
|
navmeshQuery,
|
|
iterPos,
|
|
targetPos,
|
|
SLOP,
|
|
polys,
|
|
npolys,
|
|
steerPos,
|
|
steerPosFlag,
|
|
steerPosRef))
|
|
{
|
|
break;
|
|
}
|
|
|
|
bool endOfPath = (steerPosFlag & DT_STRAIGHTPATH_END) ? true : false;
|
|
bool offMeshConnection = (steerPosFlag & DT_STRAIGHTPATH_OFFMESH_CONNECTION) ? true : false;
|
|
|
|
// Find movement delta.
|
|
float delta[3], len;
|
|
dtVsub(delta, steerPos, iterPos);
|
|
len = dtMathSqrtf(dtVdot(delta, delta));
|
|
// If the steer target is end of path or off-mesh link, do not move past the location.
|
|
if ((endOfPath || offMeshConnection) && len < STEP_SIZE)
|
|
{
|
|
len = 1;
|
|
}
|
|
else
|
|
{
|
|
len = STEP_SIZE / len;
|
|
}
|
|
float moveTgt[3];
|
|
dtVmad(moveTgt, iterPos, delta, len);
|
|
|
|
// Move
|
|
float result[3];
|
|
dtPolyRef visited[16];
|
|
int nvisited = 0;
|
|
navmeshQuery->moveAlongSurface(polys[0], iterPos, moveTgt, &filter, result, visited, &nvisited, 16);
|
|
|
|
npolys = dtMergeCorridorStartMoved(polys, npolys, MAX_POLYS, visited, nvisited);
|
|
npolys = fixupShortcuts(polys, npolys, navmeshQuery);
|
|
|
|
float h = 0;
|
|
navmeshQuery->getPolyHeight(polys[0], result, &h);
|
|
result[1] = h;
|
|
dtVcopy(iterPos, result);
|
|
|
|
// Handle end of path and off-mesh links when close enough.
|
|
if (endOfPath && inRange(iterPos, steerPos, SLOP, 1.0f))
|
|
{
|
|
// Reached end of path.
|
|
dtVcopy(iterPos, targetPos);
|
|
if (nsmoothPath < MAX_SMOOTH)
|
|
{
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], iterPos);
|
|
nsmoothPath++;
|
|
}
|
|
break;
|
|
}
|
|
else if (offMeshConnection && inRange(iterPos, steerPos, SLOP, 1.0f))
|
|
{
|
|
// Reached off-mesh connection.
|
|
float startPos[3], endPos[3];
|
|
|
|
// Advance the path up to and over the off-mesh connection.
|
|
dtPolyRef prevRef = 0, polyRef = polys[0];
|
|
int npos = 0;
|
|
while (npos < npolys && polyRef != steerPosRef)
|
|
{
|
|
prevRef = polyRef;
|
|
polyRef = polys[npos];
|
|
npos++;
|
|
}
|
|
for (int i = npos; i < npolys; ++i) { polys[i - npos] = polys[i]; }
|
|
npolys -= npos;
|
|
|
|
// Handle the connection.
|
|
dtStatus status = navMesh->getOffMeshConnectionPolyEndPoints(prevRef, polyRef, startPos, endPos);
|
|
if (dtStatusSucceed(status))
|
|
{
|
|
if (nsmoothPath < MAX_SMOOTH)
|
|
{
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], startPos);
|
|
nsmoothPath++;
|
|
// Hack to make the dotted path not visible during off-mesh connection.
|
|
if (nsmoothPath & 1)
|
|
{
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], startPos);
|
|
nsmoothPath++;
|
|
}
|
|
}
|
|
// Move position at the other side of the off-mesh link.
|
|
dtVcopy(iterPos, endPos);
|
|
float eh = 0.0f;
|
|
navmeshQuery->getPolyHeight(polys[0], iterPos, &eh);
|
|
iterPos[1] = eh;
|
|
}
|
|
}
|
|
|
|
// Store results.
|
|
if (nsmoothPath < MAX_SMOOTH)
|
|
{
|
|
dtVcopy(&smoothPath[nsmoothPath * 3], iterPos);
|
|
nsmoothPath++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
npolys = 0;
|
|
nsmoothPath = 0;
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_PATHFIND_STRAIGHT)
|
|
{
|
|
if (sposSet && eposSet && startRef && endRef)
|
|
{
|
|
#ifdef DUMP_REQS
|
|
printf("ps %f %f %f %f %f %f 0x%x 0x%x\n",
|
|
spos[0],
|
|
spos[1],
|
|
spos[2],
|
|
epos[0],
|
|
epos[1],
|
|
epos[2],
|
|
filter.getIncludeFlags(),
|
|
filter.getExcludeFlags());
|
|
#endif
|
|
navmeshQuery->findPath(startRef, endRef, spos, epos, &filter, polys, &npolys, MAX_POLYS);
|
|
nstraightPath = 0;
|
|
if (npolys)
|
|
{
|
|
// In case of partial path, make sure the end point is clamped to the last polygon.
|
|
float epos[3];
|
|
dtVcopy(epos, epos);
|
|
if (polys[npolys - 1] != endRef)
|
|
{
|
|
navmeshQuery->closestPointOnPoly(polys[npolys - 1], epos, epos, 0);
|
|
}
|
|
|
|
navmeshQuery->findStraightPath(
|
|
spos,
|
|
epos,
|
|
polys,
|
|
npolys,
|
|
straightPath,
|
|
straightPathFlags,
|
|
straightPathPolys,
|
|
&nstraightPath,
|
|
MAX_POLYS,
|
|
straightPathOptions);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
npolys = 0;
|
|
nstraightPath = 0;
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_PATHFIND_SLICED)
|
|
{
|
|
if (sposSet && eposSet && startRef && endRef)
|
|
{
|
|
#ifdef DUMP_REQS
|
|
printf("ps %f %f %f %f %f %f 0x%x 0x%x\n",
|
|
spos[0],
|
|
spos[1],
|
|
spos[2],
|
|
epos[0],
|
|
epos[1],
|
|
epos[2],
|
|
filter.getIncludeFlags(),
|
|
filter.getExcludeFlags());
|
|
#endif
|
|
npolys = 0;
|
|
nstraightPath = 0;
|
|
|
|
pathFindStatus = navmeshQuery->initSlicedFindPath(
|
|
startRef,
|
|
endRef,
|
|
spos,
|
|
epos,
|
|
&filter,
|
|
DT_FINDPATH_ANY_ANGLE);
|
|
}
|
|
else
|
|
{
|
|
npolys = 0;
|
|
nstraightPath = 0;
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_RAYCAST)
|
|
{
|
|
nstraightPath = 0;
|
|
if (sposSet && eposSet && startRef)
|
|
{
|
|
#ifdef DUMP_REQS
|
|
printf("rc %f %f %f %f %f %f 0x%x 0x%x\n",
|
|
spos[0],
|
|
spos[1],
|
|
spos[2],
|
|
epos[0],
|
|
epos[1],
|
|
epos[2],
|
|
filter.getIncludeFlags(),
|
|
filter.getExcludeFlags());
|
|
#endif
|
|
float t = 0;
|
|
npolys = 0;
|
|
nstraightPath = 2;
|
|
straightPath[0] = spos[0];
|
|
straightPath[1] = spos[1];
|
|
straightPath[2] = spos[2];
|
|
navmeshQuery->raycast(startRef, spos, epos, &filter, &t, hitNormal, polys, &npolys, MAX_POLYS);
|
|
if (t > 1)
|
|
{
|
|
// No hit
|
|
dtVcopy(hitPos, epos);
|
|
hitResult = false;
|
|
}
|
|
else
|
|
{
|
|
// Hit
|
|
dtVlerp(hitPos, spos, epos, t);
|
|
hitResult = true;
|
|
}
|
|
// Adjust height.
|
|
if (npolys > 0)
|
|
{
|
|
float h = 0;
|
|
navmeshQuery->getPolyHeight(polys[npolys - 1], hitPos, &h);
|
|
hitPos[1] = h;
|
|
}
|
|
dtVcopy(&straightPath[3], hitPos);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_DISTANCE_TO_WALL)
|
|
{
|
|
distanceToWall = 0;
|
|
if (sposSet && startRef)
|
|
{
|
|
#ifdef DUMP_REQS
|
|
printf("dw %f %f %f %f 0x%x 0x%x\n",
|
|
spos[0],
|
|
spos[1],
|
|
spos[2],
|
|
100.0f,
|
|
filter.getIncludeFlags(),
|
|
filter.getExcludeFlags());
|
|
#endif
|
|
distanceToWall = 0.0f;
|
|
navmeshQuery->findDistanceToWall(startRef, spos, 100.0f, &filter, &distanceToWall, hitPos, hitNormal);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_FIND_POLYS_IN_CIRCLE)
|
|
{
|
|
if (sposSet && startRef && eposSet)
|
|
{
|
|
const float dx = epos[0] - spos[0];
|
|
const float dz = epos[2] - spos[2];
|
|
float dist = sqrtf(dx * dx + dz * dz);
|
|
#ifdef DUMP_REQS
|
|
printf("fpc %f %f %f %f 0x%x 0x%x\n",
|
|
spos[0],
|
|
spos[1],
|
|
spos[2],
|
|
dist,
|
|
filter.getIncludeFlags(),
|
|
filter.getExcludeFlags());
|
|
#endif
|
|
navmeshQuery->findPolysAroundCircle(startRef, spos, dist, &filter, polys, parent, 0, &npolys, MAX_POLYS);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_FIND_POLYS_IN_SHAPE)
|
|
{
|
|
if (sposSet && startRef && eposSet)
|
|
{
|
|
const float nx = (epos[2] - spos[2]) * 0.25f;
|
|
const float nz = -(epos[0] - spos[0]) * 0.25f;
|
|
const float agentHeight = sample ? sample->getAgentHeight() : 0;
|
|
|
|
queryPoly[0] = spos[0] + nx * 1.2f;
|
|
queryPoly[1] = spos[1] + agentHeight / 2;
|
|
queryPoly[2] = spos[2] + nz * 1.2f;
|
|
|
|
queryPoly[3] = spos[0] - nx * 1.3f;
|
|
queryPoly[4] = spos[1] + agentHeight / 2;
|
|
queryPoly[5] = spos[2] - nz * 1.3f;
|
|
|
|
queryPoly[6] = epos[0] - nx * 0.8f;
|
|
queryPoly[7] = epos[1] + agentHeight / 2;
|
|
queryPoly[8] = epos[2] - nz * 0.8f;
|
|
|
|
queryPoly[9] = epos[0] + nx;
|
|
queryPoly[10] = epos[1] + agentHeight / 2;
|
|
queryPoly[11] = epos[2] + nz;
|
|
|
|
#ifdef DUMP_REQS
|
|
printf("fpp %f %f %f %f %f %f %f %f %f %f %f %f 0x%x 0x%x\n",
|
|
queryPoly[0],
|
|
queryPoly[1],
|
|
queryPoly[2],
|
|
queryPoly[3],
|
|
queryPoly[4],
|
|
queryPoly[5],
|
|
queryPoly[6],
|
|
queryPoly[7],
|
|
queryPoly[8],
|
|
queryPoly[9],
|
|
queryPoly[10],
|
|
queryPoly[11],
|
|
filter.getIncludeFlags(),
|
|
filter.getExcludeFlags());
|
|
#endif
|
|
navmeshQuery->findPolysAroundShape(startRef, queryPoly, 4, &filter, polys, parent, 0, &npolys, MAX_POLYS);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_FIND_LOCAL_NEIGHBOURHOOD)
|
|
{
|
|
if (sposSet && startRef)
|
|
{
|
|
#ifdef DUMP_REQS
|
|
printf("fln %f %f %f %f 0x%x 0x%x\n",
|
|
spos[0],
|
|
spos[1],
|
|
spos[2],
|
|
neighbourhoodRadius,
|
|
filter.getIncludeFlags(),
|
|
filter.getExcludeFlags());
|
|
#endif
|
|
navmeshQuery->findLocalNeighbourhood(
|
|
startRef, spos, neighbourhoodRadius, &filter, polys, parent, &npolys, MAX_POLYS);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void getPolyCenter(dtNavMesh* navMesh, dtPolyRef ref, float* center)
|
|
{
|
|
center[0] = 0;
|
|
center[1] = 0;
|
|
center[2] = 0;
|
|
|
|
const dtMeshTile* tile = 0;
|
|
const dtPoly* poly = 0;
|
|
dtStatus status = navMesh->getTileAndPolyByRef(ref, &tile, &poly);
|
|
if (dtStatusFailed(status)) { return; }
|
|
|
|
for (int i = 0; i < (int)poly->vertCount; ++i)
|
|
{
|
|
const float* v = &tile->verts[poly->verts[i] * 3];
|
|
center[0] += v[0];
|
|
center[1] += v[1];
|
|
center[2] += v[2];
|
|
}
|
|
const float s = 1.0f / poly->vertCount;
|
|
center[0] *= s;
|
|
center[1] *= s;
|
|
center[2] *= s;
|
|
}
|
|
|
|
void NavMeshTesterTool::handleRender()
|
|
{
|
|
duDebugDraw& dd = sample->getDebugDraw();
|
|
|
|
static const unsigned int startCol = duRGBA(128, 25, 0, 192);
|
|
static const unsigned int endCol = duRGBA(51, 102, 0, 129);
|
|
static const unsigned int pathCol = duRGBA(0, 0, 0, 64);
|
|
|
|
const float agentRadius = sample->getAgentRadius();
|
|
const float agentHeight = sample->getAgentHeight();
|
|
const float agentClimb = sample->getAgentClimb();
|
|
|
|
dd.depthMask(false);
|
|
if (sposSet) { drawAgent(spos, agentRadius, agentHeight, agentClimb, startCol); }
|
|
if (eposSet) { drawAgent(epos, agentRadius, agentHeight, agentClimb, endCol); }
|
|
dd.depthMask(true);
|
|
|
|
if (!navMesh) { return; }
|
|
|
|
if (toolMode == TOOLMODE_PATHFIND_FOLLOW)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, startRef, startCol);
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, endRef, endCol);
|
|
|
|
if (npolys)
|
|
{
|
|
for (int i = 0; i < npolys; ++i)
|
|
{
|
|
if (polys[i] == startRef || polys[i] == endRef) { continue; }
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, polys[i], pathCol);
|
|
}
|
|
}
|
|
|
|
if (nsmoothPath)
|
|
{
|
|
dd.depthMask(false);
|
|
const unsigned int spathCol = duRGBA(0, 0, 0, 220);
|
|
dd.begin(DU_DRAW_LINES, 3.0f);
|
|
for (int i = 0; i < nsmoothPath; ++i)
|
|
{
|
|
dd.vertex(smoothPath[i * 3], smoothPath[i * 3 + 1] + 0.1f, smoothPath[i * 3 + 2], spathCol);
|
|
}
|
|
dd.end();
|
|
dd.depthMask(true);
|
|
}
|
|
|
|
if (pathIterNum)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, pathIterPolys[0], duRGBA(255, 255, 255, 128));
|
|
|
|
dd.depthMask(false);
|
|
dd.begin(DU_DRAW_LINES, 1.0f);
|
|
|
|
const unsigned int prevCol = duRGBA(255, 192, 0, 220);
|
|
const unsigned int curCol = duRGBA(255, 255, 255, 220);
|
|
const unsigned int steerCol = duRGBA(0, 192, 255, 220);
|
|
|
|
dd.vertex(prevIterPos[0], prevIterPos[1] - 0.3f, prevIterPos[2], prevCol);
|
|
dd.vertex(prevIterPos[0], prevIterPos[1] + 0.3f, prevIterPos[2], prevCol);
|
|
|
|
dd.vertex(iterPos[0], iterPos[1] - 0.3f, iterPos[2], curCol);
|
|
dd.vertex(iterPos[0], iterPos[1] + 0.3f, iterPos[2], curCol);
|
|
|
|
dd.vertex(prevIterPos[0], prevIterPos[1] + 0.3f, prevIterPos[2], prevCol);
|
|
dd.vertex(iterPos[0], iterPos[1] + 0.3f, iterPos[2], prevCol);
|
|
|
|
dd.vertex(prevIterPos[0], prevIterPos[1] + 0.3f, prevIterPos[2], steerCol);
|
|
dd.vertex(steerPos[0], steerPos[1] + 0.3f, steerPos[2], steerCol);
|
|
|
|
for (int i = 0; i < steerPointCount - 1; ++i)
|
|
{
|
|
dd.vertex(
|
|
steerPoints[i * 3 + 0],
|
|
steerPoints[i * 3 + 1] + 0.2f,
|
|
steerPoints[i * 3 + 2],
|
|
duDarkenCol(steerCol));
|
|
dd.vertex(
|
|
steerPoints[(i + 1) * 3 + 0],
|
|
steerPoints[(i + 1) * 3 + 1] + 0.2f,
|
|
steerPoints[(i + 1) * 3 + 2],
|
|
duDarkenCol(steerCol));
|
|
}
|
|
|
|
dd.end();
|
|
dd.depthMask(true);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_PATHFIND_STRAIGHT || toolMode == TOOLMODE_PATHFIND_SLICED)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, startRef, startCol);
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, endRef, endCol);
|
|
|
|
if (npolys)
|
|
{
|
|
for (int i = 0; i < npolys; ++i)
|
|
{
|
|
if (polys[i] == startRef || polys[i] == endRef) { continue; }
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, polys[i], pathCol);
|
|
}
|
|
}
|
|
|
|
if (nstraightPath)
|
|
{
|
|
dd.depthMask(false);
|
|
const unsigned int spathCol = duRGBA(64, 16, 0, 220);
|
|
const unsigned int offMeshCol = duRGBA(128, 96, 0, 220);
|
|
dd.begin(DU_DRAW_LINES, 2.0f);
|
|
for (int i = 0; i < nstraightPath - 1; ++i)
|
|
{
|
|
unsigned int col;
|
|
if (straightPathFlags[i] & DT_STRAIGHTPATH_OFFMESH_CONNECTION)
|
|
{
|
|
col = offMeshCol;
|
|
}
|
|
else
|
|
{
|
|
col = spathCol;
|
|
}
|
|
|
|
dd.vertex(
|
|
straightPath[i * 3],
|
|
straightPath[i * 3 + 1] + 0.4f,
|
|
straightPath[i * 3 + 2],
|
|
col);
|
|
dd.vertex(
|
|
straightPath[(i + 1) * 3],
|
|
straightPath[(i + 1) * 3 + 1] + 0.4f,
|
|
straightPath[(i + 1) * 3 + 2],
|
|
col);
|
|
}
|
|
dd.end();
|
|
dd.begin(DU_DRAW_POINTS, 6.0f);
|
|
for (int i = 0; i < nstraightPath; ++i)
|
|
{
|
|
unsigned int col;
|
|
if (straightPathFlags[i] & DT_STRAIGHTPATH_START) { col = startCol; }
|
|
else if (straightPathFlags[i] & DT_STRAIGHTPATH_END) { col = endCol; }
|
|
else if (straightPathFlags[i] & DT_STRAIGHTPATH_OFFMESH_CONNECTION) { col = offMeshCol; }
|
|
else { col = spathCol; }
|
|
dd.vertex(straightPath[i * 3], straightPath[i * 3 + 1] + 0.4f, straightPath[i * 3 + 2], col);
|
|
}
|
|
dd.end();
|
|
dd.depthMask(true);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_RAYCAST)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, startRef, startCol);
|
|
|
|
if (nstraightPath)
|
|
{
|
|
for (int i = 1; i < npolys; ++i)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, polys[i], pathCol);
|
|
}
|
|
|
|
dd.depthMask(false);
|
|
const unsigned int spathCol = hitResult ? duRGBA(64, 16, 0, 220) : duRGBA(240, 240, 240, 220);
|
|
dd.begin(DU_DRAW_LINES, 2.0f);
|
|
for (int i = 0; i < nstraightPath - 1; ++i)
|
|
{
|
|
dd.vertex(
|
|
straightPath[i * 3],
|
|
straightPath[i * 3 + 1] + 0.4f,
|
|
straightPath[i * 3 + 2],
|
|
spathCol);
|
|
dd.vertex(
|
|
straightPath[(i + 1) * 3],
|
|
straightPath[(i + 1) * 3 + 1] + 0.4f,
|
|
straightPath[(i + 1) * 3 + 2],
|
|
spathCol);
|
|
}
|
|
dd.end();
|
|
dd.begin(DU_DRAW_POINTS, 4.0f);
|
|
for (int i = 0; i < nstraightPath; ++i)
|
|
{
|
|
dd.vertex(
|
|
straightPath[i * 3],
|
|
straightPath[i * 3 + 1] + 0.4f,
|
|
straightPath[i * 3 + 2],
|
|
spathCol);
|
|
}
|
|
dd.end();
|
|
|
|
if (hitResult)
|
|
{
|
|
const unsigned int hitCol = duRGBA(0, 0, 0, 128);
|
|
dd.begin(DU_DRAW_LINES, 2.0f);
|
|
dd.vertex(
|
|
hitPos[0],
|
|
hitPos[1] + 0.4f,
|
|
hitPos[2],
|
|
hitCol);
|
|
dd.vertex(
|
|
hitPos[0] + hitNormal[0] * agentRadius,
|
|
hitPos[1] + 0.4f + hitNormal[1] * agentRadius,
|
|
hitPos[2] + hitNormal[2] * agentRadius,
|
|
hitCol);
|
|
dd.end();
|
|
}
|
|
dd.depthMask(true);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_DISTANCE_TO_WALL)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, startRef, startCol);
|
|
dd.depthMask(false);
|
|
duDebugDrawCircle(
|
|
&dd,
|
|
spos[0],
|
|
spos[1] + agentHeight / 2,
|
|
spos[2],
|
|
distanceToWall,
|
|
duRGBA(64, 16, 0, 220),
|
|
2.0f);
|
|
dd.begin(DU_DRAW_LINES, 3.0f);
|
|
dd.vertex(hitPos[0], hitPos[1] + 0.02f, hitPos[2], duRGBA(0, 0, 0, 192));
|
|
dd.vertex(hitPos[0], hitPos[1] + agentHeight, hitPos[2], duRGBA(0, 0, 0, 192));
|
|
dd.end();
|
|
dd.depthMask(true);
|
|
}
|
|
else if (toolMode == TOOLMODE_FIND_POLYS_IN_CIRCLE)
|
|
{
|
|
for (int i = 0; i < npolys; ++i)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, polys[i], pathCol);
|
|
dd.depthMask(false);
|
|
if (parent[i])
|
|
{
|
|
float p0[3], p1[3];
|
|
dd.depthMask(false);
|
|
getPolyCenter(navMesh, parent[i], p0);
|
|
getPolyCenter(navMesh, polys[i], p1);
|
|
duDebugDrawArc(&dd, p0[0], p0[1], p0[2], p1[0], p1[1], p1[2], 0.25f, 0.0f, 0.4f, duRGBA(0, 0, 0, 128), 2.0f);
|
|
dd.depthMask(true);
|
|
}
|
|
dd.depthMask(true);
|
|
}
|
|
|
|
if (sposSet && eposSet)
|
|
{
|
|
dd.depthMask(false);
|
|
const float dx = epos[0] - spos[0];
|
|
const float dz = epos[2] - spos[2];
|
|
const float dist = sqrtf(dx * dx + dz * dz);
|
|
duDebugDrawCircle(&dd, spos[0], spos[1] + agentHeight / 2, spos[2], dist, duRGBA(64, 16, 0, 220), 2.0f);
|
|
dd.depthMask(true);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_FIND_POLYS_IN_SHAPE)
|
|
{
|
|
for (int i = 0; i < npolys; ++i)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, polys[i], pathCol);
|
|
dd.depthMask(false);
|
|
if (parent[i])
|
|
{
|
|
float p0[3], p1[3];
|
|
dd.depthMask(false);
|
|
getPolyCenter(navMesh, parent[i], p0);
|
|
getPolyCenter(navMesh, polys[i], p1);
|
|
duDebugDrawArc(&dd, p0[0], p0[1], p0[2], p1[0], p1[1], p1[2], 0.25f, 0.0f, 0.4f, duRGBA(0, 0, 0, 128), 2.0f);
|
|
dd.depthMask(true);
|
|
}
|
|
dd.depthMask(true);
|
|
}
|
|
|
|
if (sposSet && eposSet)
|
|
{
|
|
dd.depthMask(false);
|
|
const unsigned int col = duRGBA(64, 16, 0, 220);
|
|
dd.begin(DU_DRAW_LINES, 2.0f);
|
|
for (int i = 0, j = 3; i < 4; j = i++)
|
|
{
|
|
const float* p0 = &queryPoly[j * 3];
|
|
const float* p1 = &queryPoly[i * 3];
|
|
dd.vertex(p0, col);
|
|
dd.vertex(p1, col);
|
|
}
|
|
dd.end();
|
|
dd.depthMask(true);
|
|
}
|
|
}
|
|
else if (toolMode == TOOLMODE_FIND_LOCAL_NEIGHBOURHOOD)
|
|
{
|
|
for (int i = 0; i < npolys; ++i)
|
|
{
|
|
duDebugDrawNavMeshPoly(&dd, *navMesh, polys[i], pathCol);
|
|
dd.depthMask(false);
|
|
if (parent[i])
|
|
{
|
|
float p0[3], p1[3];
|
|
dd.depthMask(false);
|
|
getPolyCenter(navMesh, parent[i], p0);
|
|
getPolyCenter(navMesh, polys[i], p1);
|
|
duDebugDrawArc(&dd, p0[0], p0[1], p0[2], p1[0], p1[1], p1[2], 0.25f, 0.0f, 0.4f, duRGBA(0, 0, 0, 128), 2.0f);
|
|
dd.depthMask(true);
|
|
}
|
|
|
|
static const int MAX_SEGS = DT_VERTS_PER_POLYGON * 4;
|
|
float segs[MAX_SEGS * 6];
|
|
dtPolyRef refs[MAX_SEGS];
|
|
memset(refs, 0, sizeof(dtPolyRef) * MAX_SEGS);
|
|
int nsegs = 0;
|
|
navmeshQuery->getPolyWallSegments(polys[i], &filter, segs, refs, &nsegs, MAX_SEGS);
|
|
dd.begin(DU_DRAW_LINES, 2.0f);
|
|
for (int j = 0; j < nsegs; ++j)
|
|
{
|
|
const float* s = &segs[j * 6];
|
|
|
|
// Skip too distant segments.
|
|
float tseg;
|
|
float distSqr = dtDistancePtSegSqr2D(spos, s, s + 3, tseg);
|
|
if (distSqr > dtSqr(neighbourhoodRadius)) { continue; }
|
|
|
|
float delta[3];
|
|
float norm[3];
|
|
float p0[3];
|
|
float p1[3];
|
|
dtVsub(delta, s + 3, s);
|
|
dtVmad(p0, s, delta, 0.5f);
|
|
norm[0] = delta[2];
|
|
norm[1] = 0;
|
|
norm[2] = -delta[0];
|
|
dtVnormalize(norm);
|
|
dtVmad(p1, p0, norm, agentRadius * 0.5f);
|
|
|
|
// Skip backfacing segments.
|
|
if (refs[j])
|
|
{
|
|
unsigned int col = duRGBA(255, 255, 255, 32);
|
|
dd.vertex(s[0], s[1] + agentClimb, s[2], col);
|
|
dd.vertex(s[3], s[4] + agentClimb, s[5], col);
|
|
}
|
|
else
|
|
{
|
|
unsigned int col = duRGBA(192, 32, 16, 192);
|
|
if (dtTriArea2D(spos, s, s + 3) < 0.0f)
|
|
{
|
|
col = duRGBA(96, 32, 16, 192);
|
|
}
|
|
|
|
dd.vertex(p0[0], p0[1] + agentClimb, p0[2], col);
|
|
dd.vertex(p1[0], p1[1] + agentClimb, p1[2], col);
|
|
|
|
dd.vertex(s[0], s[1] + agentClimb, s[2], col);
|
|
dd.vertex(s[3], s[4] + agentClimb, s[5], col);
|
|
}
|
|
}
|
|
dd.end();
|
|
|
|
dd.depthMask(true);
|
|
}
|
|
|
|
if (sposSet)
|
|
{
|
|
dd.depthMask(false);
|
|
duDebugDrawCircle(
|
|
&dd,
|
|
spos[0],
|
|
spos[1] + agentHeight / 2,
|
|
spos[2],
|
|
neighbourhoodRadius,
|
|
duRGBA(64, 16, 0, 220),
|
|
2.0f);
|
|
dd.depthMask(true);
|
|
}
|
|
}
|
|
|
|
if (nrandPoints > 0)
|
|
{
|
|
dd.begin(DU_DRAW_POINTS, 6.0f);
|
|
for (int i = 0; i < nrandPoints; i++)
|
|
{
|
|
const float* p = &randPoints[i * 3];
|
|
dd.vertex(p[0], p[1] + 0.1f, p[2], duRGBA(220, 32, 16, 192));
|
|
}
|
|
dd.end();
|
|
|
|
if (randPointsInCircle && sposSet)
|
|
{
|
|
duDebugDrawCircle(
|
|
&dd,
|
|
spos[0],
|
|
spos[1] + agentHeight / 2,
|
|
spos[2],
|
|
randomRadius,
|
|
duRGBA(64, 16, 0, 220),
|
|
2.0f);
|
|
}
|
|
}
|
|
}
|
|
|
|
void NavMeshTesterTool::handleRenderOverlay(double* proj, double* model, int* view)
|
|
{
|
|
GLdouble x, y, z;
|
|
|
|
// Draw start and end point labels
|
|
if (sposSet && gluProject(spos[0], spos[1], spos[2], model, proj, view, &x, &y, &z))
|
|
{
|
|
DrawScreenspaceText(static_cast<float>(x), static_cast<float>(y) - 25, IM_COL32(0, 0, 0, 220), "Start", true);
|
|
}
|
|
if (eposSet && gluProject(epos[0], epos[1], epos[2], model, proj, view, &x, &y, &z))
|
|
{
|
|
DrawScreenspaceText(static_cast<float>(x), static_cast<float>(y) - 25, IM_COL32(0, 0, 0, 220), "End", true);
|
|
}
|
|
|
|
// Tool help
|
|
const int h = view[3];
|
|
DrawScreenspaceText(
|
|
280,
|
|
static_cast<float>(h) - 40,
|
|
IM_COL32(255, 255, 255, 192),
|
|
"LMB+SHIFT: Set start location LMB: Set end location");
|
|
}
|
|
|
|
void NavMeshTesterTool::drawAgent(const float* pos, float r, float h, float c, const unsigned int col)
|
|
{
|
|
duDebugDraw& dd = sample->getDebugDraw();
|
|
|
|
dd.depthMask(false);
|
|
|
|
// Agent dimensions.
|
|
duDebugDrawCylinderWire(&dd, pos[0] - r, pos[1] + 0.02f, pos[2] - r, pos[0] + r, pos[1] + h, pos[2] + r, col, 2.0f);
|
|
|
|
duDebugDrawCircle(&dd, pos[0], pos[1] + c, pos[2], r, duRGBA(0, 0, 0, 64), 1.0f);
|
|
|
|
unsigned int colb = duRGBA(0, 0, 0, 196);
|
|
dd.begin(DU_DRAW_LINES);
|
|
dd.vertex(pos[0], pos[1] - c, pos[2], colb);
|
|
dd.vertex(pos[0], pos[1] + c, pos[2], colb);
|
|
dd.vertex(pos[0] - r / 2, pos[1] + 0.02f, pos[2], colb);
|
|
dd.vertex(pos[0] + r / 2, pos[1] + 0.02f, pos[2], colb);
|
|
dd.vertex(pos[0], pos[1] + 0.02f, pos[2] - r / 2, colb);
|
|
dd.vertex(pos[0], pos[1] + 0.02f, pos[2] + r / 2, colb);
|
|
dd.end();
|
|
|
|
dd.depthMask(true);
|
|
}
|