2023-03-14 08:02:43 +03:00
|
|
|
/*
|
|
|
|
recast4j copyright (c) 2021 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
using System;
|
2023-03-28 18:03:33 +03:00
|
|
|
using DotRecast.Core;
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:09:10 +03:00
|
|
|
namespace DotRecast.Detour
|
|
|
|
{
|
2023-03-25 09:43:20 +03:00
|
|
|
using static DotRecast.Core.RecastMath;
|
2023-03-16 19:09:10 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
/**
|
2023-03-14 08:02:43 +03:00
|
|
|
* Convex-convex intersection based on "Computational Geometry in C" by Joseph O'Rourke
|
|
|
|
*/
|
2023-03-16 19:48:49 +03:00
|
|
|
public static class ConvexConvexIntersection
|
|
|
|
{
|
|
|
|
private static readonly float EPSILON = 0.0001f;
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
private enum InFlag
|
|
|
|
{
|
|
|
|
Pin,
|
|
|
|
Qin,
|
|
|
|
Unknown,
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
private enum Intersection
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Single,
|
|
|
|
Overlap,
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public static float[] intersect(float[] p, float[] q)
|
|
|
|
{
|
|
|
|
int n = p.Length / 3;
|
|
|
|
int m = q.Length / 3;
|
|
|
|
float[] inters = new float[Math.Max(m, n) * 3 * 3];
|
|
|
|
int ii = 0;
|
|
|
|
/* Initialize variables. */
|
2023-03-28 18:03:33 +03:00
|
|
|
Vector3f a = new Vector3f();
|
|
|
|
Vector3f b = new Vector3f();
|
|
|
|
Vector3f a1 = new Vector3f();
|
|
|
|
Vector3f b1 = new Vector3f();
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
int aa = 0;
|
|
|
|
int ba = 0;
|
|
|
|
int ai = 0;
|
|
|
|
int bi = 0;
|
|
|
|
|
|
|
|
InFlag f = InFlag.Unknown;
|
|
|
|
bool FirstPoint = true;
|
2023-03-28 18:03:33 +03:00
|
|
|
Vector3f ip = new Vector3f();
|
|
|
|
Vector3f iq = new Vector3f();
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
do
|
|
|
|
{
|
2023-03-28 18:03:33 +03:00
|
|
|
vCopy(ref a, p, 3 * (ai % n));
|
|
|
|
vCopy(ref b, q, 3 * (bi % m));
|
|
|
|
vCopy(ref a1, p, 3 * ((ai + n - 1) % n)); // prev a
|
|
|
|
vCopy(ref b1, q, 3 * ((bi + m - 1) % m)); // prev b
|
2023-03-16 19:48:49 +03:00
|
|
|
|
2023-03-28 19:52:26 +03:00
|
|
|
Vector3f A = vSub(a, a1);
|
|
|
|
Vector3f B = vSub(b, b1);
|
2023-03-16 19:48:49 +03:00
|
|
|
|
|
|
|
float cross = B[0] * A[2] - A[0] * B[2]; // triArea2D({0, 0}, A, B);
|
|
|
|
float aHB = triArea2D(b1, b, a);
|
|
|
|
float bHA = triArea2D(a1, a, b);
|
|
|
|
if (Math.Abs(cross) < EPSILON)
|
|
|
|
{
|
|
|
|
cross = 0f;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
bool parallel = cross == 0f;
|
2023-03-28 18:03:33 +03:00
|
|
|
Intersection code = parallel ? parallelInt(a1, a, b1, b, ref ip, ref iq) : segSegInt(a1, a, b1, b, ref ip, ref iq);
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
if (code == Intersection.Single)
|
|
|
|
{
|
|
|
|
if (FirstPoint)
|
|
|
|
{
|
|
|
|
FirstPoint = false;
|
|
|
|
aa = ba = 0;
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
ii = addVertex(inters, ii, ip);
|
|
|
|
f = inOut(f, aHB, bHA);
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
/*-----Advance rules-----*/
|
|
|
|
|
|
|
|
/* Special case: A & B overlap and oppositely oriented. */
|
|
|
|
if (code == Intersection.Overlap && vDot2D(A, B) < 0)
|
|
|
|
{
|
|
|
|
ii = addVertex(inters, ii, ip);
|
|
|
|
ii = addVertex(inters, ii, iq);
|
|
|
|
break;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
/* Special case: A & B parallel and separated. */
|
|
|
|
if (parallel && aHB < 0f && bHA < 0f)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
/* Special case: A & B collinear. */
|
|
|
|
else if (parallel && Math.Abs(aHB) < EPSILON && Math.Abs(bHA) < EPSILON)
|
|
|
|
{
|
|
|
|
/* Advance but do not output point. */
|
|
|
|
if (f == InFlag.Pin)
|
|
|
|
{
|
|
|
|
ba++;
|
|
|
|
bi++;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
2023-03-16 19:48:49 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
aa++;
|
|
|
|
ai++;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
}
|
2023-03-16 19:48:49 +03:00
|
|
|
/* Generic cases. */
|
|
|
|
else if (cross >= 0)
|
|
|
|
{
|
|
|
|
if (bHA > 0)
|
|
|
|
{
|
|
|
|
if (f == InFlag.Pin)
|
|
|
|
{
|
|
|
|
ii = addVertex(inters, ii, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
aa++;
|
|
|
|
ai++;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
2023-03-16 19:48:49 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (f == InFlag.Qin)
|
|
|
|
{
|
|
|
|
ii = addVertex(inters, ii, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
ba++;
|
|
|
|
bi++;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
}
|
2023-03-16 19:48:49 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (aHB > 0)
|
|
|
|
{
|
|
|
|
if (f == InFlag.Qin)
|
|
|
|
{
|
|
|
|
ii = addVertex(inters, ii, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
ba++;
|
|
|
|
bi++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (f == InFlag.Pin)
|
|
|
|
{
|
|
|
|
ii = addVertex(inters, ii, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
aa++;
|
|
|
|
ai++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Quit when both adv. indices have cycled, or one has cycled twice. */
|
|
|
|
} while ((aa < n || ba < m) && aa < 2 * n && ba < 2 * m);
|
|
|
|
|
|
|
|
/* Deal with special cases: not implemented. */
|
|
|
|
if (f == InFlag.Unknown)
|
|
|
|
{
|
|
|
|
return null;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
float[] copied = new float[ii];
|
|
|
|
Array.Copy(inters, copied, ii);
|
|
|
|
return copied;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
private static int addVertex(float[] inters, int ii, float[] p)
|
|
|
|
{
|
|
|
|
if (ii > 0)
|
|
|
|
{
|
|
|
|
if (inters[ii - 3] == p[0] && inters[ii - 2] == p[1] && inters[ii - 1] == p[2])
|
|
|
|
{
|
|
|
|
return ii;
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
if (inters[0] == p[0] && inters[1] == p[1] && inters[2] == p[2])
|
|
|
|
{
|
|
|
|
return ii;
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
inters[ii] = p[0];
|
|
|
|
inters[ii + 1] = p[1];
|
|
|
|
inters[ii + 2] = p[2];
|
|
|
|
return ii + 3;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
2023-03-28 18:03:33 +03:00
|
|
|
|
|
|
|
private static int addVertex(float[] inters, int ii, Vector3f p)
|
|
|
|
{
|
|
|
|
if (ii > 0)
|
|
|
|
{
|
|
|
|
if (inters[ii - 3] == p[0] && inters[ii - 2] == p[1] && inters[ii - 1] == p[2])
|
|
|
|
{
|
|
|
|
return ii;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inters[0] == p[0] && inters[1] == p[1] && inters[2] == p[2])
|
|
|
|
{
|
|
|
|
return ii;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inters[ii] = p[0];
|
|
|
|
inters[ii + 1] = p[1];
|
|
|
|
inters[ii + 2] = p[2];
|
|
|
|
return ii + 3;
|
|
|
|
}
|
|
|
|
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
private static InFlag inOut(InFlag inflag, float aHB, float bHA)
|
|
|
|
{
|
|
|
|
if (aHB > 0)
|
|
|
|
{
|
|
|
|
return InFlag.Pin;
|
|
|
|
}
|
|
|
|
else if (bHA > 0)
|
|
|
|
{
|
|
|
|
return InFlag.Qin;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
return inflag;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
2023-03-16 19:48:49 +03:00
|
|
|
|
2023-03-28 18:03:33 +03:00
|
|
|
private static Intersection segSegInt(Vector3f a, Vector3f b, Vector3f c, Vector3f d, ref Vector3f p, ref Vector3f q)
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
var isec = intersectSegSeg2D(a, b, c, d);
|
|
|
|
if (null != isec)
|
|
|
|
{
|
|
|
|
float s = isec.Item1;
|
|
|
|
float t = isec.Item2;
|
|
|
|
if (s >= 0.0f && s <= 1.0f && t >= 0.0f && t <= 1.0f)
|
|
|
|
{
|
2023-04-29 05:21:25 +03:00
|
|
|
p.x = a[0] + (b[0] - a[0]) * s;
|
|
|
|
p.y = a[1] + (b[1] - a[1]) * s;
|
|
|
|
p.z = a[2] + (b[2] - a[2]) * s;
|
2023-03-16 19:48:49 +03:00
|
|
|
return Intersection.Single;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Intersection.None;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
2023-03-16 19:48:49 +03:00
|
|
|
|
2023-03-28 18:03:33 +03:00
|
|
|
private static Intersection parallelInt(Vector3f a, Vector3f b, Vector3f c, Vector3f d, ref Vector3f p, ref Vector3f q)
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
if (between(a, b, c) && between(a, b, d))
|
|
|
|
{
|
2023-04-12 17:53:28 +03:00
|
|
|
p = c;
|
|
|
|
q = d;
|
2023-03-16 19:48:49 +03:00
|
|
|
return Intersection.Overlap;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (between(c, d, a) && between(c, d, b))
|
|
|
|
{
|
2023-04-12 17:53:28 +03:00
|
|
|
p = a;
|
|
|
|
q = b;
|
2023-03-16 19:48:49 +03:00
|
|
|
return Intersection.Overlap;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (between(a, b, c) && between(c, d, b))
|
|
|
|
{
|
2023-04-12 17:53:28 +03:00
|
|
|
p = c;
|
|
|
|
q = b;
|
2023-03-16 19:48:49 +03:00
|
|
|
return Intersection.Overlap;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (between(a, b, c) && between(c, d, a))
|
|
|
|
{
|
2023-04-12 17:53:28 +03:00
|
|
|
p = c;
|
|
|
|
q = a;
|
2023-03-16 19:48:49 +03:00
|
|
|
return Intersection.Overlap;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (between(a, b, d) && between(c, d, b))
|
|
|
|
{
|
2023-04-12 17:53:28 +03:00
|
|
|
p = d;
|
|
|
|
q = b;
|
2023-03-16 19:48:49 +03:00
|
|
|
return Intersection.Overlap;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (between(a, b, d) && between(c, d, a))
|
|
|
|
{
|
2023-04-12 17:53:28 +03:00
|
|
|
p = d;
|
|
|
|
q = a;
|
2023-03-16 19:48:49 +03:00
|
|
|
return Intersection.Overlap;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Intersection.None;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
|
2023-03-28 18:03:33 +03:00
|
|
|
private static bool between(Vector3f a, Vector3f b, Vector3f c)
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
if (Math.Abs(a[0] - b[0]) > Math.Abs(a[2] - b[2]))
|
|
|
|
{
|
|
|
|
return ((a[0] <= c[0]) && (c[0] <= b[0])) || ((a[0] >= c[0]) && (c[0] >= b[0]));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return ((a[2] <= c[2]) && (c[2] <= b[2])) || ((a[2] >= c[2]) && (c[2] >= b[2]));
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
}
|
2023-03-16 19:09:10 +03:00
|
|
|
}
|