summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-11-16 13:56:07 +0100
committerSergeanur <s.anureev@yandex.ua>2020-11-16 13:56:07 +0100
commit6bc2ed74fec6e60d1d379dc36f271c457448d3e7 (patch)
tree78cba062e277b0e747dc5d3c2e01dd1ba20f64af
parentFix mouse lock/high-dpi 2 (diff)
downloadre3-6bc2ed74fec6e60d1d379dc36f271c457448d3e7.tar
re3-6bc2ed74fec6e60d1d379dc36f271c457448d3e7.tar.gz
re3-6bc2ed74fec6e60d1d379dc36f271c457448d3e7.tar.bz2
re3-6bc2ed74fec6e60d1d379dc36f271c457448d3e7.tar.lz
re3-6bc2ed74fec6e60d1d379dc36f271c457448d3e7.tar.xz
re3-6bc2ed74fec6e60d1d379dc36f271c457448d3e7.tar.zst
re3-6bc2ed74fec6e60d1d379dc36f271c457448d3e7.zip
-rw-r--r--src/control/PathFind.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/control/PathFind.cpp b/src/control/PathFind.cpp
index fb60250c..ecd2d0cb 100644
--- a/src/control/PathFind.cpp
+++ b/src/control/PathFind.cpp
@@ -542,6 +542,22 @@ CPathFind::PreparePathDataForType(uint8 type, CTempNode *tempnodes, CPathInfoFor
int done, cont;
int tileStart;
+#ifndef MASTER
+ for (i = 0; i < m_numMapObjects-1; i++)
+ for (j = i+1; j < m_numMapObjects; j++) {
+ CTreadable *obj1 = m_mapObjects[i];
+ CTreadable *obj2 = m_mapObjects[j];
+ if (obj1->GetModelIndex() == obj2->GetModelIndex() &&
+ obj1->GetPosition().x == obj2->GetPosition().x && obj1->GetPosition().y == obj2->GetPosition().y && obj1->GetPosition().z == obj2->GetPosition().z &&
+ obj1->GetRight().x == obj2->GetRight().x && obj1->GetForward().x == obj2->GetForward().x && obj1->GetUp().x == obj2->GetUp().x &&
+ obj1->GetRight().y == obj2->GetRight().y && obj1->GetForward().y == obj2->GetForward().y && obj1->GetUp().y == obj2->GetUp().y &&
+ obj1->GetRight().z == obj2->GetRight().z && obj1->GetForward().z == obj2->GetForward().z && obj1->GetUp().z == obj2->GetUp().z) {
+ printf("THIS IS VERY BAD INDEED. FIX IMMEDIATELY!!!\n");
+ printf("Double road objects at the following coors: %f %f %f\n", obj1->GetPosition().x, obj1->GetPosition().y, obj1->GetPosition().z);
+ }
+ }
+#endif // !MASTER
+
oldNumPathNodes = m_numPathNodes;
oldNumLinks = m_numConnections;