Salome HOME
A correction to check modified value in extrusion cut/sketch/etc operations.
[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
10 #include <SketchPlugin_ConstraintAngle.h>
11 #include <SketchPlugin_Constraint.h>
12
13 #include <GeomAPI_Edge.h>
14 #include <GeomAPI_Lin.h>
15 #include <GeomDataAPI_Point2D.h>
16
17 #include <ModelAPI_AttributeRefAttr.h>
18 #include <ModelAPI_AttributeDouble.h>
19
20 #include <TopExp.hxx>
21 #include <BRep_Tool.hxx>
22
23 #define PI 3.1415926535897932
24
25 IMPLEMENT_STANDARD_HANDLE(SketcherPrs_Angle, AIS_AngleDimension);
26 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Angle, AIS_AngleDimension);
27
28
29 SketcherPrs_Angle::SketcherPrs_Angle(ModelAPI_Feature* theConstraint, 
30                                      const std::shared_ptr<GeomAPI_Ax3>& thePlane)
31 : AIS_AngleDimension(gp_Pnt(0,0,0), gp_Pnt(1,0,0), gp_Pnt(0,1,0)), myConstraint(theConstraint), myPlane(thePlane)
32 {
33   myAspect = new Prs3d_DimensionAspect();
34   myAspect->MakeArrows3d(false);
35   myAspect->MakeText3d(false);
36   myAspect->MakeTextShaded(false);
37   myAspect->MakeUnitsDisplayed(false);
38   myAspect->TextAspect()->SetHeight(SketcherPrs_Tools::getDefaultTextHeight());
39   myAspect->ArrowAspect()->SetLength(SketcherPrs_Tools::getArrowSize());
40   
41   SetDimensionAspect(myAspect);
42   SetSelToleranceForText2d(SketcherPrs_Tools::getDefaultTextHeight());
43 }
44
45 void SketcherPrs_Angle::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
46                                 const Handle(Prs3d_Presentation)& thePresentation, 
47                                 const Standard_Integer theMode)
48 {
49   DataPtr aData = myConstraint->data();
50
51   // Flyout point
52   std::shared_ptr<GeomDataAPI_Point2D> aFlyoutAttr = 
53     std::dynamic_pointer_cast<GeomDataAPI_Point2D>
54     (aData->attribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT()));
55   if (!aFlyoutAttr->isInitialized())
56     return; // can not create a good presentation
57
58   std::shared_ptr<GeomAPI_Pnt> aFlyoutPnt = myPlane->to3D(aFlyoutAttr->x(), aFlyoutAttr->y());
59
60   AttributeRefAttrPtr anAttr1 = aData->refattr(SketchPlugin_Constraint::ENTITY_A());
61   if (!anAttr1->isInitialized())
62     return;
63
64   AttributeRefAttrPtr anAttr2 = aData->refattr(SketchPlugin_Constraint::ENTITY_B());
65   if (!anAttr2->isInitialized())
66     return;
67
68   // Get angle edges
69   ObjectPtr aObj1 = anAttr1->object();
70   ObjectPtr aObj2 = anAttr2->object();
71
72   std::shared_ptr<GeomAPI_Shape> aShape1 = SketcherPrs_Tools::getShape(aObj1);
73   std::shared_ptr<GeomAPI_Shape> aShape2 = SketcherPrs_Tools::getShape(aObj2);
74
75   if (!aShape1 && !aShape2)
76     return;
77
78   TopoDS_Shape aTEdge1 = aShape1->impl<TopoDS_Shape>();
79   TopoDS_Shape aTEdge2 = aShape2->impl<TopoDS_Shape>();
80
81   TopoDS_Edge aEdge1 = TopoDS::Edge(aTEdge1);
82   TopoDS_Edge aEdge2 = TopoDS::Edge(aTEdge2);
83   SetMeasuredGeometry(aEdge1, aEdge2);
84
85   const gp_Pnt& aCenter = CenterPoint();
86   const gp_Pnt& aFirst = FirstPoint();
87   const gp_Pnt& aSecond = SecondPoint();
88
89   gp_Dir aBisector((aFirst.XYZ() + aSecond.XYZ()) * 0.5 - aCenter.XYZ());
90
91   gp_Pnt aFlyPnt(aFlyoutPnt->x(), aFlyoutPnt->y(), aFlyoutPnt->z());
92   gp_XYZ aFlyDir = aFlyPnt.XYZ() - aCenter.XYZ();
93   double aDist = aFlyDir.Dot(aBisector.XYZ());
94   SetFlyout(aDist);
95
96   // Angle value is in degrees
97   AttributeDoublePtr aVal = aData->real(SketchPlugin_Constraint::VALUE());
98   SetCustomValue(aVal->value() * PI / 180.0);
99
100   myAspect->SetExtensionSize(myAspect->ArrowAspect()->Length());
101   myAspect->SetArrowTailSize(myAspect->ArrowAspect()->Length());
102
103   AIS_AngleDimension::Compute(thePresentationManager, thePresentation, theMode);
104 }
105
106 void SketcherPrs_Angle::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
107                                                    const Standard_Integer theMode)
108 {
109   Standard_Integer aMode;
110   switch (theMode) {
111   case 0: // we should use selection of all objects
112     aMode = 0;
113     break;
114   case SketcherPrs_Tools::Sel_Dimension_All:
115     aMode = 0;
116     break;
117   case SketcherPrs_Tools::Sel_Dimension_Line:
118     aMode = 1;
119     break;
120   case SketcherPrs_Tools::Sel_Dimension_Text:
121     aMode = 2;
122     break;
123   default: {
124     // there are own selection modes, so the others should be ignored
125     // otherwise, the text selection appears in the viewer
126     return; 
127   }
128   }
129   AIS_AngleDimension::ComputeSelection(aSelection, aMode);
130 }