]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
#20442 add new group in connector plugin to plublish feature
authorJérôme <jerome.lucas@cesgenslab.fr>
Mon, 14 Dec 2020 16:13:10 +0000 (17:13 +0100)
committerJérôme <jerome.lucas@cesgenslab.fr>
Mon, 14 Dec 2020 16:13:10 +0000 (17:13 +0100)
src/ConnectorPlugin/ConnectorPlugin_PublishToStudyFeature.py
src/FeaturesPlugin/FeaturesPlugin_GroupSharedFaces.h
src/FeaturesPlugin/FeaturesPlugin_SharedFaces.h
src/FeaturesPlugin/Test/TestCheckSharedFaces.py
src/FeaturesPlugin/shared_Faces_macro_widget.xml
src/FeaturesPlugin/shared_Faces_widget.xml

index a2e401aae849520225473c1b214435a0bf1cb9bf..2f36d1ed4f345e7f10522abf8abb4b00e8caddb8 100644 (file)
@@ -160,51 +160,55 @@ class PublishToStudyFeature(ModelAPI.ModelAPI_Feature):
     # If theFields is true, the same is performed for Fields.
     def processGroups(self, theRes, theEngine, thePartFeatureId, theStudyShape, theFields):
       allGroupsProcessed = []
+      allRefGroups = []
       if theFields:
-        aRefGroups = ModelAPI.referencedFeatures(theRes, "Field", True)
+        allRefGroups.append(ModelAPI.referencedFeatures(theRes, "Field", True))
       else:
-        aRefGroups = ModelAPI.referencedFeatures(theRes, "Group", True)
-      for aRef in aRefGroups:
-        aGroupIndices = []
-        aGroupHasIndex = {}
-        aResShape = theRes.shape()
-        if theFields:
-          aSelList = aRef.selectionList("selected")
-        else:
-          aSelList = aRef.selectionList("group_list")
-        aSelType = GeomAPI_Shape.shapeTypeByStr(aSelList.selectionType())
-        for aGroupRes in aRef.results():
-          aShape = aGroupRes.shape()
-          anExplorer = GeomAPI_ShapeExplorer(aShape, aSelType)
-          while anExplorer.more():
-            anId = GeomAlgoAPI.GeomAlgoAPI_CompoundBuilder.id(aResShape, anExplorer.current())
-            if anId > 0 and not anId in aGroupHasIndex:
-              aGroupIndices.append(anId)
-              aGroupHasIndex[anId] = 0
-            anExplorer.next()
-        if len(aGroupIndices): # create group
-          aGroupFeatureId = aRef.data().featureId()
+        allRefGroups.append(ModelAPI.referencedFeatures(theRes, "Group", True))
+        allRefGroups.append(ModelAPI.referencedFeatures(theRes, "Shared_faces", True))
+        allRefGroups.append(ModelAPI.referencedFeatures(theRes, "Duplicated_faces", True))
+      for aRefGroups in allRefGroups:
+        for aRef in aRefGroups:
+          aGroupIndices = []
+          aGroupHasIndex = {}
+          aResShape = theRes.shape()
           if theFields:
-            aFieldOp = theEngine.GetIFieldOperations()
-            aGroupEntry = "field" + str(thePartFeatureId) + ":" + str(aGroupFeatureId)
-            aGroup = aFieldOp.FindField(theStudyShape, aGroupEntry)
+            aSelList = aRef.selectionList("selected")
           else:
-            aGroupOp = theEngine.GetIGroupOperations()
-            aGroupEntry = "group" + str(thePartFeatureId) + ":" + str(aGroupFeatureId)
-            aGroup = aGroupOp.FindGroup(theStudyShape, aGroupEntry)
-          if not aGroup: # create a new
+            aSelList = aRef.selectionList("group_list")
+          aSelType = GeomAPI_Shape.shapeTypeByStr(aSelList.selectionType())
+          for aGroupRes in aRef.results():
+            aShape = aGroupRes.shape()
+            anExplorer = GeomAPI_ShapeExplorer(aShape, aSelType)
+            while anExplorer.more():
+              anId = GeomAlgoAPI.GeomAlgoAPI_CompoundBuilder.id(aResShape, anExplorer.current())
+              if anId > 0 and not anId in aGroupHasIndex:
+                aGroupIndices.append(anId)
+                aGroupHasIndex[anId] = 0
+              anExplorer.next()
+          if len(aGroupIndices): # create group
+            aGroupFeatureId = aRef.data().featureId()
             if theFields:
-              aGroup = aFieldOp.CreateFieldByType(theStudyShape, aSelType)
+              aFieldOp = theEngine.GetIFieldOperations()
+              aGroupEntry = "field" + str(thePartFeatureId) + ":" + str(aGroupFeatureId)
+              aGroup = aFieldOp.FindField(theStudyShape, aGroupEntry)
             else:
-              aGroup = aGroupOp.CreateGroup(theStudyShape, aSelType)
-            aGroup.SetEntry(aGroupEntry)
-            theEngine.AddInStudy(aGroup, aRef.firstResult().data().name(), theStudyShape)
-          aGroup.SetSelection(aGroupIndices)
-          if theFields:
-            self.fillField(aGroup, aRef, theEngine, aGroupIndices)
-          # a group takes shape from the main result
-          #aGroup.SetShapeByStream(aRef.firstResult().shape().getShapeStream(False)) # group shape
-          allGroupsProcessed.append(aGroupEntry)
+              aGroupOp = theEngine.GetIGroupOperations()
+              aGroupEntry = "group" + str(thePartFeatureId) + ":" + str(aGroupFeatureId)
+              aGroup = aGroupOp.FindGroup(theStudyShape, aGroupEntry)
+            if not aGroup: # create a new
+              if theFields:
+                aGroup = aFieldOp.CreateFieldByType(theStudyShape, aSelType)
+              else:
+                aGroup = aGroupOp.CreateGroup(theStudyShape, aSelType)
+              aGroup.SetEntry(aGroupEntry)
+              theEngine.AddInStudy(aGroup, aRef.firstResult().data().name(), theStudyShape)
+            aGroup.SetSelection(aGroupIndices)
+            if theFields:
+              self.fillField(aGroup, aRef, theEngine, aGroupIndices)
+            # a group takes shape from the main result
+            #aGroup.SetShapeByStream(aRef.firstResult().shape().getShapeStream(False)) # group shape
+            allGroupsProcessed.append(aGroupEntry)
       # check all existing groups: if some does not processed, remove it from the tree
       aSOIter = SHAPERSTUDY_utils.getStudy().NewChildIterator(theStudyShape.GetSO())
       while aSOIter.More():
index ff7273ec439ce0ece44e584c1e221c3f04eab32a..b243b43d9ed15cba111a77ab1ae7679d98100b4e 100644 (file)
@@ -58,7 +58,7 @@ public:
   /// Attribute name for z coodinate.
   inline static const std::string& LIST_FACES_ID()
   {
-    static const std::string MY_LIST_FACES_ID("faces");
+    static const std::string MY_LIST_FACES_ID("group_list");
     return MY_LIST_FACES_ID;
   }
 
index 995ef77906fdcf91cb08ee7342086a740fc1da73..5fc5d45aaf531babc16992e651ae0de2efa52b65 100644 (file)
@@ -58,7 +58,7 @@ public:
   /// Attribute name for z coodinate.
   inline static const std::string& LIST_FACES_ID()
   {
-    static const std::string MY_LIST_FACES_ID("faces");
+    static const std::string MY_LIST_FACES_ID("group_list");
     return MY_LIST_FACES_ID;
   }
 
index c0d98ace10575a7d5fdf820c7e0fb5db5446c91a..0b8da66d7aa6a57b789b5b47cc0b5c8a446c2455 100644 (file)
@@ -60,7 +60,7 @@ if __name__ == '__main__':
     assert Shared_faces_1_Feature.error() == ''
     assert Shared_faces_1_Feature.name() == "Shared_faces_1"
 
-    aSelectionList = Shared_faces_1_Feature.selectionList("faces")
+    aSelectionList = Shared_faces_1_Feature.selectionList("group_list")
     assert aSelectionList.size() == 1
 
     assert(Part_1_doc.size("Groups") == 1)
index 960c960c6ecb80ed3f442404000e1bfa39eaa0df..9fc5197f53ae2d0fae77ce9e851ea0db5e7f7709 100644 (file)
@@ -10,7 +10,7 @@
   </shape_selector>
   <groupbox title="Shared faces">
     <label id="number_shared_faces"/>
-    <multi_selector id="faces"
+    <multi_selector id="group_list"
                       label="Liste of faces :"
                       icon=""
                       shape_types="faces"
index 97d8b7d7b57cf0bcedbfaca2fa02ee72e5fc0d17..6ab30bd94e007112a170b4a460f30359d5521688 100644 (file)
@@ -10,7 +10,7 @@
   </shape_selector>
   <groupbox title="Shared faces">
     <label id="number_shared_faces"/>
-    <multi_selector id="faces"
+    <multi_selector id="group_list"
                       label="Liste of faces :"
                       icon=""
                       shape_types="faces"