Merge "DALi Version 2.2.17" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-scene3d / internal / algorithm / path-finder-djikstra.cpp
1 /*
2  * Copyright (c) 2023 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 // CLASS HEADER
18 #include <dali-scene3d/internal/algorithm/path-finder-djikstra.h>
19
20 // EXTERNAL INCLUDES
21 #include <dali/public-api/common/vector-wrapper.h>
22 #include <limits>
23
24 // INTERNAL INCLUDES
25 #include <dali-scene3d/internal/algorithm/path-finder-waypoint-data.h>
26 #include <dali-scene3d/public-api/algorithm/path-finder-waypoint.h>
27
28 using WayPointList = Dali::Scene3D::Algorithm::WayPointList;
29
30 namespace Dali::Scene3D::Internal::Algorithm
31 {
32 PathFinderAlgorithmDjikstra::PathFinderAlgorithmDjikstra(Dali::Scene3D::Algorithm::NavigationMesh& navMesh)
33 : mNavigationMesh(&GetImplementation(navMesh))
34 {
35   PrepareData();
36 }
37
38 PathFinderAlgorithmDjikstra::~PathFinderAlgorithmDjikstra() = default;
39
40 Scene3D::Algorithm::WayPointList PathFinderAlgorithmDjikstra::FindPath(const Dali::Vector3& positionFrom, const Dali::Vector3& positionTo)
41 {
42   Dali::Vector3 outPosFrom;
43   uint32_t      polyIndexFrom;
44   auto          result = mNavigationMesh->FindFloor(positionFrom, outPosFrom, polyIndexFrom);
45
46   Scene3D::Algorithm::WayPointList waypoints;
47
48   if(result)
49   {
50     Dali::Vector3 outPosTo;
51     uint32_t      polyIndexTo;
52     result = mNavigationMesh->FindFloor(positionTo, outPosTo, polyIndexTo);
53
54     if(result)
55     {
56       // Get waypoints
57       waypoints = FindPath(polyIndexFrom, polyIndexTo);
58
59       // replace first and last waypoint
60       auto& wpFrom = static_cast<WayPointData&>(waypoints[0]);
61       auto& wpTo   = static_cast<WayPointData&>(waypoints.back());
62
63       Vector2 fromCenter(wpFrom.point3d.x, wpFrom.point3d.y);
64       wpFrom.point3d = outPosFrom;
65       wpFrom.point2d = fromCenter - Vector2(outPosFrom.x, outPosFrom.y);
66
67       Vector2 toCenter(wpTo.point3d.x, wpTo.point3d.y);
68       wpTo.point3d = outPosTo;
69       wpTo.point2d = toCenter - Vector2(outPosTo.x, outPosTo.y);
70       wpTo.point3d = outPosTo;
71     }
72   }
73
74   // Returns waypoints with non-zero size of empty vector in case of failure (no path to be found)
75   return waypoints;
76 }
77
78 Scene3D::Algorithm::WayPointList PathFinderAlgorithmDjikstra::FindPath(uint32_t sourcePolyIndex, uint32_t targetPolyIndex)
79 {
80   auto                  nodeCount = uint32_t(mNodes.size());
81   std::vector<float>    dist;
82   std::vector<uint32_t> prev;
83
84   dist.resize(mNodes.size());
85   prev.resize(mNodes.size());
86
87   std::vector<FaceNode*> nodeQueue;
88   nodeQueue.reserve(nodeCount);
89
90   [[maybe_unused]] auto sourcePos = Dali::Vector3(Face(sourcePolyIndex)->center);
91
92   for(auto i = 0u; i < nodeCount; ++i)
93   {
94     dist[i] = std::numeric_limits<float>::infinity();
95     prev[i] = Scene3D::Algorithm::NavigationMesh::NULL_FACE; // set prev to null polygon
96     nodeQueue.emplace_back(&mNodes[i]);
97   }
98   auto removeCount = 0u;
99
100   // Set distance of source
101   dist[sourcePolyIndex] = 0.0f;
102
103   // TO OPTIMIZE WITH PRIORITY QUEUE
104   auto FindMinDistance = [&nodeQueue](decltype(dist)& dist) {
105     float w     = std::numeric_limits<float>::max();
106     int   index = -1;
107     for(auto i = 0u; i < dist.size(); ++i)
108     {
109       // skip infinity
110       if(nodeQueue[i] && dist[i] != std::numeric_limits<float>::infinity() && dist[i] < w)
111       {
112         w     = dist[i];
113         index = int(i);
114       }
115     }
116     return index;
117   };
118
119   do
120   {
121     // find minimum distance
122     [[maybe_unused]] auto minDistIndex = FindMinDistance(dist);
123
124     // remove from queue by assigning infinity to distance
125     removeCount++;
126     if(removeCount == nodeCount)
127     {
128       continue;
129     }
130
131     nodeQueue[minDistIndex] = nullptr;
132
133     [[maybe_unused]] auto sizeTmp = nodeQueue.size() - removeCount;
134
135     // check the neighbours
136     for(auto i = 0u; i < 3; ++i)
137     {
138       auto nIndex = mNodes[minDistIndex].faces[i];
139       if(nIndex != Scene3D::Algorithm::NavigationMesh::NULL_FACE && nodeQueue[nIndex] != nullptr)
140       {
141         auto alt = dist[minDistIndex] + mNodes[minDistIndex].weight[i];
142         if(alt < dist[nIndex])
143         {
144           dist[nIndex] = alt;
145           prev[nIndex] = minDistIndex;
146         }
147       }
148     }
149   } while(removeCount != nodeCount);
150
151   // Compute distances for each node back to the source
152   auto                u = targetPolyIndex;
153   std::list<uint32_t> q;
154   if(prev[u] != Scene3D::Algorithm::NavigationMesh::NULL_FACE || u == sourcePolyIndex)
155   {
156     while(u != Scene3D::Algorithm::NavigationMesh::NULL_FACE)
157     {
158       q.push_front(u);
159       u = prev[u];
160     }
161   }
162
163   WayPointList waypoints;
164   waypoints.resize(q.size());
165
166   auto index = 0u;
167   auto prevN = 0u;
168   for(auto n : q)
169   {
170     auto& wp     = static_cast<WayPointData&>(waypoints[index]);
171     wp.face      = mNavigationMesh->GetFace(n);
172     wp.nodeIndex = n;
173
174     wp.edge = nullptr;
175     // set the common edge with previous node
176     if(index > 0)
177     {
178       const auto& node = mNodes[prevN];
179       for(auto i = 0u; i < 3; ++i)
180       {
181         if(node.faces[i] == wp.nodeIndex)
182         {
183           wp.edge = mNavigationMesh->GetEdge(node.edges[i]);
184           break;
185         }
186       }
187     }
188
189     prevN = n;
190     index++;
191   }
192
193   return OptimizeWaypoints(waypoints);
194 }
195
196 void PathFinderAlgorithmDjikstra::PrepareData()
197 {
198   // Build the list structure connecting the nodes
199   auto faceCount = mNavigationMesh->GetFaceCount();
200
201   mNodes.resize(faceCount);
202
203   // for each face build the list
204   for(auto i = 0u; i < faceCount; ++i)
205   {
206     auto&       node = mNodes[i];
207     const auto* face = mNavigationMesh->GetFace(i);
208     auto        c0   = Dali::Vector3(face->center);
209
210     // for each edge add neighbouring face and compute distance to set the weight of node
211     for(auto edgeIndex = 0u; edgeIndex < 3; ++edgeIndex)
212     {
213       const auto* edge = mNavigationMesh->GetEdge(face->edge[edgeIndex]);
214       auto        p1   = edge->face[0];
215       auto        p2   = edge->face[1];
216
217       // One of faces is current face so ignore it
218       auto p                = ((p1 != i) ? p1 : p2);
219       node.faces[edgeIndex] = p;
220       if(p != ::Dali::Scene3D::Algorithm::NavigationMesh::NULL_FACE)
221       {
222         node.edges[edgeIndex]  = face->edge[edgeIndex];
223         auto c1                = Dali::Vector3(mNavigationMesh->GetFace(p)->center);
224         node.weight[edgeIndex] = (c1 - c0).Length();
225       }
226     }
227   }
228 }
229
230 [[maybe_unused]] static float ccw(const Dali::Vector2& A, const Dali::Vector2& B, const Dali::Vector2& C)
231 {
232   return (C.y - A.y) * (B.x - A.x) > (B.y - A.y) * (C.x - A.x);
233 }
234
235 [[maybe_unused]] static bool intersect(const Dali::Vector2& A, const Dali::Vector2& B, const Dali::Vector2& C, const Dali::Vector2& D)
236 {
237   return ccw(A, C, D) != ccw(B, C, D) && ccw(A, B, C) != ccw(A, B, D);
238 }
239
240 Scene3D::Algorithm::WayPointList PathFinderAlgorithmDjikstra::OptimizeWaypoints(WayPointList& waypoints) const
241 {
242   WayPointList optimizedWaypoints;
243   optimizedWaypoints.emplace_back(waypoints[0]);
244   optimizedWaypoints.reserve(waypoints.size());
245
246   auto startIndex = 1u;
247
248   bool finished = false;
249   for(auto j = 0; !finished; ++j)
250   {
251     auto&       startWaypoint     = optimizedWaypoints.back();
252     const auto& startWaypointData = static_cast<const WayPointData&>(startWaypoint);
253
254     // add new-last waypoint which will be overriden as long as intersection takes place
255     optimizedWaypoints.emplace_back();
256     for(auto wpIndex = startIndex; wpIndex < waypoints.size(); ++wpIndex)
257     {
258       if(wpIndex == waypoints.size() - 1)
259       {
260         optimizedWaypoints.back() = waypoints.back();
261         finished                  = true;
262         continue;
263       }
264       // Points between centres of faces
265
266       const auto& wpData = static_cast<const WayPointData&>(waypoints[wpIndex]);
267
268       auto Pa0 = Dali::Vector2(startWaypointData.face->center[0], startWaypointData.face->center[1]);
269       auto Pa1 = Dali::Vector2(wpData.face->center[0], wpData.face->center[1]);
270
271       bool doesIntersect = true;
272       for(auto i = startIndex; i < wpIndex; ++i)
273       {
274         const auto& wp = static_cast<WayPointData&>(waypoints[i]);
275         // Skip starting waypoint
276         if(wp.face == startWaypointData.face)
277         {
278           continue;
279         }
280         auto Pb0  = mNavigationMesh->GetVertex(wp.edge->vertex[0]);
281         auto Pb1  = mNavigationMesh->GetVertex(wp.edge->vertex[1]);
282         auto vPb0 = Dali::Vector2(Pb0->x, Pb0->y);
283         auto vPb1 = Dali::Vector2(Pb1->x, Pb1->y);
284
285         doesIntersect = intersect(Pa0, Pa1, vPb0, vPb1);
286         if(!doesIntersect)
287         {
288           break;
289         }
290       }
291
292       if(!doesIntersect)
293       {
294         optimizedWaypoints.back() = waypoints[wpIndex - 1];
295         startIndex                = wpIndex - 1;
296         break;
297       }
298     }
299   }
300
301   for(auto& wp : optimizedWaypoints)
302   {
303     auto& wpData   = static_cast<WayPointData&>(wp);
304     wpData.point3d = mNavigationMesh->PointLocalToScene(Dali::Vector3(wpData.face->center));
305     wpData.point2d = Vector2::ZERO;
306   }
307
308   return optimizedWaypoints;
309 }
310 } // namespace Dali::Scene3D::Internal::Algorithm