1 // Copyright (C) 2014-2021 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include "SketcherPrs_SymbolPrs.h"
21 #include "SketcherPrs_Tools.h"
22 #include "SketcherPrs_PositionMgr.h"
24 #include <GeomAPI_Edge.h>
25 #include <GeomAPI_Vertex.h>
26 #include <GeomAPI_Curve.h>
28 #include <ModelAPI_Tools.h>
30 #include <Events_InfoMessage.h>
32 #include <Graphic3d_ArrayOfSegments.hxx>
33 #include <Graphic3d_BndBox4f.hxx>
35 #include <SelectMgr_Selection.hxx>
36 #include <Select3D_SensitivePoint.hxx>
37 #include <TopLoc_Location.hxx>
38 #include <AIS_InteractiveContext.hxx>
39 #include <V3d_Viewer.hxx>
40 #include <Prs3d_Root.hxx>
41 #include <Geom_CartesianPoint.hxx>
42 #include <GeomAdaptor_Curve.hxx>
43 #include <StdPrs_DeflectionCurve.hxx>
44 #include <StdPrs_Point.hxx>
45 #include <StdPrs_Curve.hxx>
46 #include <Prs3d_LineAspect.hxx>
48 #include <OpenGl_Element.hxx>
49 #include <OpenGl_GraphicDriver.hxx>
50 #include <OpenGl_Context.hxx>
51 #include <OpenGl_View.hxx>
52 #include <OpenGl_Group.hxx>
60 /// Step between icons
61 static const double MyDist = 0.015;
64 //**************************************************************
65 //! Redefinition of OpenGl_Element
66 class SketcherPrs_SymbolArray: public OpenGl_PrimitiveArray
69 SketcherPrs_SymbolArray(const OpenGl_GraphicDriver* theDriver,
70 const Handle(SketcherPrs_SymbolPrs)& theObj, const Handle(AIS_InteractiveContext)& theCtx)
71 :OpenGl_PrimitiveArray(theDriver, theObj->myPntArray->Type(), theObj->myPntArray->Indices(),
72 theObj->myPntArray->Attributes(), theObj->myPntArray->Bounds()), myObj(theObj),
75 virtual void Render(const Handle(OpenGl_Workspace)& theWorkspace) const
77 ModelAPI_Feature* aConstraint = myObj->feature();
78 if (aConstraint->data().get() && aConstraint->data()->isValid()) {
79 Handle(OpenGl_View) aView = theWorkspace->View();
80 double aScale = aView->Camera()->Scale();
81 // Update points coordinate taking the viewer scale into account
82 myObj->updateIfReadyToDisplay(MyDist * aScale, myObj->myIsCustomColor);
85 const Handle(OpenGl_Context)& aCtx = theWorkspace->GetGlContext();
86 Handle(Graphic3d_Buffer) aAttr = myObj->myPntArray->Attributes();
87 myVboAttribs->init(aCtx, 0, aAttr->NbElements,
88 aAttr->Data(), GL_NONE, aAttr->Stride);
92 myAttribs = myObj->myPntArray->Attributes();
93 myIndices = myObj->myPntArray->Indices();
94 myBounds = myObj->myPntArray->Bounds();
97 OpenGl_PrimitiveArray::Render(theWorkspace);
99 // Update selection position only if there is no selected object
100 // because it can corrupt selection of other objects
101 if (myContext->NbSelected() == 0) {
102 myContext->MainSelector()->RebuildSensitivesTree(myObj);
103 myContext->MainSelector()->RebuildObjectsTree (false);
108 Handle(SketcherPrs_SymbolPrs) myObj;
109 Handle(AIS_InteractiveContext) myContext;
113 //*****************************************************************************
114 IMPLEMENT_STANDARD_RTTIEXT(SketcherPrs_SymbolPrs, AIS_InteractiveObject);
117 std::map<const char*, Handle(Image_AlienPixMap)> SketcherPrs_SymbolPrs::myIconsMap;
120 SketcherPrs_SymbolPrs::SketcherPrs_SymbolPrs(ModelAPI_Feature* theConstraint,
121 SketchPlugin_Sketch* theSketcher)
122 : AIS_InteractiveObject(),
123 myConstraint(theConstraint),
124 mySketcher(theSketcher),
125 myIsCustomColor(false)
127 SetAutoHilight(Standard_False);
130 //*********************************************************************************
131 SketcherPrs_SymbolPrs::~SketcherPrs_SymbolPrs()
133 SketcherPrs_PositionMgr* aMgr = SketcherPrs_PositionMgr::get();
134 // Empty memory in position manager
135 aMgr->deleteConstraint(this);
137 Handle(Prs3d_Presentation) aSelPrs =
138 GetSelectPresentation(Handle(PrsMgr_PresentationManager3d)());
139 if (!aSelPrs.IsNull()) {
140 if (!aSelPrs->Groups().IsEmpty()) {
145 Handle(Prs3d_Presentation) aHilightPrs =
146 GetHilightPresentation(Handle(PrsMgr_PresentationManager3d)());
147 if (!aHilightPrs.IsNull()) {
148 if (!aHilightPrs->Groups().IsEmpty()) {
149 aHilightPrs->Clear();
151 aHilightPrs->Erase();
156 #pragma warning( disable : 4996 )
159 //*********************************************************************************
160 Handle(Image_AlienPixMap) SketcherPrs_SymbolPrs::icon()
162 if (myIconsMap.count(iconName()) == 1) {
163 return myIconsMap[iconName()];
165 // Load icon for the presentation
167 char* anEnv = getenv("SHAPER_ROOT_DIR");
169 aFile = std::string(anEnv) +
170 FSEP + "share" + FSEP + "salome" + FSEP + "resources" + FSEP + "shaper";
172 anEnv = getenv("CADBUILDER_ROOT_DIR");
174 aFile = std::string(anEnv) + FSEP + "resources";
179 Handle(Image_AlienPixMap) aPixMap = new Image_AlienPixMap();
180 if (aPixMap->Load(aFile.c_str())) {
181 int aRatio = SketcherPrs_Tools::pixelRatio();
183 Handle(Image_AlienPixMap) aSizedMap = new Image_AlienPixMap();
184 Standard_Size aWidth = aPixMap->Width() * aRatio;
185 Standard_Size aHeigh = aPixMap->Height() * aRatio;
186 aSizedMap->InitTrash(aPixMap->Format(), aWidth, aHeigh);
187 for (Standard_Size i = 0; i < aWidth; i++) {
188 for (Standard_Size j = 0; j < aHeigh; j++) {
189 aSizedMap->SetPixelColor(int(i), int(j),
190 aPixMap->PixelColor(int(i / aRatio), int(j / aRatio)));
195 myIconsMap[iconName()] = aPixMap;
198 // The icon for constraint is not found
199 static const char aMsg[] = "Error! constraint images are not found";
200 std::cout<<aMsg<<std::endl;
201 Events_InfoMessage("SketcherPrs_SymbolPrs", aMsg).send();
202 myIconsMap[iconName()] = Handle(Image_AlienPixMap)();
203 return Handle(Image_AlienPixMap)();
206 //*********************************************************************************
207 void SketcherPrs_SymbolPrs::prepareAspect()
209 // Create an aspect with the icon
210 if (myAspect.IsNull()) {
211 Handle(Image_AlienPixMap) aIcon = icon();
213 myAspect = new Graphic3d_AspectMarker3d();
215 myAspect = new Graphic3d_AspectMarker3d(aIcon);
217 myAspect->SetColor(myCustomColor);
221 //*********************************************************************************
222 void SketcherPrs_SymbolPrs::addLine(const Handle(Graphic3d_Group)& theGroup,
223 std::string theAttrName) const
225 ObjectPtr aObj = SketcherPrs_Tools::getResult(myConstraint, theAttrName);
226 std::shared_ptr<GeomAPI_Shape> aLine = SketcherPrs_Tools::getShape(aObj);
227 if (aLine.get() == NULL)
229 std::shared_ptr<GeomAPI_Edge> aEdge = std::shared_ptr<GeomAPI_Edge>(new GeomAPI_Edge(aLine));
231 std::shared_ptr<GeomAPI_Pnt> aPnt1 = aEdge->firstPoint();
232 std::shared_ptr<GeomAPI_Pnt> aPnt2 = aEdge->lastPoint();
234 // Draw line by two points
235 Handle(Graphic3d_ArrayOfSegments) aLines = new Graphic3d_ArrayOfSegments(2, 1);
236 aLines->AddVertex(aPnt1->impl<gp_Pnt>());
237 aLines->AddVertex(aPnt2->impl<gp_Pnt>());
238 theGroup->AddPrimitiveArray(aLines);
241 //*********************************************************************************
242 void SketcherPrs_SymbolPrs::HilightSelected(const Handle(PrsMgr_PresentationManager3d)& thePM,
243 const SelectMgr_SequenceOfOwner& /*theOwners*/)
245 Handle( Prs3d_Presentation ) aSelectionPrs = GetSelectPresentation( thePM );
246 aSelectionPrs->Clear();
247 drawLines(aSelectionPrs, GetContext()->SelectionStyle()->Color());
249 aSelectionPrs->SetDisplayPriority(9);
250 aSelectionPrs->Display();
251 thePM->Color(this, GetContext()->SelectionStyle());
254 //*********************************************************************************
255 void SketcherPrs_SymbolPrs::HilightOwnerWithColor(
256 const Handle(PrsMgr_PresentationManager3d)& thePM,
257 const Handle(Prs3d_Drawer)& theStyle,
258 const Handle(SelectMgr_EntityOwner)& /*theOwner*/)
260 thePM->Color(this, theStyle);
262 Handle( Prs3d_Presentation ) aHilightPrs = GetHilightPresentation( thePM );
263 aHilightPrs->Clear();
264 drawLines(aHilightPrs, theStyle->Color());
265 aHilightPrs->SetZLayer(Graphic3d_ZLayerId_Topmost);
267 if (thePM->IsImmediateModeOn())
268 thePM->AddToImmediateList(aHilightPrs);
271 //*********************************************************************************
272 void SketcherPrs_SymbolPrs::Compute(
273 const Handle(PrsMgr_PresentationManager3d)& /*thePresentationManager*/,
274 const Handle(Prs3d_Presentation)& thePresentation,
275 const Standard_Integer /*theMode*/)
282 Handle(AIS_InteractiveContext) aCtx = GetContext();
283 Handle(OpenGl_GraphicDriver) aDriver =
284 Handle(OpenGl_GraphicDriver)::DownCast(aCtx->CurrentViewer()->Driver());
285 if (aDriver.IsNull())
288 // Update points with default shift value
289 // it updates array of points if the presentation is ready to display, or the array of points
290 // contains the previous values
292 bool aReadyToDisplay = updateIfReadyToDisplay(20, myIsCustomColor);
294 int aNbVertex = myPntArray->VertexNumber();
295 if (myOwner.IsNull()) {
296 myOwner = new SelectMgr_EntityOwner(this);
299 // Create sensitive point for each symbol
301 for (int i = 1; i <= aNbVertex; i++) {
302 Handle(SketcherPrs_SensitivePoint) aSP = new SketcherPrs_SensitivePoint(myOwner, i);
303 mySPoints.Append(aSP);
305 myPntArray->SetVertexColor(i, myCustomColor);
308 Handle(OpenGl_Group) aGroup =
309 Handle(OpenGl_Group)::DownCast(Prs3d_Root::CurrentGroup (thePresentation));
310 aGroup->SetPrimitivesAspect(myAspect);
312 // Recompute boundary box of the group
313 Graphic3d_BndBox4f& aBnd = aGroup->ChangeBoundingBox();
316 for (int i = 1; i <= myPntArray->ItemNumber(); i++) {
317 aVert = myPntArray->Vertice(i);
318 aBnd.Add(Graphic3d_Vec4((float)aVert.X(), (float)aVert.Y(), (float)aVert.Z(), 1.0f));
321 // Pint the group with custom procedure (see Render)
322 SketcherPrs_SymbolArray* aElem =
323 new SketcherPrs_SymbolArray((OpenGl_GraphicDriver*)aDriver->This(), this, GetContext());
324 aGroup->AddElement(aElem);
326 // Disable frustum culling for this object by marking it as mutable
327 aGroup->Structure()->SetMutable(true);
329 if (!aReadyToDisplay)
330 SketcherPrs_Tools::sendEmptyPresentationError(myConstraint,
331 "An empty AIS presentation: SketcherPrs_LengthDimension");
335 //*********************************************************************************
336 void SketcherPrs_SymbolPrs::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
337 const Standard_Integer aMode)
340 if ((aMode == 0) || (aMode == SketcherPrs_Tools::Sel_Constraint)) {
341 for (int i = 1; i <= mySPoints.Length(); i++)
342 aSelection->Add(mySPoints.Value(i));
346 //*********************************************************************************
347 void SketcherPrs_SymbolPrs::SetCustomColor(const std::vector<int>& theColor)
349 myIsCustomColor = !theColor.empty();
351 myCustomColor = Quantity_Color(theColor[0] / 255., theColor[1] / 255.,
352 theColor[2] / 255., Quantity_TOC_RGB);
354 myCustomColor = Quantity_Color (1.0, 1.0, 0.0, Quantity_TOC_RGB);
356 if (!myAspect.IsNull())
357 myAspect->SetColor (myCustomColor);
359 Handle(Prs3d_Presentation) aPrs = Presentation();
360 if (!aPrs.IsNull()) {
361 if (myIsCustomColor) {
362 Handle(Graphic3d_PresentationAttributes) aAttr = new Graphic3d_PresentationAttributes();
363 aAttr->SetColor(myCustomColor);
364 aPrs->Highlight(aAttr);
372 //*********************************************************************************
373 void SketcherPrs_SymbolPrs::drawShape(const std::shared_ptr<GeomAPI_Shape>& theShape,
374 const Handle(Prs3d_Presentation)& thePrs,
375 Quantity_Color theColor) const
377 Handle(Graphic3d_AspectLine3d) aLineAspect =
378 new Graphic3d_AspectLine3d(theColor, Aspect_TOL_SOLID, 2);
380 Handle(Prs3d_LineAspect) aLinesStyle = myDrawer->LineAspect();
381 Handle(Graphic3d_AspectLine3d) aOldStyle = aLinesStyle->Aspect();
382 aLinesStyle->SetAspect(aLineAspect);
383 myDrawer->SetLineAspect(aLinesStyle);
385 if (theShape->isEdge()) {
387 std::shared_ptr<GeomAPI_Curve> aCurve =
388 std::shared_ptr<GeomAPI_Curve>(new GeomAPI_Curve(theShape));
389 if (aCurve->isLine()) {
392 aCurv(aCurve->impl<Handle(Geom_Curve)>(), aCurve->startParam(), aCurve->endParam());
393 StdPrs_Curve::Add(thePrs, aCurv, myDrawer);
395 // The shape is circle or arc
397 aAdaptor(aCurve->impl<Handle(Geom_Curve)>(), aCurve->startParam(), aCurve->endParam());
398 StdPrs_DeflectionCurve::Add(thePrs,aAdaptor,myDrawer);
400 } else if (theShape->isVertex()) {
402 std::shared_ptr<GeomAPI_Vertex> aVertex =
403 std::shared_ptr<GeomAPI_Vertex>(new GeomAPI_Vertex(theShape));
404 std::shared_ptr<GeomAPI_Pnt> aPnt = aVertex->point();
405 Handle(Geom_CartesianPoint) aPoint = new Geom_CartesianPoint(aPnt->impl<gp_Pnt>());
406 StdPrs_Point::Add(thePrs, aPoint, myDrawer);
409 aLinesStyle->SetAspect(aOldStyle);
410 myDrawer->SetLineAspect(aLinesStyle);
413 //*********************************************************************************
414 void SketcherPrs_SymbolPrs::drawListOfShapes(
415 const std::shared_ptr<ModelAPI_AttributeRefList>& theListAttr,
416 const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const
418 int aNb = theListAttr->size();
423 for (i = 0; i < aNb; i++) {
424 aObj = theListAttr->object(i);
425 std::shared_ptr<GeomAPI_Shape> aShape = SketcherPrs_Tools::getShape(aObj);
426 if (aShape.get() != NULL)
427 drawShape(aShape, thePrs, theColor);
431 //*********************************************************************************
432 void SketcherPrs_SymbolPrs::BoundingBox(Bnd_Box& theBndBox)
434 Select3D_BndBox3d aTmpBox;
435 for (Select3D_EntitySequenceIter aPntIter (mySPoints); aPntIter.More(); aPntIter.Next()) {
436 const Handle(Select3D_SensitiveEntity)& anEnt = aPntIter.Value();
437 aTmpBox.Combine (anEnt->BoundingBox());
440 theBndBox.Update (aTmpBox.CornerMin().x(), aTmpBox.CornerMin().y(), aTmpBox.CornerMin().z(),
441 aTmpBox.CornerMax().x(), aTmpBox.CornerMax().y(), aTmpBox.CornerMax().z());