mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
318 lines
9.0 KiB
C
318 lines
9.0 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
/* Win32/Vulkan context. */
|
|
|
|
/* necessary for mingw32 multimon defines: */
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0500 //_WIN32_WINNT_WIN2K
|
|
#endif
|
|
|
|
#include <tchar.h>
|
|
#include <wchar.h>
|
|
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
#include <windows.h>
|
|
#include <commdlg.h>
|
|
|
|
#include <dynamic/dylib.h>
|
|
#include <string/stdstring.h>
|
|
#include <retro_timers.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../../config.h"
|
|
#endif
|
|
|
|
#include "../../configuration.h"
|
|
#include "../../dynamic.h"
|
|
#include "../../retroarch.h"
|
|
#include "../../verbosity.h"
|
|
#include "../../frontend/frontend_driver.h"
|
|
|
|
#include "../common/win32_common.h"
|
|
|
|
#include "../common/vulkan_common.h"
|
|
|
|
typedef struct gfx_ctx_w_vk_data
|
|
{
|
|
void *empty;
|
|
} gfx_ctx_w_vk_data_t;
|
|
|
|
/* TODO/FIXME - static globals */
|
|
gfx_ctx_vulkan_data_t win32_vk;
|
|
static void *dinput_vk = NULL;
|
|
int win32_vk_interval = 0;
|
|
|
|
/* FORWARD DECLARATIONS */
|
|
void win32_get_video_size(void *data, unsigned *width, unsigned *height);
|
|
|
|
static void gfx_ctx_w_vk_swap_interval(void *data, int interval)
|
|
{
|
|
if (win32_vk_interval != interval)
|
|
{
|
|
win32_vk_interval = interval;
|
|
if (win32_vk.swapchain)
|
|
win32_vk.flags |= VK_DATA_FLAG_NEED_NEW_SWAPCHAIN;
|
|
}
|
|
}
|
|
|
|
static void gfx_ctx_w_vk_check_window(void *data, bool *quit,
|
|
bool *resize, unsigned *width, unsigned *height)
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
float refresh_rate = settings->floats.video_refresh_rate;
|
|
|
|
win32_check_window(NULL, quit, resize, width, height);
|
|
|
|
if (win32_vk.flags & VK_DATA_FLAG_NEED_NEW_SWAPCHAIN)
|
|
*resize = true;
|
|
|
|
/* Trigger video driver init when changing refresh rate
|
|
* in fullscreen while dimensions stay the same.
|
|
* Otherwise display refresh rate will not stay at the designated rate.
|
|
* All other change combinations work however:
|
|
* - windowed works always
|
|
* - fullscreen works when dimensions and rate changes
|
|
* Bigger than zero difference required in order to prevent
|
|
* constant reinit when adjusting rate option in 0.001 increments.
|
|
*/
|
|
if ( (win32_vk.flags & VK_DATA_FLAG_FULLSCREEN)
|
|
&& (g_win32_refresh_rate)
|
|
&& (g_win32_refresh_rate != refresh_rate)
|
|
&& (abs(g_win32_refresh_rate - refresh_rate) > 0)
|
|
&& (g_win32_resize_width == *width)
|
|
&& (g_win32_resize_height == *height))
|
|
{
|
|
g_win32_refresh_rate = settings->floats.video_refresh_rate;
|
|
command_event(CMD_EVENT_REINIT, NULL);
|
|
}
|
|
}
|
|
|
|
static void gfx_ctx_w_vk_swap_buffers(void *data)
|
|
{
|
|
if (win32_vk.context.flags & VK_CTX_FLAG_HAS_ACQUIRED_SWAPCHAIN)
|
|
{
|
|
win32_vk.context.flags &= ~VK_CTX_FLAG_HAS_ACQUIRED_SWAPCHAIN;
|
|
/* We're still waiting for a proper swapchain, so just fake it. */
|
|
if (win32_vk.swapchain == VK_NULL_HANDLE)
|
|
retro_sleep(10);
|
|
else
|
|
vulkan_present(&win32_vk, win32_vk.context.current_swapchain_index);
|
|
}
|
|
vulkan_acquire_next_image(&win32_vk);
|
|
}
|
|
|
|
static bool gfx_ctx_w_vk_set_resize(void *data,
|
|
unsigned width, unsigned height)
|
|
{
|
|
if (vulkan_create_swapchain(&win32_vk, width, height, win32_vk_interval))
|
|
{
|
|
if (win32_vk.flags & VK_DATA_FLAG_CREATED_NEW_SWAPCHAIN)
|
|
vulkan_acquire_next_image(&win32_vk);
|
|
win32_vk.context.flags |= VK_CTX_FLAG_INVALID_SWAPCHAIN;
|
|
win32_vk.flags &= ~VK_DATA_FLAG_NEED_NEW_SWAPCHAIN;
|
|
|
|
return true;
|
|
}
|
|
|
|
RARCH_ERR("[Vulkan]: Failed to update swapchain.\n");
|
|
return false;
|
|
}
|
|
|
|
static void gfx_ctx_w_vk_destroy(void *data)
|
|
{
|
|
HWND window = win32_get_window();
|
|
gfx_ctx_w_vk_data_t *vk = (gfx_ctx_w_vk_data_t*)data;
|
|
|
|
vulkan_context_destroy(&win32_vk, win32_vk.vk_surface != VK_NULL_HANDLE);
|
|
if (win32_vk.context.queue_lock)
|
|
slock_free(win32_vk.context.queue_lock);
|
|
memset(&win32_vk, 0, sizeof(win32_vk));
|
|
|
|
if (window)
|
|
{
|
|
win32_monitor_from_window();
|
|
win32_destroy_window();
|
|
}
|
|
|
|
if (g_win32_flags & WIN32_CMN_FLAG_RESTORE_DESKTOP)
|
|
{
|
|
win32_monitor_get_info();
|
|
g_win32_flags &= ~WIN32_CMN_FLAG_RESTORE_DESKTOP;
|
|
}
|
|
|
|
if (vk)
|
|
free(vk);
|
|
|
|
g_win32_flags &= ~WIN32_CMN_FLAG_INITED;
|
|
}
|
|
|
|
static void *gfx_ctx_w_vk_init(void *video_driver)
|
|
{
|
|
WNDCLASSEX wndclass = {0};
|
|
gfx_ctx_w_vk_data_t *vk = (gfx_ctx_w_vk_data_t*)calloc(1, sizeof(*vk));
|
|
uint8_t win32_flags = win32_get_flags();
|
|
|
|
if (!vk)
|
|
return NULL;
|
|
|
|
if (win32_flags & WIN32_CMN_FLAG_INITED)
|
|
gfx_ctx_w_vk_destroy(NULL);
|
|
|
|
win32_window_reset();
|
|
win32_monitor_init();
|
|
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
wndclass.lpfnWndProc = wnd_proc_vk_common;
|
|
#ifdef HAVE_DINPUT
|
|
if (string_is_equal(settings->arrays.input_driver, "dinput"))
|
|
wndclass.lpfnWndProc = wnd_proc_vk_dinput;
|
|
#endif
|
|
#ifdef HAVE_WINRAWINPUT
|
|
if (string_is_equal(settings->arrays.input_driver, "raw"))
|
|
wndclass.lpfnWndProc = wnd_proc_vk_winraw;
|
|
#endif
|
|
}
|
|
if (!win32_window_init(&wndclass, true, NULL))
|
|
goto error;
|
|
|
|
if (!vulkan_context_init(&win32_vk, VULKAN_WSI_WIN32))
|
|
goto error;
|
|
|
|
return vk;
|
|
|
|
error:
|
|
if (vk)
|
|
free(vk);
|
|
return NULL;
|
|
}
|
|
|
|
static bool gfx_ctx_w_vk_set_video_mode(void *data,
|
|
unsigned width, unsigned height,
|
|
bool fullscreen)
|
|
{
|
|
if (fullscreen)
|
|
win32_vk.flags |= VK_DATA_FLAG_FULLSCREEN;
|
|
else
|
|
win32_vk.flags &= ~VK_DATA_FLAG_FULLSCREEN;
|
|
|
|
if (win32_set_video_mode(NULL, width, height, fullscreen))
|
|
{
|
|
/* Create a new swapchain in order to prevent fullscreen
|
|
* emulated mailbox crash caused by refresh rate change */
|
|
vulkan_create_swapchain(&win32_vk, width, height, win32_vk_interval);
|
|
|
|
gfx_ctx_w_vk_swap_interval(data, win32_vk_interval);
|
|
return true;
|
|
}
|
|
|
|
RARCH_ERR("[Vulkan]: win32_set_video_mode failed.\n");
|
|
gfx_ctx_w_vk_destroy(data);
|
|
return false;
|
|
}
|
|
|
|
static void gfx_ctx_w_vk_input_driver(void *data,
|
|
const char *joypad_name,
|
|
input_driver_t **input, void **input_data)
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
#if _WIN32_WINNT >= 0x0501
|
|
#ifdef HAVE_WINRAWINPUT
|
|
const char *input_driver = settings->arrays.input_driver;
|
|
|
|
/* winraw only available since XP */
|
|
if (string_is_equal(input_driver, "raw"))
|
|
{
|
|
*input_data = input_driver_init_wrap(&input_winraw, joypad_name);
|
|
if (*input_data)
|
|
{
|
|
*input = &input_winraw;
|
|
dinput_vk = NULL;
|
|
return;
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef HAVE_DINPUT
|
|
dinput_vk = input_driver_init_wrap(&input_dinput, joypad_name);
|
|
*input = dinput_vk ? &input_dinput : NULL;
|
|
*input_data = dinput_vk;
|
|
#endif
|
|
}
|
|
|
|
static enum gfx_ctx_api gfx_ctx_w_vk_get_api(void *data) { return GFX_CTX_VULKAN_API; }
|
|
|
|
static bool gfx_ctx_w_vk_bind_api(void *data,
|
|
enum gfx_ctx_api api, unsigned major, unsigned minor) { return (api == GFX_CTX_VULKAN_API); }
|
|
|
|
static void gfx_ctx_w_vk_bind_hw_render(void *data, bool enable) { }
|
|
|
|
static void *gfx_ctx_w_vk_get_context_data(void *data) { return &win32_vk.context; }
|
|
|
|
static uint32_t gfx_ctx_w_vk_get_flags(void *data)
|
|
{
|
|
uint32_t flags = 0;
|
|
#if defined(HAVE_SLANG) && defined(HAVE_SPIRV_CROSS)
|
|
BIT32_SET(flags, GFX_CTX_FLAGS_SHADERS_SLANG);
|
|
#endif
|
|
return flags;
|
|
}
|
|
|
|
static void gfx_ctx_w_vk_set_flags(void *data, uint32_t flags) { }
|
|
static void gfx_ctx_w_vk_get_video_output_prev(void *data) { }
|
|
static void gfx_ctx_w_vk_get_video_output_next(void *data) { }
|
|
|
|
const gfx_ctx_driver_t gfx_ctx_w_vk = {
|
|
gfx_ctx_w_vk_init,
|
|
gfx_ctx_w_vk_destroy,
|
|
gfx_ctx_w_vk_get_api,
|
|
gfx_ctx_w_vk_bind_api,
|
|
gfx_ctx_w_vk_swap_interval,
|
|
gfx_ctx_w_vk_set_video_mode,
|
|
win32_get_video_size,
|
|
win32_get_refresh_rate,
|
|
win32_get_video_output_size,
|
|
gfx_ctx_w_vk_get_video_output_prev,
|
|
gfx_ctx_w_vk_get_video_output_next,
|
|
win32_get_metrics,
|
|
NULL,
|
|
video_driver_update_title,
|
|
gfx_ctx_w_vk_check_window,
|
|
gfx_ctx_w_vk_set_resize,
|
|
win32_has_focus,
|
|
win32_suspend_screensaver,
|
|
true, /* has_windowed */
|
|
gfx_ctx_w_vk_swap_buffers,
|
|
gfx_ctx_w_vk_input_driver,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
win32_show_cursor,
|
|
"vk_w",
|
|
gfx_ctx_w_vk_get_flags,
|
|
gfx_ctx_w_vk_set_flags,
|
|
gfx_ctx_w_vk_bind_hw_render,
|
|
gfx_ctx_w_vk_get_context_data,
|
|
NULL /* make_current */
|
|
};
|