1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 20:25:47 +00:00
RetroArch/gfx/drivers_context/sdl_gl_ctx.c
2023-02-21 09:49:46 +01:00

460 lines
11 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/>.
*/
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
#ifdef HAVE_X11
#include <X11/Xlib.h>
#endif
#include "../../configuration.h"
#include "../../gfx/video_defines.h"
#include "../../gfx/video_driver.h"
#include "../../verbosity.h"
#include "SDL.h"
#ifdef HAVE_SDL2
#include "../common/sdl2_common.h"
#endif
#if defined(WEBOS) && defined(HAVE_SDL2)
#include <SDL_webOS.h>
#endif
typedef struct gfx_ctx_sdl_data
{
#ifdef HAVE_SDL2
SDL_Window *win;
SDL_GLContext ctx;
#else
SDL_Surface *win;
#endif
int width;
int height;
int new_width;
int new_height;
bool full;
bool resized;
bool subsystem_inited;
} gfx_ctx_sdl_data_t;
/* TODO/FIXME - static global */
static enum gfx_ctx_api sdl_api = GFX_CTX_OPENGL_API;
static void sdl_ctx_destroy_resources(gfx_ctx_sdl_data_t *sdl)
{
if (!sdl)
return;
#ifdef HAVE_SDL2
if (sdl->ctx)
SDL_GL_DeleteContext(sdl->ctx);
if (sdl->win)
SDL_DestroyWindow(sdl->win);
sdl->ctx = NULL;
#else
if (sdl->win)
SDL_FreeSurface(sdl->win);
#endif
sdl->win = NULL;
}
static void sdl_ctx_destroy(void *data)
{
gfx_ctx_sdl_data_t *sdl = (gfx_ctx_sdl_data_t*)data;
if (!sdl)
return;
sdl_ctx_destroy_resources(sdl);
#ifndef WEBOS
if (sdl->subsystem_inited)
#endif
SDL_QuitSubSystem(SDL_INIT_VIDEO);
free(sdl);
}
static void *sdl_ctx_init(void *video_driver)
{
gfx_ctx_sdl_data_t *sdl = (gfx_ctx_sdl_data_t*)
calloc(1, sizeof(gfx_ctx_sdl_data_t));
uint32_t sdl_subsystem_flags = SDL_WasInit(0);
if (!sdl)
return NULL;
#ifdef HAVE_X11
XInitThreads();
#endif
#ifdef WEBOS
SDL_SetHint(SDL_HINT_WEBOS_ACCESS_POLICY_KEYS_BACK, "true");
SDL_SetHint(SDL_HINT_WEBOS_ACCESS_POLICY_KEYS_EXIT, "true");
SDL_SetHint(SDL_HINT_WEBOS_CURSOR_SLEEP_TIME, "1000");
#endif
/* Initialise graphics subsystem, if required */
if (sdl_subsystem_flags == 0)
{
if (SDL_Init(SDL_INIT_VIDEO) < 0)
goto error;
}
else if ((sdl_subsystem_flags & SDL_INIT_VIDEO) == 0)
{
if (SDL_InitSubSystem(SDL_INIT_VIDEO) < 0)
goto error;
sdl->subsystem_inited = true;
}
RARCH_LOG("[SDL_GL] SDL %i.%i.%i gfx context driver initialized.\n",
SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL);
return sdl;
error:
RARCH_WARN("[SDL_GL]: Failed to initialize SDL gfx context driver: %s\n",
SDL_GetError());
sdl_ctx_destroy(sdl);
return NULL;
}
static enum gfx_ctx_api sdl_ctx_get_api(void *data) { return sdl_api; }
static bool sdl_ctx_bind_api(void *data,
enum gfx_ctx_api api, unsigned major,
unsigned minor)
{
#ifdef HAVE_SDL2
unsigned profile;
if (api != GFX_CTX_OPENGL_API && api != GFX_CTX_OPENGL_ES_API)
return false;
profile = SDL_GL_CONTEXT_PROFILE_COMPATIBILITY;
if (api == GFX_CTX_OPENGL_ES_API)
profile = SDL_GL_CONTEXT_PROFILE_ES;
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, profile);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, major);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, minor);
#endif
sdl_api = api;
#ifndef HAVE_SDL2
if (api != GFX_CTX_OPENGL_API)
return false;
#endif
return true;
}
static void sdl_ctx_swap_interval(void *data, int interval)
{
#ifdef HAVE_SDL2
SDL_GL_SetSwapInterval(interval);
#else
SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, interval);
#endif
}
static bool sdl_ctx_set_video_mode(void *data,
unsigned width, unsigned height,
bool fullscreen)
{
unsigned fsflag = 0;
gfx_ctx_sdl_data_t *sdl = (gfx_ctx_sdl_data_t*)data;
settings_t *settings = config_get_ptr();
bool windowed_fullscreen = settings->bools.video_windowed_fullscreen;
unsigned video_monitor_index = settings->uints.video_monitor_index;
sdl->new_width = width;
sdl->new_height = height;
#ifdef HAVE_SDL2
if (fullscreen)
{
if (windowed_fullscreen)
fsflag = SDL_WINDOW_FULLSCREEN_DESKTOP;
else
fsflag = SDL_WINDOW_FULLSCREEN;
}
if (sdl->win)
{
SDL_SetWindowSize(sdl->win, width, height);
if (fullscreen)
SDL_SetWindowFullscreen(sdl->win, fsflag);
}
else
{
unsigned display = video_monitor_index;
sdl->win = SDL_CreateWindow("RetroArch",
SDL_WINDOWPOS_UNDEFINED_DISPLAY(display),
SDL_WINDOWPOS_UNDEFINED_DISPLAY(display),
width, height,
SDL_WINDOW_OPENGL | fsflag);
}
#else
if (fullscreen)
fsflag = SDL_FULLSCREEN;
sdl->win = SDL_SetVideoMode(width, height, 0, SDL_OPENGL | fsflag);
#endif
if (!sdl->win)
goto error;
#ifdef HAVE_SDL2
#if defined(_WIN32)
sdl2_set_handles(sdl->win, RARCH_DISPLAY_WIN32);
#elif defined(HAVE_X11)
sdl2_set_handles(sdl->win, RARCH_DISPLAY_X11);
#elif defined(HAVE_COCOA)
sdl2_set_handles(sdl->win, RARCH_DISPLAY_OSX);
#endif
if (sdl->ctx)
{
video_state_get_ptr()->flags |= VIDEO_FLAG_CACHE_CONTEXT_ACK;
RARCH_LOG("[SDL_GL]: Using cached GL context.\n");
}
else
{
if (!(sdl->ctx = SDL_GL_CreateContext(sdl->win)))
goto error;
}
#endif
sdl->full = fullscreen;
sdl->width = width;
sdl->height = height;
return true;
error:
RARCH_WARN("[SDL_GL]: Failed to set video mode: %s\n", SDL_GetError());
return false;
}
static void sdl_ctx_get_video_size(void *data,
unsigned *width, unsigned *height)
{
settings_t *settings = config_get_ptr();
gfx_ctx_sdl_data_t *sdl = (gfx_ctx_sdl_data_t*)data;
if (!sdl)
return;
*width = sdl->width;
*height = sdl->height;
if (!sdl->win)
{
#ifdef HAVE_SDL2
SDL_DisplayMode mode = {0};
int i = settings->uints.video_monitor_index;
if (SDL_GetCurrentDisplayMode(i, &mode) < 0)
RARCH_WARN("[SDL_GL]: Failed to get display #%i mode: %s\n", i,
SDL_GetError());
#else
SDL_Rect **modes = SDL_ListModes(NULL, SDL_FULLSCREEN|SDL_HWSURFACE);
SDL_Rect mode = {0};
if (!modes)
RARCH_WARN("[SDL_GL]: Failed to detect available video modes: %s\n",
SDL_GetError());
else if (*modes)
mode = **modes;
#endif
*width = mode.w;
*height = mode.h;
}
}
static void sdl_ctx_update_title(void *data)
{
char title[128];
title[0] = '\0';
video_driver_get_window_title(title, sizeof(title));
if (title[0])
{
#ifdef HAVE_SDL2
SDL_SetWindowTitle((SDL_Window*)
video_driver_display_userdata_get(), title);
#else
SDL_WM_SetCaption(title, NULL);
#endif
}
}
static void sdl_ctx_check_window(void *data, bool *quit,
bool *resize,unsigned *width,
unsigned *height)
{
SDL_Event event;
gfx_ctx_sdl_data_t *sdl = (gfx_ctx_sdl_data_t*)data;
SDL_PumpEvents();
#ifdef HAVE_SDL2
while (SDL_PeepEvents(&event, 1,
SDL_GETEVENT, SDL_QUIT, SDL_WINDOWEVENT) > 0)
#else
while (SDL_PeepEvents(&event, 1,
SDL_GETEVENT, SDL_QUITMASK|SDL_VIDEORESIZEMASK) > 0)
#endif
{
switch (event.type)
{
case SDL_QUIT:
#ifdef HAVE_SDL2
case SDL_APP_TERMINATING:
#endif
*quit = true;
break;
#ifdef HAVE_SDL2
case SDL_WINDOWEVENT:
if (event.window.event == SDL_WINDOWEVENT_RESIZED)
{
sdl->resized = true;
sdl->new_width = event.window.data1;
sdl->new_height = event.window.data2;
}
#else
case SDL_VIDEORESIZE:
sdl->resized = true;
sdl->new_width = event.resize.w;
sdl->new_height = event.resize.h;
#endif
break;
default:
break;
}
}
if (sdl->resized)
{
*width = sdl->new_width;
*height = sdl->new_height;
*resize = true;
sdl->resized = false;
}
}
static bool sdl_ctx_has_focus(void *data)
{
#ifdef HAVE_SDL2
gfx_ctx_sdl_data_t *sdl = (gfx_ctx_sdl_data_t*)data;
#ifdef WEBOS
/* We do not receive mouse focus when non-magic remote is used. */
unsigned flags = (SDL_WINDOW_INPUT_FOCUS);
#else
unsigned flags = (SDL_WINDOW_INPUT_FOCUS | SDL_WINDOW_MOUSE_FOCUS);
#endif
return (SDL_GetWindowFlags(sdl->win) & flags) == flags;
#else
unsigned flags = (SDL_APPINPUTFOCUS | SDL_APPACTIVE);
return (SDL_GetAppState() & flags) == flags;
#endif
}
static void sdl_ctx_swap_buffers(void *data)
{
#ifdef HAVE_SDL2
gfx_ctx_sdl_data_t *sdl = (gfx_ctx_sdl_data_t*)data;
if (sdl)
SDL_GL_SwapWindow(sdl->win);
#else
SDL_GL_SwapBuffers();
#endif
}
static void sdl_ctx_input_driver(void *data,
const char *name,
input_driver_t **input, void **input_data)
{
*input = NULL;
*input_data = NULL;
}
static gfx_ctx_proc_t sdl_ctx_get_proc_address(const char *name)
{
return (gfx_ctx_proc_t)SDL_GL_GetProcAddress(name);
}
static void sdl_ctx_show_mouse(void *data, bool state) { SDL_ShowCursor(state); }
static uint32_t sdl_ctx_get_flags(void *data)
{
uint32_t flags = 0;
BIT32_SET(flags, GFX_CTX_FLAGS_SHADERS_GLSL);
return flags;
}
static bool sdl_ctx_suppress_screensaver(void *data, bool enable) { return false; }
static void sdl_ctx_set_flags(void *data, uint32_t flags) { }
const gfx_ctx_driver_t gfx_ctx_sdl_gl =
{
sdl_ctx_init,
sdl_ctx_destroy,
sdl_ctx_get_api,
sdl_ctx_bind_api,
sdl_ctx_swap_interval,
sdl_ctx_set_video_mode,
sdl_ctx_get_video_size,
NULL, /* get_refresh_rate */
NULL, /* get_video_output_size */
NULL, /* get_video_output_prev */
NULL, /* get_video_output_next */
NULL, /* get_metrics */
NULL, /* translate_aspect */
sdl_ctx_update_title,
sdl_ctx_check_window,
NULL, /* set_resize */
sdl_ctx_has_focus,
sdl_ctx_suppress_screensaver,
true, /* has_windowed */
sdl_ctx_swap_buffers,
sdl_ctx_input_driver,
sdl_ctx_get_proc_address,
NULL,
NULL,
sdl_ctx_show_mouse,
"gl_sdl",
sdl_ctx_get_flags,
sdl_ctx_set_flags,
NULL, /* bind_hw_render */
NULL,
NULL
};