345c4462a44f3db73c98bc4a7149682178470923
[occt.git] / src / AIS / AIS_Point.cxx
1 // Created on: 1995-08-09
2 // Created by: Arnaud BOUZY/Odile Olivier
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <AIS_Point.hxx>
18
19 #include <AIS_InteractiveContext.hxx>
20 #include <Aspect_TypeOfLine.hxx>
21 #include <BRepBuilderAPI_MakeVertex.hxx>
22 #include <Geom_Point.hxx>
23 #include <Geom_Transformation.hxx>
24 #include <Graphic3d_ArrayOfPoints.hxx>
25 #include <Graphic3d_AspectMarker3d.hxx>
26 #include <Graphic3d_Group.hxx>
27 #include <Graphic3d_Structure.hxx>
28 #include <Prs3d_Drawer.hxx>
29 #include <Prs3d_PointAspect.hxx>
30 #include <Prs3d_Presentation.hxx>
31 #include <Prs3d_Projector.hxx>
32 #include <Quantity_Color.hxx>
33 #include <Select3D_SensitivePoint.hxx>
34 #include <SelectBasics_EntityOwner.hxx>
35 #include <SelectMgr_EntityOwner.hxx>
36 #include <Standard_Type.hxx>
37 #include <StdPrs_Point.hxx>
38 #include <TopoDS_Vertex.hxx>
39
40 IMPLEMENT_STANDARD_RTTIEXT(AIS_Point,AIS_InteractiveObject)
41
42 //=======================================================================
43 //function : AIS_Point
44 //purpose  : 
45 //=======================================================================
46 AIS_Point::AIS_Point(const Handle(Geom_Point)& aComponent):
47 myComponent(aComponent),
48 myHasTOM(Standard_False),
49 myTOM(Aspect_TOM_PLUS)
50 {
51   myHilightDrawer = new Prs3d_Drawer();
52   myHilightDrawer->SetDisplayMode (-99);
53   myHilightDrawer->SetPointAspect (new Prs3d_PointAspect (Aspect_TOM_PLUS, Quantity_NOC_GRAY80, 3.0));
54   myHilightDrawer->SetColor (Quantity_NOC_GRAY80);
55   myDynHilightDrawer = new Prs3d_Drawer();
56   myDynHilightDrawer->SetDisplayMode (-99);
57   myDynHilightDrawer->SetPointAspect (new Prs3d_PointAspect (Aspect_TOM_PLUS, Quantity_NOC_CYAN1, 3.0));
58   myDynHilightDrawer->SetColor (Quantity_NOC_CYAN1);
59 }
60
61 //=======================================================================
62 //function : Component
63 //purpose  : 
64 //=======================================================================
65
66 Handle(Geom_Point) AIS_Point::Component()
67 {
68   return myComponent;
69 }
70
71 //=======================================================================
72 //function : SetComponent
73 //purpose  : 
74 //=======================================================================
75
76  void AIS_Point::SetComponent(const Handle(Geom_Point)& aComponent)
77 {
78   myComponent = aComponent;
79 }
80
81 //=======================================================================
82 //function : Compute
83 //purpose  : 
84 //=======================================================================
85 void AIS_Point::Compute(const Handle(PrsMgr_PresentationManager3d)& /*aPresentationManager*/,
86                         const Handle(Prs3d_Presentation)& aPresentation, 
87                         const Standard_Integer aMode)
88 {
89   aPresentation->SetInfiniteState(myInfiniteState);
90
91   if (aMode==0)
92     StdPrs_Point::Add(aPresentation,myComponent,myDrawer);
93   else if (aMode== -99)
94     {
95       Handle(Graphic3d_Group) TheGroup = Prs3d_Root::CurrentGroup(aPresentation);
96       TheGroup->SetPrimitivesAspect (myHilightDrawer->PointAspect()->Aspect());
97       Handle(Graphic3d_ArrayOfPoints) aPoint = new Graphic3d_ArrayOfPoints (1);
98       aPoint->AddVertex (myComponent->X(),myComponent->Y(),myComponent->Z());
99       TheGroup->AddPrimitiveArray (aPoint);
100     }
101     
102 }
103
104 //=======================================================================
105 //function : Compute
106 //purpose  : 
107 //=======================================================================
108
109 void AIS_Point::Compute(const Handle(Prs3d_Projector)& aProjector,
110                         const Handle(Geom_Transformation)& aTransformation,
111                         const Handle(Prs3d_Presentation)& aPresentation)
112 {
113 // throw Standard_NotImplemented("AIS_Point::Compute(const Handle(Prs3d_Projector)&, const Handle(Geom_Transformation)&, const Handle(Prs3d_Presentation)&)");
114  PrsMgr_PresentableObject::Compute( aProjector , aTransformation , aPresentation) ;
115 }
116
117 //=======================================================================
118 //function : ComputeSelection
119 //purpose  : 
120 //=======================================================================
121 void AIS_Point::ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
122                                  const Standard_Integer /*aMode*/)
123 {
124   Handle(SelectMgr_EntityOwner) eown = new SelectMgr_EntityOwner(this,10);
125 //  eown -> SelectBasics_EntityOwner::Set(5);
126   Handle(Select3D_SensitivePoint) sp = new Select3D_SensitivePoint(eown,
127                                                                    myComponent->Pnt());
128   aSelection->Add(sp);
129 }
130
131 //=======================================================================
132 //function : SetColor
133 //purpose  :
134 //=======================================================================
135 void AIS_Point::SetColor (const Quantity_Color& theCol)
136 {
137   hasOwnColor=Standard_True;
138   myDrawer->SetColor (theCol);
139   UpdatePointValues();
140 }
141
142 //=======================================================================
143 //function : UnsetColor
144 //purpose  : 
145 //=======================================================================
146 void AIS_Point::UnsetColor()
147 {
148   hasOwnColor=Standard_False;
149   UpdatePointValues();
150 }
151
152
153 //=======================================================================
154 //function : Vertex
155 //purpose  : 
156 //=======================================================================
157 TopoDS_Vertex AIS_Point::Vertex() const
158 {
159   gp_Pnt P = myComponent->Pnt();
160   return BRepBuilderAPI_MakeVertex(P);
161 }
162
163
164 //=======================================================================
165 //function : Compute
166 //purpose  : to avoid warning
167 //=======================================================================
168 void AIS_Point::Compute(const Handle(Prs3d_Projector)&, 
169                            const Handle(Prs3d_Presentation)&)
170 {
171 }
172
173 //=======================================================================
174 //function : SetMarker
175 //purpose  : 
176 //=======================================================================
177
178 void AIS_Point::SetMarker(const Aspect_TypeOfMarker aTOM)
179 {
180   myTOM = aTOM;
181   myHasTOM = Standard_True;
182   UpdatePointValues();
183 }
184
185 //=======================================================================
186 //function : UnsetMarker
187 //purpose  : 
188 //=======================================================================
189 void AIS_Point::UnsetMarker()
190 {
191   myHasTOM = Standard_False;
192   UpdatePointValues();
193 }
194
195 //=======================================================================
196 //function : AcceptDisplayMode
197 //purpose  : 
198 //=======================================================================
199
200  Standard_Boolean AIS_Point::AcceptDisplayMode (const Standard_Integer theMode) const
201 {
202   return theMode == 0
203       || theMode == -99;
204 }
205
206 //=======================================================================
207 //function : UpdatePointValues
208 //purpose  : 
209 //=======================================================================
210
211 void AIS_Point::UpdatePointValues()
212 {
213
214   if(!hasOwnColor && myOwnWidth==0.0 && !myHasTOM)
215   {
216     myDrawer->SetPointAspect (Handle(Prs3d_PointAspect)());
217     return;
218   }
219   Quantity_Color      aCol (Quantity_NOC_YELLOW);
220   Aspect_TypeOfMarker aTOM = Aspect_TOM_PLUS;
221   Standard_Real       aScale = 1.0;
222   if (myDrawer->HasLink())
223   {
224     aCol   = myDrawer->Link()->PointAspect()->Aspect()->Color();
225     aTOM   = myDrawer->Link()->PointAspect()->Aspect()->Type();
226     aScale = myDrawer->Link()->PointAspect()->Aspect()->Scale();
227   }
228
229   if(hasOwnColor) aCol = myDrawer->Color();
230   if(myOwnWidth!=0.0) aScale = myOwnWidth;
231   if(myHasTOM) aTOM = myTOM;
232   
233   
234   if(myDrawer->HasOwnPointAspect()){
235     // CLE
236     // const Handle(Prs3d_PointAspect) PA =  myDrawer->PointAspect();
237     Handle(Prs3d_PointAspect) PA =  myDrawer->PointAspect();
238     // ENDCLE
239     PA->SetColor(aCol);
240     PA->SetTypeOfMarker(aTOM);
241     PA->SetScale(aScale);
242   }
243   else
244     myDrawer->SetPointAspect(new Prs3d_PointAspect(aTOM,aCol,aScale));
245 }
246