2023-04-06 01:29:30 +02:00
|
|
|
using System.Text.Json;
|
|
|
|
using System.Text.Json.Serialization;
|
2023-03-14 17:00:59 +01:00
|
|
|
using OSMDatastructure.Graph;
|
|
|
|
|
2023-02-06 17:32:55 +01:00
|
|
|
namespace OSMDatastructure;
|
2023-02-02 22:30:43 +01:00
|
|
|
|
2023-03-30 18:24:57 +02:00
|
|
|
[Serializable]
|
2023-02-06 17:32:55 +01:00
|
|
|
public class Region
|
|
|
|
{
|
2023-04-06 01:29:30 +02:00
|
|
|
[JsonIgnore]public const float RegionSize = 0.025f;
|
|
|
|
[JsonIgnore]public static readonly JsonSerializerOptions serializerOptions = new()
|
|
|
|
{
|
|
|
|
IncludeFields = true,
|
|
|
|
MaxDepth = 32,
|
|
|
|
IgnoreReadOnlyFields = false//,
|
|
|
|
//WriteIndented = true
|
|
|
|
};
|
|
|
|
|
|
|
|
[JsonRequired]public HashSet<OsmNode> nodes { get; set; }
|
2023-03-30 18:24:57 +02:00
|
|
|
public ulong regionHash { get; }
|
2023-04-06 01:29:30 +02:00
|
|
|
[JsonRequired]public TagManager tagManager { get; set; }
|
2023-02-03 21:13:51 +01:00
|
|
|
|
2023-04-06 01:29:30 +02:00
|
|
|
[JsonConstructor]
|
2023-03-30 18:24:57 +02:00
|
|
|
public Region(ulong regionHash)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
|
|
|
this.regionHash = regionHash;
|
2023-03-30 18:24:57 +02:00
|
|
|
tagManager = new TagManager();
|
2023-04-06 01:29:30 +02:00
|
|
|
nodes = new HashSet<OsmNode>();
|
2023-02-06 17:32:55 +01:00
|
|
|
}
|
2023-02-05 20:02:22 +01:00
|
|
|
|
2023-03-14 17:00:59 +01:00
|
|
|
public Region(Coordinates coordinates)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-03-14 17:00:59 +01:00
|
|
|
regionHash = Coordinates.GetRegionHashCode(coordinates);
|
2023-03-30 18:24:57 +02:00
|
|
|
tagManager = new TagManager();
|
2023-04-06 01:29:30 +02:00
|
|
|
nodes = new HashSet<OsmNode>();
|
2023-02-06 17:32:55 +01:00
|
|
|
}
|
2023-02-05 20:02:22 +01:00
|
|
|
|
2023-04-01 13:18:54 +02:00
|
|
|
public bool ContainsNode(ulong id)
|
2023-02-06 17:32:55 +01:00
|
|
|
{
|
2023-04-01 13:18:54 +02:00
|
|
|
return nodes.Any(node => node.nodeId == id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool ContainsNode(Coordinates coordinates)
|
|
|
|
{
|
|
|
|
return nodes.Any(node => node.coordinates.Equals(coordinates));
|
|
|
|
}
|
|
|
|
|
|
|
|
public OsmNode? GetNode(ulong id)
|
|
|
|
{
|
2023-04-20 23:02:38 +02:00
|
|
|
return ContainsNode(id) ? nodes.First(node => node.nodeId == id) : null;
|
2023-04-01 13:18:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public OsmNode? GetNode(Coordinates coordinates)
|
|
|
|
{
|
2023-04-20 23:02:38 +02:00
|
|
|
return ContainsNode(coordinates) ? nodes.First(node => node.coordinates.Equals(coordinates)) : null;
|
2023-04-01 13:18:54 +02:00
|
|
|
}
|
|
|
|
|
2023-02-02 22:30:43 +01:00
|
|
|
}
|