1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/samples/CSharp/WPF_D3D/D3DViewer.cs
kgv 62e1beed96 0026392: Visualization, TKD3DHost - provide straight-forward base for integration of TKOpenGl viewer into D3D-based application
D3DHost_GraphicDriver - new graphic driver providing D3D host for OpenGL workspace.
WNT_Window - handle virtual dimensions within virtual window.
OpenGl_FrameBuffer::Init() - add protection against 0 dimensions.
V3d_View::IsInvalidated() - add method to check view cache validation state.

ViewerTest::ViewerInit() - create virtual window without decorations on Windows.
2015-07-28 17:59:10 +03:00

137 lines
3.9 KiB
C#

using System;
using System.Windows;
using System.Windows.Media;
using System.Windows.Interop;
using System.Runtime.InteropServices;
namespace IE_WPF_D3D
{
/// <summary>
/// Tool object for output OCCT rendering with Direct3D.
/// </summary>
class D3DViewer
{
/// <summary> Direct3D output image. </summary>
private D3DImage myD3DImage = new D3DImage ();
/// <summary> Direct3D color surface. </summary>
private IntPtr myColorSurf;
public OCCViewer Viewer;
/// <summary> Creates new Direct3D-based OCCT viewer. </summary>
public D3DViewer ()
{
myD3DImage.IsFrontBufferAvailableChanged
+= new DependencyPropertyChangedEventHandler (OnIsFrontBufferAvailableChanged);
BeginRenderingScene ();
}
/// <summary> Creates new Direct3D-based OCCT viewer. </summary>
private void OnIsFrontBufferAvailableChanged (object sender, DependencyPropertyChangedEventArgs e)
{
// If the front buffer is available, then WPF has just created a new
// Direct3D device, thus we need to start rendering our custom scene
if (myD3DImage.IsFrontBufferAvailable)
{
BeginRenderingScene ();
}
else
{
// If the front buffer is no longer available, then WPF has lost Direct3D
// device, thus we need to stop rendering until the new device is created
StopRenderingScene ();
}
}
private bool myIsFailed = false;
/// <summary> Initializes Direct3D-OCCT rendering. </summary>
private void BeginRenderingScene ()
{
if (myIsFailed)
{
return;
}
if (myD3DImage.IsFrontBufferAvailable)
{
Viewer = new OCCViewer();
if (!Viewer.InitViewer())
{
MessageBox.Show ("Failed to initialize OpenGL-Direct3D interoperability!",
"Error", MessageBoxButton.OK, MessageBoxImage.Error);
myIsFailed = true;
return;
}
// Leverage the Rendering event of WPF composition
// target to update the our custom Direct3D scene
CompositionTarget.Rendering += OnRendering;
}
}
/// <summary> Releases Direct3D-OCCT rendering. </summary>
public void StopRenderingScene ()
{
// This method is called when WPF loses its Direct3D device,
// so we should just release our custom Direct3D scene
CompositionTarget.Rendering -= OnRendering;
myColorSurf = IntPtr.Zero;
}
/// <summary> Performs Direct3D-OCCT rendering. </summary>
private void OnRendering (object sender, EventArgs e)
{
UpdateScene ();
}
/// <summary> Performs Direct3D-OCCT rendering. </summary>
private void UpdateScene ()
{
if (!myIsFailed
&& myD3DImage.IsFrontBufferAvailable
&& myColorSurf != IntPtr.Zero
&& (myD3DImage.PixelWidth != 0 && myD3DImage.PixelHeight != 0))
{
myD3DImage.Lock ();
{
// Update the scene (via a call into our custom library)
Viewer.View.RedrawView ();
// Invalidate the updated region of the D3DImage
myD3DImage.AddDirtyRect(new Int32Rect(0, 0, myD3DImage.PixelWidth, myD3DImage.PixelHeight));
}
myD3DImage.Unlock ();
}
}
/// <summary> Resizes Direct3D surfaces and OpenGL FBO. </summary>
public void Resize (int theSizeX, int theSizeY)
{
if (!myIsFailed && myD3DImage.IsFrontBufferAvailable)
{
// Set the back buffer for Direct3D WPF image
myD3DImage.Lock ();
{
myD3DImage.SetBackBuffer (D3DResourceType.IDirect3DSurface9, IntPtr.Zero);
myColorSurf = Viewer.View.ResizeBridgeFBO (theSizeX, theSizeY);
myD3DImage.SetBackBuffer (D3DResourceType.IDirect3DSurface9, myColorSurf);
}
myD3DImage.Unlock ();
}
}
public D3DImage Image
{
get
{
return myD3DImage;
}
}
}
}