2019-09-06 08:11:58 +00:00
|
|
|
|
/*
|
|
|
|
|
* Implementation of the Expanding Polytope Algorithm
|
|
|
|
|
* as based on the following blog post:
|
|
|
|
|
* https://blog.hamaluik.ca/posts/building-a-collision-engine-part-2-2d-penetration-vectors/
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using MoonTools.Core.Structs;
|
|
|
|
|
using System;
|
2019-12-02 05:51:52 +00:00
|
|
|
|
using System.Collections.Immutable;
|
|
|
|
|
using System.Linq;
|
2019-10-31 23:19:30 +00:00
|
|
|
|
using System.Numerics;
|
2019-09-06 08:11:58 +00:00
|
|
|
|
|
|
|
|
|
namespace MoonTools.Core.Bonk
|
|
|
|
|
{
|
2019-12-09 03:46:08 +00:00
|
|
|
|
internal enum PolygonWinding
|
2019-09-06 08:11:58 +00:00
|
|
|
|
{
|
|
|
|
|
Clockwise,
|
|
|
|
|
CounterClockwise
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class EPA2D
|
|
|
|
|
{
|
2019-10-25 21:01:36 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns a minimum separating vector in the direction from A to B.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="simplex">A simplex returned by the GJK algorithm.</param>
|
2019-12-09 04:30:21 +00:00
|
|
|
|
public static Vector2 Intersect(IShape2D shapeA, Transform2D Transform2DA, IShape2D shapeB, Transform2D Transform2DB, Simplex2D simplex)
|
2019-09-06 08:11:58 +00:00
|
|
|
|
{
|
2019-12-09 04:30:21 +00:00
|
|
|
|
if (shapeA == null) { throw new ArgumentNullException(nameof(shapeA)); }
|
|
|
|
|
if (shapeB == null) { throw new ArgumentNullException(nameof(shapeB)); }
|
|
|
|
|
|
2019-12-02 05:51:52 +00:00
|
|
|
|
var simplexVertices = simplex.Vertices.Select(vertex => vertex.ToVector2()).ToImmutableArray();
|
2019-09-06 08:11:58 +00:00
|
|
|
|
|
|
|
|
|
var e0 = (simplexVertices[1].X - simplexVertices[0].X) * (simplexVertices[1].Y + simplexVertices[0].Y);
|
|
|
|
|
var e1 = (simplexVertices[2].X - simplexVertices[1].X) * (simplexVertices[2].Y + simplexVertices[1].Y);
|
|
|
|
|
var e2 = (simplexVertices[0].X - simplexVertices[2].X) * (simplexVertices[0].Y + simplexVertices[2].Y);
|
|
|
|
|
var winding = e0 + e1 + e2 >= 0 ? PolygonWinding.Clockwise : PolygonWinding.CounterClockwise;
|
|
|
|
|
|
|
|
|
|
Vector2 intersection = default;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 32; i++)
|
|
|
|
|
{
|
|
|
|
|
var edge = FindClosestEdge(winding, simplexVertices);
|
|
|
|
|
var support = CalculateSupport(shapeA, Transform2DA, shapeB, Transform2DB, edge.normal);
|
|
|
|
|
var distance = Vector2.Dot(support, edge.normal);
|
|
|
|
|
|
|
|
|
|
intersection = edge.normal;
|
|
|
|
|
intersection *= distance;
|
|
|
|
|
|
|
|
|
|
if (Math.Abs(distance - edge.distance) <= float.Epsilon)
|
|
|
|
|
{
|
|
|
|
|
return intersection;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-12-02 05:51:52 +00:00
|
|
|
|
simplexVertices = simplexVertices.Insert(edge.index, support);
|
2019-09-06 08:11:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return intersection;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-02 05:51:52 +00:00
|
|
|
|
private static Edge FindClosestEdge(PolygonWinding winding, ImmutableArray<Vector2> simplexVertices)
|
2019-09-06 08:11:58 +00:00
|
|
|
|
{
|
|
|
|
|
var closestDistance = float.PositiveInfinity;
|
|
|
|
|
var closestNormal = Vector2.Zero;
|
|
|
|
|
var closestIndex = 0;
|
|
|
|
|
|
2019-12-02 05:51:52 +00:00
|
|
|
|
for (int i = 0; i < simplexVertices.Length; i++)
|
2019-09-06 08:11:58 +00:00
|
|
|
|
{
|
|
|
|
|
var j = i + 1;
|
2019-12-02 05:51:52 +00:00
|
|
|
|
if (j >= simplexVertices.Length) { j = 0; }
|
2019-09-06 08:11:58 +00:00
|
|
|
|
Vector2 edge = simplexVertices[j] - simplexVertices[i];
|
|
|
|
|
|
|
|
|
|
Vector2 norm;
|
|
|
|
|
if (winding == PolygonWinding.Clockwise)
|
|
|
|
|
{
|
2019-10-31 23:19:30 +00:00
|
|
|
|
norm = Vector2.Normalize(new Vector2(edge.Y, -edge.X));
|
2019-09-06 08:11:58 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-10-31 23:19:30 +00:00
|
|
|
|
norm = Vector2.Normalize(new Vector2(-edge.Y, edge.X));
|
2019-09-06 08:11:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var dist = Vector2.Dot(norm, simplexVertices[i]);
|
|
|
|
|
|
|
|
|
|
if (dist < closestDistance)
|
|
|
|
|
{
|
|
|
|
|
closestDistance = dist;
|
|
|
|
|
closestNormal = norm;
|
|
|
|
|
closestIndex = j;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new Edge(closestDistance, closestNormal, closestIndex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static Vector2 CalculateSupport(IShape2D shapeA, Transform2D Transform2DA, IShape2D shapeB, Transform2D Transform2DB, Vector2 direction)
|
|
|
|
|
{
|
|
|
|
|
return shapeA.Support(direction, Transform2DA) - shapeB.Support(-direction, Transform2DB);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|