0027860: Visualization - clean up Transformation Persistence API
[occt.git] / src / OpenGl / OpenGl_View.cxx
CommitLineData
b311480e 1// Created on: 2011-09-20
2// Created by: Sergey ZERCHANINOV
973c2be1 3// Copyright (c) 2011-2014 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
c357e426 16#include <OpenGl_View.hxx>
5f8b738e 17
c357e426 18#include <Aspect_RenderingContext.hxx>
19#include <Aspect_Window.hxx>
20#include <Graphic3d_AspectFillArea3d.hxx>
21#include <Graphic3d_Texture2Dmanual.hxx>
22#include <Graphic3d_TextureEnv.hxx>
23#include <Graphic3d_Mat4d.hxx>
24#include <NCollection_Mat4.hxx>
bf75be98 25#include <OpenGl_Context.hxx>
c357e426 26#include <OpenGl_FrameBuffer.hxx>
30f0ad28 27#include <OpenGl_GlCore11.hxx>
28#include <OpenGl_GraduatedTrihedron.hxx>
392ac980 29#include <OpenGl_GraphicDriver.hxx>
30f0ad28 30#include <OpenGl_ShaderManager.hxx>
bf75be98 31#include <OpenGl_Texture.hxx>
2166f0fa 32#include <OpenGl_Trihedron.hxx>
c357e426 33#include <OpenGl_Window.hxx>
30f0ad28 34#include <OpenGl_Workspace.hxx>
c357e426 35#include <Standard_CLocaleSentry.hxx>
2166f0fa 36
92efcf78 37IMPLEMENT_STANDARD_RTTIEXT(OpenGl_View,Graphic3d_CView)
38
c357e426 39#ifdef HAVE_GL2PS
40#include <gl2ps.h>
41#endif
2166f0fa 42
c357e426 43// =======================================================================
44// function : Constructor
45// purpose :
46// =======================================================================
47OpenGl_View::OpenGl_View (const Handle(Graphic3d_StructureManager)& theMgr,
48 const Handle(OpenGl_GraphicDriver)& theDriver,
49 const Handle(OpenGl_Caps)& theCaps,
50 Standard_Boolean& theDeviceLostFlag,
51 OpenGl_StateCounter* theCounter)
52: Graphic3d_CView (theMgr),
53 myDriver (theDriver.operator->()),
54 myCaps (theCaps),
55 myDeviceLostFlag (theDeviceLostFlag),
56 myWasRedrawnGL (Standard_False),
c357e426 57 myCulling (Standard_True),
58 myShadingModel (Graphic3d_TOSM_FACET),
c357e426 59 myBackfacing (Graphic3d_TOBM_AUTOMATIC),
b6472664 60 myBgColor (Quantity_NOC_BLACK),
c357e426 61 myCamera (new Graphic3d_Camera()),
c357e426 62 myUseGLLight (Standard_True),
63 myToShowTrihedron (false),
64 myToShowGradTrihedron (false),
65 myStateCounter (theCounter),
0b0320e7 66 myLastLightSourceState (0, 0),
3c4b62a4 67 myFboColorFormat (GL_RGBA8),
68 myFboDepthFormat (GL_DEPTH24_STENCIL8),
69 myToFlipOutput (Standard_False),
c357e426 70 myFrameCounter (0),
71 myHasFboBlit (Standard_True),
7ccf8676 72 myToDisableMSAA (Standard_False),
c357e426 73 myTransientDrawToFront (Standard_True),
74 myBackBufferRestored (Standard_False),
75 myIsImmediateDrawn (Standard_False),
0b0320e7 76 myTextureParams (new OpenGl_AspectFace()),
77 myBgGradientArray (new OpenGl_BackgroundArray (Graphic3d_TOB_GRADIENT)),
91c60b57 78 myBgTextureArray (new OpenGl_BackgroundArray (Graphic3d_TOB_TEXTURE)),
79 // ray-tracing fields initialization
c357e426 80 myRaytraceInitStatus (OpenGl_RT_NONE),
81 myIsRaytraceDataValid (Standard_False),
91c60b57 82 myIsRaytraceWarnTextures (Standard_False),
83 myToUpdateEnvironmentMap (Standard_False),
189f85a3 84 myLayerListState (0)
2166f0fa 85{
c357e426 86 myWorkspace = new OpenGl_Workspace (this, NULL);
2166f0fa 87
016e5959 88 OpenGl_Light aLight;
89 aLight.Type = Graphic3d_TOLS_AMBIENT;
90 aLight.IsHeadlight = Standard_False;
91 aLight.Color.r() = 1.;
92 aLight.Color.g() = 1.;
93 aLight.Color.b() = 1.;
94 myNoShadingLight.Append (aLight);
95
c357e426 96 myCurrLightSourceState = myStateCounter->Increment();
97 myMainSceneFbos[0] = new OpenGl_FrameBuffer();
98 myMainSceneFbos[1] = new OpenGl_FrameBuffer();
99 myImmediateSceneFbos[0] = new OpenGl_FrameBuffer();
100 myImmediateSceneFbos[1] = new OpenGl_FrameBuffer();
3c4b62a4 101 myOpenGlFBO = new OpenGl_FrameBuffer();
102 myOpenGlFBO2 = new OpenGl_FrameBuffer();
103 myRaytraceFBO1[0] = new OpenGl_FrameBuffer();
104 myRaytraceFBO1[1] = new OpenGl_FrameBuffer();
105 myRaytraceFBO2[0] = new OpenGl_FrameBuffer();
106 myRaytraceFBO2[1] = new OpenGl_FrameBuffer();
c357e426 107}
108
109// =======================================================================
110// function : Destructor
111// purpose :
112// =======================================================================
0b0320e7 113OpenGl_View::~OpenGl_View()
2166f0fa 114{
bf75be98 115 ReleaseGlResources (NULL); // ensure ReleaseGlResources() was called within valid context
0b0320e7 116 OpenGl_Element::Destroy (NULL, myBgGradientArray);
117 OpenGl_Element::Destroy (NULL, myBgTextureArray);
118 OpenGl_Element::Destroy (NULL, myTextureParams);
bf75be98 119}
120
c357e426 121// =======================================================================
122// function : ReleaseGlResources
123// purpose :
124// =======================================================================
bf75be98 125void OpenGl_View::ReleaseGlResources (const Handle(OpenGl_Context)& theCtx)
126{
536d98e2 127 myTrihedron .Release (theCtx.operator->());
128 myGraduatedTrihedron.Release (theCtx.operator->());
30f0ad28 129
bf75be98 130 if (!myTextureEnv.IsNull())
131 {
132 theCtx->DelayedRelease (myTextureEnv);
133 myTextureEnv.Nullify();
134 }
0b0320e7 135
136 if (myTextureParams != NULL)
137 {
138 myTextureParams->Release (theCtx.operator->());
139 }
140 if (myBgGradientArray != NULL)
141 {
142 myBgGradientArray->Release (theCtx.operator->());
143 }
144 if (myBgTextureArray != NULL)
bf75be98 145 {
0b0320e7 146 myBgTextureArray->Release (theCtx.operator->());
bf75be98 147 }
91c60b57 148
c357e426 149 myMainSceneFbos[0] ->Release (theCtx.operator->());
150 myMainSceneFbos[1] ->Release (theCtx.operator->());
151 myImmediateSceneFbos[0]->Release (theCtx.operator->());
152 myImmediateSceneFbos[1]->Release (theCtx.operator->());
3c4b62a4 153 myOpenGlFBO ->Release (theCtx.operator->());
154 myOpenGlFBO2 ->Release (theCtx.operator->());
c357e426 155 myFullScreenQuad .Release (theCtx.operator->());
156 myFullScreenQuadFlip .Release (theCtx.operator->());
157
91c60b57 158 releaseRaytraceResources (theCtx);
bf75be98 159}
2166f0fa 160
c357e426 161// =======================================================================
162// function : Remove
163// purpose :
164// =======================================================================
165void OpenGl_View::Remove()
bf75be98 166{
c357e426 167 if (IsRemoved())
bf75be98 168 {
c357e426 169 return;
bf75be98 170 }
171
c357e426 172 myDriver->RemoveView (this);
173 myWindow.Nullify();
174
175 Graphic3d_CView::Remove();
176}
177
178// =======================================================================
179// function : SetTextureEnv
180// purpose :
181// =======================================================================
182void OpenGl_View::SetTextureEnv (const Handle(Graphic3d_TextureEnv)& theTextureEnv)
183{
184 Handle(OpenGl_Context) aCtx = myWorkspace->GetGlContext();
185 if (!aCtx.IsNull() && !myTextureEnv.IsNull())
186 {
187 aCtx->DelayedRelease (myTextureEnv);
188 }
189
190 myToUpdateEnvironmentMap = Standard_True;
191 myTextureEnvData = theTextureEnv;
192 myTextureEnv.Nullify();
193 initTextureEnv (aCtx);
194}
195
196// =======================================================================
197// function : initTextureEnv
198// purpose :
199// =======================================================================
200void OpenGl_View::initTextureEnv (const Handle(OpenGl_Context)& theContext)
201{
202 if (myTextureEnvData.IsNull()
203 || theContext.IsNull()
204 || !theContext->MakeCurrent())
bf75be98 205 {
206 return;
207 }
208
c357e426 209 myTextureEnv = new OpenGl_Texture (myTextureEnvData->GetParams());
210 Handle(Image_PixMap) anImage = myTextureEnvData->GetImage();
e276548b 211 if (!anImage.IsNull())
c357e426 212 {
213 myTextureEnv->Init (theContext, *anImage.operator->(), myTextureEnvData->Type());
214 }
215}
e276548b 216
c357e426 217// =======================================================================
218// function : SetImmediateModeDrawToFront
219// purpose :
220// =======================================================================
221Standard_Boolean OpenGl_View::SetImmediateModeDrawToFront (const Standard_Boolean theDrawToFrontBuffer)
222{
223 const Standard_Boolean aPrevMode = myTransientDrawToFront;
224 myTransientDrawToFront = theDrawToFrontBuffer;
225 return aPrevMode;
e276548b 226}
227
c357e426 228// =======================================================================
229// function : SetWindow
230// purpose :
231// =======================================================================
232void OpenGl_View::SetWindow (const Handle(Aspect_Window)& theWindow,
a521d90d 233 const Aspect_RenderingContext theContext)
e276548b 234{
c357e426 235 myWindow = myDriver->CreateRenderWindow (theWindow, theContext);
236 Standard_ASSERT_RAISE (!myWindow.IsNull(),
237 "OpenGl_View::SetWindow, "
238 "Failed to create OpenGl window.");
e276548b 239
c357e426 240 myWorkspace = new OpenGl_Workspace (this, myWindow);
241 myWorldViewProjState.Reset();
91c60b57 242 myToUpdateEnvironmentMap = Standard_True;
c357e426 243 myHasFboBlit = Standard_True;
244 Invalidate();
245
246 // Environment texture resource does not support lazy initialization.
247 initTextureEnv (myWorkspace->GetGlContext());
248}
249
250// =======================================================================
251// function : Resized
252// purpose :
253// =======================================================================
254void OpenGl_View::Resized()
255{
256 if (myWindow.IsNull())
257 return;
258
259 myWindow->Resize();
260}
261
262// =======================================================================
263// function : TriedronDisplay
264// purpose :
265// =======================================================================
266void OpenGl_View::TriedronDisplay (const Aspect_TypeOfTriedronPosition thePosition,
267 const Quantity_NameOfColor theColor,
268 const Standard_Real theScale,
269 const Standard_Boolean theAsWireframe)
270{
271 myToShowTrihedron = true;
272 myTrihedron.SetWireframe (theAsWireframe);
273 myTrihedron.SetPosition (thePosition);
274 myTrihedron.SetScale (theScale);
275 myTrihedron.SetLabelsColor (theColor);
2166f0fa
SK
276}
277
12381341 278// =======================================================================
c357e426 279// function : TriedronErase
12381341 280// purpose :
281// =======================================================================
c357e426 282void OpenGl_View::TriedronErase()
2166f0fa 283{
c357e426 284 myToShowTrihedron = false;
285 myTrihedron.Release (myWorkspace->GetGlContext().operator->());
286}
287
288// =======================================================================
289// function : ZBufferTriedronSetup
290// purpose :
291// =======================================================================
292void OpenGl_View::ZBufferTriedronSetup (const Quantity_NameOfColor theXColor,
293 const Quantity_NameOfColor theYColor,
294 const Quantity_NameOfColor theZColor,
295 const Standard_Real theSizeRatio,
296 const Standard_Real theAxisDiametr,
297 const Standard_Integer theNbFacettes)
298{
299 myTrihedron.SetArrowsColors (theXColor, theYColor, theZColor);
300 myTrihedron.SetSizeRatio (theSizeRatio);
301 myTrihedron.SetNbFacets (theNbFacettes);
302 myTrihedron.SetArrowDiameter (theAxisDiametr);
2166f0fa
SK
303}
304
12381341 305// =======================================================================
c357e426 306// function : TriedronEcho
12381341 307// purpose :
308// =======================================================================
c357e426 309void OpenGl_View::TriedronEcho (const Aspect_TypeOfTriedronEcho /*theType*/)
2166f0fa 310{
c357e426 311 // do nothing
312}
313
314// =======================================================================
315// function : SetMinMaxValuesCallback
316// purpose :
317// =======================================================================
318static void SetMinMaxValuesCallback (Graphic3d_CView* theView)
319{
320 OpenGl_View* aView = dynamic_cast<OpenGl_View*>(theView);
321 if (aView == NULL)
322 return;
323
324 Bnd_Box aBox = theView->MinMaxValues();
325 if (!aBox.IsVoid())
2166f0fa 326 {
c357e426 327 gp_Pnt aMin = aBox.CornerMin();
328 gp_Pnt aMax = aBox.CornerMax();
329
330 Graphic3d_Vec3 aMinVec ((Standard_ShortReal )aMin.X(), (Standard_ShortReal )aMin.Y(), (Standard_ShortReal )aMin.Z());
331 Graphic3d_Vec3 aMaxVec ((Standard_ShortReal )aMax.X(), (Standard_ShortReal )aMax.Y(), (Standard_ShortReal )aMax.Z());
332 aView->GraduatedTrihedronMinMaxValues (aMinVec, aMaxVec);
2166f0fa
SK
333 }
334}
335
c357e426 336// =======================================================================
337// function : GraduatedTrihedronDisplay
338// purpose :
339// =======================================================================
340void OpenGl_View::GraduatedTrihedronDisplay (const Graphic3d_GraduatedTrihedron& theTrihedronData)
341{
342 myGTrihedronData = theTrihedronData;
343 myGTrihedronData.PtrView = this;
344 myGTrihedronData.CubicAxesCallback = SetMinMaxValuesCallback;
345 myGraduatedTrihedron.SetValues (myGTrihedronData);
346 myToShowGradTrihedron = true;
347}
2166f0fa 348
c357e426 349// =======================================================================
350// function : GraduatedTrihedronErase
351// purpose :
352// =======================================================================
353void OpenGl_View::GraduatedTrihedronErase()
2166f0fa 354{
c357e426 355 myGTrihedronData.PtrView = NULL;
356 myGraduatedTrihedron.Release (myWorkspace->GetGlContext().operator->());
357 myToShowGradTrihedron = false;
2166f0fa
SK
358}
359
c357e426 360// =======================================================================
361// function : GraduatedTrihedronMinMaxValues
362// purpose :
363// =======================================================================
364void OpenGl_View::GraduatedTrihedronMinMaxValues (const Graphic3d_Vec3 theMin, const Graphic3d_Vec3 theMax)
365{
366 myGraduatedTrihedron.SetMinMax (theMin, theMax);
367}
2166f0fa 368
c357e426 369// =======================================================================
370// function : BufferDump
371// purpose :
372// =======================================================================
373Standard_Boolean OpenGl_View::BufferDump (Image_PixMap& theImage, const Graphic3d_BufferType& theBufferType)
374{
375 return myWorkspace->BufferDump (myFBO, theImage, theBufferType);
376}
377
378// =======================================================================
379// function : Background
380// purpose :
381// =======================================================================
382Aspect_Background OpenGl_View::Background() const
383{
b6472664 384 return Aspect_Background (myBgColor.GetRGB());
c357e426 385}
386
387// =======================================================================
388// function : SetBackground
389// purpose :
390// =======================================================================
391void OpenGl_View::SetBackground (const Aspect_Background& theBackground)
392{
b6472664 393 myBgColor.SetRGB (theBackground.Color());
c357e426 394}
395
396// =======================================================================
397// function : GradientBackground
398// purpose :
399// =======================================================================
400Aspect_GradientBackground OpenGl_View::GradientBackground() const
401{
402 Quantity_Color aColor1, aColor2;
403 aColor1.SetValues (myBgGradientArray->GradientColor (0).r(),
404 myBgGradientArray->GradientColor (0).g(),
405 myBgGradientArray->GradientColor (0).b(), Quantity_TOC_RGB);
406 aColor2.SetValues (myBgGradientArray->GradientColor (1).r(),
407 myBgGradientArray->GradientColor (1).g(),
408 myBgGradientArray->GradientColor (1).b(), Quantity_TOC_RGB);
409 return Aspect_GradientBackground (aColor1, aColor2, myBgGradientArray->GradientFillMethod());
410}
2166f0fa 411
c357e426 412// =======================================================================
413// function : SetGradientBackground
414// purpose :
415// =======================================================================
416void OpenGl_View::SetGradientBackground (const Aspect_GradientBackground& theBackground)
2166f0fa 417{
c357e426 418 Quantity_Color aColor1, aColor2;
419 theBackground.Colors (aColor1, aColor2);
420 myBgGradientArray->SetGradientParameters (aColor1, aColor2, theBackground.BgGradientFillMethod());
421}
422
423// =======================================================================
424// function : SetBackgroundImage
425// purpose :
426// =======================================================================
427void OpenGl_View::SetBackgroundImage (const TCollection_AsciiString& theFilePath)
428{
429 // Prepare aspect for texture storage
430 myBackgroundImagePath = theFilePath;
431 Handle(Graphic3d_AspectFillArea3d) anAspect = new Graphic3d_AspectFillArea3d();
432 Handle(Graphic3d_Texture2Dmanual) aTextureMap = new Graphic3d_Texture2Dmanual (TCollection_AsciiString (theFilePath));
433 aTextureMap->EnableRepeat();
434 aTextureMap->DisableModulate();
435 aTextureMap->GetParams()->SetGenMode (Graphic3d_TOTM_MANUAL,
436 Graphic3d_Vec4 (0.0f, 0.0f, 0.0f, 0.0f),
437 Graphic3d_Vec4 (0.0f, 0.0f, 0.0f, 0.0f));
438 anAspect->SetTextureMap (aTextureMap);
439 anAspect->SetInteriorStyle (Aspect_IS_SOLID);
b6472664 440 anAspect->SetSuppressBackFaces (false);
c357e426 441 // Enable texture mapping
442 if (aTextureMap->IsDone())
2166f0fa 443 {
c357e426 444 anAspect->SetTextureMapOn();
2166f0fa
SK
445 }
446 else
447 {
c357e426 448 anAspect->SetTextureMapOff();
449 return;
450 }
2166f0fa 451
c357e426 452 // Set texture parameters
453 myTextureParams->SetAspect (anAspect);
454}
2166f0fa 455
c357e426 456// =======================================================================
457// function : BackgroundImageStyle
458// purpose :
459// =======================================================================
460Aspect_FillMethod OpenGl_View::BackgroundImageStyle() const
461{
462 return myBgTextureArray->TextureFillMethod();
2166f0fa
SK
463}
464
c357e426 465// =======================================================================
466// function : SetBackgroundImageStyle
467// purpose :
468// =======================================================================
469void OpenGl_View::SetBackgroundImageStyle (const Aspect_FillMethod theFillStyle)
470{
471 myBgTextureArray->SetTextureFillMethod (theFillStyle);
472}
2166f0fa 473
c357e426 474//=======================================================================
475//function : AddZLayer
476//purpose :
477//=======================================================================
478void OpenGl_View::AddZLayer (const Graphic3d_ZLayerId theLayerId)
2166f0fa 479{
c357e426 480 myZLayers.AddLayer (theLayerId);
2166f0fa
SK
481}
482
c357e426 483//=======================================================================
484//function : RemoveZLayer
485//purpose :
486//=======================================================================
487void OpenGl_View::RemoveZLayer (const Graphic3d_ZLayerId theLayerId)
488{
489 myZLayers.RemoveLayer (theLayerId);
490}
2166f0fa 491
c357e426 492//=======================================================================
493//function : SetZLayerSettings
494//purpose :
495//=======================================================================
496void OpenGl_View::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId,
497 const Graphic3d_ZLayerSettings& theSettings)
2166f0fa 498{
c357e426 499 myZLayers.SetLayerSettings (theLayerId, theSettings);
2166f0fa
SK
500}
501
50d06d8f 502//=======================================================================
503//function : ZLayerMax
504//purpose :
505//=======================================================================
506Standard_Integer OpenGl_View::ZLayerMax() const
507{
508 Standard_Integer aLayerMax = Graphic3d_ZLayerId_Default;
509 for (OpenGl_LayerSeqIds::Iterator aMapIt(myZLayers.LayerIDs()); aMapIt.More(); aMapIt.Next())
510 {
511 aLayerMax = Max (aLayerMax, aMapIt.Value());
512 }
513
514 return aLayerMax;
515}
516
517//=======================================================================
518//function : InvalidateZLayerBoundingBox
519//purpose :
520//=======================================================================
521void OpenGl_View::InvalidateZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId) const
522{
523 if (myZLayers.LayerIDs().IsBound (theLayerId))
524 {
525 myZLayers.Layer (theLayerId).InvalidateBoundingBox();
526 }
527 else
528 {
529 for (Standard_Integer aLayerId = Graphic3d_ZLayerId_Default; aLayerId < ZLayerMax(); ++aLayerId)
530 {
531 if (myZLayers.LayerIDs().IsBound (aLayerId))
532 {
533 const OpenGl_Layer& aLayer = myZLayers.Layer (aLayerId);
534 if (aLayer.NbOfTransformPersistenceObjects() > 0)
535 {
536 aLayer.InvalidateBoundingBox();
537 }
538 }
539 }
540 }
541}
542
543//=======================================================================
544//function : ZLayerBoundingBox
545//purpose :
546//=======================================================================
547Graphic3d_BndBox4f OpenGl_View::ZLayerBoundingBox (const Graphic3d_ZLayerId theLayerId,
548 const Handle(Graphic3d_Camera)& theCamera,
549 const Standard_Integer theWindowWidth,
550 const Standard_Integer theWindowHeight,
3fe9ce0e 551 const Standard_Boolean theToIncludeAuxiliary) const
50d06d8f 552{
71d8ccc7 553 Graphic3d_BndBox4f aBox;
50d06d8f 554 if (myZLayers.LayerIDs().IsBound (theLayerId))
555 {
71d8ccc7 556 aBox = myZLayers.Layer (theLayerId).BoundingBox (Identification(),
50d06d8f 557 theCamera,
558 theWindowWidth,
559 theWindowHeight,
3fe9ce0e 560 theToIncludeAuxiliary);
50d06d8f 561 }
562
71d8ccc7 563 // add bounding box of gradient/texture background for proper Z-fit
564 if (theToIncludeAuxiliary
565 && theLayerId == Graphic3d_ZLayerId_BotOSD
566 && (myBgTextureArray->IsDefined()
567 || myBgGradientArray->IsDefined()))
568 {
569 // Background is drawn using 2D transformation persistence
570 // (e.g. it is actually placed in 3D coordinates within active camera position).
571 // We add here full-screen plane with 2D transformation persistence
572 // for simplicity (myBgTextureArray might define a little bit different options
573 // but it is updated within ::Render())
574 const Graphic3d_Mat4& aProjectionMat = theCamera->ProjectionMatrixF();
575 const Graphic3d_Mat4& aWorldViewMat = theCamera->OrientationMatrixF();
576 Graphic3d_BndBox4f aBox2d (Graphic3d_Vec4 (0.0f, 0.0f, 0.0f, 0.0f),
577 Graphic3d_Vec4 (float(theWindowWidth), float(theWindowHeight), 0.0f, 0.0f));
578
778cd667 579 Graphic3d_TransformPers aTrsfPers (Graphic3d_TMF_2d, Aspect_TOTP_LEFT_LOWER);
71d8ccc7 580 aTrsfPers.Apply (theCamera,
581 aProjectionMat,
582 aWorldViewMat,
583 theWindowWidth,
584 theWindowHeight,
585 aBox2d);
586 aBox.Combine (aBox2d);
587 }
588
589 return aBox;
50d06d8f 590}
591
592//=======================================================================
593//function : considerZoomPersistenceObjects
594//purpose :
595//=======================================================================
596Standard_Real OpenGl_View::considerZoomPersistenceObjects (const Graphic3d_ZLayerId theLayerId,
597 const Handle(Graphic3d_Camera)& theCamera,
598 const Standard_Integer theWindowWidth,
3fe9ce0e 599 const Standard_Integer theWindowHeight) const
50d06d8f 600{
1d92133e 601 if (myZLayers.LayerIDs().IsBound (theLayerId))
50d06d8f 602 {
603 return myZLayers.Layer (theLayerId).considerZoomPersistenceObjects (Identification(),
604 theCamera,
605 theWindowWidth,
3fe9ce0e 606 theWindowHeight);
50d06d8f 607 }
608
609 return 1.0;
610}
611
c357e426 612//=======================================================================
613//function : FBO
614//purpose :
615//=======================================================================
b128c892 616Handle(Standard_Transient) OpenGl_View::FBO() const
c357e426 617{
b128c892 618 return Handle(Standard_Transient)(myFBO);
c357e426 619}
2166f0fa 620
c357e426 621//=======================================================================
622//function : SetFBO
623//purpose :
624//=======================================================================
b128c892 625void OpenGl_View::SetFBO (const Handle(Standard_Transient)& theFbo)
2166f0fa 626{
b128c892 627 myFBO = Handle(OpenGl_FrameBuffer)::DownCast (theFbo);
2166f0fa
SK
628}
629
c357e426 630//=======================================================================
631//function : FBOCreate
632//purpose :
633//=======================================================================
b128c892 634Handle(Standard_Transient) OpenGl_View::FBOCreate (const Standard_Integer theWidth,
635 const Standard_Integer theHeight)
c357e426 636{
637 return myWorkspace->FBOCreate (theWidth, theHeight);
638}
2166f0fa 639
c357e426 640//=======================================================================
641//function : FBORelease
642//purpose :
643//=======================================================================
b128c892 644void OpenGl_View::FBORelease (Handle(Standard_Transient)& theFbo)
2166f0fa 645{
b128c892 646 Handle(OpenGl_FrameBuffer) aFrameBuffer = Handle(OpenGl_FrameBuffer)::DownCast (theFbo);
647 if (aFrameBuffer.IsNull())
648 {
649 return;
650 }
651
652 myWorkspace->FBORelease (aFrameBuffer);
653 theFbo.Nullify();
c357e426 654}
655
656//=======================================================================
657//function : FBOGetDimensions
658//purpose :
659//=======================================================================
b128c892 660void OpenGl_View::FBOGetDimensions (const Handle(Standard_Transient)& theFbo,
c357e426 661 Standard_Integer& theWidth,
662 Standard_Integer& theHeight,
663 Standard_Integer& theWidthMax,
664 Standard_Integer& theHeightMax)
665{
b128c892 666 const Handle(OpenGl_FrameBuffer) aFrameBuffer = Handle(OpenGl_FrameBuffer)::DownCast (theFbo);
667 if (aFrameBuffer.IsNull())
668 {
669 return;
670 }
671
c357e426 672 theWidth = aFrameBuffer->GetVPSizeX(); // current viewport size
673 theHeight = aFrameBuffer->GetVPSizeY();
674 theWidthMax = aFrameBuffer->GetSizeX(); // texture size
675 theHeightMax = aFrameBuffer->GetSizeY();
676}
677
678//=======================================================================
679//function : FBOChangeViewport
680//purpose :
681//=======================================================================
b128c892 682void OpenGl_View::FBOChangeViewport (const Handle(Standard_Transient)& theFbo,
c357e426 683 const Standard_Integer theWidth,
684 const Standard_Integer theHeight)
685{
b128c892 686 const Handle(OpenGl_FrameBuffer) aFrameBuffer = Handle(OpenGl_FrameBuffer)::DownCast (theFbo);
687 if (aFrameBuffer.IsNull())
688 {
689 return;
690 }
691
c357e426 692 aFrameBuffer->ChangeViewport (theWidth, theHeight);
693}
694
695// =======================================================================
696// function : Export
697// purpose :
698// =======================================================================
699#ifdef HAVE_GL2PS
700Standard_Boolean OpenGl_View::Export (const Standard_CString theFileName,
701 const Graphic3d_ExportFormat theFormat,
702 const Graphic3d_SortType theSortType)
703{
704 // gl2psBeginPage() will call OpenGL functions
705 // so we should activate correct GL context before redraw scene call
706 if (!myWorkspace->Activate())
707 {
708 return Standard_False;
709 }
710
711 Standard_Integer aFormat = -1;
712 Standard_Integer aSortType = Graphic3d_ST_BSP_Tree;
713 switch (theFormat)
714 {
715 case Graphic3d_EF_PostScript:
716 aFormat = GL2PS_PS;
717 break;
718 case Graphic3d_EF_EnhPostScript:
719 aFormat = GL2PS_EPS;
720 break;
721 case Graphic3d_EF_TEX:
722 aFormat = GL2PS_TEX;
723 break;
724 case Graphic3d_EF_PDF:
725 aFormat = GL2PS_PDF;
726 break;
727 case Graphic3d_EF_SVG:
728 aFormat = GL2PS_SVG;
729 break;
730 case Graphic3d_EF_PGF:
731 aFormat = GL2PS_PGF;
732 break;
733 case Graphic3d_EF_EMF:
734 //aFormat = GL2PS_EMF;
735 aFormat = GL2PS_PGF + 1; // 6
736 break;
737 default:
738 // unsupported format
739 return Standard_False;
740 }
741
742 switch (theSortType)
743 {
744 case Graphic3d_ST_Simple:
745 aSortType = GL2PS_SIMPLE_SORT;
746 break;
747 case Graphic3d_ST_BSP_Tree:
748 aSortType = GL2PS_BSP_SORT;
749 break;
750 }
751
752 GLint aViewport[4];
753 aViewport[0] = 0;
754 aViewport[1] = 0;
755 aViewport[2] = myWindow->Width();
756 aViewport[3] = myWindow->Height();
757
758 GLint aBufferSize = 1024 * 1024;
759 GLint anErrCode = GL2PS_SUCCESS;
760
761 // gl2ps uses standard write functions and do not check locale
762 Standard_CLocaleSentry aLocaleSentry;
763
764 while (aBufferSize > 0)
765 {
766 // current patch for EMF support in gl2ps uses WinAPI functions to create file
767 FILE* aFileH = (theFormat != Graphic3d_EF_EMF) ? fopen (theFileName, "wb") : NULL;
768 anErrCode = gl2psBeginPage ("", "", aViewport, aFormat, aSortType,
769 GL2PS_DRAW_BACKGROUND | GL2PS_OCCLUSION_CULL | GL2PS_BEST_ROOT/* | GL2PS_SIMPLE_LINE_OFFSET*/,
770 GL_RGBA, 0, NULL,
771 0, 0, 0, aBufferSize, aFileH, theFileName);
772 if (anErrCode != GL2PS_SUCCESS)
773 {
774 // initialization failed
775 if (aFileH != NULL)
776 fclose (aFileH);
777 break;
778 }
779 Redraw();
780
781 anErrCode = gl2psEndPage();
782 if (aFileH != NULL)
783 fclose (aFileH);
784
785 if (anErrCode == GL2PS_OVERFLOW)
786 aBufferSize *= 2;
787 else
788 break;
789 }
790 return anErrCode == GL2PS_SUCCESS;
791}
792#else
793Standard_Boolean OpenGl_View::Export (const Standard_CString /*theFileName*/,
794 const Graphic3d_ExportFormat /*theFormat*/,
795 const Graphic3d_SortType /*theSortType*/)
796{
797 return Standard_False;
798}
799#endif
800
801//=======================================================================
802//function : displayStructure
803//purpose :
804//=======================================================================
805void OpenGl_View::displayStructure (const Handle(Graphic3d_CStructure)& theStructure,
806 const Standard_Integer thePriority)
807{
808 const OpenGl_Structure* aStruct = reinterpret_cast<const OpenGl_Structure*> (theStructure.operator->());
809 const Graphic3d_ZLayerId aZLayer = aStruct->ZLayer();
810 myZLayers.AddStructure (aStruct, aZLayer, thePriority);
811}
812
813//=======================================================================
814//function : eraseStructure
815//purpose :
816//=======================================================================
817void OpenGl_View::eraseStructure (const Handle(Graphic3d_CStructure)& theStructure)
818{
819 const OpenGl_Structure* aStruct = reinterpret_cast<const OpenGl_Structure*> (theStructure.operator->());
820 myZLayers.RemoveStructure (aStruct);
821}
822
823//=======================================================================
824//function : changeZLayer
825//purpose :
826//=======================================================================
827void OpenGl_View::changeZLayer (const Handle(Graphic3d_CStructure)& theStructure,
828 const Graphic3d_ZLayerId theNewLayerId)
829{
830 const Graphic3d_ZLayerId anOldLayer = theStructure->ZLayer();
831 const OpenGl_Structure* aStruct = reinterpret_cast<const OpenGl_Structure*> (theStructure.operator->());
832 myZLayers.ChangeLayer (aStruct, anOldLayer, theNewLayerId);
50d06d8f 833 Update (Aspect_TOU_WAIT, anOldLayer);
834 Update (Aspect_TOU_WAIT, theNewLayerId);
c357e426 835}
836
837//=======================================================================
838//function : changePriority
839//purpose :
840//=======================================================================
841void OpenGl_View::changePriority (const Handle(Graphic3d_CStructure)& theStructure,
842 const Standard_Integer theNewPriority)
843{
844 const Graphic3d_ZLayerId aLayerId = theStructure->ZLayer();
845 const OpenGl_Structure* aStruct = reinterpret_cast<const OpenGl_Structure*> (theStructure.operator->());
846 myZLayers.ChangePriority (aStruct, aLayerId, theNewPriority);
2166f0fa 847}
26d9c835 848
849//=======================================================================
850//function : DiagnosticInformation
851//purpose :
852//=======================================================================
853void OpenGl_View::DiagnosticInformation (TColStd_IndexedDataMapOfStringString& theDict,
854 Graphic3d_DiagnosticInfo theFlags) const
855{
856 Handle(OpenGl_Context) aCtx = myWorkspace->GetGlContext();
857 if (!myWorkspace->Activate()
858 || aCtx.IsNull())
859 {
860 return;
861 }
862
863 aCtx->DiagnosticInformation (theDict, theFlags);
864 if ((theFlags & Graphic3d_DiagnosticInfo_FrameBuffer) != 0)
865 {
866 TCollection_AsciiString aResRatio (myRenderParams.ResolutionRatio());
867 theDict.ChangeFromIndex (theDict.Add ("ResolutionRatio", aResRatio)) = aResRatio;
868 }
869}