SanAndreasUnity/Assets/Scripts/Behaviours/PathfindingManager.cs

344 lines
12 KiB
C#
Raw Normal View History

2022-02-19 02:25:43 +00:00
using SanAndreasUnity.Importing.Paths;
using SanAndreasUnity.Utilities;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
2022-02-19 02:25:43 +00:00
using UnityEngine;
namespace SanAndreasUnity.Behaviours
{
public class PathfindingManager : StartupSingleton<PathfindingManager>
{
public class PathResult
{
public bool IsSuccess { get; set; }
public List<PathNodeId> Nodes { get; set; }
2022-02-19 21:26:53 +00:00
public float Distance { get; set; }
public float TotalWeight { get; set; }
2022-02-19 02:25:43 +00:00
public float TimeElapsed { get; set; }
}
2022-02-19 21:48:27 +00:00
private struct NodePathfindingData
{
public float f, g;
public PathNodeId parentId;
public bool hasParent;
2022-02-20 01:28:48 +00:00
public override string ToString()
{
return $"(f {f}, g {g}{(hasParent ? $", parent {parentId}" : string.Empty)})";
}
2022-02-19 21:48:27 +00:00
}
private class NodeComparer : IComparer<PathNodeId>
2022-02-19 02:25:43 +00:00
{
private readonly NodePathfindingData[][] m_nodePathfindingDatas;
public NodeComparer(NodePathfindingData[][] nodePathfindingDatas)
{
m_nodePathfindingDatas = nodePathfindingDatas;
}
int IComparer<PathNodeId>.Compare(PathNodeId a, PathNodeId b)
{
2022-02-19 21:26:53 +00:00
float fa = m_nodePathfindingDatas[a.AreaID][a.NodeID].f;
float fb = m_nodePathfindingDatas[b.AreaID][b.NodeID].f;
if (fa == fb)
{
// f is equal, compare by id
if (a.AreaID == b.AreaID)
return a.NodeID.CompareTo(b.NodeID);
return a.AreaID.CompareTo(b.AreaID);
}
return fa.CompareTo(fb);
2022-02-19 02:25:43 +00:00
}
}
public BackgroundJobRunner BackgroundJobRunner { get; } = new BackgroundJobRunner();
[SerializeField] private ushort m_maxTimePerFrameMs = 0;
private NodePathfindingData[][] m_nodePathfindingDatas = null;
private readonly List<PathNodeId> m_modifiedDatas = new List<PathNodeId>();
private static readonly FieldInfo s_rootField = typeof(SortedSet<PathNodeId>).GetField("root", BindingFlags.NonPublic | BindingFlags.Instance);
private static readonly Type s_nodeType = s_rootField.FieldType;
private static readonly FieldInfo s_leftNodeField = s_nodeType.GetField("<Left>k__BackingField", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
private static readonly FieldInfo s_itemNodeField = s_nodeType.GetField("<Item>k__BackingField", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
2022-02-19 02:25:43 +00:00
protected override void OnSingletonStart()
{
this.BackgroundJobRunner.EnsureBackgroundThreadStarted();
}
protected override void OnSingletonDisable()
{
this.BackgroundJobRunner.ShutDown();
}
void OnLoaderFinished()
{
m_nodePathfindingDatas = new NodePathfindingData[NodeReader.NodeFiles.Count][];
for (int i = 0; i < m_nodePathfindingDatas.Length; i++)
{
m_nodePathfindingDatas[i] = new NodePathfindingData[NodeReader.NodeFiles[i].NumOfPedNodes + NodeReader.NodeFiles[i].NumOfVehNodes];
}
}
void Update()
{
this.BackgroundJobRunner.UpdateJobs(m_maxTimePerFrameMs);
}
public void FindPath(Vector3 source, Vector3 destination, Action<PathResult> callback)
{
this.BackgroundJobRunner.RegisterJob(new BackgroundJobRunner.Job<PathResult>()
{
action = () => FindPathInBackground(source, destination),
callbackFinish = callback,
priority = 1,
});
}
private PathResult FindPathInBackground(Vector3 sourcePos, Vector3 destinationPos)
{
var stopwatch = Stopwatch.StartNew();
PathResult pathResult = new PathResult { IsSuccess = false };
// find closest node of source position
/*var closestSourceEdge = NodeReader.GetAreasInRadius(sourcePos, 300f)
.SelectMany(_ => _.PedNodes)
.Where(_ => Vector3.Distance(_.Position, sourcePos) < 1000f)
.SelectMany(_ => NodeReader.GetAllLinkedNodes(_).Select(ln => (n1: _, n2: ln)))
.MinBy(_ => MathUtils.DistanceFromPointToLineSegment(sourcePos, _.n1.Position, _.n2.Position), default);*/
var closestSourceNode = NodeReader.GetAreasInRadius(sourcePos, 300f)
.SelectMany(_ => _.PedNodes)
.MinBy(_ => Vector3.Distance(_.Position, sourcePos), PathNode.InvalidNode);
if (closestSourceNode.Equals(PathNode.InvalidNode))
return pathResult;
// find closest node of destination position
var closestDestinationNode = NodeReader.GetAreasInRadius(destinationPos, 300f)
.SelectMany(_ => _.PedNodes)
.MinBy(_ => Vector3.Distance(_.Position, destinationPos), PathNode.InvalidNode);
if (closestDestinationNode.Equals(PathNode.InvalidNode))
return pathResult;
this.RestoreModifiedDatas();
2022-02-19 21:26:53 +00:00
if (FindPathFromNodeToNode(closestSourceNode.Id, closestDestinationNode.Id))
{
pathResult = BuildPath(closestDestinationNode.Id);
}
int numModifiedDatas = m_modifiedDatas.Count;
RestoreModifiedDatas();
pathResult.TimeElapsed = (float)stopwatch.Elapsed.TotalSeconds;
2022-02-19 21:48:27 +00:00
UnityEngine.Debug.Log($"Path finding finished: time {pathResult.TimeElapsed * 1000} ms, num nodes {pathResult.Nodes?.Count ?? 0}, numModifiedDatas {numModifiedDatas}, g {pathResult.TotalWeight}, distance {pathResult.Distance}");
2022-02-19 21:26:53 +00:00
return pathResult;
}
private bool FindPathFromNodeToNode(PathNodeId startId, PathNodeId targetId)
{
var closedList = new HashSet<PathNodeId>(); // TODO: optimization: re-use hashset
2022-02-19 02:25:43 +00:00
var openList = new SortedSet<PathNodeId>(new NodeComparer(m_nodePathfindingDatas));
var startData = GetData(startId);
startData.f = startData.g + CalculateHeuristic(startId, targetId);
SetData(startId, startData);
openList.Add(startId);
while (openList.Count > 0)
{
PathNodeId idN = MinFast(openList);
2022-02-19 21:26:53 +00:00
2022-02-19 02:25:43 +00:00
if (idN.Equals(targetId))
{
2022-02-19 21:26:53 +00:00
return true;
2022-02-19 02:25:43 +00:00
}
openList.Remove(idN); // TODO: throw exception if failed to remove/add
2022-02-19 21:26:53 +00:00
closedList.Add(idN);
2022-02-19 02:25:43 +00:00
var nodeN = NodeReader.GetNodeById(idN);
var areaN = NodeReader.GetAreaById(idN.AreaID);
var dataN = GetData(idN);
for (int i = 0; i < nodeN.LinkCount; i++)
{
NodeLink link = areaN.NodeLinks[nodeN.BaseLinkID + i];
PathNodeId idM = link.PathNodeId;
2022-02-19 21:26:53 +00:00
if (idM.Equals(targetId))
2022-02-19 02:25:43 +00:00
{
2022-02-19 21:26:53 +00:00
var dataM = GetResettedData();
2022-02-20 04:20:54 +00:00
dataM.g = dataN.g + CalculateLinkWeight(idN, idM);
2022-02-19 21:26:53 +00:00
float h = CalculateHeuristic(idM, targetId);
dataM.f = dataM.g + h;
2022-02-19 02:25:43 +00:00
dataM.parentId = idN;
dataM.hasParent = true;
SetData(idM, dataM);
2022-02-19 21:26:53 +00:00
return true;
2022-02-19 02:25:43 +00:00
}
2022-02-19 21:26:53 +00:00
if (closedList.Contains(idM))
continue;
if (openList.Contains(idM))
2022-02-19 02:25:43 +00:00
{
2022-02-20 04:20:54 +00:00
float gNew = dataN.g + CalculateLinkWeight(idN, idM);
2022-02-19 21:26:53 +00:00
float hNew = CalculateHeuristic(idM, targetId);
float fNew = gNew + hNew;
var dataM = GetData(idM);
if (dataM.f > fNew)
2022-02-19 02:25:43 +00:00
{
2022-02-19 21:26:53 +00:00
// update
openList.Remove(idM); // first remove with old data
dataM.g = gNew;
dataM.f = fNew;
2022-02-19 02:25:43 +00:00
dataM.parentId = idN;
dataM.hasParent = true;
2022-02-19 21:26:53 +00:00
2022-02-19 02:25:43 +00:00
SetData(idM, dataM);
2022-02-19 21:26:53 +00:00
openList.Add(idM); // now add with new data
2022-02-19 02:25:43 +00:00
}
}
2022-02-19 21:26:53 +00:00
else
{
var dataM = GetResettedData();
2022-02-20 04:20:54 +00:00
dataM.g = dataN.g + CalculateLinkWeight(idN, idM);
2022-02-19 21:26:53 +00:00
float h = CalculateHeuristic(idM, targetId);
dataM.f = dataM.g + h;
dataM.parentId = idN;
dataM.hasParent = true;
SetData(idM, dataM);
openList.Add(idM); // do it after setting data
}
2022-02-19 02:25:43 +00:00
2022-02-19 21:26:53 +00:00
}
2022-02-19 02:25:43 +00:00
}
2022-02-19 21:26:53 +00:00
return false;
2022-02-19 02:25:43 +00:00
}
private NodePathfindingData GetData(PathNodeId id)
{
return m_nodePathfindingDatas[id.AreaID][id.NodeID];
}
private void SetData(PathNodeId id, NodePathfindingData data)
{
m_nodePathfindingDatas[id.AreaID][id.NodeID] = data;
m_modifiedDatas.Add(id);
}
private void SetDataNoRemember(PathNodeId id, NodePathfindingData data)
{
m_nodePathfindingDatas[id.AreaID][id.NodeID] = data;
}
private float CalculateHeuristic(PathNodeId source, PathNodeId destination)
{
2022-02-19 21:26:53 +00:00
return NodeReader.GetDistanceBetweenNodes(source, destination);
2022-02-19 02:25:43 +00:00
}
2022-02-20 04:20:54 +00:00
private float CalculateLinkWeight(PathNodeId parentId, PathNodeId neighbourId)
{
return NodeReader.GetDistanceBetweenNodes(parentId, neighbourId);
}
2022-02-19 02:25:43 +00:00
private void RestoreModifiedDatas()
{
foreach (var id in m_modifiedDatas)
{
var data = GetResettedData();
SetDataNoRemember(id, data);
}
m_modifiedDatas.Clear();
}
private static NodePathfindingData GetResettedData()
{
var data = new NodePathfindingData();
data.parentId = PathNodeId.InvalidId;
return data;
}
2022-02-19 21:26:53 +00:00
private PathResult BuildPath(PathNodeId root)
2022-02-19 02:25:43 +00:00
{
var list = new List<PathNodeId>();
PathNodeId n = root;
var data = GetData(n);
2022-02-19 21:26:53 +00:00
float totalWeight = data.g;
float distance = 0f;
2022-02-19 02:25:43 +00:00
while (data.hasParent)
{
list.Add(n);
2022-02-19 21:26:53 +00:00
distance += NodeReader.GetDistanceBetweenNodes(n, data.parentId);
2022-02-19 02:25:43 +00:00
n = data.parentId;
data = GetData(n);
}
list.Add(n);
list.Reverse();
2022-02-19 21:26:53 +00:00
return new PathResult
{
IsSuccess = true,
Nodes = list,
TotalWeight = totalWeight,
Distance = distance,
};
2022-02-19 02:25:43 +00:00
}
private static PathNodeId MinFast(SortedSet<PathNodeId> sortedSet)
{
object node = s_rootField.GetValue(sortedSet);
object minNode = node;
while (node != null)
{
minNode = node;
node = s_leftNodeField.GetValue(node);
}
return (PathNodeId)s_itemNodeField.GetValue(minNode); // note: this will allocate memory
}
2022-02-19 02:25:43 +00:00
}
}