]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
OperationPrs should not be shown if it is empty. Final modification. Error message...
authornds <nds@opencascade.com>
Fri, 19 Feb 2016 07:09:08 +0000 (10:09 +0300)
committernds <nds@opencascade.com>
Fri, 19 Feb 2016 07:09:08 +0000 (10:09 +0300)
src/Events/Events_Error.cpp
src/PartSet/PartSet_OperationPrs.cpp
src/PartSet/PartSet_OperationPrs.h

index c646cbf0cae5cf598a79c395c629bbc404d22d9d..1016816c36bc9d770a97908a9870b6fd2659af17 100644 (file)
@@ -10,7 +10,7 @@
 #include <Events_Error.h>
 #include <Events_Loop.h>
 
-//#define TROW_EMPTY_AIS_EXCEPTION
+#define THROW_EMPTY_AIS_EXCEPTION
 
 Events_Error::Events_Error(const std::string& theDescription, const void* theSender)
     : Events_Message(Events_Error::errorID(), theSender)
@@ -42,7 +42,7 @@ void Events_Error::send(const std::string& theDescription, const void* theSender
 
 void Events_Error::throwException(const std::string& theDescription)
 {
-#ifdef TROW_EMPTY_AIS_EXCEPTION
+#ifdef THROW_EMPTY_AIS_EXCEPTION
   try {
     throw std::invalid_argument(theDescription);
   }
index e6a52bdd8a89073db4e618e3ede231360a51392f..90d41cdff80f67b6bfefc004b5dc7a05d1750a29 100755 (executable)
@@ -10,6 +10,7 @@
 #include "XGUI_Workshop.h"
 #include "XGUI_ModuleConnector.h"
 #include "XGUI_Displayer.h"
+#include "XGUI_Tools.h"
 
 #include "ModuleBase_Tools.h"
 #include "ModuleBase_IModule.h"
 
 static const int AIS_DEFAULT_WIDTH = 2;
 
-//#define DEBUG_HIDE_COPY_ATTRIBUTE
+//#define DEBUG_EMPTY_SHAPE
 
+// multi-rotation/translation operation
+//#define DEBUG_HIDE_COPY_ATTRIBUTE
 #ifdef DEBUG_HIDE_COPY_ATTRIBUTE
 #include <ModelAPI_AttributeBoolean.h>
 #include <SketchPlugin_SketchEntity.h>
@@ -75,7 +78,7 @@ void PartSet_OperationPrs::Compute(const Handle(PrsMgr_PresentationManager3d)& t
   SetColor(myShapeColor);
   thePresentation->Clear();
 
-  XGUI_Displayer* aDisplayer = workshop(myWorkshop)->displayer();
+  XGUI_Displayer* aDisplayer = XGUI_Tools::workshop(myWorkshop)->displayer();
   Handle(Prs3d_Drawer) aDrawer = Attributes();
 
   // create presentations on the base of the shapes
@@ -84,14 +87,14 @@ void PartSet_OperationPrs::Compute(const Handle(PrsMgr_PresentationManager3d)& t
                                                         aLast = myFeatureShapes.end();
   for (; anIt != aLast; anIt++) {
     ObjectPtr anObject = anIt.key();
-    if (!isVisible(aDisplayer, anObject))
-      continue;
     QList<GeomShapePtr> aShapes = anIt.value();
     QList<GeomShapePtr>::const_iterator aShIt = aShapes.begin(), aShLast = aShapes.end();
     for (; aShIt != aShLast; aShIt++) {
       GeomShapePtr aGeomShape = *aShIt;
-      if (!aGeomShape.get())
-        continue;
+      // the shape should not be checked here on empty value because it should be checked in
+      // appendShapeIfVisible() on the step of filling myFeatureShapes list
+      // the reason is to avoid empty AIS object visualized in the viewer
+      //if (!aGeomShape.get()) continue;
       TopoDS_Shape aShape = aGeomShape->impl<TopoDS_Shape>();
       // change deviation coefficient to provide more precise circle
       ModuleBase_Tools::setDefaultDeviationCoefficient(aShape, aDrawer);
@@ -169,23 +172,25 @@ bool isSubObject(const ObjectPtr& theObject, const FeaturePtr& theFeature)
   return isSub;
 }
 
-void addValue(const ObjectPtr& theObject, const GeomShapePtr& theShape,
-              const FeaturePtr& theFeature,
-              QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes)
+void PartSet_OperationPrs::addValue(const ObjectPtr& theObject, const GeomShapePtr& theShape,
+                                    const FeaturePtr& theFeature, ModuleBase_IWorkshop* theWorkshop,
+                                    QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes)
 {
   if (theObject.get()) {
     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
     if (aResult.get()) {
       ResultCompSolidPtr aCompsolidResult = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(theObject);
       if (aCompsolidResult.get()) {
-        for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
-          ResultPtr aSubResult = aCompsolidResult->subResult(i);
-          if (aSubResult.get()) {
-            GeomShapePtr aShape;
-            addValue(aSubResult, aShape, theFeature, theObjectShapes);
+        if (aCompsolidResult->numberOfSubs() > 0) {
+          for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
+            ResultPtr aSubResult = aCompsolidResult->subResult(i);
+            if (aSubResult.get()) {
+              GeomShapePtr aShape;
+              addValue(aSubResult, aShape, theFeature, theWorkshop, theObjectShapes);
+            }
           }
+          return;
         }
-        return;
       }
 #ifdef DEBUG_HIDE_COPY_ATTRIBUTE
       else {
@@ -208,14 +213,31 @@ void addValue(const ObjectPtr& theObject, const GeomShapePtr& theShape,
       if (aResult.get())
         aShape = aResult->shape();
     }
-    if (!isSubObject(theObject, theFeature)) {
+    if (!isSubObject(theObject, theFeature))
+      appendShapeIfVisible(theWorkshop, theObject, aShape, theObjectShapes);
+  }
+}
+
+void PartSet_OperationPrs::appendShapeIfVisible(ModuleBase_IWorkshop* theWorkshop,
+                              const ObjectPtr& theObject,
+                              GeomShapePtr theGeomShape,
+                              QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes)
+{
+  XGUI_Displayer* aDisplayer = XGUI_Tools::workshop(theWorkshop)->displayer();
+  if (isVisible(aDisplayer, theObject)) {
+    if (theGeomShape.get()) {
       if (theObjectShapes.contains(theObject))
-        theObjectShapes[theObject].append(aShape);
+        theObjectShapes[theObject].append(theGeomShape);
       else {
         QList<GeomShapePtr> aShapes;
-        aShapes.append(aShape);
+        aShapes.append(theGeomShape);
         theObjectShapes[theObject] = aShapes;
       }
+    } else {
+  #ifdef DEBUG_EMPTY_SHAPE
+      qDebug(QString("Empty shape in result, result: %1")
+              .arg(ModuleBase_Tools::objectInfo(theObject)).toStdString().c_str());
+  #endif
     }
   }
 }
@@ -250,7 +272,7 @@ void PartSet_OperationPrs::getFeatureShapes(const FeaturePtr& theFeature,
         std::shared_ptr<ModelAPI_AttributeSelection> aSelAttribute = aCurSelList->value(i);
         ResultPtr aResult = aSelAttribute->context();
         GeomShapePtr aShape = aSelAttribute->value();
-        addValue(aResult, aShape, theFeature, theObjectShapes);
+        addValue(aResult, aShape, theFeature, theWorkshop, theObjectShapes);
       }
     }
     if (anAttrType == ModelAPI_AttributeRefList::typeId()) {
@@ -259,7 +281,8 @@ void PartSet_OperationPrs::getFeatureShapes(const FeaturePtr& theFeature,
       for (int i = 0; i < aCurSelList->size(); i++) {
         ObjectPtr anObject = aCurSelList->object(i);
         FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(anObject);
-        // feature rectangle uses as parameters feature lines, so we should obtain line results
+        // if a feature is stored in the attribute, we should obtain the feature results
+        // e.g. feature rectangle uses parameters feature lines in the attribute
         if (aFeature.get()) {
           getResultShapes(aFeature, theWorkshop, theObjectShapes, false);
         }
@@ -268,7 +291,7 @@ void PartSet_OperationPrs::getFeatureShapes(const FeaturePtr& theFeature,
           if (aResult.get()) {
             GeomShapePtr aShape = aResult->shape();
             if (aShape.get())
-              addValue(aResult, aShape, theFeature, theObjectShapes);
+              addValue(aResult, aShape, theFeature, theWorkshop, theObjectShapes);
           }
         }
       }
@@ -300,7 +323,7 @@ void PartSet_OperationPrs::getFeatureShapes(const FeaturePtr& theFeature,
         AttributeReferencePtr anAttr = std::dynamic_pointer_cast<ModelAPI_AttributeReference>(anAttribute);
         anObject = anAttr->value();
       }
-      addValue(anObject, aShape, theFeature, theObjectShapes);
+      addValue(anObject, aShape, theFeature, theWorkshop, theObjectShapes);
     }
   }
 }
@@ -316,26 +339,15 @@ void PartSet_OperationPrs::getResultShapes(const FeaturePtr& theFeature,
   if (!theFeature.get())
     return;
 
-  XGUI_Displayer* aDisplayer = workshop(theWorkshop)->displayer();
+  XGUI_Displayer* aDisplayer = XGUI_Tools::workshop(theWorkshop)->displayer();
 
   std::list<ResultPtr> aFeatureResults = theFeature->results();
   std::list<ResultPtr>::const_iterator aRIt = aFeatureResults.begin(),
                                        aRLast = aFeatureResults.end();
   for (; aRIt != aRLast; aRIt++) {
     ResultPtr aResult = *aRIt;
-    if (!isVisible(aDisplayer, aResult))
-      continue;
     GeomShapePtr aGeomShape = aResult->shape();
-    if (!aGeomShape.get())
-      continue;
-
-    if (theObjectShapes.contains(aResult))
-      theObjectShapes[aResult].append(aGeomShape);
-    else {
-      QList<GeomShapePtr> aShapes;
-      aShapes.append(aGeomShape);
-      theObjectShapes[aResult] = aShapes;
-    }
+    appendShapeIfVisible(theWorkshop, aResult, aGeomShape, theObjectShapes);
   }
 }
 
@@ -373,14 +385,7 @@ void PartSet_OperationPrs::getHighlightedShapes(ModuleBase_IWorkshop* theWorksho
         aGeomShape = aResult->shape();
       }
     }
-
-    if (theObjectShapes.contains(anObject))
-      theObjectShapes[anObject].append(aGeomShape);
-    else {
-      QList<GeomShapePtr> aShapes;
-      aShapes.append(aGeomShape);
-      theObjectShapes[anObject] = aShapes;
-    }
+    appendShapeIfVisible(theWorkshop, anObject, aGeomShape, theObjectShapes);
   }
 }
 
@@ -395,9 +400,3 @@ bool PartSet_OperationPrs::isSelectionAttribute(const AttributePtr& theAttribute
          anAttrType == ModelAPI_AttributeSelection::typeId() ||
          anAttrType == ModelAPI_AttributeReference::typeId();
 }
-
-XGUI_Workshop* PartSet_OperationPrs::workshop(ModuleBase_IWorkshop* theWorkshop)
-{
-  XGUI_ModuleConnector* aConnector = dynamic_cast<XGUI_ModuleConnector*>(theWorkshop);
-  return aConnector->workshop();
-}
index 51922f5d6a96fc26f951f7ba74b82310c41c9f95..adafbdfb81573cd8a2fcfecf6ab51cd20cba914e 100755 (executable)
@@ -30,7 +30,6 @@
 
 DEFINE_STANDARD_HANDLE(PartSet_OperationPrs, ViewerData_AISShape)
 
-class XGUI_Workshop;
 class XGUI_Displayer;
 
 /**
@@ -116,10 +115,26 @@ private:
   /// \return a boolean value
   static bool isSelectionAttribute(const AttributePtr& theAttribute);
 
-  /// Converts the current workshop to XGUI workshop
-  /// \param theWorkshop an interface workshop
-  /// \return a workshop instance
-  static XGUI_Workshop* workshop(ModuleBase_IWorkshop* theWorkshop);
+  /// Appends the shape for the result into the container if the result is visible and
+  /// the shape is not null.
+  /// \param theWorkshop a current workshop
+  /// \param theResult an object to be appended
+  /// \param theGeomShape a shape to be appended
+  /// \param theObjectShapes a filled container
+  static void addValue(const ObjectPtr& theObject, const GeomShapePtr& theShape,
+                const FeaturePtr& theFeature, ModuleBase_IWorkshop* theWorkshop,
+                QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes);
+
+  /// Appends the shape for the result into the container if the result is visible and
+  /// the shape is not null.
+  /// \param theWorkshop a current workshop
+  /// \param theObject an object to be appended
+  /// \param theGeomShape a shape to be appended
+  /// \param theObjectShapes a filled container
+  static void appendShapeIfVisible(ModuleBase_IWorkshop* theWorkshop,
+                                   const ObjectPtr& theObject,
+                                   GeomShapePtr theGeomShape,
+                                   QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes);
 
 private:
   QMap<ObjectPtr, QList<GeomShapePtr> > myFeatureShapes; /// visualized shapes