X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Factory.cpp;h=6059e0ce0dd643132de9fe999d79c2b8defc24c0;hb=2cb8023bec0da9fc7b138da0a467bca74d4b825c;hp=ab8e6378c9861b9bc407700ac1cf485ab022fec3;hpb=a94fc319f2aa64b43c9a73b5ff7063923648faec;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Factory.cpp b/src/SketcherPrs/SketcherPrs_Factory.cpp index ab8e6378c..6059e0ce0 100644 --- a/src/SketcherPrs/SketcherPrs_Factory.cpp +++ b/src/SketcherPrs/SketcherPrs_Factory.cpp @@ -38,6 +38,7 @@ // Macros for constraint presentation definition #define CONSTRAINT_PRS_IMPL(NAME, CLASS) \ AISObjectPtr SketcherPrs_Factory::NAME(ModelAPI_Feature* theConstraint, \ + ModelAPI_CompositeFeature* theSketcher, \ const std::shared_ptr& thePlane, \ AISObjectPtr thePrevious) \ { \ @@ -47,28 +48,52 @@ AISObjectPtr SketcherPrs_Factory::NAME(ModelAPI_Feature* theConstraint, \ anAISObj = thePrevious; \ else { \ anAISObj = AISObjectPtr(new GeomAPI_AISObject()); \ - Handle(CLASS) aPrs = new CLASS(theConstraint, thePlane); \ + Handle(CLASS) aPrs = new CLASS(theConstraint, theSketcher, thePlane); \ anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); \ } \ } \ return anAISObj; \ } -CONSTRAINT_PRS_IMPL(coincidentConstraint, SketcherPrs_Coincident); + CONSTRAINT_PRS_IMPL(collinearConstraint, SketcherPrs_Collinear); CONSTRAINT_PRS_IMPL(parallelConstraint, SketcherPrs_Parallel); CONSTRAINT_PRS_IMPL(perpendicularConstraint, SketcherPrs_Perpendicular); CONSTRAINT_PRS_IMPL(rigidConstraint, SketcherPrs_Rigid); CONSTRAINT_PRS_IMPL(equalConstraint, SketcherPrs_Equal); CONSTRAINT_PRS_IMPL(tangentConstraint, SketcherPrs_Tangent); -CONSTRAINT_PRS_IMPL(radiusConstraint, SketcherPrs_Radius); -CONSTRAINT_PRS_IMPL(lengthDimensionConstraint, SketcherPrs_LengthDimension); CONSTRAINT_PRS_IMPL(middleConstraint, SketcherPrs_Middle); CONSTRAINT_PRS_IMPL(mirrorConstraint, SketcherPrs_Mirror); -CONSTRAINT_PRS_IMPL(angleConstraint, SketcherPrs_Angle); + + + +#define CONSTRAINT2_PRS_IMPL(NAME, CLASS) \ +AISObjectPtr SketcherPrs_Factory::NAME(ModelAPI_Feature* theConstraint, \ + const std::shared_ptr& thePlane, \ + AISObjectPtr thePrevious) \ +{ \ + std::shared_ptr anAISObj; \ + if (CLASS::IsReadyToDisplay(theConstraint, thePlane)) { \ + if (thePrevious.get()) \ + anAISObj = thePrevious; \ + else { \ + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); \ + Handle(CLASS) aPrs = new CLASS(theConstraint, thePlane); \ + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); \ + } \ + } \ + return anAISObj; \ +} + + +CONSTRAINT2_PRS_IMPL(coincidentConstraint, SketcherPrs_Coincident); +CONSTRAINT2_PRS_IMPL(angleConstraint, SketcherPrs_Angle); +CONSTRAINT2_PRS_IMPL(radiusConstraint, SketcherPrs_Radius); +CONSTRAINT2_PRS_IMPL(lengthDimensionConstraint, SketcherPrs_LengthDimension); // Non-standard constraints definition AISObjectPtr SketcherPrs_Factory::horisontalConstraint(ModelAPI_Feature* theConstraint, + ModelAPI_CompositeFeature* theSketcher, const std::shared_ptr& thePlane, AISObjectPtr thePrevious) { @@ -79,7 +104,7 @@ AISObjectPtr SketcherPrs_Factory::horisontalConstraint(ModelAPI_Feature* theCons else { anAISObj = AISObjectPtr(new GeomAPI_AISObject()); Handle(SketcherPrs_HVDirection) aPrs = - new SketcherPrs_HVDirection(theConstraint, thePlane, true); + new SketcherPrs_HVDirection(theConstraint, theSketcher, thePlane, true); anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); } } @@ -87,6 +112,7 @@ AISObjectPtr SketcherPrs_Factory::horisontalConstraint(ModelAPI_Feature* theCons } AISObjectPtr SketcherPrs_Factory::verticalConstraint(ModelAPI_Feature* theConstraint, + ModelAPI_CompositeFeature* theSketcher, const std::shared_ptr& thePlane, AISObjectPtr thePrevious) { @@ -97,7 +123,7 @@ AISObjectPtr SketcherPrs_Factory::verticalConstraint(ModelAPI_Feature* theConstr else { anAISObj = AISObjectPtr(new GeomAPI_AISObject()); Handle(SketcherPrs_HVDirection) aPrs = - new SketcherPrs_HVDirection(theConstraint, thePlane, false); + new SketcherPrs_HVDirection(theConstraint, theSketcher, thePlane, false); anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); } } @@ -105,6 +131,7 @@ AISObjectPtr SketcherPrs_Factory::verticalConstraint(ModelAPI_Feature* theConstr } AISObjectPtr SketcherPrs_Factory::translateConstraint(ModelAPI_Feature* theConstraint, + ModelAPI_CompositeFeature* theSketcher, const std::shared_ptr& thePlane, AISObjectPtr thePrevious) { @@ -115,7 +142,7 @@ AISObjectPtr SketcherPrs_Factory::translateConstraint(ModelAPI_Feature* theConst else { anAISObj = AISObjectPtr(new GeomAPI_AISObject()); Handle(SketcherPrs_Transformation) aPrs = - new SketcherPrs_Transformation(theConstraint, thePlane, true); + new SketcherPrs_Transformation(theConstraint, theSketcher, thePlane, true); anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); } } @@ -123,6 +150,7 @@ AISObjectPtr SketcherPrs_Factory::translateConstraint(ModelAPI_Feature* theConst } AISObjectPtr SketcherPrs_Factory::rotateConstraint(ModelAPI_Feature* theConstraint, + ModelAPI_CompositeFeature* theSketcher, const std::shared_ptr& thePlane, AISObjectPtr thePrevious) { @@ -133,7 +161,7 @@ AISObjectPtr SketcherPrs_Factory::rotateConstraint(ModelAPI_Feature* theConstrai else { anAISObj = AISObjectPtr(new GeomAPI_AISObject()); Handle(SketcherPrs_Transformation) aPrs = - new SketcherPrs_Transformation(theConstraint, thePlane, false); + new SketcherPrs_Transformation(theConstraint, theSketcher, thePlane, false); anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); } }