X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_OperationPrs.cpp;h=66e146f96210959647f26a920067448f0b35c093;hb=857b1f72d9703c46c6c8c9bb239821d314344c86;hp=13690107113100a0c7eee61bb24f0e27f6366f84;hpb=7f7d50e90b39e2075a8585ac5d517e340f8eb09e;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_OperationPrs.cpp b/src/PartSet/PartSet_OperationPrs.cpp index 136901071..66e146f96 100755 --- a/src/PartSet/PartSet_OperationPrs.cpp +++ b/src/PartSet/PartSet_OperationPrs.cpp @@ -11,12 +11,18 @@ #include "XGUI_ModuleConnector.h" #include "XGUI_Displayer.h" +#include "ModuleBase_Tools.h" +#include "ModuleBase_IModule.h" + #include #include #include #include #include #include +#include +#include +#include #include @@ -32,6 +38,8 @@ IMPLEMENT_STANDARD_RTTIEXT(PartSet_OperationPrs, ViewerData_AISShape); PartSet_OperationPrs::PartSet_OperationPrs(ModuleBase_IWorkshop* theWorkshop) : ViewerData_AISShape(TopoDS_Shape()), myFeature(FeaturePtr()), myWorkshop(theWorkshop) { + myShapeColor = ModuleBase_Tools::color("Visualization", "construction_plane_color", "1,1,0"); + myResultColor = ModuleBase_Tools::color("Visualization", "construction_plane_color", "0,1,0"); } bool PartSet_OperationPrs::canActivate(const FeaturePtr& theFeature) @@ -52,21 +60,33 @@ void PartSet_OperationPrs::setFeature(const FeaturePtr& theFeature) updateShapes(); } -bool PartSet_OperationPrs::dependOn(const ObjectPtr& theResult) +/*bool PartSet_OperationPrs::dependOn(const ObjectPtr& theResult) { return myFeatureShapes.contains(theResult); -} +}*/ void PartSet_OperationPrs::updateShapes() { myFeatureShapes.clear(); getFeatureShapes(myFeatureShapes); + + myFeatureResults.clear(); + if (myFeature) + myFeatureResults = myFeature->results(); } void PartSet_OperationPrs::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode) { + // when the feature can not be visualized in the module, the operation preview should not + // be visualized also + if (!myWorkshop->module()->canDisplayObject(myFeature)) + return; + + Quantity_Color aColor(1., 1., 0., Quantity_TOC_RGB); // yellow + SetColor(aColor); + thePresentation->Clear(); XGUI_Displayer* aDisplayer = workshop()->displayer(); @@ -82,10 +102,32 @@ void PartSet_OperationPrs::Compute(const Handle(PrsMgr_PresentationManager3d)& t QList::const_iterator aShIt = aShapes.begin(), aShLast = aShapes.end(); for (; aShIt != aShLast; aShIt++) { GeomShapePtr aGeomShape = *aShIt; + if (!aGeomShape.get()) + continue; TopoDS_Shape aShape = aGeomShape->impl(); + // change deviation coefficient to provide more precise circle + ModuleBase_Tools::setDefaultDeviationCoefficient(aShape, aDrawer); StdPrs_WFDeflectionShape::Add(thePresentation, aShape, aDrawer); } } + + aColor = Quantity_Color(0., 1., 0., Quantity_TOC_RGB); // green + SetColor(aColor); + + std::list::const_iterator aRIt = myFeatureResults.begin(), + aRLast = myFeatureResults.end(); + for (; aRIt != aRLast; aRIt++) { + ResultPtr aResult = *aRIt; + if (!isVisible(aDisplayer, aResult)) + continue; + GeomShapePtr aGeomShape = aResult->shape(); + if (!aGeomShape.get()) + continue; + TopoDS_Shape aShape = aGeomShape->impl(); + // change deviation coefficient to provide more precise circle + ModuleBase_Tools::setDefaultDeviationCoefficient(aShape, aDrawer); + StdPrs_WFDeflectionShape::Add(thePresentation, aShape, aDrawer); + } } void PartSet_OperationPrs::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection, @@ -114,15 +156,36 @@ bool PartSet_OperationPrs::isVisible(XGUI_Displayer* theDisplayer, const ObjectP return aVisible; } +bool isSubObject(const ObjectPtr& theObject, const FeaturePtr& theFeature) +{ + bool isSub = false; + CompositeFeaturePtr aComposite = std::dynamic_pointer_cast(theFeature); + if (aComposite.get()) + isSub = aComposite->isSub(theObject); + + return isSub; +} + void addValue(const ObjectPtr& theObject, const GeomShapePtr& theShape, + const FeaturePtr& theFeature, QMap >& theObjectShapes) { - if (theObjectShapes.contains(theObject)) - theObjectShapes[theObject].append(theShape); - else { - QList aShapes; - aShapes.append(theShape); - theObjectShapes[theObject] = aShapes; + if (theObject.get()) { + GeomShapePtr aShape = theShape; + if (!aShape.get()) { + ResultPtr aResult = std::dynamic_pointer_cast(theObject); + if (aResult.get()) + aShape = aResult->shape(); + } + if (!isSubObject(theObject, theFeature)) { + if (theObjectShapes.contains(theObject)) + theObjectShapes[theObject].append(aShape); + else { + QList aShapes; + aShapes.append(aShape); + theObjectShapes[theObject] = aShapes; + } + } } } @@ -131,6 +194,8 @@ void PartSet_OperationPrs::getFeatureShapes(QMap if (!myFeature.get()) return; + ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators(); + QList aShapes; std::list anAttributes = myFeature->data()->attributes(""); std::list::const_iterator anIt = anAttributes.begin(), aLast = anAttributes.end(); @@ -139,6 +204,9 @@ void PartSet_OperationPrs::getFeatureShapes(QMap if (!isSelectionAttribute(anAttribute)) continue; + if (!aValidators->isCase(myFeature, anAttribute->id())) + continue; // this attribute is not participated in the current case + std::string anAttrType = anAttribute->attributeType(); if (anAttrType == ModelAPI_AttributeSelectionList::typeId()) { @@ -148,9 +216,15 @@ void PartSet_OperationPrs::getFeatureShapes(QMap std::shared_ptr aSelAttribute = aCurSelList->value(i); ResultPtr aResult = aSelAttribute->context(); GeomShapePtr aShape = aSelAttribute->value(); - if (!aShape.get()) - aShape = aResult->shape(); - addValue(aResult, aShape, theObjectShapes); + addValue(aResult, aShape, myFeature, theObjectShapes); + } + } + if (anAttrType == ModelAPI_AttributeRefList::typeId()) { + std::shared_ptr aCurSelList = + std::dynamic_pointer_cast(anAttribute); + for (int i = 0; i < aCurSelList->size(); i++) { + GeomShapePtr aShape; + addValue(aCurSelList->object(i), aShape, myFeature, theObjectShapes); } } else { @@ -179,15 +253,7 @@ void PartSet_OperationPrs::getFeatureShapes(QMap AttributeReferencePtr anAttr = std::dynamic_pointer_cast(anAttribute); anObject = anAttr->value(); } - - if (anObject.get()) { - if (!aShape.get()) { - ResultPtr aResult = std::dynamic_pointer_cast(anObject); - if (aResult.get()) - aShape = aResult->shape(); - } - addValue(anObject, aShape, theObjectShapes); - } + addValue(anObject, aShape, myFeature, theObjectShapes); } } } @@ -197,6 +263,7 @@ bool PartSet_OperationPrs::isSelectionAttribute(const AttributePtr& theAttribute std::string anAttrType = theAttribute->attributeType(); return anAttrType == ModelAPI_AttributeSelectionList::typeId() || + anAttrType == ModelAPI_AttributeRefList::typeId() || anAttrType == ModelAPI_AttributeRefAttr::typeId() || anAttrType == ModelAPI_AttributeSelection::typeId() || anAttrType == ModelAPI_AttributeReference::typeId();