]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
6.11.2014. Addition for Import feature.
authorszy <szy@opencascade.com>
Thu, 6 Nov 2014 15:02:39 +0000 (18:02 +0300)
committerszy <szy@opencascade.com>
Thu, 6 Nov 2014 15:02:39 +0000 (18:02 +0300)
src/Model/Model_ResultBody.cpp
src/Model/Model_ResultBody.h

index 7e504953170efd29fb1f71ab9f57a2937acd8a44..3b9fb24abef3004bff582b8146d8ed0e51b87249 100644 (file)
@@ -6,7 +6,9 @@
 #include <Model_Data.h>
 #include <TNaming_Builder.hxx>
 #include <TNaming_NamedShape.hxx>
+#include <TopoDS.hxx>
 #include <TopoDS_Shape.hxx>
+#include <TopoDS_Face.hxx>
 #include <TDF_ChildIterator.hxx>
 #include <TopTools_MapOfShape.hxx>
 #include <TopExp_Explorer.hxx>
 #include <TopTools_ListIteratorOfListOfShape.hxx>
 #include <TopTools_DataMapOfShapeListOfShape.hxx>
 #include <TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx>
+#include <TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx>
 #include <TopTools_MapIteratorOfMapOfShape.hxx>
+#include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
+#include <TopTools_IndexedMapOfShape.hxx>
+#include <TopTools_DataMapOfShapeShape.hxx>
+#include <TopExp.hxx>
+#include <BRepTools.hxx>
 #include <GeomAPI_Shape.h>
 #include <GeomAlgoAPI_MakeShape.h>
 // DEB
@@ -244,12 +252,136 @@ void Model_ResultBody::loadAndOrientGeneratedShapes (
   }
 }
 
-void Model_ResultBody::loadFirstLevel(boost::shared_ptr<GeomAPI_Shape> theShape, int&  theTag)
+//=======================================================================
+int getDangleShapes(const TopoDS_Shape&           theShapeIn, 
+                                       const TopAbs_ShapeEnum        theGeneratedFrom,
+                                   TopTools_DataMapOfShapeShape& theDangles) 
 {
+  theDangles.Clear();
+  TopTools_IndexedDataMapOfShapeListOfShape subShapeAndAncestors;
+  TopAbs_ShapeEnum GeneratedTo;
+  if (theGeneratedFrom == TopAbs_FACE) GeneratedTo = TopAbs_EDGE;
+  else if (theGeneratedFrom == TopAbs_EDGE) GeneratedTo = TopAbs_VERTEX;
+  else return Standard_False;
+  TopExp::MapShapesAndAncestors(theShapeIn, GeneratedTo, theGeneratedFrom, subShapeAndAncestors);
+  for (Standard_Integer i = 1; i <= subShapeAndAncestors.Extent(); i++) {
+    const TopoDS_Shape& mayBeDangle = subShapeAndAncestors.FindKey(i);
+    const TopTools_ListOfShape& ancestors = subShapeAndAncestors.FindFromIndex(i);
+    if (ancestors.Extent() == 1) theDangles.Bind(ancestors.First(), mayBeDangle);
+  }
+  return theDangles.Extent();
+}
+
+//=======================================================================
+void loadGeneratedDangleShapes(
+                                                          const TopoDS_Shape&      theShapeIn,
+                                              const TopAbs_ShapeEnum   theGeneratedFrom,
+                                              TNaming_Builder *        theBuilder)
+{
+  TopTools_DataMapOfShapeShape dangles;
+  if (!getDangleShapes(theShapeIn, theGeneratedFrom, dangles)) return;
+  TopTools_DataMapIteratorOfDataMapOfShapeShape itr(dangles);
+  for (; itr.More(); itr.Next()) 
+       theBuilder->Generated(itr.Key(), itr.Value());
+}
 
+//=======================================================================
+void Model_ResultBody::loadNextLevels(boost::shared_ptr<GeomAPI_Shape> theShape, 
+                                         int&  theTag)
+{
+  if(theShape->isNull()) return;
+  TopoDS_Shape aShape = theShape->impl<TopoDS_Shape>();    
+  if (aShape.ShapeType() == TopAbs_SOLID) {                
+    TopExp_Explorer expl(aShape, TopAbs_FACE);
+    for (; expl.More(); expl.Next())      
+         builder(++theTag)->Generated(expl.Current());     
+  }
+  else if (aShape.ShapeType() == TopAbs_SHELL || aShape.ShapeType() == TopAbs_FACE) {
+    // load faces and all the free edges
+    TopTools_IndexedMapOfShape Faces;
+    TopExp::MapShapes(aShape, TopAbs_FACE, Faces);
+    if (Faces.Extent() > 1 || (aShape.ShapeType() == TopAbs_SHELL && Faces.Extent() == 1)) {
+      TopExp_Explorer expl(aShape, TopAbs_FACE);
+      for (; expl.More(); expl.Next()) 
+                 builder(++theTag)->Generated(expl.Current());          
+       }
+    TopTools_IndexedDataMapOfShapeListOfShape anEdgeAndNeighbourFaces;
+    TopExp::MapShapesAndAncestors(aShape, TopAbs_EDGE, TopAbs_FACE, anEdgeAndNeighbourFaces);
+    for (Standard_Integer i = 1; i <= anEdgeAndNeighbourFaces.Extent(); i++) 
+       {
+      const TopTools_ListOfShape& aLL = anEdgeAndNeighbourFaces.FindFromIndex(i);
+      if (aLL.Extent() < 2) {
+           builder(++theTag)->Generated(anEdgeAndNeighbourFaces.FindKey(i));    
+      } else {
+         TopTools_ListIteratorOfListOfShape anIter(aLL);
+         const TopoDS_Face& aFace = TopoDS::Face(anIter.Value());
+         anIter.Next();
+         if(aFace.IsEqual(anIter.Value())) {
+               builder(++theTag)->Generated(anEdgeAndNeighbourFaces.FindKey(i));
+         }
+         }
+       }
+  } else if (aShape.ShapeType() == TopAbs_WIRE) {
+    TopTools_IndexedMapOfShape Edges;
+    BRepTools::Map3DEdges(aShape, Edges);
+    if (Edges.Extent() == 1) {
+         builder(++theTag)->Generated(Edges.FindKey(1));
+      TopExp_Explorer expl(aShape, TopAbs_VERTEX);
+      for (; expl.More(); expl.Next()) {
+           builder(++theTag)->Generated(expl.Current());
+         }
+       } else {
+      TopExp_Explorer expl(aShape, TopAbs_EDGE); 
+      for (; expl.More(); expl.Next()) {       
+               builder(++theTag)->Generated(expl.Current());
+         }   
+      // and load generated vertices.
+      TopTools_DataMapOfShapeShape generated;
+      if (getDangleShapes(aShape, TopAbs_EDGE, generated)) 
+         {
+               TNaming_Builder* pBuilder = builder(++theTag);
+               loadGeneratedDangleShapes(aShape, TopAbs_EDGE, pBuilder);  
+         }
+       }
+  } else if (aShape.ShapeType() == TopAbs_EDGE) {
+    TopExp_Explorer expl(aShape, TopAbs_VERTEX);
+    for (; expl.More(); expl.Next()) {      
+               builder(++theTag)->Generated(expl.Current());
+       }
+  }
+}
+//=======================================================================
+void Model_ResultBody::loadFirstLevel(
+                    boost::shared_ptr<GeomAPI_Shape> theShape, int&  theTag)
+{
+ if(theShape->isNull()) return;
+ TopoDS_Shape aShape = theShape->impl<TopoDS_Shape>();    
+  if (aShape.ShapeType() == TopAbs_COMPOUND || aShape.ShapeType() == TopAbs_COMPSOLID) {
+    TopoDS_Iterator itr(aShape);
+    for (; itr.More(); itr.Next()) {
+         builder(++theTag)->Generated(itr.Value());     
+      if (itr.Value().ShapeType() == TopAbs_COMPOUND || 
+                 itr.Value().ShapeType() == TopAbs_COMPSOLID) 
+         {
+               boost::shared_ptr<GeomAPI_Shape> itrShape(new GeomAPI_Shape());
+        itrShape->setImpl(new TopoDS_Shape(itr.Value()));
+           loadFirstLevel(itrShape, theTag);
+      } else {
+               boost::shared_ptr<GeomAPI_Shape> itrShape(new GeomAPI_Shape());
+        itrShape->setImpl(new TopoDS_Shape(itr.Value()));
+               loadNextLevels(itrShape, theTag);
+         }
+    }
+  } else {
+    boost::shared_ptr<GeomAPI_Shape> itrShape(new GeomAPI_Shape());
+    itrShape->setImpl(new TopoDS_Shape(aShape));
+       loadNextLevels(itrShape, theTag); 
+  }
 }
 
-void Model_ResultBody::loadDisconnectedEdges(boost::shared_ptr<GeomAPI_Shape> theShape, int&  theTag)
+//=======================================================================
+void Model_ResultBody::loadDisconnectedEdges(
+                    boost::shared_ptr<GeomAPI_Shape> theShape, int&  theTag)
 {
   if(theShape->isNull()) return;
   TopoDS_Shape aShape = theShape->impl<TopoDS_Shape>();  
index 6526b9d554971e0e60dd80fb2a57d81661882d8d..45330a31e7bfff1198c6587c07e15483c87e6c3a 100644 (file)
@@ -83,13 +83,13 @@ public:
                                                const int  theTag,
                                                GeomAPI_DataMapOfShapeShape& theSubShapes);
   
-  /// load shapes of the first level (to be used during shape import)
+  /// Loads shapes of the first level (to be used during shape import)
   MODEL_EXPORT virtual void loadFirstLevel(boost::shared_ptr<GeomAPI_Shape> theShape, int&  theTag);
   
-  /// load disconnected edges
+  /// Loads disconnected edges
   MODEL_EXPORT virtual void loadDisconnectedEdges(boost::shared_ptr<GeomAPI_Shape> theShape, int&  theTag);
 
-  /// load disconnected vetexes
+  /// Loads disconnected vetexes
   MODEL_EXPORT virtual void loadDisconnectedVertexes(boost::shared_ptr<GeomAPI_Shape> theShape, int&  theTag);
 
   /// Removes the stored builders
@@ -105,6 +105,10 @@ protected:
   /// Returns (creates if necessary) the builder created on the needed tag of sub-label
   TNaming_Builder* builder(const int theTag);
 
+private:
+  /// Loads shapes of the next level (to be used during shape import)
+  void loadNextLevels(boost::shared_ptr<GeomAPI_Shape> theShape, int&  theTag);
+
   friend class Model_Document;
 };