aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/UI/Controls/RendererHost.axaml.cs
blob: 97058fa49914c933e2b3e1f50e17a3b1bd1178b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Ryujinx.Ava.UI.Helpers;
using Ryujinx.Common.Configuration;
using Silk.NET.Vulkan;
using SPB.Graphics.OpenGL;
using SPB.Windowing;
using System;

namespace Ryujinx.Ava.UI.Controls
{
    public partial class RendererHost : UserControl, IDisposable
    {
        private readonly GraphicsDebugLevel _graphicsDebugLevel;
        private EmbeddedWindow _currentWindow;

        public bool IsVulkan { get; private set; }

        public RendererHost(GraphicsDebugLevel graphicsDebugLevel)
        {
            _graphicsDebugLevel = graphicsDebugLevel;
            InitializeComponent();
        }

        public RendererHost()
        {
            InitializeComponent();
        }

        public void CreateOpenGL()
        {
            Dispose();

            _currentWindow = new OpenGLEmbeddedWindow(3, 3, _graphicsDebugLevel);
            Initialize();

            IsVulkan = false;
        }

        private void Initialize()
        {
            _currentWindow.WindowCreated += CurrentWindow_WindowCreated;
            _currentWindow.SizeChanged += CurrentWindow_SizeChanged;
            Content = _currentWindow;
        }

        public void CreateVulkan()
        {
            Dispose();

            _currentWindow = new VulkanEmbeddedWindow();
            Initialize();

            IsVulkan = true;
        }

        public OpenGLContextBase GetContext()
        {
            if (_currentWindow is OpenGLEmbeddedWindow openGlEmbeddedWindow)
            {
                return openGlEmbeddedWindow.Context;
            }

            return null;
        }

        protected override void OnDetachedFromVisualTree(VisualTreeAttachmentEventArgs e)
        {
            base.OnDetachedFromVisualTree(e);

            Dispose();
        }

        private void CurrentWindow_SizeChanged(object sender, Size e)
        {
            SizeChanged?.Invoke(sender, e);
        }

        private void CurrentWindow_WindowCreated(object sender, IntPtr e)
        {
            RendererInitialized?.Invoke(this, EventArgs.Empty);
        }

        public void MakeCurrent()
        {
            if (_currentWindow is OpenGLEmbeddedWindow openGlEmbeddedWindow)
            {
                openGlEmbeddedWindow.MakeCurrent();
            }
        }

        public void MakeCurrent(SwappableNativeWindowBase window)
        {
            if (_currentWindow is OpenGLEmbeddedWindow openGlEmbeddedWindow)
            {
                openGlEmbeddedWindow.MakeCurrent(window);
            }
        }

        public void SwapBuffers()
        {
            if (_currentWindow is OpenGLEmbeddedWindow openGlEmbeddedWindow)
            {
                openGlEmbeddedWindow.SwapBuffers();
            }
        }

        public event EventHandler<EventArgs> RendererInitialized;
        public event Action<object, Size> SizeChanged;
        public void Dispose()
        {
            if (_currentWindow != null)
            {
                _currentWindow.WindowCreated -= CurrentWindow_WindowCreated;
                _currentWindow.SizeChanged -= CurrentWindow_SizeChanged;
            }
        }

        public SurfaceKHR CreateVulkanSurface(Instance instance, Vk api)
        {
            return (_currentWindow is VulkanEmbeddedWindow vulkanEmbeddedWindow)
                ? vulkanEmbeddedWindow.CreateSurface(instance)
                : default;
        }
    }
}