Salome HOME
Issue 1299 angle constraint: support of additional and complementary angles: value...
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Angle.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_Angle.cpp
4 // Created:     20 August 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "SketcherPrs_Angle.h"
8 #include "SketcherPrs_Tools.h"
9 #include "SketcherPrs_DimensionStyleListener.h"
10
11 #include <SketchPlugin_ConstraintAngle.h>
12 #include <SketchPlugin_Constraint.h>
13
14 #include <GeomAPI_Edge.h>
15 #include <GeomAPI_Lin.h>
16 #include <GeomDataAPI_Point2D.h>
17
18 #include <ModelAPI_AttributeRefAttr.h>
19 #include <ModelAPI_AttributeDouble.h>
20 #include <ModelAPI_AttributeInteger.h>
21
22 #include <TopExp.hxx>
23 #include <BRep_Tool.hxx>
24
25 #include <Events_Error.h>
26
27 #define PI 3.1415926535897932
28
29 IMPLEMENT_STANDARD_HANDLE(SketcherPrs_Angle, AIS_AngleDimension);
30 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Angle, AIS_AngleDimension);
31
32 SketcherPrs_Angle::SketcherPrs_Angle(ModelAPI_Feature* theConstraint, 
33                                      const std::shared_ptr<GeomAPI_Ax3>& thePlane)
34 : AIS_AngleDimension(gp_Pnt(0,0,0), gp_Pnt(1,0,0), gp_Pnt(0,1,0)), myConstraint(theConstraint), myPlane(thePlane)
35 {
36   myAspect = new Prs3d_DimensionAspect();
37   myAspect->MakeArrows3d(false);
38   myAspect->MakeText3d(false);
39   myAspect->MakeTextShaded(false);
40   myAspect->MakeUnitsDisplayed(false);
41   myAspect->TextAspect()->SetHeight(SketcherPrs_Tools::getDefaultTextHeight());
42   myAspect->ArrowAspect()->SetLength(SketcherPrs_Tools::getArrowSize());
43   
44   SetDimensionAspect(myAspect);
45   SetSelToleranceForText2d(SketcherPrs_Tools::getDefaultTextHeight());
46
47   myStyleListener = new SketcherPrs_DimensionStyleListener();
48 }
49
50 SketcherPrs_Angle::~SketcherPrs_Angle()
51 {
52   delete myStyleListener;
53 }
54
55 bool SketcherPrs_Angle::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
56                                          const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
57 {
58   bool aReadyToDisplay = false;
59
60   DataPtr aData = theConstraint->data();
61
62   // Flyout point
63   std::shared_ptr<GeomDataAPI_Point2D> aFlyoutAttr = 
64     std::dynamic_pointer_cast<GeomDataAPI_Point2D>
65     (aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT()));
66   if (!aFlyoutAttr->isInitialized())
67     return aReadyToDisplay; // can not create a good presentation
68
69   AttributeRefAttrPtr anAttr1 = aData->refattr(SketchPlugin_Constraint::ENTITY_A());
70   if (!anAttr1->isInitialized())
71     return aReadyToDisplay;
72
73   AttributeRefAttrPtr anAttr2 = aData->refattr(SketchPlugin_Constraint::ENTITY_B());
74   if (!anAttr2->isInitialized())
75     return aReadyToDisplay;
76
77   // Get angle edges
78   ObjectPtr aObj1 = anAttr1->object();
79   ObjectPtr aObj2 = anAttr2->object();
80
81   std::shared_ptr<GeomAPI_Shape> aShape1 = SketcherPrs_Tools::getShape(aObj1);
82   std::shared_ptr<GeomAPI_Shape> aShape2 = SketcherPrs_Tools::getShape(aObj2);
83
84   aReadyToDisplay = aShape1.get() && aShape2.get();
85   return aReadyToDisplay;
86 }
87
88 void SketcherPrs_Angle::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
89                                 const Handle(Prs3d_Presentation)& thePresentation, 
90                                 const Standard_Integer theMode)
91 {
92   DataPtr aData = myConstraint->data();
93
94   if (!IsReadyToDisplay(myConstraint, myPlane)) {
95     Events_Error::throwException("An empty AIS presentation: SketcherPrs_Angle");
96     return; // can not create a good presentation
97   }
98
99   std::shared_ptr<ModelAPI_AttributeInteger> aTypeAttr = std::dynamic_pointer_cast<
100       ModelAPI_AttributeInteger>(aData->attribute(SketchPlugin_ConstraintAngle::TYPE_ID()));
101   SketcherPrs_Tools::AngleType anAngleType = (SketcherPrs_Tools::AngleType)(aTypeAttr->value());
102
103   // Flyout point
104   std::shared_ptr<GeomDataAPI_Point2D> aFlyoutAttr = 
105     std::dynamic_pointer_cast<GeomDataAPI_Point2D>
106     (aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT()));
107   std::shared_ptr<GeomAPI_Pnt> aFlyoutPnt = myPlane->to3D(aFlyoutAttr->x(), aFlyoutAttr->y());
108
109   AttributeRefAttrPtr anAttr1 = aData->refattr(SketchPlugin_Constraint::ENTITY_A());
110   AttributeRefAttrPtr anAttr2 = aData->refattr(SketchPlugin_Constraint::ENTITY_B());
111
112   // Get angle edges
113   ObjectPtr aObj1 = anAttr1->object();
114   ObjectPtr aObj2 = anAttr2->object();
115
116   std::shared_ptr<GeomAPI_Shape> aShape1 = SketcherPrs_Tools::getShape(aObj1);
117   std::shared_ptr<GeomAPI_Shape> aShape2 = SketcherPrs_Tools::getShape(aObj2);
118
119   TopoDS_Shape aTEdge1 = aShape1->impl<TopoDS_Shape>();
120   TopoDS_Shape aTEdge2 = aShape2->impl<TopoDS_Shape>();
121
122   TopoDS_Edge aEdge1 = TopoDS::Edge(aTEdge1);
123   TopoDS_Edge aEdge2 = TopoDS::Edge(aTEdge2);
124
125   switch (anAngleType) {
126     case SketcherPrs_Tools::ANGLE_DIRECT: {
127       SetGeometryOrientedAngle(true, false);
128       SetArrowVisible(Standard_False, Standard_True);
129       SetMeasuredGeometry(aEdge1, aEdge2);
130     }
131     break;
132     case SketcherPrs_Tools::ANGLE_COMPLEMENTARY: {
133       // to calculate center, first and end points
134       SetGeometryOrientedAngle(false, false);
135       SetMeasuredGeometry(aEdge1, aEdge2);
136       gp_Pnt aCenterPnt = CenterPoint();
137       gp_Pnt aFirstPnt = FirstPoint();
138       gp_Pnt aSecondPnt = SecondPoint();
139       double anEdge2Length = aCenterPnt.Distance(aSecondPnt);
140       aSecondPnt = aCenterPnt.Translated (gp_Vec(aCenterPnt, aSecondPnt).Normalized() * (-anEdge2Length));
141       SetArrowVisible(Standard_True, Standard_False);
142       SetMeasuredGeometry(aFirstPnt, aCenterPnt, aSecondPnt);
143     }
144     break;
145     case SketcherPrs_Tools::ANGLE_BACKWARD: {
146       SetGeometryOrientedAngle(true, true);
147       SetArrowVisible(Standard_False, Standard_True);
148       SetMeasuredGeometry(aEdge1, aEdge2);
149     }
150     break;
151     default:
152       break;
153   }
154
155
156   const gp_Pnt& aCenter = CenterPoint();
157   const gp_Pnt& aFirst = FirstPoint();
158   const gp_Pnt& aSecond = SecondPoint();
159
160   gp_Dir aBisector((aFirst.XYZ() + aSecond.XYZ()) * 0.5 - aCenter.XYZ());
161
162   gp_Pnt aFlyPnt(aFlyoutPnt->x(), aFlyoutPnt->y(), aFlyoutPnt->z());
163   gp_XYZ aFlyDir = aFlyPnt.XYZ() - aCenter.XYZ();
164   double aDist = aFlyDir.Dot(aBisector.XYZ());
165   // make a positive distance in order to AIS angle presentation is not reversed
166   aDist = fabs(aDist);
167   SetFlyout(aDist);
168
169   // Angle value is in degrees
170   AttributeDoublePtr aVal = aData->real(SketchPlugin_ConstraintAngle::ANGLE_VALUE_ID());
171   SetCustomValue(aVal->value());
172
173   myAspect->SetExtensionSize(myAspect->ArrowAspect()->Length());
174   myAspect->SetArrowTailSize(myAspect->ArrowAspect()->Length());
175
176   SketcherPrs_Tools::setDisplaySpecialSymbol(this, aVal->usedParameters().size() > 0);
177   myStyleListener->updateDimensions(this, aVal);
178
179   AIS_AngleDimension::Compute(thePresentationManager, thePresentation, theMode);
180 }
181
182 void SketcherPrs_Angle::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
183                                                    const Standard_Integer theMode)
184 {
185   Standard_Integer aMode;
186   switch (theMode) {
187   case 0: // we should use selection of all objects
188     aMode = 0;
189     break;
190   case SketcherPrs_Tools::Sel_Dimension_All:
191     aMode = 0;
192     break;
193   case SketcherPrs_Tools::Sel_Dimension_Line:
194     aMode = 1;
195     break;
196   case SketcherPrs_Tools::Sel_Dimension_Text:
197     aMode = 2;
198     break;
199   default: {
200     // there are own selection modes, so the others should be ignored
201     // otherwise, the text selection appears in the viewer
202     return; 
203   }
204   }
205   AIS_AngleDimension::ComputeSelection(aSelection, aMode);
206 }