From: mpv Date: Thu, 7 Dec 2017 12:37:05 +0000 (+0300) Subject: Fix for the issue #2317: naming of vertices after Boolean operations in specific... X-Git-Tag: V_2.10.0RC~79 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c757d0f60dd5f3640e5f56d90de3c8946a0a5567;p=modules%2Fshaper.git Fix for the issue #2317: naming of vertices after Boolean operations in specific cases. --- diff --git a/src/Model/Model_BodyBuilder.cpp b/src/Model/Model_BodyBuilder.cpp index f582556ff..d26fdb1f7 100755 --- a/src/Model/Model_BodyBuilder.cpp +++ b/src/Model/Model_BodyBuilder.cpp @@ -391,11 +391,13 @@ void Model_BodyBuilder::loadAndOrientModifiedShapes ( const TopoDS_Shape& aRoot = aShapeExplorer.Current (); if (!aView.Add(aRoot)) continue; if (TNaming_Tool::NamedShape(aRoot, builder(theTag)->NamedShape()->Label()).IsNull()) - continue; // there is no sence to write history is old shape does not persented in document + continue; // there is no sense to write history if old shape does not exist in the document ListOfShape aList; std::shared_ptr aRShape(new GeomAPI_Shape()); aRShape->setImpl((new TopoDS_Shape(aRoot))); theMS->modified(aRShape, aList); + // to trace situation where several objects are produced by one parent (#2317) + int aSameParentShapes = -1; std::list >::const_iterator anIt = aList.begin(), aLast = aList.end(); for (; anIt != aLast; anIt++) { @@ -407,12 +409,18 @@ void Model_BodyBuilder::loadAndOrientModifiedShapes ( GeomShapePtr aGeomNewShape(new GeomAPI_Shape()); aGeomNewShape->setImpl(new TopoDS_Shape(aNewShape)); if(!aRoot.IsSame(aNewShape) && aResultShape->isSubShape(aGeomNewShape, false)) { + int aBuilderTag = aTag; + if (!theIsStoreSeparate) + aSameParentShapes++; + if (aSameParentShapes > 0) { // store in other label ( + aBuilderTag = 100000 - aSameParentShapes * 10 - aTag; + } if(theIsStoreAsGenerated) { // Here we store shapes as generated, to avoid problem when one parent shape produce // several child shapes. In this case naming could not determine which shape to select. - builder(aTag)->Generated(aRoot,aNewShape); + builder(aBuilderTag)->Generated(aRoot,aNewShape); } else { - builder(aTag)->Modify(aRoot,aNewShape); + builder(aBuilderTag)->Modify(aRoot,aNewShape); } if(isBuilt) { if(theIsStoreSeparate) { @@ -421,7 +429,15 @@ void Model_BodyBuilder::loadAndOrientModifiedShapes ( aStream << theName << "_" << anIndex++; aName = aStream.str(); } - buildName(aTag, aName); + if (aSameParentShapes > 0) { + aStream.str(std::string()); + aStream.clear(); + aStream << aName << "_" << aSameParentShapes << "divided"; + std::string aNameDiv = aStream.str(); + buildName(aBuilderTag, aNameDiv); + } else { + buildName(aBuilderTag, aName); + } } if(theIsStoreSeparate) { aTag++; @@ -447,7 +463,7 @@ void Model_BodyBuilder::loadAndOrientGeneratedShapes ( const TopoDS_Shape& aRoot = aShapeExplorer.Current (); if (!aView.Add(aRoot)) continue; //if (TNaming_Tool::NamedShape(aRoot, builder(theTag)->NamedShape()->Label()).IsNull()) - // continue; // there is no sence to write history is old shape does not persented in document + // continue; // there is no sense to write history if old shape does not exist in the document ListOfShape aList; std::shared_ptr aRShape(new GeomAPI_Shape()); aRShape->setImpl((new TopoDS_Shape(aRoot))); diff --git a/src/Model/Model_SelectionNaming.cpp b/src/Model/Model_SelectionNaming.cpp index 6de12da8d..dfd20739c 100644 --- a/src/Model/Model_SelectionNaming.cpp +++ b/src/Model/Model_SelectionNaming.cpp @@ -355,6 +355,10 @@ std::string Model_SelectionNaming::namingName(ResultPtr& theContext, break; int n = aList.Extent(); bool isByFaces = n >= 3; + if (isByFaces) { // check that by faces vertex is identified uniquly (2317) + TopoDS_Shape aVertex = findCommonShape(TopAbs_VERTEX, aList); + isByFaces = !aVertex.IsNull() && aVertex.ShapeType() == TopAbs_VERTEX; + } if(!isByFaces) { // open topology case or Compound case => via edges TopTools_IndexedDataMapOfShapeListOfShape aMap; TopExp::MapShapesAndAncestors(aContext, TopAbs_VERTEX, TopAbs_EDGE, aMap);