X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Factory.cpp;h=449c3c24ae7577ff0c55de30a4439727adea1a78;hb=f98f887290d4e2b4bd6618389911e82b6b9674f3;hp=b855929ab16f7513ffb86b1fe71fd7761c31a492;hpb=303a8f8c0a451e65f1ad390f8b73d3408bf28425;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Factory.cpp b/src/SketcherPrs/SketcherPrs_Factory.cpp index b855929ab..449c3c24a 100644 --- a/src/SketcherPrs/SketcherPrs_Factory.cpp +++ b/src/SketcherPrs/SketcherPrs_Factory.cpp @@ -7,6 +7,7 @@ #include "SketcherPrs_Factory.h" #include "SketcherPrs_Coincident.h" +#include "SketcherPrs_Collinear.h" #include "SketcherPrs_Parallel.h" #include "SketcherPrs_Perpendicular.h" #include "SketcherPrs_Rigid.h" @@ -15,20 +16,32 @@ #include "SketcherPrs_Tangent.h" #include "SketcherPrs_Radius.h" #include "SketcherPrs_LengthDimension.h" +#include "SketcherPrs_Middle.h" #include "SketcherPrs_Mirror.h" #include "SketcherPrs_Transformation.h" +#include "SketcherPrs_Angle.h" +// Macros for constraint presentation definition #define CONSTRAINT_PRS_IMPL(NAME, CLASS) \ AISObjectPtr SketcherPrs_Factory::NAME(ModelAPI_Feature* theConstraint, \ - const std::shared_ptr& thePlane) \ + const std::shared_ptr& thePlane, \ + AISObjectPtr thePrevious) \ { \ - std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); \ - Handle(CLASS) aPrs = new CLASS(theConstraint, thePlane); \ - aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); \ - return aAISObj; \ + 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; \ } 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); @@ -36,41 +49,75 @@ 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); - +// Non-standard constraints definition AISObjectPtr SketcherPrs_Factory::horisontalConstraint(ModelAPI_Feature* theConstraint, - const std::shared_ptr& thePlane) -{ - std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); - Handle(SketcherPrs_HVDirection) aPrs = new SketcherPrs_HVDirection(theConstraint, thePlane, true); - aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); - return aAISObj; + const std::shared_ptr& thePlane, + AISObjectPtr thePrevious) +{ + std::shared_ptr anAISObj; + if (SketcherPrs_HVDirection::IsReadyToDisplay(theConstraint, thePlane)) { + if (thePrevious.get()) + anAISObj = thePrevious; + else { + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_HVDirection) aPrs = new SketcherPrs_HVDirection(theConstraint, thePlane, true); + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + } + } + return anAISObj; } AISObjectPtr SketcherPrs_Factory::verticalConstraint(ModelAPI_Feature* theConstraint, - const std::shared_ptr& thePlane) + const std::shared_ptr& thePlane, + AISObjectPtr thePrevious) { - std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); - Handle(SketcherPrs_HVDirection) aPrs = new SketcherPrs_HVDirection(theConstraint, thePlane, false); - aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); - return aAISObj; + std::shared_ptr anAISObj; + if (SketcherPrs_HVDirection::IsReadyToDisplay(theConstraint, thePlane)) { + if (thePrevious.get()) + anAISObj = thePrevious; + else { + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_HVDirection) aPrs = new SketcherPrs_HVDirection(theConstraint, thePlane, false); + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + } + } + return anAISObj; } AISObjectPtr SketcherPrs_Factory::translateConstraint(ModelAPI_Feature* theConstraint, - const std::shared_ptr& thePlane) + const std::shared_ptr& thePlane, + AISObjectPtr thePrevious) { - std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); - Handle(SketcherPrs_Transformation) aPrs = new SketcherPrs_Transformation(theConstraint, thePlane, true); - aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); - return aAISObj; + std::shared_ptr anAISObj; + if (SketcherPrs_Transformation::IsReadyToDisplay(theConstraint, thePlane)) { + if (thePrevious.get()) + anAISObj = thePrevious; + else { + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_Transformation) aPrs = new SketcherPrs_Transformation(theConstraint, thePlane, true); + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + } + } + return anAISObj; } AISObjectPtr SketcherPrs_Factory::rotateConstraint(ModelAPI_Feature* theConstraint, - const std::shared_ptr& thePlane) + const std::shared_ptr& thePlane, + AISObjectPtr thePrevious) { - std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); - Handle(SketcherPrs_Transformation) aPrs = new SketcherPrs_Transformation(theConstraint, thePlane, false); - aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); - return aAISObj; + std::shared_ptr anAISObj; + if (SketcherPrs_Transformation::IsReadyToDisplay(theConstraint, thePlane)) { + if (thePrevious.get()) + anAISObj = thePrevious; + else { + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_Transformation) aPrs = new SketcherPrs_Transformation(theConstraint, thePlane, false); + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + } + } + return anAISObj; }