DotRecastNetSim/src/DotRecast.Detour.Extras/Jumplink/AbstractGroundSampler.cs

53 lines
1.7 KiB
C#
Raw Normal View History

2023-03-14 08:02:43 +03:00
using System;
using DotRecast.Recast;
using static DotRecast.Detour.DetourCommon;
2023-03-16 19:09:10 +03:00
namespace DotRecast.Detour.Extras.Jumplink
{
2023-03-16 19:48:49 +03:00
public abstract class AbstractGroundSampler : GroundSampler
2023-03-14 08:02:43 +03:00
{
2023-03-16 19:48:49 +03:00
protected void sampleGround(JumpLinkBuilderConfig acfg, EdgeSampler es,
Func<float[], float, Tuple<bool, float>> heightFunc)
{
float cs = acfg.cellSize;
float dist = (float)Math.Sqrt(vDist2DSqr(es.start.p, es.start.q));
int ngsamples = Math.Max(2, (int)Math.Ceiling(dist / cs));
sampleGroundSegment(heightFunc, es.start, ngsamples);
foreach (GroundSegment end in es.end)
{
sampleGroundSegment(heightFunc, end, ngsamples);
}
}
2023-03-14 08:02:43 +03:00
2023-03-16 19:48:49 +03:00
public void sample(JumpLinkBuilderConfig acfg, RecastBuilderResult result, EdgeSampler es)
{
throw new NotImplementedException();
}
2023-03-14 08:02:43 +03:00
2023-03-16 19:48:49 +03:00
protected void sampleGroundSegment(Func<float[], float, Tuple<bool, float>> heightFunc, GroundSegment seg,
int nsamples)
{
seg.gsamples = new GroundSample[nsamples];
for (int i = 0; i < nsamples; ++i)
{
float u = i / (float)(nsamples - 1);
GroundSample s = new GroundSample();
seg.gsamples[i] = s;
float[] pt = vLerp(seg.p, seg.q, u);
Tuple<bool, float> height = heightFunc.Invoke(pt, seg.height);
s.p[0] = pt[0];
s.p[1] = height.Item2;
s.p[2] = pt[2];
if (!height.Item1)
{
continue;
}
s.validHeight = true;
2023-03-14 08:02:43 +03:00
}
}
}
2023-03-16 19:09:10 +03:00
}