Salome HOME
Merge remote-tracking branch 'remotes/origin/EDF_2020_Lot2'
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_HVDirection.cpp
1 // Copyright (C) 2014-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "SketcherPrs_HVDirection.h"
21 #include "SketcherPrs_Tools.h"
22 #include "SketcherPrs_PositionMgr.h"
23
24 #include <SketchPlugin_Constraint.h>
25
26 #include <Graphic3d_AspectLine3d.hxx>
27 #include <Prs3d_Root.hxx>
28
29
30 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_HVDirection, SketcherPrs_SymbolPrs);
31
32 static Handle(Image_AlienPixMap) MyPixMap;
33
34 SketcherPrs_HVDirection::SketcherPrs_HVDirection(ModelAPI_Feature* theConstraint,
35   SketchPlugin_Sketch* theSketcher, bool isHorisontal)
36  : SketcherPrs_SymbolPrs(theConstraint, theSketcher),
37  myIsHorisontal(isHorisontal)
38 {
39 }
40
41 bool SketcherPrs_HVDirection::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
42                                                const std::shared_ptr<GeomAPI_Ax3>& thePlane)
43 {
44   bool aReadyToDisplay = false;
45   if (thePlane.get()) {
46     ObjectPtr aObj =
47         SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
48     aReadyToDisplay = SketcherPrs_Tools::getShape(aObj).get() != NULL;
49   }
50   return aReadyToDisplay;
51 }
52
53 bool SketcherPrs_HVDirection::updateIfReadyToDisplay(double theStep, bool withColor) const
54 {
55   if (!IsReadyToDisplay(myConstraint, plane()))
56     return false;
57
58   // Set point of the symbol
59   ObjectPtr aObj = SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
60   SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
61   gp_Pnt aP1 = aMgr->getPosition(aObj, this, theStep);
62   myPntArray = new Graphic3d_ArrayOfPoints(1, withColor);
63   myPntArray->AddVertex(aP1);
64   return true;
65 }
66
67 void SketcherPrs_HVDirection::drawLines(const Handle(Prs3d_Presentation)& thePrs,
68                                         Quantity_Color theColor) const
69 {
70   Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePrs);
71
72   // Draw constrained object
73   Handle(Graphic3d_AspectLine3d) aLineAspect =
74     new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2);
75   aGroup->SetPrimitivesAspect(aLineAspect);
76
77   addLine(aGroup, SketchPlugin_Constraint::ENTITY_A());
78 }
79