0029938: Visualization - SelectMgr_ViewerSelector::PickedPoint() should return point...
[occt.git] / src / SelectMgr / SelectMgr_BaseFrustum.hxx
CommitLineData
f751596e 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_BaseFrustum_HeaderFile
17#define _SelectMgr_BaseFrustum_HeaderFile
18
91d96372 19#include <gp_GTrsf.hxx>
f751596e 20#include <gp_Pnt.hxx>
21#include <gp_Pln.hxx>
22
23#include <Graphic3d_Camera.hxx>
24#include <Graphic3d_ClipPlane.hxx>
25#include <Graphic3d_SequenceOfHClipPlane.hxx>
825aa485 26#include <Graphic3d_WorldViewProjState.hxx>
f751596e 27
f751596e 28#include <TColgp_HArray1OfPnt.hxx>
29#include <TColgp_Array1OfPnt2d.hxx>
30
31#include <Select3D_BndBox3d.hxx>
32#include <SelectMgr_FrustumBuilder.hxx>
33#include <Select3D_TypeOfSensitivity.hxx>
34#include <SelectMgr_VectorTypes.hxx>
35
17017555 36#include <SelectBasics_PickResult.hxx>
37
f751596e 38//! This class is an interface for different types of selecting frustums,
39//! defining different selection types, like point, box or polyline
40//! selection. It contains signatures of functions for detection of
41//! overlap by sensitive entity and initializes some data for building
42//! the selecting frustum
c04c30b3 43class SelectMgr_BaseFrustum : public Standard_Transient
f751596e 44{
45public:
46
47 //! Creates new selecting volume with pixel toletance set to 2,
48 //! orthographic camera and empty frustum builder
1f3913c6 49 Standard_EXPORT SelectMgr_BaseFrustum();
f751596e 50
bf3977c9 51 virtual ~SelectMgr_BaseFrustum() {}
f751596e 52
3fe9ce0e 53 //! Return camera definition.
54 const Handle(Graphic3d_Camera)& Camera() const { return myCamera; }
55
f751596e 56 //! Passes camera projection and orientation matrices to builder
1f3913c6 57 Standard_EXPORT void SetCamera (const Handle(Graphic3d_Camera)& theCamera);
f751596e 58
59 //! Passes camera projection and orientation matrices to builder
1f3913c6 60 Standard_EXPORT void SetCamera (const Graphic3d_Mat4d& theProjection,
61 const Graphic3d_Mat4d& theWorldView,
dde68833 62 const Standard_Boolean theIsOrthographic,
1f3913c6 63 const Graphic3d_WorldViewProjState& theWVPState = Graphic3d_WorldViewProjState());
825aa485 64
65 //! @return current camera projection transformation common for all selecting volumes
1f3913c6 66 Standard_EXPORT const Graphic3d_Mat4d& ProjectionMatrix() const;
825aa485 67
68 //! @return current camera world view transformation common for all selecting volumes
1f3913c6 69 Standard_EXPORT const Graphic3d_Mat4d& WorldViewMatrix() const;
825aa485 70
71 //! @return current camera world view projection transformation state
1f3913c6 72 Standard_EXPORT const Graphic3d_WorldViewProjState& WorldViewProjState() const;
f751596e 73
3bf9a45f 74 Standard_EXPORT void SetPixelTolerance (const Standard_Integer theTol);
f751596e 75
1f3913c6 76 Standard_EXPORT void SetWindowSize (const Standard_Integer theWidth,
77 const Standard_Integer theHeight);
f751596e 78
91d96372 79 Standard_EXPORT void WindowSize (Standard_Integer& theWidth,
099f3513 80 Standard_Integer& theHeight) const;
91d96372 81
f751596e 82 //! Passes viewport parameters to builder
1f3913c6 83 Standard_EXPORT void SetViewport (const Standard_Real theX,
84 const Standard_Real theY,
85 const Standard_Real theWidth,
86 const Standard_Real theHeight);
f751596e 87
88 //! Nullifies the builder created in the constructor and copies the pointer given
1f3913c6 89 Standard_EXPORT void SetBuilder (const Handle(SelectMgr_FrustumBuilder)& theBuilder);
f751596e 90
91
92 //! Builds volume according to the point and given pixel tolerance
bf3977c9 93 virtual void Build (const gp_Pnt2d& /*thePoint*/) {}
f751596e 94
95 //! Builds volume according to the selected rectangle
96 virtual void Build (const gp_Pnt2d& /*theMinPt*/,
bf3977c9 97 const gp_Pnt2d& /*theMaxPt*/) {}
f751596e 98
99 //! Builds volume according to the triangle given
100 virtual void Build (const gp_Pnt2d& /*theP1*/,
101 const gp_Pnt2d& /*theP2*/,
bf3977c9 102 const gp_Pnt2d& /*theP3*/) {}
f751596e 103
104 //! Builds selecting volumes set according to polyline points
bf3977c9 105 virtual void Build (const TColgp_Array1OfPnt2d& /*thePoints*/) {}
f751596e 106
3bf9a45f 107 //! IMPORTANT: Scaling makes sense only for frustum built on a single point!
108 //! Note that this method does not perform any checks on type of the frustum.
28ee613b 109 //! Returns a copy of the frustum resized according to the scale factor given
3bf9a45f 110 //! and transforms it using the matrix given.
111 //! There are no default parameters, but in case if:
112 //! - transformation only is needed: @theScaleFactor must be initialized as any negative value;
113 //! - scale only is needed: @theTrsf must be set to gp_Identity.
0f57ab75 114 virtual Handle(SelectMgr_BaseFrustum) ScaleAndTransform (const Standard_Integer /*theScaleFactor*/,
115 const gp_GTrsf& /*theTrsf*/) const
116 {
117 return NULL;
118 }
28ee613b 119
f751596e 120 //! SAT intersection test between defined volume and given axis-aligned box
3bf9a45f 121 Standard_EXPORT virtual Standard_Boolean Overlaps (const SelectMgr_Vec3& theBoxMin,
122 const SelectMgr_Vec3& theBoxMax,
17017555 123 SelectBasics_PickResult& thePickResult);
f751596e 124
125 //! Returns true if selecting volume is overlapped by axis-aligned bounding box
126 //! with minimum corner at point theMinPt and maximum at point theMaxPt
1f3913c6 127 Standard_EXPORT virtual Standard_Boolean Overlaps (const SelectMgr_Vec3& theBoxMin,
128 const SelectMgr_Vec3& theBoxMax,
129 Standard_Boolean* theInside = NULL);
f751596e 130
131 //! Intersection test between defined volume and given point
3bf9a45f 132 Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt,
17017555 133 SelectBasics_PickResult& thePickResult);
f751596e 134
3bf9a45f 135 //! Intersection test between defined volume and given point
136 //! Does not perform depth calculation, so this method is defined as
137 //! helper function for inclusion test. Therefore, its implementation
138 //! makes sense only for rectangular frustum with box selection mode activated.
139 Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt);
140
f751596e 141 //! SAT intersection test between defined volume and given ordered set of points,
142 //! representing line segments. The test may be considered of interior part or
143 //! boundary line defined by segments depending on given sensitivity type
114b7bf1 144 Standard_EXPORT virtual Standard_Boolean Overlaps (const TColgp_Array1OfPnt& theArrayOfPnts,
1f3913c6 145 Select3D_TypeOfSensitivity theSensType,
17017555 146 SelectBasics_PickResult& thePickResult);
f751596e 147
148 //! Checks if line segment overlaps selecting frustum
3bf9a45f 149 Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePnt1,
150 const gp_Pnt& thePnt2,
17017555 151 SelectBasics_PickResult& thePickResult);
f751596e 152
153 //! SAT intersection test between defined volume and given triangle. The test may
154 //! be considered of interior part or boundary line defined by triangle vertices
155 //! depending on given sensitivity type
1f3913c6 156 Standard_EXPORT virtual Standard_Boolean Overlaps (const gp_Pnt& thePt1,
157 const gp_Pnt& thePt2,
158 const gp_Pnt& thePt3,
159 Select3D_TypeOfSensitivity theSensType,
17017555 160 SelectBasics_PickResult& thePickResult);
f751596e 161
162 //! Measures distance between 3d projection of user-picked
163 //! screen point and given point theCOG
1f3913c6 164 Standard_EXPORT virtual Standard_Real DistToGeometryCenter (const gp_Pnt& theCOG);
f751596e 165
3bf9a45f 166 Standard_EXPORT virtual gp_Pnt DetectedPoint (const Standard_Real theDepth) const;
f751596e 167
168 //! Checks if the point of sensitive in which selection was detected belongs
169 //! to the region defined by clipping planes
1f3913c6 170 Standard_EXPORT virtual Standard_Boolean IsClipped (const Graphic3d_SequenceOfHClipPlane& thePlanes,
171 const Standard_Real theDepth);
f751596e 172
e9312c0f 173 //! Valid for point selection only!
174 //! Computes depth range for global (defined for the whole view) clipping planes.
3202bf1e 175 virtual void SetViewClipping (const Handle(Graphic3d_SequenceOfHClipPlane)& /*thePlanes*/) {};
176
177 //! Set if view clipping plane is enabled or not.
178 //! @return previous value of the flag
179 virtual Standard_Boolean SetViewClippingEnabled (const Standard_Boolean /*theToEnable*/) { return Standard_False; }
e9312c0f 180
871dcdc2 181 //! Stores plane equation coefficients (in the following form:
182 //! Ax + By + Cz + D = 0) to the given vector
183 virtual void GetPlanes (NCollection_Vector<SelectMgr_Vec4>& thePlaneEquations) const
184 {
185 thePlaneEquations.Clear();
186 return;
187 }
188
92efcf78 189 DEFINE_STANDARD_RTTIEXT(SelectMgr_BaseFrustum,Standard_Transient)
c04c30b3 190
f751596e 191protected:
3bf9a45f 192 Standard_Integer myPixelTolerance; //!< Pixel tolerance
193 Standard_Boolean myIsOrthographic; //!< Defines if current camera is orthographic
f751596e 194
bf3977c9 195 Handle(SelectMgr_FrustumBuilder) myBuilder; //!< A tool implementing methods for volume build
3fe9ce0e 196 Handle(Graphic3d_Camera) myCamera; //!< camera definition
f751596e 197};
198
199#endif // _SelectMgr_BaseFrustum_HeaderFile