X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Factory.cpp;h=e5dc6c7bb971896742c69b75d153c1a956ca5127;hb=c0e273c1479a9940dbe4f966853c82a6b8709d88;hp=1e3e7c67bc2929dd39fdb3d569e21b92f3f7ccfd;hpb=8579a62492b5e8227d9e256cc9754a31442c05ed;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Factory.cpp b/src/SketcherPrs/SketcherPrs_Factory.cpp index 1e3e7c67b..e5dc6c7bb 100644 --- a/src/SketcherPrs/SketcherPrs_Factory.cpp +++ b/src/SketcherPrs/SketcherPrs_Factory.cpp @@ -1,40 +1,141 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: SketcherPrs_Factory.cpp -// Created: 13 February 2015 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2022 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "SketcherPrs_Factory.h" -#include -#include -#include +#include "SketcherPrs_Coincident.h" +#include "SketcherPrs_Collinear.h" +#include "SketcherPrs_Parallel.h" +#include "SketcherPrs_Perpendicular.h" +#include "SketcherPrs_Rigid.h" +#include "SketcherPrs_HVDirection.h" +#include "SketcherPrs_Equal.h" +#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" +#include "SketcherPrs_Offset.h" + +// Macros for constraint presentation definition +#define CONSTRAINT_PRS_IMPL(NAME, CLASS) \ +AISObjectPtr SketcherPrs_Factory::NAME(ModelAPI_Feature* theConstraint, \ + SketchPlugin_Sketch* theSketcher, \ + AISObjectPtr thePrevious) \ +{ \ + std::shared_ptr anAISObj; \ + if (CLASS::IsReadyToDisplay(theConstraint, theSketcher->coordinatePlane())) { \ + if (thePrevious.get()) \ + anAISObj = thePrevious; \ + else { \ + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); \ + Handle(CLASS) aPrs = new CLASS(theConstraint, theSketcher); \ + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); \ + } \ + } \ + return anAISObj; \ +} + +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(middleConstraint, SketcherPrs_Middle); +CONSTRAINT_PRS_IMPL(mirrorConstraint, SketcherPrs_Mirror); +CONSTRAINT_PRS_IMPL(coincidentConstraint, SketcherPrs_Coincident); +CONSTRAINT_PRS_IMPL(lengthDimensionConstraint, SketcherPrs_LengthDimension); +CONSTRAINT_PRS_IMPL(angleConstraint, SketcherPrs_Angle); +CONSTRAINT_PRS_IMPL(radiusConstraint, SketcherPrs_Radius); +CONSTRAINT_PRS_IMPL(offsetObject, SketcherPrs_Offset); -AISObjectPtr SketcherPrs_Factory::coincidentConstraint(SketchPlugin_Constraint* theConstraint, - const std::shared_ptr& thePlane) +// Non-standard constraints definition +AISObjectPtr SketcherPrs_Factory::horisontalConstraint(ModelAPI_Feature* theConstraint, + SketchPlugin_Sketch* theSketcher, AISObjectPtr thePrevious) { - std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); - Handle(SketcherPrs_Coincident) aPrs = new SketcherPrs_Coincident(theConstraint, thePlane); - aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); - return aAISObj; + std::shared_ptr anAISObj; + if (SketcherPrs_HVDirection::IsReadyToDisplay(theConstraint, theSketcher->coordinatePlane())) { + if (thePrevious.get()) + anAISObj = thePrevious; + else { + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_HVDirection) aPrs = + new SketcherPrs_HVDirection(theConstraint, theSketcher, true); + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + } + } + return anAISObj; } +AISObjectPtr SketcherPrs_Factory::verticalConstraint(ModelAPI_Feature* theConstraint, + SketchPlugin_Sketch* theSketcher, AISObjectPtr thePrevious) +{ + std::shared_ptr anAISObj; + if (SketcherPrs_HVDirection::IsReadyToDisplay(theConstraint, theSketcher->coordinatePlane())) { + if (thePrevious.get()) + anAISObj = thePrevious; + else { + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_HVDirection) aPrs = + new SketcherPrs_HVDirection(theConstraint, theSketcher, false); + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + } + } + return anAISObj; +} -AISObjectPtr SketcherPrs_Factory::parallelConstraint(SketchPlugin_Constraint* theConstraint, - const std::shared_ptr& thePlane) +AISObjectPtr SketcherPrs_Factory::translateConstraint(ModelAPI_Feature* theConstraint, + SketchPlugin_Sketch* theSketcher, AISObjectPtr thePrevious) { - std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); - Handle(SketcherPrs_Parallel) aPrs = new SketcherPrs_Parallel(theConstraint, thePlane); - aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); - return aAISObj; + std::shared_ptr anAISObj; + if (SketcherPrs_Transformation::IsReadyToDisplay(theConstraint, + theSketcher->coordinatePlane())) { + if (thePrevious.get()) + anAISObj = thePrevious; + else { + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_Transformation) aPrs = + new SketcherPrs_Transformation(theConstraint, theSketcher, true); + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + } + } + return anAISObj; } -AISObjectPtr SketcherPrs_Factory::perpendicularConstraint(SketchPlugin_Constraint* theConstraint, - const std::shared_ptr& thePlane) +AISObjectPtr SketcherPrs_Factory::rotateConstraint(ModelAPI_Feature* theConstraint, + SketchPlugin_Sketch* theSketcher, AISObjectPtr thePrevious) { - std::shared_ptr aAISObj = AISObjectPtr(new GeomAPI_AISObject()); - Handle(SketcherPrs_Perpendicular) aPrs = new SketcherPrs_Perpendicular(theConstraint, thePlane); - aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); - return aAISObj; + std::shared_ptr anAISObj; + if (SketcherPrs_Transformation::IsReadyToDisplay(theConstraint, + theSketcher->coordinatePlane())) { + if (thePrevious.get()) + anAISObj = thePrevious; + else { + anAISObj = AISObjectPtr(new GeomAPI_AISObject()); + Handle(SketcherPrs_Transformation) aPrs = + new SketcherPrs_Transformation(theConstraint, theSketcher, false); + anAISObj->setImpl(new Handle(AIS_InteractiveObject)(aPrs)); + } + } + return anAISObj; }