2023-03-14 08:02:43 +03:00
|
|
|
/*
|
|
|
|
recast4j Copyright (c) 2015-2019 Piotr Piastucki piotr@jtilia.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.
|
|
|
|
*/
|
|
|
|
|
2023-03-29 18:59:00 +03:00
|
|
|
using DotRecast.Core;
|
2023-04-23 08:13:10 +03:00
|
|
|
using DotRecast.Detour.QueryResults;
|
2023-03-14 08:02:43 +03:00
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
namespace DotRecast.Detour.Test;
|
|
|
|
|
2023-04-25 17:22:44 +03:00
|
|
|
[Parallelizable]
|
2023-03-14 08:02:43 +03:00
|
|
|
public class FindLocalNeighbourhoodTest : AbstractDetourTest
|
|
|
|
{
|
|
|
|
private static readonly long[][] REFS =
|
|
|
|
{
|
|
|
|
new[] { 281474976710696L, 281474976710695L, 281474976710691L, 281474976710697L },
|
|
|
|
new[] { 281474976710773L, 281474976710769L, 281474976710772L },
|
|
|
|
new[]
|
|
|
|
{
|
|
|
|
281474976710680L, 281474976710674L, 281474976710679L, 281474976710684L, 281474976710683L,
|
|
|
|
281474976710678L, 281474976710677L, 281474976710676L
|
|
|
|
},
|
|
|
|
new[] { 281474976710753L, 281474976710748L, 281474976710750L, 281474976710752L },
|
|
|
|
new[] { 281474976710733L, 281474976710735L, 281474976710736L }
|
|
|
|
};
|
|
|
|
|
|
|
|
private static readonly long[][] PARENT_REFS =
|
|
|
|
{
|
|
|
|
new[] { 0L, 281474976710696L, 281474976710695L, 281474976710695L },
|
|
|
|
new[] { 0L, 281474976710773L, 281474976710773L },
|
|
|
|
new[]
|
|
|
|
{
|
|
|
|
0L, 281474976710680L, 281474976710680L, 281474976710680L, 281474976710680L, 281474976710679L,
|
|
|
|
281474976710683L, 281474976710678L
|
|
|
|
},
|
|
|
|
new[] { 0L, 281474976710753L, 281474976710753L, 281474976710748L },
|
|
|
|
new[] { 0L, 281474976710733L, 281474976710733L }
|
|
|
|
};
|
|
|
|
|
|
|
|
[Test]
|
2023-05-05 02:44:48 +03:00
|
|
|
public void TestFindNearestPoly()
|
2023-03-14 08:02:43 +03:00
|
|
|
{
|
2023-06-08 15:38:02 +03:00
|
|
|
IDtQueryFilter filter = new DtQueryDefaultFilter();
|
2023-03-14 08:02:43 +03:00
|
|
|
for (int i = 0; i < startRefs.Length; i++)
|
|
|
|
{
|
2023-06-03 15:47:26 +03:00
|
|
|
RcVec3f startPos = startPoss[i];
|
2023-05-05 02:44:48 +03:00
|
|
|
Result<FindLocalNeighbourhoodResult> poly = query.FindLocalNeighbourhood(startRefs[i], startPos, 3.5f, filter);
|
|
|
|
Assert.That(poly.result.GetRefs().Count, Is.EqualTo(REFS[i].Length));
|
2023-03-14 08:02:43 +03:00
|
|
|
for (int v = 0; v < REFS[i].Length; v++)
|
|
|
|
{
|
2023-05-05 02:44:48 +03:00
|
|
|
Assert.That(poly.result.GetRefs()[v], Is.EqualTo(REFS[i][v]));
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|