0027816: Visualization - provide an API for overriding clipping planes list
[occt.git] / src / SelectMgr / SelectMgr_RectangularFrustum.hxx
1 // Created on: 2014-05-22
2 // Created by: Varvara POSKONINA
3 // Copyright (c) 2005-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef _SelectMgr_RectangularFrustum_HeaderFile
17 #define _SelectMgr_RectangularFrustum_HeaderFile
18
19 #include <SelectMgr_Frustum.hxx>
20 #include <SelectMgr_ViewClipRange.hxx>
21
22 //! This class contains representation of rectangular selecting frustum, created in case
23 //! of point and box selection, and algorithms for overlap detection between selecting
24 //! frustum and sensitive entities. The principle of frustum calculation:
25 //! - for point selection: on a near view frustum plane rectangular neighborhood of
26 //!                        user-picked point is created according to the pixel tolerance
27 //!                        given and then this rectangle is projected onto far view frustum
28 //!                        plane. This rectangles define the parallel bases of selecting frustum;
29 //! - for box selection: box points are projected onto near and far view frustum planes.
30 //!                      These 2 projected rectangles define parallel bases of selecting frustum.
31 //! Overlap detection tests are implemented according to the terms of separating axis
32 //! theorem (SAT).
33 class SelectMgr_RectangularFrustum : public SelectMgr_Frustum<4>
34 {
35 public:
36
37   SelectMgr_RectangularFrustum() : myScale (1.0), myIsViewClipEnabled (Standard_True) {};
38
39   //! Builds volume according to the point and given pixel tolerance
40   Standard_EXPORT virtual void Build (const gp_Pnt2d& thePoint) Standard_OVERRIDE;
41
42   //! Builds volume according to the selected rectangle
43   Standard_EXPORT virtual void Build (const gp_Pnt2d& theMinPnt,
44                                       const gp_Pnt2d& theMaxPnt) Standard_OVERRIDE;
45
46   //! IMPORTANT: Scaling makes sense only for frustum built on a single point!
47   //!            Note that this method does not perform any checks on type of the frustum.
48   //! Returns a copy of the frustum resized according to the scale factor given
49   //! and transforms it using the matrix given.
50   //! There are no default parameters, but in case if:
51   //!    - transformation only is needed: @theScaleFactor must be initialized as any negative value;
52   //!    - scale only is needed: @theTrsf must be set to gp_Identity.
53   Standard_EXPORT virtual Handle(SelectMgr_BaseFrustum) ScaleAndTransform (const Standard_Integer theScaleFactor,
54                                                                            const gp_GTrsf& theTrsf) const Standard_OVERRIDE;
55
56
57   // SAT Tests for different objects
58
59   //! SAT intersection test between defined volume and given axis-aligned box
60   Standard_EXPORT virtual Standard_Boolean Overlaps (const SelectMgr_Vec3& theBoxMin,
61                                                      const SelectMgr_Vec3& theBoxMax,
62                                                      Standard_Real& theDepth) Standard_OVERRIDE;
63
64   //! Returns true if selecting volume is overlapped by axis-aligned bounding box
65   //! with minimum corner at point theMinPt and maximum at point theMaxPt
66   Standard_EXPORT virtual Standard_Boolean Overlaps (const SelectMgr_Vec3& theBoxMin,
67                                                      const SelectMgr_Vec3& theBoxMax,
68                                                      Standard_Boolean*     theInside = NULL) Standard_OVERRIDE;
69
70   //! Intersection test between defined volume and given point
71   Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt,
72                                                      Standard_Real& theDepth) Standard_OVERRIDE;
73
74   //! Intersection test between defined volume and given point
75   Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt) Standard_OVERRIDE;
76
77   //! SAT intersection test between defined volume and given ordered set of points,
78   //! representing line segments. The test may be considered of interior part or
79   //! boundary line defined by segments depending on given sensitivity type
80   Standard_EXPORT virtual Standard_Boolean Overlaps (const TColgp_Array1OfPnt& theArrayOfPnts,
81                                                      Select3D_TypeOfSensitivity theSensType,
82                                                      Standard_Real& theDepth) Standard_OVERRIDE;
83
84   //! Checks if line segment overlaps selecting frustum
85   Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt1,
86                                                      const gp_Pnt& thePnt2,
87                                                      Standard_Real& theDepth) Standard_OVERRIDE;
88
89   //! SAT intersection test between defined volume and given triangle. The test may
90   //! be considered of interior part or boundary line defined by triangle vertices
91   //! depending on given sensitivity type
92   Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt1,
93                                                      const gp_Pnt& thePnt2,
94                                                      const gp_Pnt& thePnt3,
95                                                      Select3D_TypeOfSensitivity theSensType,
96                                                      Standard_Real& theDepth) Standard_OVERRIDE;
97
98   //! Measures distance between 3d projection of user-picked
99   //! screen point and given point theCOG
100   Standard_EXPORT virtual Standard_Real DistToGeometryCenter (const gp_Pnt& theCOG) Standard_OVERRIDE;
101
102   //! Calculates the point on a view ray that was detected during the run of selection algo by given depth
103   Standard_EXPORT virtual gp_Pnt DetectedPoint (const Standard_Real theDepth) const Standard_OVERRIDE;
104
105   //! Checks if the point of sensitive in which selection was detected belongs
106   //! to the region defined by clipping planes
107   Standard_EXPORT virtual Standard_Boolean IsClipped (const Graphic3d_SequenceOfHClipPlane& thePlanes,
108                                                       const Standard_Real theDepth) Standard_OVERRIDE;
109
110   //! Valid for point selection only!
111   //! Computes depth range for global (defined for the whole view) clipping planes.
112   Standard_EXPORT virtual void SetViewClipping (const Handle(Graphic3d_SequenceOfHClipPlane)& thePlanes) Standard_OVERRIDE;
113
114   //! Set if view clipping plane is enabled or not.
115   //! @return previous value of the flag
116   virtual Standard_Boolean SetViewClippingEnabled (const Standard_Boolean theToEnable) Standard_OVERRIDE
117   {
118     Standard_Boolean aPrevValue = myIsViewClipEnabled;
119     myIsViewClipEnabled = theToEnable;
120     return aPrevValue;
121   }
122
123   //! A set of helper functions that return rectangular selecting frustum data
124   inline const gp_Pnt* GetVertices() const { return myVertices; }
125
126   //! Returns projection of 2d mouse picked point or projection
127   //! of center of 2d rectangle (for point and rectangular selection
128   //! correspondingly) onto near view frustum plane
129   inline const gp_Pnt& GetNearPnt() const { return myNearPickedPnt; }
130
131   //! Returns projection of 2d mouse picked point or projection
132   //! of center of 2d rectangle (for point and rectangular selection
133   //! correspondingly) onto far view frustum plane
134   inline const gp_Pnt& GetFarPnt() const { return myFarPickedPnt; }
135 protected:
136
137   Standard_EXPORT void segmentSegmentDistance (const gp_Pnt& theSegPnt1,
138                                                const gp_Pnt& theSegPnt2,
139                                                Standard_Real& theDepth);
140
141   Standard_EXPORT void segmentPlaneIntersection (const gp_Vec& thePlane,
142                                                  const gp_Pnt& thePntOnPlane,
143                                                  Standard_Real& theDepth);
144
145   //! Computes valid depth range for the given clipping planes
146   Standard_EXPORT void computeClippingRange (const Graphic3d_SequenceOfHClipPlane& thePlanes,
147                                              Standard_Real& theDepthMin,
148                                              Standard_Real& theDepthMax);
149
150   //! Returns false if theDepth must be clipped by current view clip range
151   Standard_EXPORT Standard_Boolean isViewClippingOk (const Standard_Real theDepth) const;
152
153 private:
154
155   void cacheVertexProjections (SelectMgr_RectangularFrustum* theFrustum) const;
156
157 private:
158   enum { LeftTopNear, LeftTopFar,
159          LeftBottomNear, LeftBottomFar,
160          RightTopNear, RightTopFar,
161          RightBottomNear, RightBottomFar };
162
163 private:
164
165   gp_Pnt                  myNearPickedPnt;             //!< 3d projection of user-picked selection point onto near view plane
166   gp_Pnt                  myFarPickedPnt;              //!< 3d projection of user-picked selection point onto far view plane
167   gp_Vec                  myViewRayDir;
168   gp_Pnt2d                myMousePos;                  //!< Mouse coordinates
169   Standard_Real           myScale;                     //!< Scale factor of applied transformation, if there was any
170   SelectMgr_ViewClipRange myViewClipRange;
171   Standard_Boolean        myIsViewClipEnabled;         //!< view clipping enabled state
172
173 };
174
175 #endif // _SelectMgr_RectangularFrustum_HeaderFile