Compare commits
3 Commits
793dd68cfd
...
8a063f07d8
Author | SHA1 | Date | |
---|---|---|---|
8a063f07d8 | |||
c4a9567f7d | |||
a84d31c882 |
@ -8,9 +8,9 @@ namespace astar
|
|||||||
{
|
{
|
||||||
public class Astar(ValueTuple<float, float, float, float>? priorityWeights = null, int? explorationMultiplier = null, float? nonPriorityRoadSpeedPenalty = null)
|
public class Astar(ValueTuple<float, float, float, float>? priorityWeights = null, int? explorationMultiplier = null, float? nonPriorityRoadSpeedPenalty = null)
|
||||||
{
|
{
|
||||||
private readonly ValueTuple<float, float, float, float> DefaultPriorityWeights = priorityWeights ?? new(0.7f, 1.08f, 0, 0);
|
private readonly ValueTuple<float, float, float, float> DefaultPriorityWeights = priorityWeights ?? new(.6f, 1, 0, 0);
|
||||||
private readonly int _explorationMultiplier = explorationMultiplier ?? 150;
|
private readonly int _explorationMultiplier = explorationMultiplier ?? 1500;
|
||||||
private readonly float _nonPriorityRoadSpeedPenalty = nonPriorityRoadSpeedPenalty ?? 0.9f;
|
private readonly float _nonPriorityRoadSpeedPenalty = nonPriorityRoadSpeedPenalty ?? 0.75f;
|
||||||
|
|
||||||
public Route FindPath(float startLat, float startLon, float endLat, float endLon, float regionSize, bool car = true, PathMeasure pathing = PathMeasure.Distance, string? importFolderPath = null, ILogger? logger = null)
|
public Route FindPath(float startLat, float startLon, float endLat, float endLon, float regionSize, bool car = true, PathMeasure pathing = PathMeasure.Distance, string? importFolderPath = null, ILogger? logger = null)
|
||||||
{
|
{
|
||||||
@ -43,22 +43,18 @@ namespace astar
|
|||||||
ValueTuple<Node, Node>? meetingEnds = null;
|
ValueTuple<Node, Node>? meetingEnds = null;
|
||||||
while (toVisitStart.Count > 0 && toVisitEnd.Count > 0)
|
while (toVisitStart.Count > 0 && toVisitEnd.Count > 0)
|
||||||
{
|
{
|
||||||
ulong closestEndNodeId = toVisitEnd.UnorderedItems
|
for (int i = 0; i < Math.Min(toVisitStart.Count * 0.5, 50) && meetingEnds is null; i++)
|
||||||
.MinBy(n => graph.Nodes[n.Element].DistanceTo(startNode.Value)).Element;
|
|
||||||
Node closestEndNode = graph.Nodes[closestEndNodeId];
|
|
||||||
if (toVisitStart.Count >= toVisitEnd.Count && meetingEnds is null)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < Math.Min(toVisitStart.Count * 0.5, 50) && meetingEnds is null; i++)
|
ulong closestEndNodeId = toVisitEnd.UnorderedItems.MinBy(node => graph.Nodes[node.Element].DistanceTo(graph.Nodes[toVisitStart.Peek()])).Element;
|
||||||
meetingEnds = ExploreSide(true, graph, toVisitStart, rl, priorityHelper, closestEndNode, car, DefaultPriorityWeights, pathing, logger);
|
Node closestEndNode = graph.Nodes[closestEndNodeId];
|
||||||
|
meetingEnds = ExploreSide(true, graph, toVisitStart, rl, priorityHelper, closestEndNode, car, DefaultPriorityWeights, pathing, logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
ulong closestStartNodeId = toVisitStart.UnorderedItems
|
for (int i = 0; i < Math.Min(toVisitEnd.Count * 0.5, 50) && meetingEnds is null; i++)
|
||||||
.MinBy(n => graph.Nodes[n.Element].DistanceTo(endNode.Value)).Element;
|
|
||||||
Node closestStartNode = graph.Nodes[closestStartNodeId];
|
|
||||||
if (toVisitEnd.Count >= toVisitStart.Count && meetingEnds is null)
|
|
||||||
{
|
{
|
||||||
for(int i = 0; i < Math.Min(toVisitEnd.Count * 0.5, 50) && meetingEnds is null; i++)
|
ulong closestStartNodeId = toVisitStart.UnorderedItems.MinBy(node => graph.Nodes[node.Element].DistanceTo(graph.Nodes[toVisitEnd.Peek()])).Element;
|
||||||
meetingEnds = ExploreSide(false, graph, toVisitEnd, rl, priorityHelper, closestStartNode, car, DefaultPriorityWeights, pathing, logger);
|
Node closestStartNode = graph.Nodes[closestStartNodeId];
|
||||||
|
meetingEnds = ExploreSide(false, graph, toVisitEnd, rl, priorityHelper, closestStartNode, car, DefaultPriorityWeights, pathing, logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (meetingEnds is not null)
|
if (meetingEnds is not null)
|
||||||
@ -98,8 +94,7 @@ namespace astar
|
|||||||
|
|
||||||
Node neighborNode = graph.Nodes[neighborId];
|
Node neighborNode = graph.Nodes[neighborId];
|
||||||
|
|
||||||
if (neighborNode.PreviousIsFromStart is not null &&
|
if (neighborNode.PreviousIsFromStart == !fromStart) //Check if we found the opposite End
|
||||||
neighborNode.PreviousIsFromStart != fromStart) //Check if we found the opposite End
|
|
||||||
return fromStart ? new(currentNode, neighborNode) : new(neighborNode, currentNode);
|
return fromStart ? new(currentNode, neighborNode) : new(neighborNode, currentNode);
|
||||||
|
|
||||||
float metric = (currentNode.Metric ?? float.MaxValue) + (pathing is PathMeasure.Distance
|
float metric = (currentNode.Metric ?? float.MaxValue) + (pathing is PathMeasure.Distance
|
||||||
@ -113,7 +108,6 @@ namespace astar
|
|||||||
toVisit.Enqueue(neighborId,
|
toVisit.Enqueue(neighborId,
|
||||||
priorityHelper.CalculatePriority(currentNode, neighborNode, goalNode, speed, ratingWeights));
|
priorityHelper.CalculatePriority(currentNode, neighborNode, goalNode, speed, ratingWeights));
|
||||||
}
|
}
|
||||||
logger?.LogTrace($"Neighbor {neighborId} {neighborNode}");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
Reference in New Issue
Block a user