Salome HOME
65c6cf9cee8a0fdb5e2b5f7d5bbb245bc45a6933
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintDistance.cpp
1 // File:    SketchPlugin_ConstraintDistance.cpp
2 // Created: 23 May 2014
3 // Author:  Artem ZHIDKOV
4
5 #include "SketchPlugin_ConstraintDistance.h"
6 #include <SketchPlugin_Point.h>
7 #include <SketchPlugin_Circle.h>
8 #include <SketchPlugin_Line.h>
9
10 #include <GeomAPI_Lin2d.h>
11 #include <GeomAPI_Pnt2d.h>
12 #include <GeomDataAPI_Point2D.h>
13
14 #include <ModelAPI_AttributeDouble.h>
15 #include <ModelAPI_Data.h>
16
17 #include <Config_PropManager.h>
18
19 SketchPlugin_ConstraintDistance::SketchPlugin_ConstraintDistance()
20 {
21 }
22
23 //*************************************************************************************
24 void SketchPlugin_ConstraintDistance::initAttributes()
25 {
26   data()->addAttribute(SketchPlugin_Constraint::VALUE(), ModelAPI_AttributeDouble::type());
27   data()->addAttribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT(), GeomDataAPI_Point2D::type());
28   data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::type());
29   data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::type());
30 }
31
32 //*************************************************************************************
33 void SketchPlugin_ConstraintDistance::execute()
34 {
35   boost::shared_ptr<ModelAPI_Data> aData = data();
36   AttributeDoublePtr anAttrValue = boost::dynamic_pointer_cast<ModelAPI_AttributeDouble>(
37       aData->attribute(SketchPlugin_Constraint::VALUE()));
38
39   if(anAttrValue->isInitialized())
40     return;
41   boost::shared_ptr<GeomDataAPI_Point2D> aPointA =
42       getFeaturePoint(aData, SketchPlugin_Constraint::ENTITY_A());
43   boost::shared_ptr<GeomDataAPI_Point2D> aPointB =
44       getFeaturePoint(aData, SketchPlugin_Constraint::ENTITY_B());
45
46   double aDistance = -1.;
47   if (aPointA && aPointB) {  // both points
48     aDistance = aPointA->pnt()->distance(aPointB->pnt());
49   } else {
50     if (!aPointA && aPointB) {  //Line and point
51       boost::shared_ptr<SketchPlugin_Line> aLine =
52           getFeatureLine(aData, SketchPlugin_Constraint::ENTITY_A());
53       if (aLine) {
54         aDistance = aLine->distanceToPoint(aPointB->pnt());
55       }
56     } else if (aPointA && !aPointB) {  // Point and line
57       boost::shared_ptr<SketchPlugin_Line> aLine =
58           getFeatureLine(aData, SketchPlugin_Constraint::ENTITY_B());
59       if (aLine) {
60         aDistance = aLine->distanceToPoint(aPointA->pnt());
61       }
62     }
63   }
64   if(aDistance >= 0) {
65     anAttrValue->setValue(aDistance);
66   }
67 }
68
69 //*************************************************************************************
70 AISObjectPtr SketchPlugin_ConstraintDistance::getAISObject(AISObjectPtr thePrevious)
71 {
72   if (!sketch())
73     return thePrevious;
74
75   boost::shared_ptr<GeomAPI_Pln> aPlane = sketch()->plane();
76
77   DataPtr aData = data();
78   boost::shared_ptr<GeomDataAPI_Point2D> aPoint_A = getFeaturePoint(
79       aData, SketchPlugin_Constraint::ENTITY_A());
80   boost::shared_ptr<GeomDataAPI_Point2D> aPoint_B = getFeaturePoint(
81       aData, SketchPlugin_Constraint::ENTITY_B());
82
83   boost::shared_ptr<GeomAPI_Pnt2d> aPnt_A;
84   boost::shared_ptr<GeomAPI_Pnt2d> aPnt_B;
85
86   if (aPoint_A && aPoint_B) {
87     aPnt_A = aPoint_A->pnt();
88     aPnt_B = aPoint_B->pnt();
89   } else if (!aPoint_A && aPoint_B) {
90     boost::shared_ptr<SketchPlugin_Line> aLine = getFeatureLine(
91         aData, SketchPlugin_Constraint::ENTITY_A());
92     if (aLine) {
93       aPnt_B = aPoint_B->pnt();
94       aPnt_A = getProjectionPoint(aLine, aPnt_B);
95     }
96   } else if (aPoint_A && !aPoint_B) {
97     boost::shared_ptr<SketchPlugin_Line> aLine = getFeatureLine(
98         aData, SketchPlugin_Constraint::ENTITY_B());
99     if (aLine) {
100       aPnt_A = aPoint_A->pnt();
101       aPnt_B = getProjectionPoint(aLine, aPnt_A);
102     }
103   }
104   if (!aPnt_A || !aPnt_B)
105     return thePrevious;
106
107   boost::shared_ptr<GeomDataAPI_Point2D> aFlyOutAttr = boost::dynamic_pointer_cast<
108       GeomDataAPI_Point2D>(aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT()));
109
110   boost::shared_ptr<GeomAPI_Pnt> aPoint1 = sketch()->to3D(aPnt_A->x(), aPnt_A->y());
111   boost::shared_ptr<GeomAPI_Pnt> aPoint2 = sketch()->to3D(aPnt_B->x(), aPnt_B->y());
112   boost::shared_ptr<GeomAPI_Pnt> aFlyoutPnt = boost::shared_ptr<GeomAPI_Pnt>();
113   if(aFlyOutAttr->isInitialized()) {
114     aFlyoutPnt = sketch()->to3D(aFlyOutAttr->x(), aFlyOutAttr->y());
115   } else {
116     boost::shared_ptr<GeomAPI_Lin2d> aLine = boost::shared_ptr<GeomAPI_Lin2d>(new GeomAPI_Lin2d(aPnt_A, aPnt_B));
117     double aDist = aPoint1->distance(aPoint2)/5.;
118     boost::shared_ptr<GeomAPI_Pnt2d> aFPnt = aLine->shiftedLocation(aDist);
119     aFlyOutAttr->setValue(aFPnt);
120     aFlyoutPnt = sketch()->to3D(aFPnt->x(), aFPnt->y());
121   }
122   // value calculation
123   boost::shared_ptr<ModelAPI_AttributeDouble> aValueAttr = boost::dynamic_pointer_cast<
124       ModelAPI_AttributeDouble>(aData->attribute(SketchPlugin_Constraint::VALUE()));
125   double aValue = aValueAttr->value();
126
127   AISObjectPtr anAIS = thePrevious;
128   if (!anAIS)
129     anAIS = AISObjectPtr(new GeomAPI_AISObject);
130   anAIS->createDistance(aPoint1, aPoint2, aFlyoutPnt, aPlane, aValue);
131
132   // Set color from preferences
133   std::vector<int> aRGB = Config_PropManager::color("Visualization", "distance_color",
134                                                     DISTANCE_COLOR);
135   anAIS->setColor(aRGB[0], aRGB[1], aRGB[2]);
136   return anAIS;
137 }
138
139 //*************************************************************************************
140 void SketchPlugin_ConstraintDistance::move(double theDeltaX, double theDeltaY)
141 {
142   boost::shared_ptr<ModelAPI_Data> aData = data();
143   if (!aData->isValid())
144     return;
145
146   boost::shared_ptr<GeomDataAPI_Point2D> aPoint1 = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(
147       aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT()));
148   aPoint1->setValue(aPoint1->x() + theDeltaX, aPoint1->y() + theDeltaY);
149 }
150
151 //*************************************************************************************
152 boost::shared_ptr<GeomDataAPI_Point2D> getFeaturePoint(DataPtr theData,
153                                                        const std::string& theAttribute)
154 {
155   boost::shared_ptr<GeomDataAPI_Point2D> aPointAttr;
156
157   if (!theData)
158     return aPointAttr;
159
160   FeaturePtr aFeature;
161   boost::shared_ptr<ModelAPI_AttributeRefAttr> anAttr = boost::dynamic_pointer_cast<
162       ModelAPI_AttributeRefAttr>(theData->attribute(theAttribute));
163   if (anAttr)
164     aFeature = ModelAPI_Feature::feature(anAttr->object());
165
166   if (aFeature && aFeature->getKind() == SketchPlugin_Point::ID())
167     aPointAttr = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(
168         aFeature->data()->attribute(SketchPlugin_Point::COORD_ID()));
169   else if (aFeature && aFeature->getKind() == SketchPlugin_Circle::ID())
170     aPointAttr = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(
171         aFeature->data()->attribute(SketchPlugin_Circle::CENTER_ID()));
172   else if (anAttr->attr()) {
173     aPointAttr = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(anAttr->attr());
174   }
175   return aPointAttr;
176 }
177
178 //*************************************************************************************
179 boost::shared_ptr<SketchPlugin_Line> getFeatureLine(DataPtr theData,
180                                                     const std::string& theAttribute)
181 {
182   boost::shared_ptr<SketchPlugin_Line> aLine;
183   if (!theData)
184     return aLine;
185
186   boost::shared_ptr<ModelAPI_AttributeRefAttr> anAttr = boost::dynamic_pointer_cast<
187       ModelAPI_AttributeRefAttr>(theData->attribute(theAttribute));
188   if (anAttr) {
189     FeaturePtr aFeature = ModelAPI_Feature::feature(anAttr->object());
190     if (aFeature && aFeature->getKind() == SketchPlugin_Line::ID()) {
191       aLine = boost::dynamic_pointer_cast<SketchPlugin_Line>(aFeature);
192     }
193   }
194   return aLine;
195 }
196
197 //*************************************************************************************
198 boost::shared_ptr<GeomAPI_Pnt2d> getProjectionPoint(
199     const boost::shared_ptr<SketchPlugin_Line>& theLine,
200     const boost::shared_ptr<GeomAPI_Pnt2d>& thePoint)
201 {
202   boost::shared_ptr<ModelAPI_Data> aData = theLine->data();
203   boost::shared_ptr<GeomDataAPI_Point2D> aPoint1 = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(
204       aData->attribute(SketchPlugin_Line::START_ID()));
205   boost::shared_ptr<GeomDataAPI_Point2D> aPoint2 = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(
206       aData->attribute(SketchPlugin_Line::END_ID()));
207
208   GeomAPI_Lin2d aLin2d(aPoint1->x(), aPoint1->y(), aPoint2->x(), aPoint2->y());
209   return aLin2d.project(thePoint);
210 }