Salome HOME
Merge remote-tracking branch 'remotes/origin/master' into Dev_2.8.0
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Parallel.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "SketcherPrs_Parallel.h"
22 #include "SketcherPrs_Tools.h"
23 #include "SketcherPrs_PositionMgr.h"
24
25 #include <SketchPlugin_Constraint.h>
26
27 #include <Graphic3d_AspectLine3d.hxx>
28 #include <Prs3d_Root.hxx>
29
30
31
32 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_Parallel, SketcherPrs_SymbolPrs);
33
34 static Handle(Image_AlienPixMap) MyPixMap;
35
36 SketcherPrs_Parallel::SketcherPrs_Parallel(ModelAPI_Feature* theConstraint,
37                                           ModelAPI_CompositeFeature* theSketcher,
38                                            const std::shared_ptr<GeomAPI_Ax3>& thePlane)
39  : SketcherPrs_SymbolPrs(theConstraint, theSketcher, thePlane)
40 {
41 }
42
43 bool SketcherPrs_Parallel::IsReadyToDisplay(ModelAPI_Feature* theConstraint,
44                                             const std::shared_ptr<GeomAPI_Ax3>&/* thePlane*/)
45 {
46   bool aReadyToDisplay = false;
47
48   ObjectPtr aObj1 =
49     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_A());
50   ObjectPtr aObj2 =
51     SketcherPrs_Tools::getResult(theConstraint, SketchPlugin_Constraint::ENTITY_B());
52
53   aReadyToDisplay = SketcherPrs_Tools::getShape(aObj1).get() != NULL &&
54                     SketcherPrs_Tools::getShape(aObj2).get() != NULL;
55   return aReadyToDisplay;
56 }
57
58 bool SketcherPrs_Parallel::updateIfReadyToDisplay(double theStep, bool withColor) const
59 {
60   if (!IsReadyToDisplay(myConstraint, myPlane))
61     return false;
62
63   ObjectPtr aObj1 =
64     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_A());
65   ObjectPtr aObj2 =
66     SketcherPrs_Tools::getResult(myConstraint, SketchPlugin_Constraint::ENTITY_B());
67
68   // Compute position of symbols
69   SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
70   gp_Pnt aP1 = aMgr->getPosition(aObj1, this, theStep);
71   gp_Pnt aP2 = aMgr->getPosition(aObj2, this, theStep);
72   myPntArray = new Graphic3d_ArrayOfPoints(2, withColor);
73   myPntArray->AddVertex(aP1);
74   myPntArray->AddVertex(aP2);
75   return true;
76 }
77
78
79 void SketcherPrs_Parallel::drawLines(const Handle(Prs3d_Presentation)& thePrs,
80   Quantity_Color theColor) const
81 {
82   Handle(Graphic3d_Group) aGroup = Prs3d_Root::CurrentGroup(thePrs);
83
84   Handle(Graphic3d_AspectLine3d) aLineAspect =
85     new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2);
86   aGroup->SetPrimitivesAspect(aLineAspect);
87
88   // Draw constrained lines
89   addLine(aGroup, SketchPlugin_Constraint::ENTITY_A());
90   addLine(aGroup, SketchPlugin_Constraint::ENTITY_B());
91 }
92