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;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Linq;
|
2023-04-06 12:48:36 +03:00
|
|
|
using DotRecast.Core;
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:09:10 +03:00
|
|
|
namespace DotRecast.Detour.Crowd
|
|
|
|
{
|
2023-03-16 19:48:49 +03:00
|
|
|
public class CrowdTelemetry
|
|
|
|
{
|
|
|
|
public const int TIMING_SAMPLES = 10;
|
|
|
|
private float _maxTimeToEnqueueRequest;
|
|
|
|
private float _maxTimeToFindPath;
|
|
|
|
private readonly Dictionary<string, long> _executionTimings = new Dictionary<string, long>();
|
|
|
|
private readonly Dictionary<string, List<long>> _executionTimingSamples = new Dictionary<string, List<long>>();
|
|
|
|
|
|
|
|
public float maxTimeToEnqueueRequest()
|
|
|
|
{
|
|
|
|
return _maxTimeToEnqueueRequest;
|
|
|
|
}
|
2023-03-16 19:09:10 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public float maxTimeToFindPath()
|
|
|
|
{
|
|
|
|
return _maxTimeToFindPath;
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public Dictionary<string, long> executionTimings()
|
|
|
|
{
|
|
|
|
return _executionTimings;
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public void start()
|
|
|
|
{
|
|
|
|
_maxTimeToEnqueueRequest = 0;
|
|
|
|
_maxTimeToFindPath = 0;
|
|
|
|
_executionTimings.Clear();
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public void recordMaxTimeToEnqueueRequest(float time)
|
|
|
|
{
|
|
|
|
_maxTimeToEnqueueRequest = Math.Max(_maxTimeToEnqueueRequest, time);
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public void recordMaxTimeToFindPath(float time)
|
|
|
|
{
|
|
|
|
_maxTimeToFindPath = Math.Max(_maxTimeToFindPath, time);
|
|
|
|
}
|
2023-03-14 08:02:43 +03:00
|
|
|
|
2023-03-16 19:48:49 +03:00
|
|
|
public void start(string name)
|
2023-03-14 08:02:43 +03:00
|
|
|
{
|
2023-04-14 16:41:29 +03:00
|
|
|
_executionTimings.Add(name, FrequencyWatch.Ticks);
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
2023-03-16 19:48:49 +03:00
|
|
|
|
|
|
|
public void stop(string name)
|
|
|
|
{
|
2023-04-14 16:41:29 +03:00
|
|
|
long duration = FrequencyWatch.Ticks - _executionTimings[name];
|
2023-03-16 19:48:49 +03:00
|
|
|
if (!_executionTimingSamples.TryGetValue(name, out var s))
|
|
|
|
{
|
|
|
|
s = new List<long>();
|
|
|
|
_executionTimingSamples.Add(name, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s.Count == TIMING_SAMPLES)
|
|
|
|
{
|
|
|
|
s.RemoveAt(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
s.Add(duration);
|
|
|
|
_executionTimings[name] = (long)s.Average();
|
2023-03-14 08:02:43 +03:00
|
|
|
}
|
|
|
|
}
|
2023-03-16 19:09:10 +03:00
|
|
|
}
|