1 // Copyright (C) 2017-2023 CEA, EDF
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 // File: SketchPlugin_ConstraintDistanceAlongDir.cpp
21 // Created: 24 October 2017
22 // Author: Artem ZHIDKOV
24 #include <SketchPlugin_ConstraintDistanceAlongDir.h>
25 #include <SketchPlugin_Tools.h>
27 #include <SketcherPrs_Tools.h>
28 #include <SketcherPrs_Factory.h>
30 #include <GeomAPI_Dir2d.h>
31 #include <GeomAPI_XY.h>
32 #include <GeomDataAPI_Point2D.h>
34 #include <ModelAPI_AttributeDouble.h>
35 #include <ModelAPI_AttributeInteger.h>
36 #include <ModelAPI_Session.h>
37 #include <ModelAPI_Validator.h>
41 const double tolerance = 1e-7;
44 SketchPlugin_ConstraintDistanceAlongDir::SketchPlugin_ConstraintDistanceAlongDir()
45 : SketchPlugin_ConstraintDistance(),
51 //*************************************************************************************
52 void SketchPlugin_ConstraintDistanceAlongDir::initAttributes()
54 data()->addAttribute(SketchPlugin_Constraint::VALUE(), ModelAPI_AttributeDouble::typeId());
55 data()->addAttribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT(), GeomDataAPI_Point2D::typeId());
56 data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
57 data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
59 data()->addAttribute(LOCATION_TYPE_ID(), ModelAPI_AttributeInteger::typeId());
60 ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), LOCATION_TYPE_ID());
62 data()->addAttribute(DISTANCE_VALUE_ID(), ModelAPI_AttributeDouble::typeId());
64 data()->addAttribute(NEGATIVE_TYPE_ID(), ModelAPI_AttributeBoolean::typeId());
65 boolean(NEGATIVE_TYPE_ID())->setValue(false);
68 //*************************************************************************************
69 void SketchPlugin_ConstraintDistanceAlongDir::execute()
71 AttributeDoublePtr anAttrValue = real(SketchPlugin_Constraint::VALUE());
72 if (anAttrValue->isInitialized() || !areAttributesInitialized())
75 double aDistance = calculateCurrentDistance();
76 anAttrValue->setValue(aDistance);
79 //*************************************************************************************
80 AISObjectPtr SketchPlugin_ConstraintDistanceAlongDir::getAISObject(AISObjectPtr thePrevious)
85 AISObjectPtr anAIS = SketcherPrs_Factory::lengthDimensionConstraint(this,
88 if (anAIS.get() && !thePrevious.get())
89 SketchPlugin_Tools::setDimensionColor(anAIS);
93 void SketchPlugin_ConstraintDistanceAlongDir::attributeChanged(const std::string& theID)
95 if (theID == SketchPlugin_Constraint::ENTITY_A() ||
96 theID == SketchPlugin_Constraint::ENTITY_B())
98 AttributeDoublePtr aValueAttr = real(SketchPlugin_Constraint::VALUE());
99 if (!aValueAttr->isInitialized() && areAttributesInitialized()) {
100 // only if it is not initialized, try to compute the current value
101 double aDistance = calculateCurrentDistance();
102 aValueAttr->setValue(aDistance);
104 } else if (theID == SketchPlugin_Constraint::VALUE() && !myValueUpdate) {
105 myValueUpdate = true;
106 // value of the distance shown to the user should be always positive
107 AttributeDoublePtr aDistanceValueAttr = real(DISTANCE_VALUE_ID());
108 double aConstraintValue = real(SketchPlugin_Constraint::VALUE())->value();
109 aDistanceValueAttr->setValue(fabs(aConstraintValue));
110 myValueUpdate = false;
111 } else if (theID == DISTANCE_VALUE_ID() && !myValueUpdate){
112 myValueUpdate = true;
113 // update value of the distance according to the value set by user
114 double aDistanceValue = real(DISTANCE_VALUE_ID())->value();
115 AttributeDoublePtr aConstraintValueAttr = real(SketchPlugin_Constraint::VALUE());
116 if (aConstraintValueAttr->value() < 0.0)
117 aDistanceValue = -aDistanceValue;
118 aConstraintValueAttr->setValue(aDistanceValue);
119 myValueUpdate = false;
120 } else if (theID == SketchPlugin_Constraint::FLYOUT_VALUE_PNT() && !myFlyoutUpdate) {
121 // Recalculate flyout point in local coordinates of the distance constraint:
122 // the X coordinate is a length of projection of the flyout point on the
123 // line binding two distanced points
124 // or a line of projection of the distanced point onto the distanced segment
125 // the Y coordinate is a distance from the flyout point to the line
126 std::shared_ptr<GeomDataAPI_Point2D> aFlyoutAttr =
127 std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
128 attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT()));
129 std::shared_ptr<GeomAPI_Pnt2d> aFlyoutPnt = aFlyoutAttr->pnt();
131 std::shared_ptr<GeomAPI_Ax3> aPlane = SketchPlugin_Sketch::plane(sketch());
132 std::shared_ptr<GeomDataAPI_Point2D> aPointA = SketcherPrs_Tools::getFeaturePoint(
133 data(), SketchPlugin_Constraint::ENTITY_A(), aPlane);
134 std::shared_ptr<GeomDataAPI_Point2D> aPointB = SketcherPrs_Tools::getFeaturePoint(
135 data(), SketchPlugin_Constraint::ENTITY_B(), aPlane);
137 std::shared_ptr<GeomAPI_XY> aStartPnt = aPointA->pnt()->xy();
138 std::shared_ptr<GeomAPI_XY> aEndPnt = aPointB->pnt()->xy();
140 if (aEndPnt->distance(aStartPnt) < tolerance)
143 std::shared_ptr<GeomAPI_XY> aFlyoutDir = aFlyoutPnt->xy()->decreased(aEndPnt);
144 myFlyoutUpdate = true;
146 myFlyoutUpdate = false;