Salome HOME
refs #80 - Sketch base GUI: create/draw point, circle and arc
[modules/shaper.git] / src / PartSet / PartSet_FeatureLinePrs.cpp
1 // File:        PartSet_FeaturePrs.h
2 // Created:     04 Jun 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #include <PartSet_FeatureLinePrs.h>
6 #include <PartSet_Tools.h>
7
8 #include <SketchPlugin_Feature.h>
9 #include <SketchPlugin_Sketch.h>
10 #include <SketchPlugin_ConstraintCoincidence.h>
11 #include <SketchPlugin_Line.h>
12 #include <SketchPlugin_Constraint.h>
13
14 #include <GeomDataAPI_Point2D.h>
15 #include <GeomAPI_Lin2d.h>
16 #include <GeomAPI_Pnt2d.h>
17
18 #include <ModelAPI_Data.h>
19 #include <ModelAPI_Document.h>
20 #include <ModelAPI_AttributeRefAttr.h>
21 #include <ModelAPI_AttributeRefList.h>
22
23 #include <Precision.hxx>
24 #include <V3d_View.hxx>
25
26 using namespace std;
27
28 PartSet_FeatureLinePrs::PartSet_FeatureLinePrs(FeaturePtr theSketch)
29 : PartSet_FeaturePrs(theSketch)
30 {
31 }
32
33 std::string PartSet_FeatureLinePrs::getKind()
34 {
35   return SKETCH_LINE_KIND;
36 }
37
38 PartSet_SelectionMode PartSet_FeatureLinePrs::setPoint(double theX, double theY,
39                                                        const PartSet_SelectionMode& theMode)
40 {
41   PartSet_SelectionMode aMode = theMode;
42   switch (theMode)
43   {
44     case SM_FirstPoint: {
45       PartSet_Tools::setFeaturePoint(feature(), theX, theY, LINE_ATTR_START);
46       PartSet_Tools::setFeaturePoint(feature(), theX, theY, LINE_ATTR_END);
47       aMode = SM_SecondPoint;
48     }
49     break;
50     case SM_SecondPoint: {
51       PartSet_Tools::setFeaturePoint(feature(), theX, theY, LINE_ATTR_END);
52       aMode = SM_DonePoint;
53    }
54     break;
55     default:
56       break;
57   }
58   return aMode;
59 }
60
61 PartSet_SelectionMode PartSet_FeatureLinePrs::setFeature(FeaturePtr theFeature, const PartSet_SelectionMode& theMode)
62 {
63   PartSet_SelectionMode aMode = theMode;
64   if (feature() && theFeature && theMode == SM_FirstPoint)
65   {
66     // use the last point of the previous feature as the first of the new one
67     boost::shared_ptr<ModelAPI_Data> aData = theFeature->data();
68     boost::shared_ptr<GeomDataAPI_Point2D> anInitPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>
69                                                                   (aData->attribute(LINE_ATTR_END));
70     PartSet_Tools::setFeaturePoint(feature(), anInitPoint->x(), anInitPoint->y(), LINE_ATTR_START);
71     PartSet_Tools::setFeaturePoint(feature(), anInitPoint->x(), anInitPoint->y(), LINE_ATTR_END);
72
73     aData = feature()->data();
74     boost::shared_ptr<GeomDataAPI_Point2D> aPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>
75                                                                  (aData->attribute(LINE_ATTR_START));
76     PartSet_Tools::createConstraint(sketch(), anInitPoint, aPoint);
77     aMode = SM_SecondPoint;
78   }
79   return aMode;
80 }
81
82 std::string PartSet_FeatureLinePrs::getAttribute(const PartSet_SelectionMode& theMode) const
83 {
84   std::string aAttribute;
85   switch (theMode)
86   {
87     case SM_FirstPoint:
88       aAttribute = LINE_ATTR_START;
89     break;
90     case SM_SecondPoint:
91       aAttribute = LINE_ATTR_END;
92     break;
93     default:
94     break;
95   }
96   return aAttribute;
97 }
98
99 PartSet_SelectionMode PartSet_FeatureLinePrs::getNextMode(const std::string& theAttribute) const
100 {
101   PartSet_SelectionMode aMode;
102
103   if (theAttribute == LINE_ATTR_START)
104     aMode = SM_SecondPoint;
105   else if (theAttribute == LINE_ATTR_END)
106     aMode = SM_DonePoint;
107   return aMode;
108 }
109
110 void PartSet_FeatureLinePrs::projectPointOnLine(FeaturePtr theFeature,
111                                                 const PartSet_SelectionMode& theMode,
112                                                 const gp_Pnt& thePoint, Handle(V3d_View) theView,
113                                                 double& theX, double& theY)
114 {
115   if (theFeature && theFeature->getKind() == getKind()) {
116     double X0, X1;
117     double Y0, Y1;
118
119     PartSet_Tools::convertTo2D(thePoint, sketch(), theView, X1, Y1);
120     boost::shared_ptr<GeomAPI_Pnt2d> aPoint = boost::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(X1, Y1));
121     boost::shared_ptr<GeomAPI_Lin2d> aFeatureLin = PartSet_FeatureLinePrs::createLin2d(theFeature);
122
123     switch (theMode) {
124       case SM_FirstPoint: {
125         boost::shared_ptr<GeomAPI_Pnt2d> aResult = aFeatureLin->project(aPoint);
126         theX = aResult->x();
127         theY = aResult->y();
128       }
129       break;
130       case SM_SecondPoint: {
131         getLinePoint(feature(), LINE_ATTR_START, X0, Y0);
132         boost::shared_ptr<GeomAPI_Lin2d> aCurrentLin = boost::shared_ptr<GeomAPI_Lin2d>
133                                                            (new GeomAPI_Lin2d(X0, Y0, X1, Y1));
134         boost::shared_ptr<GeomAPI_Pnt2d> aResult = aFeatureLin->intersect(aCurrentLin);
135         boost::shared_ptr<GeomAPI_Pnt2d> aPoint0 = boost::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(X0, Y0));
136         if (aResult->distance(aPoint0) < Precision::Confusion()) { // the start point is nearest to the line
137           // if the first point of a line belongs to the given line
138           // we need to project the second point on the same line
139           aResult = aFeatureLin->project(aPoint);
140         }
141         theX = aResult->x();
142         theY = aResult->y();
143       }
144       break;
145       default:
146       break;
147     }
148   }
149 }
150
151 double PartSet_FeatureLinePrs::distanceToPoint(FeaturePtr theFeature,
152                                       double theX, double theY)
153 {
154   double aDelta = 0;
155   if (!theFeature || theFeature->getKind() != getKind())
156     return aDelta;
157
158   boost::shared_ptr<ModelAPI_Data> aData = theFeature->data();
159   boost::shared_ptr<GeomDataAPI_Point2D> aPoint1 =
160         boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(LINE_ATTR_START));
161   boost::shared_ptr<GeomDataAPI_Point2D> aPoint2 =
162         boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(LINE_ATTR_END));
163
164   GeomAPI_Lin2d aLin2d(aPoint1->x(), aPoint1->y(), aPoint2->x(), aPoint2->y());
165   boost::shared_ptr<GeomAPI_Pnt2d> aPoint = boost::shared_ptr<GeomAPI_Pnt2d>(new GeomAPI_Pnt2d(theX, theY));
166
167   if (false/*projection*/) { // TODO: if it has not been necessary, remove this block
168     boost::shared_ptr<GeomAPI_Pnt2d> aResult = aLin2d.project(aPoint);
169     aDelta = aResult->distance(aPoint);
170   }
171   else { // distance
172     aDelta = aLin2d.distance(aPoint);
173   }
174
175   return aDelta;
176 }
177
178 boost::shared_ptr<GeomDataAPI_Point2D> PartSet_FeatureLinePrs::findPoint(FeaturePtr theFeature,
179                                                                          double theX, double theY)
180 {
181   boost::shared_ptr<GeomDataAPI_Point2D> aPoint2D;
182   if (!theFeature || theFeature->getKind() != getKind())
183     return aPoint2D;
184
185   boost::shared_ptr<ModelAPI_Data> aData = theFeature->data();
186   boost::shared_ptr<GeomDataAPI_Point2D> aPoint =
187         boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(LINE_ATTR_START));
188   if (fabs(aPoint->x() - theX) < Precision::Confusion() &&
189       fabs(aPoint->y() - theY) < Precision::Confusion())
190     aPoint2D = aPoint;
191   else {
192     aPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(LINE_ATTR_END));
193     if (fabs(aPoint->x() - theX) < Precision::Confusion() &&
194         fabs(aPoint->y() - theY) < Precision::Confusion())
195       aPoint2D = aPoint;
196   }
197   return aPoint2D;
198 }
199
200 boost::shared_ptr<GeomAPI_Lin2d> PartSet_FeatureLinePrs::createLin2d(FeaturePtr theFeature)
201 {
202   boost::shared_ptr<GeomAPI_Lin2d> aFeatureLin;
203   if (!theFeature || theFeature->getKind() != PartSet_FeatureLinePrs::getKind())
204     return aFeatureLin;
205
206   double aStartX, aStartY, anEndX, anEndY;
207   getLinePoint(theFeature, LINE_ATTR_START, aStartX, aStartY);
208   getLinePoint(theFeature, LINE_ATTR_END, anEndX, anEndY);
209
210   aFeatureLin = boost::shared_ptr<GeomAPI_Lin2d>
211                                         (new GeomAPI_Lin2d(aStartX, aStartY, anEndX, anEndY));
212   return aFeatureLin;
213 }
214
215 boost::shared_ptr<GeomDataAPI_Point2D> PartSet_FeatureLinePrs::featurePoint
216                                                      (const PartSet_SelectionMode& theMode)
217 {
218   std::string aPointArg;
219   switch (theMode)
220   {
221     case SM_FirstPoint:
222       aPointArg = LINE_ATTR_START;
223       break;
224     case SM_SecondPoint:
225       aPointArg = LINE_ATTR_END;
226       break;
227     default:
228       break;
229   }
230   boost::shared_ptr<ModelAPI_Data> aData = feature()->data();
231   boost::shared_ptr<GeomDataAPI_Point2D> aPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>
232                                                               (aData->attribute(aPointArg));
233   return aPoint;
234 }
235
236 void PartSet_FeatureLinePrs::getLinePoint(FeaturePtr theFeature, const std::string& theAttribute,
237                                           double& theX, double& theY)
238 {
239   if (!theFeature || theFeature->getKind() != PartSet_FeatureLinePrs::getKind())
240     return;
241   boost::shared_ptr<ModelAPI_Data> aData = theFeature->data();
242   boost::shared_ptr<GeomDataAPI_Point2D> aPoint =
243         boost::dynamic_pointer_cast<GeomDataAPI_Point2D>(aData->attribute(theAttribute));
244   theX = aPoint->x();
245   theY = aPoint->y();
246 }