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.
|
|
|
|
*/
|
|
|
|
|
2023-03-16 19:09:10 +03:00
|
|
|
using System;
|
2023-03-14 08:02:43 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.Immutable;
|
2023-03-30 19:10:04 +03:00
|
|
|
using DotRecast.Core;
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:09:10 +03:00
|
|
|
namespace DotRecast.Recast.Geom
|
|
|
|
{
|
2023-05-05 03:06:43 +03:00
|
|
|
public class SingleTrimeshInputGeomProvider : IInputGeomProvider
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
2023-03-30 19:10:04 +03:00
|
|
|
private readonly Vector3f bmin;
|
|
|
|
private readonly Vector3f bmax;
|
2023-04-06 11:46:43 +03:00
|
|
|
private readonly TriMesh _mesh;
|
2023-03-16 19:09:10 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public SingleTrimeshInputGeomProvider(float[] vertices, int[] faces)
|
|
|
|
{
|
2023-03-30 19:10:04 +03:00
|
|
|
bmin = Vector3f.Zero;
|
|
|
|
bmax = Vector3f.Zero;
|
2023-05-05 02:44:48 +03:00
|
|
|
RecastVectors.Copy(ref bmin, vertices, 0);
|
|
|
|
RecastVectors.Copy(ref bmax, vertices, 0);
|
2023-03-16 19:48:49 +03:00
|
|
|
for (int i = 1; i < vertices.Length / 3; i++)
|
|
|
|
{
|
2023-05-05 02:44:48 +03:00
|
|
|
RecastVectors.Min(ref bmin, vertices, i * 3);
|
|
|
|
RecastVectors.Max(ref bmax, vertices, i * 3);
|
2023-03-16 19:48:49 +03:00
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-04-06 11:46:43 +03:00
|
|
|
_mesh = new TriMesh(vertices, faces);
|
2023-03-16 19:48:49 +03:00
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public Vector3f GetMeshBoundsMin()
|
2023-03-14 08:02:43 +03:00
|
|
|
{
|
2023-03-16 19:48:49 +03:00
|
|
|
return bmin;
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public Vector3f GetMeshBoundsMax()
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
return bmax;
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public IEnumerable<TriMesh> Meshes()
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
2023-04-06 11:46:43 +03:00
|
|
|
return ImmutableArray.Create(_mesh);
|
2023-03-16 19:48:49 +03:00
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-05-05 02:44:48 +03:00
|
|
|
public IList<ConvexVolume> ConvexVolumes()
|
2023-03-16 19:48:49 +03:00
|
|
|
{
|
|
|
|
return ImmutableArray<ConvexVolume>.Empty;
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
}
|