2023-04-01 14:42:49 +02:00
|
|
|
using System.ComponentModel;
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
2023-03-14 17:00:59 +01:00
|
|
|
namespace OSMDatastructure.Graph;
|
2023-02-06 17:32:55 +01:00
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
[Serializable]
|
2023-02-07 23:52:23 +01:00
|
|
|
public class OsmNode
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-03-30 18:24:57 +02:00
|
|
|
public ulong nodeId { get; }
|
2023-04-01 01:47:56 +02:00
|
|
|
public HashSet<OsmEdge> edges { get; }
|
2023-02-06 17:32:55 +01:00
|
|
|
public Coordinates coordinates { get; }
|
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
[NonSerialized]public OsmNode? previousPathNode = null;
|
|
|
|
[NonSerialized]public double currentPathWeight = double.MaxValue;
|
|
|
|
[NonSerialized]public double currentPathLength = double.MaxValue;
|
|
|
|
[NonSerialized]public double directDistanceToGoal = double.MaxValue;
|
2023-04-01 14:42:49 +02:00
|
|
|
|
|
|
|
[OnDeserialized]
|
|
|
|
internal void SetDefaultValues(StreamingContext context)
|
|
|
|
{
|
|
|
|
currentPathWeight = double.MaxValue;
|
|
|
|
currentPathLength = double.MaxValue;
|
|
|
|
directDistanceToGoal = double.MaxValue;
|
|
|
|
}
|
2023-02-06 17:32:55 +01:00
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
public OsmNode(ulong nodeId, float lat, float lon)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-03-30 18:24:57 +02:00
|
|
|
this.nodeId = nodeId;
|
2023-02-06 17:32:55 +01:00
|
|
|
this.edges = new();
|
|
|
|
this.coordinates = new Coordinates(lat, lon);
|
|
|
|
}
|
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
public OsmNode(ulong nodeId, Coordinates coordinates)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-03-30 18:24:57 +02:00
|
|
|
this.nodeId = nodeId;
|
2023-02-06 17:32:55 +01:00
|
|
|
this.edges = new();
|
2023-02-07 23:52:23 +01:00
|
|
|
this.coordinates = coordinates;
|
2023-02-06 17:32:55 +01:00
|
|
|
}
|
|
|
|
|
2023-04-01 01:47:56 +02:00
|
|
|
public OsmEdge? GetEdgeToNode(OsmNode n)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-04-01 14:42:49 +02:00
|
|
|
HashSet<OsmEdge> e = edges.Where(edge => edge.neighborId == n.nodeId).ToHashSet();
|
|
|
|
if (e.Count > 0)
|
|
|
|
return e.First();
|
|
|
|
else return null;
|
2023-02-06 17:32:55 +01:00
|
|
|
}
|
2023-02-08 18:08:01 +01:00
|
|
|
|
|
|
|
public override bool Equals(object? obj)
|
|
|
|
{
|
2023-03-30 18:24:57 +02:00
|
|
|
return obj != null && obj.GetType() == this.GetType() && ((OsmNode)obj).nodeId == this.nodeId;
|
2023-02-08 18:08:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
2023-04-01 14:19:36 +02:00
|
|
|
if(previousPathNode is not null)
|
2023-04-01 14:42:49 +02:00
|
|
|
return $"{nodeId} {coordinates} ec:{edges.Count} d:{directDistanceToGoal} w:{currentPathWeight} l:{currentPathLength} p:{previousPathNode.nodeId}";
|
2023-04-01 14:19:36 +02:00
|
|
|
return
|
|
|
|
$"{nodeId} {coordinates} ec:{edges.Count} d:{directDistanceToGoal} w:{currentPathWeight} l:{currentPathLength} null";
|
2023-02-08 18:08:01 +01:00
|
|
|
}
|
2023-02-06 17:32:55 +01:00
|
|
|
}
|