X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_OperationPrs.cpp;h=58b5a53f50a2d1d93972b8bb9adc0cc63b19a013;hb=d9aad73be5a44ff8e42162a30a0d9045df7f3837;hp=f16209b23fef0f98da1d600f9b79ca8723e6a28d;hpb=98e21a8e5e9de9c658c11c19fac5c4c7060396c5;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_OperationPrs.cpp b/src/PartSet/PartSet_OperationPrs.cpp index f16209b23..58b5a53f5 100755 --- a/src/PartSet/PartSet_OperationPrs.cpp +++ b/src/PartSet/PartSet_OperationPrs.cpp @@ -12,6 +12,7 @@ #include "XGUI_Displayer.h" #include "ModuleBase_Tools.h" +#include "ModuleBase_IModule.h" #include #include @@ -19,6 +20,10 @@ #include #include #include +#include +#include +#include +#include #include @@ -34,6 +39,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) @@ -54,21 +61,40 @@ 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(); +} + +bool PartSet_OperationPrs::hasShapes() +{ + return !myFeatureShapes.empty() || !myFeatureResults.empty(); } void PartSet_OperationPrs::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode) { + if (!hasShapes()) + return; + // 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(); @@ -88,13 +114,28 @@ void PartSet_OperationPrs::Compute(const Handle(PrsMgr_PresentationManager3d)& t continue; TopoDS_Shape aShape = aGeomShape->impl(); // change deviation coefficient to provide more precise circle - Standard_Real aPrevDeviation = aDrawer->DeviationCoefficient(); - //aDrawer->SetDeviationCoefficient(ModuleBase_Tools::defaultDeviationCoefficient()); - + ModuleBase_Tools::setDefaultDeviationCoefficient(aShape, aDrawer); StdPrs_WFDeflectionShape::Add(thePresentation, aShape, aDrawer); - //aDrawer->SetDeviationCoefficient(aPrevDeviation); } } + + 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, @@ -138,6 +179,22 @@ void addValue(const ObjectPtr& theObject, const GeomShapePtr& theShape, QMap >& theObjectShapes) { if (theObject.get()) { + ResultPtr aResult = std::dynamic_pointer_cast(theObject); + if (aResult.get()) { + ResultCompSolidPtr aCompsolidResult = std::dynamic_pointer_cast(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); + } + } + return; + } + } + + GeomShapePtr aShape = theShape; if (!aShape.get()) { ResultPtr aResult = std::dynamic_pointer_cast(theObject); @@ -161,6 +218,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(); @@ -169,6 +228,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()) { @@ -181,6 +243,14 @@ void PartSet_OperationPrs::getFeatureShapes(QMap 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 { ObjectPtr anObject; GeomShapePtr aShape; @@ -217,6 +287,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();