Salome HOME
Issue #2024: Redesign of circle and arc of circle
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Arc.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        SketchPlugin_Arc.cpp
4 // Created:     26 Apr 2014
5 // Author:      Artem ZHIDKOV
6
7 #include "SketchPlugin_Arc.h"
8 #include "SketchPlugin_Sketch.h"
9 #include <SketchPlugin_ConstraintCoincidence.h>
10 #include <SketchPlugin_ConstraintTangent.h>
11
12 #include <Events_Loop.h>
13 #include <ModelAPI_Data.h>
14 #include <ModelAPI_ResultConstruction.h>
15 #include <ModelAPI_AttributeDouble.h>
16 #include <ModelAPI_AttributeRefAttr.h>
17 #include <ModelAPI_AttributeSelection.h>
18 #include <ModelAPI_AttributeString.h>
19 #include <ModelAPI_Events.h>
20 #include <ModelAPI_Validator.h>
21 #include <ModelAPI_Session.h>
22 #include <ModelAPI_Tools.h>
23
24 #include <GeomAPI_Ax2.h>
25 #include <GeomAPI_Circ2d.h>
26 #include <GeomAPI_Circ.h>
27 #include <GeomAPI_Dir2d.h>
28 #include <GeomAPI_Dir.h>
29 #include <GeomAPI_Lin2d.h>
30 #include <GeomAPI_Lin.h>
31 #include <GeomAPI_Pnt2d.h>
32 #include <GeomAPI_Vertex.h>
33 #include <GeomAPI_XY.h>
34 #include <GeomDataAPI_Point2D.h>
35 #include <GeomDataAPI_Dir.h>
36 #include <GeomAlgoAPI_PointBuilder.h>
37 #include <GeomAlgoAPI_EdgeBuilder.h>
38 #include <GeomAlgoAPI_CompoundBuilder.h>
39 // for sqrt on Linux
40 #include <math.h>
41
42 const double tolerance = 1e-7;
43 const double paramTolerance = 1.e-4;
44 const double PI = 3.141592653589793238463;
45
46
47 SketchPlugin_Arc::SketchPlugin_Arc()
48 : SketchPlugin_SketchEntity()
49 {
50   myParamBefore = 0.0;
51 }
52
53 void SketchPlugin_Arc::initDerivedClassAttributes()
54 {
55   data()->addAttribute(CENTER_ID(), GeomDataAPI_Point2D::typeId());
56   data()->addAttribute(START_ID(), GeomDataAPI_Point2D::typeId());
57   data()->addAttribute(END_ID(), GeomDataAPI_Point2D::typeId());
58
59   data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::typeId());
60   ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EXTERNAL_ID());
61
62   AttributeBooleanPtr isReversed = std::dynamic_pointer_cast<ModelAPI_AttributeBoolean>(
63     data()->addAttribute(REVERSED_ID(), ModelAPI_AttributeBoolean::typeId()));
64
65   data()->addAttribute(RADIUS_ID(), ModelAPI_AttributeDouble::typeId());
66   data()->addAttribute(ANGLE_ID(), ModelAPI_AttributeDouble::typeId());
67
68   // set after all to avoid in attributeChanged reference to not existing attributes
69   if (!isReversed->isInitialized()) {
70     isReversed->setValue(false);
71   }
72 }
73
74 void SketchPlugin_Arc::execute()
75 {
76   SketchPlugin_Sketch* aSketch = sketch();
77   if(!aSketch) {
78     return;
79   }
80
81   std::shared_ptr<GeomDataAPI_Point2D> aCenterAttr =
82       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(data()->attribute(CENTER_ID()));
83   std::shared_ptr<GeomDataAPI_Point2D> aStartAttr =
84       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(data()->attribute(START_ID()));
85   std::shared_ptr<GeomDataAPI_Point2D> anEndAttr =
86       std::dynamic_pointer_cast<GeomDataAPI_Point2D>(data()->attribute(END_ID()));
87   if(!aCenterAttr->isInitialized() || !aStartAttr->isInitialized() || !anEndAttr->isInitialized()) {
88     return;
89   }
90
91   // Make a visible point.
92   SketchPlugin_Sketch::createPoint2DResult(this, sketch(), CENTER_ID(), 0);
93
94   // Make a visible arc.
95   std::shared_ptr<GeomAPI_Pnt> aCenter(aSketch->to3D(aCenterAttr->x(), aCenterAttr->y()));
96   std::shared_ptr<GeomAPI_Pnt> aStart(aSketch->to3D(aStartAttr->x(), aStartAttr->y()));
97   std::shared_ptr<GeomAPI_Pnt> anEnd(aSketch->to3D(anEndAttr->x(), anEndAttr->y()));
98   std::shared_ptr<GeomDataAPI_Dir> aNDir = std::dynamic_pointer_cast<GeomDataAPI_Dir>(
99       aSketch->data()->attribute(SketchPlugin_Sketch::NORM_ID()));
100   std::shared_ptr<GeomAPI_Dir> aNormal(new GeomAPI_Dir(aNDir->x(), aNDir->y(), aNDir->z()));
101
102   GeomShapePtr anArcShape = boolean(REVERSED_ID())->value() ?
103       GeomAlgoAPI_EdgeBuilder::lineCircleArc(aCenter, anEnd, aStart, aNormal)
104     : GeomAlgoAPI_EdgeBuilder::lineCircleArc(aCenter, aStart, anEnd, aNormal);
105
106   std::shared_ptr<ModelAPI_ResultConstruction> aResult = document()->createConstruction(data(), 1);
107   aResult->setShape(anArcShape);
108   aResult->setIsInHistory(false);
109   setResult(aResult, 1);
110 }
111
112 void SketchPlugin_Arc::move(double theDeltaX, double theDeltaY)
113 {
114   std::shared_ptr<ModelAPI_Data> aData = data();
115   if(!aData->isValid()) {
116     return;
117   }
118
119   bool aWasBlocked = aData->blockSendAttributeUpdated(true);
120
121   std::shared_ptr<GeomDataAPI_Point2D> aCenter = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
122       attribute(CENTER_ID()));
123   if(aCenter->isInitialized()) {
124     aCenter->move(theDeltaX, theDeltaY);
125   }
126
127   std::shared_ptr<GeomDataAPI_Point2D> aStart = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
128       attribute(START_ID()));
129   if(aStart->isInitialized()) {
130     aStart->move(theDeltaX, theDeltaY);
131   }
132
133   std::shared_ptr<GeomDataAPI_Point2D> anEnd = std::dynamic_pointer_cast<GeomDataAPI_Point2D>(
134       attribute(END_ID()));
135   if(anEnd->isInitialized()) {
136     anEnd->move(theDeltaX, theDeltaY);
137   }
138
139   aData->blockSendAttributeUpdated(aWasBlocked);
140 }
141
142 bool SketchPlugin_Arc::isFixed()
143 {
144   return data()->selection(EXTERNAL_ID())->context().get() != NULL;
145 }
146
147 void SketchPlugin_Arc::attributeChanged(const std::string& theID)
148 {
149   std::shared_ptr<GeomDataAPI_Point2D> aCenterAttr = std::dynamic_pointer_cast<
150       GeomDataAPI_Point2D>(data()->attribute(CENTER_ID()));
151   std::shared_ptr<GeomDataAPI_Point2D> aStartAttr = std::dynamic_pointer_cast<
152       GeomDataAPI_Point2D>(data()->attribute(START_ID()));
153   std::shared_ptr<GeomDataAPI_Point2D> anEndAttr = std::dynamic_pointer_cast<
154       GeomDataAPI_Point2D>(data()->attribute(END_ID()));
155
156   // The second condition for unability to move external segments anywhere.
157   if(theID == EXTERNAL_ID() || isFixed()) {
158     std::shared_ptr<GeomAPI_Shape> aSelection = data()->selection(EXTERNAL_ID())->value();
159     if(!aSelection) {
160       // empty shape in selection shows that the shape is equal to context
161       ResultPtr anExtRes = selection(EXTERNAL_ID())->context();
162       if(anExtRes) {
163         aSelection = anExtRes->shape();
164       }
165     }
166     // update arguments due to the selection value
167     if(aSelection && !aSelection->isNull() && aSelection->isEdge()) {
168       std::shared_ptr<GeomAPI_Edge> anEdge( new GeomAPI_Edge(aSelection));
169       std::shared_ptr<GeomAPI_Circ> aCirc = anEdge->circle();
170       if(aCirc.get()) {
171         bool aWasBlocked = data()->blockSendAttributeUpdated(true);
172         aCenterAttr->setValue(sketch()->to2D(aCirc->center()));
173         aStartAttr->setValue(sketch()->to2D(anEdge->firstPoint()));
174         anEndAttr->setValue(sketch()->to2D(anEdge->lastPoint()));
175         data()->blockSendAttributeUpdated(aWasBlocked, false);
176
177         std::shared_ptr<GeomAPI_Circ2d> aCircle2d =
178           std::shared_ptr<GeomAPI_Circ2d>(new GeomAPI_Circ2d(aCenterAttr->pnt(),
179                                                              aStartAttr->pnt()));
180
181         double anEndParam = 0.0;
182         aCircle2d->parameter(anEndAttr->pnt(), paramTolerance, anEndParam);
183         myParamBefore = anEndParam;
184
185         double aMidParam  = anEndParam / 2.0;
186         std::shared_ptr<GeomAPI_Pnt2d> aMidPnt2d;
187         aCircle2d->D0(aMidParam, aMidPnt2d);
188         std::shared_ptr<GeomAPI_Pnt> aMinPnt = sketch()->to3D(aMidPnt2d->x(), aMidPnt2d->y());
189         double aStartParam = 0.0;
190         aCirc->parameter(anEdge->firstPoint(), paramTolerance, aStartParam);
191         aCirc->parameter(aMinPnt, paramTolerance, aMidParam);
192         aCirc->parameter(anEdge->lastPoint(), paramTolerance, anEndParam);
193         aWasBlocked = data()->blockSendAttributeUpdated(true);
194         if(aStartParam < aMidParam && aMidParam < anEndParam) {
195           setReversed(true);
196         } else {
197           setReversed(false);
198         }
199         data()->blockSendAttributeUpdated(aWasBlocked, false);
200       }
201     }
202   }
203
204   double aRadius = 0;
205   double anAngle = 0;
206   if(aCenterAttr->isInitialized() && aStartAttr->isInitialized()) {
207     aRadius = aCenterAttr->pnt()->distance(aStartAttr->pnt());
208     if(anEndAttr->isInitialized()) {
209       if(aStartAttr->pnt()->isEqual(anEndAttr->pnt())) {
210         anAngle = 360;
211       } else {
212         GeomAPI_Circ2d aCircleForArc(aCenterAttr->pnt(), aStartAttr->pnt());
213         double aStartParam, anEndParam;
214         aCircleForArc.parameter(aStartAttr->pnt(), paramTolerance, aStartParam);
215         aCircleForArc.parameter(anEndAttr->pnt(), paramTolerance, anEndParam);
216         anAngle = (anEndParam - aStartParam) / PI * 180.0;
217         if(isReversed()) anAngle = 360.0 - anAngle;
218       }
219     }
220   }
221
222   bool aWasBlocked = data()->blockSendAttributeUpdated(true);
223   real(RADIUS_ID())->setValue(aRadius);
224   real(ANGLE_ID())->setValue(anAngle);
225   data()->blockSendAttributeUpdated(aWasBlocked, false);
226 }
227
228 void SketchPlugin_Arc::setReversed(bool isReversed)
229 {
230   boolean(REVERSED_ID())->setValue(isReversed);
231 }
232
233 bool SketchPlugin_Arc::isReversed()
234 {
235   return boolean(REVERSED_ID())->value();
236 }