0028162: Draw Harness - eliminate usage of deprecated Local Context
[occt.git] / src / OpenGl / OpenGl_Workspace.hxx
CommitLineData
b311480e 1// Created on: 2011-09-20
2// Created by: Sergey ZERCHANINOV
1981cb22 3// Copyright (c) 2011-2013 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 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
973c2be1 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.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
2166f0fa
SK
16#ifndef _OpenGl_Workspace_Header
17#define _OpenGl_Workspace_Header
18
bf75be98 19#include <Graphic3d_BufferType.hxx>
2166f0fa 20
bf75be98 21#include <OpenGl_AspectFace.hxx>
c357e426 22#include <OpenGl_CappingAlgo.hxx>
fc73a202 23#include <OpenGl_FrameBuffer.hxx>
2166f0fa
SK
24#include <OpenGl_Matrix.hxx>
25#include <OpenGl_NamedStatus.hxx>
4269bd1b 26#include <OpenGl_RenderFilter.hxx>
fc73a202 27#include <OpenGl_ShaderObject.hxx>
28#include <OpenGl_ShaderProgram.hxx>
c357e426 29#include <OpenGl_TextParam.hxx>
fc73a202 30#include <OpenGl_TextureBufferArb.hxx>
c357e426 31#include <OpenGl_Vec.hxx>
32#include <OpenGl_Window.hxx>
fc73a202 33
5b111128 34class OpenGl_View;
692613e5 35class Image_PixMap;
2166f0fa 36
0adbd30f 37//! OpenGL material definition
38struct OpenGl_Material
39{
40
41 OpenGl_Vec4 Ambient; //!< ambient reflection coefficient
42 OpenGl_Vec4 Diffuse; //!< diffuse reflection coefficient
43 OpenGl_Vec4 Specular; //!< glossy reflection coefficient
44 OpenGl_Vec4 Emission; //!< material emission
45 OpenGl_Vec4 Params; //!< extra packed parameters
46
47 Standard_ShortReal Shine() const { return Params.x(); }
48 Standard_ShortReal& ChangeShine() { return Params.x(); }
49
50 Standard_ShortReal Transparency() const { return Params.y(); }
51 Standard_ShortReal& ChangeTransparency() { return Params.y(); }
52
f9ba5c4d 53 //! Set material color.
54 void SetColor (const OpenGl_Vec4& theColor)
55 {
56 // apply the same formula as in Graphic3d_MaterialAspect::SetColor()
57 Ambient.xyz() = theColor.rgb() * 0.25f;
58 Diffuse.xyz() = theColor.rgb();
59 }
60
0adbd30f 61 //! Initialize material
b6472664 62 void Init (const Graphic3d_MaterialAspect& theProp,
63 const Quantity_Color& theInteriorColor);
0adbd30f 64
65 //! Returns packed (serialized) representation of material properties
66 const OpenGl_Vec4* Packed() const { return reinterpret_cast<const OpenGl_Vec4*> (this); }
67 static Standard_Integer NbOfVec4() { return 5; }
68
69};
70
c04c30b3 71class OpenGl_RaytraceFilter;
a89742cf 72DEFINE_STANDARD_HANDLE (OpenGl_RaytraceFilter, OpenGl_RenderFilter)
73
25ef750e 74//! Graphical ray-tracing filter.
a89742cf 75//! Filters out all raytracable structures.
76class OpenGl_RaytraceFilter : public OpenGl_RenderFilter
77{
78public:
79
80 //! Default constructor.
81 OpenGl_RaytraceFilter() {}
82
91c60b57 83 //! Returns the previously set filter.
84 const Handle(OpenGl_RenderFilter)& PrevRenderFilter()
85 {
86 return myPrevRenderFilter;
87 }
88
a89742cf 89 //! Remembers the previously set filter.
91c60b57 90 void SetPrevRenderFilter (const Handle(OpenGl_RenderFilter)& theFilter)
a89742cf 91 {
92 myPrevRenderFilter = theFilter;
93 }
94
95 //! Checks whether the element can be rendered or not.
96 //! @param theElement [in] the element to check.
97 //! @return True if element can be rendered.
79104795 98 virtual Standard_Boolean CanRender (const OpenGl_Element* theElement) Standard_OVERRIDE;
a89742cf 99
100private:
101
102 Handle(OpenGl_RenderFilter) myPrevRenderFilter;
103
104public:
105
92efcf78 106 DEFINE_STANDARD_RTTIEXT(OpenGl_RaytraceFilter,OpenGl_RenderFilter)
a89742cf 107};
108
c04c30b3 109class OpenGl_Workspace;
c357e426 110DEFINE_STANDARD_HANDLE(OpenGl_Workspace,Standard_Transient)
c04c30b3 111
c357e426 112//! Rendering workspace.
e276548b 113//! Provides methods to render primitives and maintain GL state.
c357e426 114class OpenGl_Workspace : public Standard_Transient
2166f0fa
SK
115{
116public:
117
c357e426 118 //! Constructor of rendering workspace.
119 Standard_EXPORT OpenGl_Workspace (OpenGl_View* theView, const Handle(OpenGl_Window)& theWindow);
2166f0fa
SK
120
121 //! Destructor
6d0e6be5 122 virtual ~OpenGl_Workspace() {}
2166f0fa 123
c357e426 124 //! Activate rendering context.
125 Standard_EXPORT Standard_Boolean Activate();
a272ed94 126
c357e426 127 OpenGl_View* View() const { return myView; }
2166f0fa 128
c357e426 129 const Handle(OpenGl_Context)& GetGlContext() { return myGlContext; }
2166f0fa 130
b128c892 131 Standard_EXPORT Handle(OpenGl_FrameBuffer) FBOCreate (const Standard_Integer theWidth, const Standard_Integer theHeight);
679ecdee 132
b128c892 133 Standard_EXPORT void FBORelease (Handle(OpenGl_FrameBuffer)& theFbo);
a174a3c5 134
b128c892 135 Standard_Boolean BufferDump (const Handle(OpenGl_FrameBuffer)& theFbo,
136 Image_PixMap& theImage,
137 const Graphic3d_BufferType& theBufferType);
2166f0fa 138
c357e426 139 Standard_EXPORT Standard_Integer Width() const;
140
141 Standard_EXPORT Standard_Integer Height() const;
142
eae454e3 143 //! Setup Z-buffer usage flag (without affecting GL state!).
144 //! Returns previously set flag.
145 Standard_Boolean SetUseZBuffer (const Standard_Boolean theToUse)
146 {
147 const Standard_Boolean wasUsed = myUseZBuffer;
148 myUseZBuffer = theToUse;
149 return wasUsed;
150 }
151
c357e426 152 //! @return true if usage of Z buffer is enabled.
153 Standard_Boolean& UseZBuffer() { return myUseZBuffer; }
154
155 //! @return true if depth writing is enabled.
eae454e3 156 Standard_Boolean& UseDepthWrite() { return myUseDepthWrite; }
2166f0fa 157
c357e426 158 //! @return true if clipping algorithm enabled
159 Standard_EXPORT Standard_Boolean IsCullingEnabled() const;
160
161 Standard_Integer NamedStatus;
162
163 //// RELATED TO STATUS ////
2166f0fa 164
b6472664 165 const OpenGl_Vec4* HighlightColor;
166
167 //! Return true if active group might activate face culling (e.g. primitives are closed).
168 bool ToAllowFaceCulling() const { return myToAllowFaceCulling; }
169
170 //! Allow or disallow face culling.
171 //! This call does NOT affect current state of back face culling;
172 //! ApplyAspectFace() should be called to update state.
173 void SetAllowFaceCulling (bool theToAllow) { myToAllowFaceCulling = theToAllow; }
2166f0fa 174
f9ba5c4d 175 //! Return true if following structures should apply highlight color.
176 bool ToHighlight() const { return myToHighlight; }
177
178 //! Set highlight.
179 void SetHighlight (bool theToHighlight) { myToHighlight = theToHighlight; }
180
181 //! Return line color taking into account highlight flag.
b6472664 182 const OpenGl_Vec4& LineColor() const
f9ba5c4d 183 {
184 return myToHighlight
185 ? *HighlightColor
b6472664 186 : myAspectLineSet->Aspect()->ColorRGBA();
f9ba5c4d 187 }
188
189 //! Return edge color taking into account highlight flag.
b6472664 190 const OpenGl_Vec4& EdgeColor() const
f9ba5c4d 191 {
192 return myToHighlight
193 ? *HighlightColor
b6472664 194 : myAspectFaceSet->AspectEdge()->Aspect()->ColorRGBA();
f9ba5c4d 195 }
196
197 //! Return marker color taking into account highlight flag.
b6472664 198 const OpenGl_Vec4& MarkerColor() const
f9ba5c4d 199 {
200 return myToHighlight
201 ? *HighlightColor
b6472664 202 : myAspectMarkerSet->Aspect()->ColorRGBA();
f9ba5c4d 203 }
204
205 //! Return Interior color taking into account highlight flag.
b6472664 206 const OpenGl_Vec4& InteriorColor() const
f9ba5c4d 207 {
208 return myToHighlight
209 ? *HighlightColor
b6472664 210 : myAspectFaceSet->Aspect()->InteriorColorRGBA();
f9ba5c4d 211 }
212
213 //! Return text color taking into account highlight flag.
b6472664 214 const OpenGl_Vec4& TextColor() const
f9ba5c4d 215 {
216 return myToHighlight
217 ? *HighlightColor
b6472664 218 : myAspectTextSet->Aspect()->ColorRGBA();
f9ba5c4d 219 }
220
221 //! Return text Subtitle color taking into account highlight flag.
b6472664 222 const OpenGl_Vec4& TextSubtitleColor() const
f9ba5c4d 223 {
224 return myToHighlight
225 ? *HighlightColor
b6472664 226 : myAspectTextSet->Aspect()->ColorSubTitleRGBA();
f9ba5c4d 227 }
228
229 //! Currently set line aspect (can differ from applied).
230 const OpenGl_AspectLine* AspectLine() const { return myAspectLineSet; }
231
232 //! Currently set face aspect (can differ from applied).
233 const OpenGl_AspectFace* AspectFace() const { return myAspectFaceSet; }
234
235 //! Currently set marker aspect (can differ from applied).
236 const OpenGl_AspectMarker* AspectMarker() const { return myAspectMarkerSet; }
237
238 //! Currently set text aspect (can differ from applied).
239 const OpenGl_AspectText* AspectText() const { return myAspectTextSet; }
240
241 //! Assign new line aspect (will be applied within ApplyAspectLine()).
71c6e1e5 242 Standard_EXPORT const OpenGl_AspectLine* SetAspectLine (const OpenGl_AspectLine* theAspect);
f9ba5c4d 243
244 //! Assign new face aspect (will be applied within ApplyAspectFace()).
71c6e1e5 245 Standard_EXPORT const OpenGl_AspectFace* SetAspectFace (const OpenGl_AspectFace* theAspect);
f9ba5c4d 246
247 //! Assign new marker aspect (will be applied within ApplyAspectMarker()).
71c6e1e5 248 Standard_EXPORT const OpenGl_AspectMarker* SetAspectMarker (const OpenGl_AspectMarker* theAspect);
f9ba5c4d 249
250 //! Assign new text aspect (will be applied within ApplyAspectText()).
71c6e1e5 251 Standard_EXPORT const OpenGl_AspectText* SetAspectText (const OpenGl_AspectText* theAspect);
2166f0fa 252
f9ba5c4d 253 //! Apply line aspect.
254 //! @return aspect set by SetAspectLine()
255 const OpenGl_AspectLine* ApplyAspectLine() { return myAspectLineSet; }
256
257 //! Apply face aspect.
258 //! @return aspect set by SetAspectFace()
259 Standard_EXPORT const OpenGl_AspectFace* ApplyAspectFace();
260
261 //! Apply marker aspect.
262 //! @return aspect set by SetAspectMarker()
263 Standard_EXPORT const OpenGl_AspectMarker* ApplyAspectMarker();
264
265 //! Apply text aspect.
266 //! @return aspect set by SetAspectText()
267 const OpenGl_AspectText* ApplyAspectText() { return myAspectTextSet; }
2166f0fa 268
f9ba5c4d 269 //! Clear the applied aspect state to default values.
34a44cbd 270 void ResetAppliedAspect();
271
bf75be98 272 Standard_EXPORT Handle(OpenGl_Texture) DisableTexture();
273 Standard_EXPORT Handle(OpenGl_Texture) EnableTexture (const Handle(OpenGl_Texture)& theTexture,
274 const Handle(Graphic3d_TextureParams)& theParams = NULL);
8625ef7e 275 const Handle(OpenGl_Texture)& ActiveTexture() const { return myTextureBound; }
bf75be98 276
4269bd1b 277 //! Set filter for restricting rendering of particular elements.
278 //! Filter can be applied for rendering passes used by recursive
279 //! rendering algorithms for rendering elements of groups.
280 //! @param theFilter [in] the filter instance.
281 inline void SetRenderFilter (const Handle(OpenGl_RenderFilter)& theFilter)
282 {
5322131b 283 myRenderFilter = theFilter;
4269bd1b 284 }
285
286 //! Get rendering filter.
287 //! @return filter instance.
5322131b 288 inline const Handle(OpenGl_RenderFilter)& GetRenderFilter() const
289 {
290 return myRenderFilter;
4269bd1b 291 }
292
293 //! @return applied view matrix.
294 inline const OpenGl_Matrix* ViewMatrix() const { return ViewMatrix_applied; }
295
296 //! @return applied model structure matrix.
297 inline const OpenGl_Matrix* ModelMatrix() const { return StructureMatrix_applied; }
298
550f3b8b 299 //! Sets and applies current polygon offset.
b6472664 300 void SetPolygonOffset (const Graphic3d_PolygonOffset& theParams);
550f3b8b 301
6d0e6be5 302 //! Returns currently applied polygon offset parameters.
b6472664 303 const Graphic3d_PolygonOffset& AppliedPolygonOffset() { return myPolygonOffsetApplied; }
550f3b8b 304
f8ae3605 305 //! Returns capping algorithm rendering filter.
306 const Handle(OpenGl_CappingAlgoFilter)& DefaultCappingAlgoFilter() const
307 {
308 return myDefaultCappingAlgoFilter;
309 }
310
311 //! Returns face aspect for none culling mode.
312 const OpenGl_AspectFace& NoneCulling() const
313 {
314 return myNoneCulling;
315 }
316
317 //! Returns face aspect for front face culling mode.
318 const OpenGl_AspectFace& FrontCulling() const
319 {
320 return myFrontCulling;
321 }
322
83da37b1 323 //! Sets a new environment texture.
324 void SetEnvironmentTexture (const Handle(OpenGl_Texture)& theTexture)
325 {
326 myEnvironmentTexture = theTexture;
327 }
328
329 //! Returns environment texture.
330 const Handle(OpenGl_Texture)& EnvironmentTexture() const
331 {
332 return myEnvironmentTexture;
333 }
334
2166f0fa
SK
335protected:
336
b6472664 337 enum
338 {
339 TEL_FRONT_MATERIAL = 1,
340 TEL_BACK_MATERIAL = 2
341 };
342
0adbd30f 343 void updateMaterial (const int theFlag);
2166f0fa 344
bf75be98 345 void setTextureParams (Handle(OpenGl_Texture)& theTexture,
346 const Handle(Graphic3d_TextureParams)& theParams);
2166f0fa 347
91c60b57 348protected: //! @name protected fields
265d4508 349
c357e426 350 OpenGl_View* myView;
351 Handle(OpenGl_Window) myWindow;
352 Handle(OpenGl_Context) myGlContext;
c357e426 353 Standard_Boolean myUseZBuffer;
354 Standard_Boolean myUseDepthWrite;
f8ae3605 355 Handle(OpenGl_CappingAlgoFilter) myDefaultCappingAlgoFilter;
356 OpenGl_AspectFace myNoneCulling;
357 OpenGl_AspectFace myFrontCulling;
358
bf75be98 359protected: //! @name fields related to status
360
4269bd1b 361 Handle(OpenGl_RenderFilter) myRenderFilter;
bf75be98 362 Handle(OpenGl_Texture) myTextureBound; //!< currently bound texture (managed by OpenGl_AspectFace and OpenGl_View environment texture)
f9ba5c4d 363 const OpenGl_AspectLine* myAspectLineSet;
364 const OpenGl_AspectFace* myAspectFaceSet;
b6472664 365 Handle(Graphic3d_AspectFillArea3d) myAspectFaceApplied;
f9ba5c4d 366 const OpenGl_AspectMarker* myAspectMarkerSet;
b6472664 367 Handle(Graphic3d_AspectMarker3d) myAspectMarkerApplied;
f9ba5c4d 368 const OpenGl_AspectText* myAspectTextSet;
369 bool myAspectFaceAppliedWithHL;
2166f0fa 370
2166f0fa
SK
371 const OpenGl_Matrix* ViewMatrix_applied;
372 const OpenGl_Matrix* StructureMatrix_applied;
373
3b1817a9 374 OpenGl_Material myMatFront; //!< current front material state (cached to reduce GL context updates)
375 OpenGl_Material myMatBack; //!< current back material state
376 OpenGl_Material myMatTmp; //!< temporary variable
b6472664 377 bool myToAllowFaceCulling; //!< allow back face culling
f9ba5c4d 378 bool myToHighlight; //!< flag indicating highlighting mode
0adbd30f 379
550f3b8b 380 OpenGl_Matrix myModelViewMatrix; //!< Model matrix with applied structure transformations
0f8c0fb8 381
b6472664 382 Graphic3d_PolygonOffset myPolygonOffsetApplied; //!< currently applied polygon offset
2166f0fa 383
550f3b8b 384 OpenGl_AspectFace myAspectFaceHl; //!< Hiddenline aspect
bf75be98 385
83da37b1 386 Handle(OpenGl_Texture) myEnvironmentTexture;
387
bf75be98 388public: //! @name type definition
2166f0fa 389
92efcf78 390 DEFINE_STANDARD_RTTIEXT(OpenGl_Workspace,Standard_Transient)
1c35b92f 391 DEFINE_STANDARD_ALLOC
2166f0fa
SK
392
393};
394
bf75be98 395#endif // _OpenGl_Workspace_Header