1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include "SketchPlugin_ConstraintDistance.h"
22 #include <SketchPlugin_Point.h>
23 #include <SketchPlugin_Circle.h>
24 #include <SketchPlugin_Line.h>
26 #include <SketcherPrs_Tools.h>
27 #include <SketcherPrs_Factory.h>
29 #include <GeomAPI_Dir2d.h>
30 #include <GeomAPI_Lin2d.h>
31 #include <GeomAPI_Pnt2d.h>
32 #include <GeomAPI_XY.h>
33 #include <GeomDataAPI_Point2D.h>
35 #include <ModelAPI_AttributeDouble.h>
36 #include <ModelAPI_AttributeInteger.h>
37 #include <ModelAPI_Data.h>
38 #include <ModelAPI_Session.h>
39 #include <ModelAPI_Validator.h>
41 #include <Config_PropManager.h>
45 const double tolerance = 1e-7;
48 SketchPlugin_ConstraintDistance::SketchPlugin_ConstraintDistance()
50 myFlyoutUpdate = false;
53 //*************************************************************************************
54 void SketchPlugin_ConstraintDistance::initAttributes()
56 data()->addAttribute(SketchPlugin_Constraint::VALUE(), ModelAPI_AttributeDouble::typeId());
57 data()->addAttribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT(), GeomDataAPI_Point2D::typeId());
58 data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
59 data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
60 data()->addAttribute(SIGNED(), ModelAPI_AttributeBoolean::typeId());
62 data()->addAttribute(SketchPlugin_ConstraintDistance::LOCATION_TYPE_ID(),
63 ModelAPI_AttributeInteger::typeId());
64 ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), LOCATION_TYPE_ID());
67 void SketchPlugin_ConstraintDistance::colorConfigInfo(std::string& theSection, std::string& theName,
68 std::string& theDefault)
70 theSection = "Visualization";
71 theName = "sketch_dimension_color";
72 theDefault = SKETCH_DIMENSION_COLOR;
75 //*************************************************************************************
76 void SketchPlugin_ConstraintDistance::execute()
78 std::shared_ptr<ModelAPI_Data> aData = data();
79 AttributeDoublePtr anAttrValue = std::dynamic_pointer_cast<ModelAPI_AttributeDouble>(
80 aData->attribute(SketchPlugin_Constraint::VALUE()));
82 if(anAttrValue->isInitialized())
85 double aDistance = calculateCurrentDistance();
87 anAttrValue->setValue(aDistance);
90 //*************************************************************************************
91 AISObjectPtr SketchPlugin_ConstraintDistance::getAISObject(AISObjectPtr thePrevious)
96 AISObjectPtr anAIS = SketcherPrs_Factory::lengthDimensionConstraint(this,
97 sketch()->coordinatePlane(),
102 double SketchPlugin_ConstraintDistance::calculateCurrentDistance()
104 double aDistance = -1.;
106 std::shared_ptr<ModelAPI_Data> aData = data();
107 std::shared_ptr<GeomAPI_Ax3> aPlane = SketchPlugin_Sketch::plane(sketch());
108 std::shared_ptr<GeomDataAPI_Point2D> aPointA =
109 SketcherPrs_Tools::getFeaturePoint(aData, SketchPlugin_Constraint::ENTITY_A(), aPlane);
110 std::shared_ptr<GeomDataAPI_Point2D> aPointB =
111 SketcherPrs_Tools::getFeaturePoint(aData, SketchPlugin_Constraint::ENTITY_B(), aPlane);
113 if (aPointA.get() && aPointB.get()) { // both points
114 aDistance = aPointA->pnt()->distance(aPointB->pnt());
116 FeaturePtr aLineFeature;
117 std::shared_ptr<SketchPlugin_Line> aLine;
118 if (!aPointA.get() && aPointB.get()) { //Line and point
119 aLineFeature = SketcherPrs_Tools::getFeatureLine(aData, SketchPlugin_Constraint::ENTITY_A());
120 aLine = std::dynamic_pointer_cast<SketchPlugin_Line>(aLineFeature);
122 aDistance = aLine->distanceToPoint(aPointB->pnt());
124 } else if (aPointA.get() && !aPointB.get()) { // Point and line
125 aLineFeature = SketcherPrs_Tools::getFeatureLine(aData, SketchPlugin_Constraint::ENTITY_B());
126 aLine = std::dynamic_pointer_cast<SketchPlugin_Line>(aLineFeature);
128 aDistance = aLine->distanceToPoint(aPointA->pnt());
135 bool SketchPlugin_ConstraintDistance::areAttributesInitialized()
137 std::shared_ptr<ModelAPI_Data> aData = data();
138 std::shared_ptr<GeomAPI_Ax3> aPlane = SketchPlugin_Sketch::plane(sketch());
139 std::shared_ptr<GeomDataAPI_Point2D> aPointA =
140 SketcherPrs_Tools::getFeaturePoint(aData, SketchPlugin_Constraint::ENTITY_A(), aPlane);
141 std::shared_ptr<GeomDataAPI_Point2D> aPointB =
142 SketcherPrs_Tools::getFeaturePoint(aData, SketchPlugin_Constraint::ENTITY_B(), aPlane);
144 if (!aPointA && !aPointB)
146 else if (aPointA || aPointB) {
149 aLine = SketcherPrs_Tools::getFeatureLine(aData, SketchPlugin_Constraint::ENTITY_A());
151 aLine = SketcherPrs_Tools::getFeatureLine(aData, SketchPlugin_Constraint::ENTITY_B());
152 else // both points are initialized
155 if (!aLine || aLine->getKind() != SketchPlugin_Line::ID())
161 void SketchPlugin_ConstraintDistance::attributeChanged(const std::string& theID)
163 if (theID == SketchPlugin_Constraint::ENTITY_A() ||
164 theID == SketchPlugin_Constraint::ENTITY_B())
166 std::shared_ptr<ModelAPI_AttributeDouble> aValueAttr = std::dynamic_pointer_cast<
167 ModelAPI_AttributeDouble>(data()->attribute(SketchPlugin_Constraint::VALUE()));
168 if (!aValueAttr->isInitialized()) {
169 // only if it is not initialized, try to compute the current value
170 double aDistance = calculateCurrentDistance();
171 if (aDistance > 0) { // set as value the length of updated references
172 aValueAttr->setValue(aDistance);
175 } else if (theID == SketchPlugin_Constraint::FLYOUT_VALUE_PNT() && !myFlyoutUpdate) {
176 // Recalculate flyout point in local coordinates of the distance constraint:
177 // the X coordinate is a length of projection of the flyout point on the
178 // line binding two distanced points
179 // or a line of projection of the distanced point onto the distanced segment
180 // the Y coordinate is a distance from the flyout point to the line
181 std::shared_ptr<GeomDataAPI_Point2D> aFlyoutAttr =
182 std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
183 attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT()));
184 std::shared_ptr<GeomAPI_Pnt2d> aFlyoutPnt = aFlyoutAttr->pnt();
186 std::shared_ptr<GeomAPI_Ax3> aPlane = SketchPlugin_Sketch::plane(sketch());
187 std::shared_ptr<GeomDataAPI_Point2D> aPointA = SketcherPrs_Tools::getFeaturePoint(
188 data(), SketchPlugin_Constraint::ENTITY_A(), aPlane);
189 std::shared_ptr<GeomDataAPI_Point2D> aPointB = SketcherPrs_Tools::getFeaturePoint(
190 data(), SketchPlugin_Constraint::ENTITY_B(), aPlane);
192 std::shared_ptr<GeomAPI_XY> aStartPnt;
193 std::shared_ptr<GeomAPI_XY> aEndPnt;
194 if (aPointA && aPointB) {
195 aStartPnt = aPointA->pnt()->xy();
196 aEndPnt = aPointB->pnt()->xy();
197 } else if (aPointA) {
198 FeaturePtr aLine = SketcherPrs_Tools::getFeatureLine(data(),
199 SketchPlugin_Constraint::ENTITY_B());
202 std::shared_ptr<GeomAPI_Pnt2d> aPoint = aPointA->pnt();
203 aStartPnt = aPoint->xy();
204 aEndPnt = SketcherPrs_Tools::getProjectionPoint(aLine, aPoint)->xy();
205 } else if (aPointB) {
206 FeaturePtr aLine = SketcherPrs_Tools::getFeatureLine(data(),
207 SketchPlugin_Constraint::ENTITY_A());
210 std::shared_ptr<GeomAPI_Pnt2d> aPoint = aPointB->pnt();
211 aStartPnt = SketcherPrs_Tools::getProjectionPoint(aLine, aPoint)->xy();
212 aEndPnt = aPoint->xy();
216 if (aEndPnt->distance(aStartPnt) < tolerance)
219 myFlyoutUpdate = true;
220 std::shared_ptr<GeomAPI_Dir2d> aLineDir(new GeomAPI_Dir2d(aEndPnt->decreased(aStartPnt)));
221 std::shared_ptr<GeomAPI_XY> aFlyoutDir = aFlyoutPnt->xy()->decreased(aStartPnt);
223 double X = aFlyoutDir->dot(aLineDir->xy());
224 double Y = -aFlyoutDir->cross(aLineDir->xy());
225 aFlyoutAttr->setValue(X, Y);
226 myFlyoutUpdate = false;