RetroArch/gfx/drivers/sdl_gfx.c

583 lines
14 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 17:06:50 +00:00
* Copyright (C) 2011-2015 - Higor Euripedes
2011-04-21 01:23:44 +00:00
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2011-04-21 01:23:44 +00:00
* 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.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2011-04-21 01:23:44 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2011-04-21 01:23:44 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "SDL.h"
#include "../../driver.h"
2011-04-21 01:23:44 +00:00
#include <stdlib.h>
#include <string.h>
#include "../../general.h"
2015-01-21 23:26:50 +00:00
#include "../../performance.h"
2014-10-23 02:34:35 +00:00
#include <gfx/scaler/scaler.h>
2015-01-18 22:59:57 +00:00
#include "../video_viewport.h"
#include "../video_monitor.h"
#include "../video_context_driver.h"
2015-01-12 22:35:40 +00:00
#include "../font_renderer_driver.h"
2012-09-26 13:52:25 +00:00
#ifdef HAVE_X11
2015-01-12 21:19:31 +00:00
#include "../drivers_context/x11_common.h"
2012-09-26 13:52:25 +00:00
#endif
#if defined(_WIN32) && !defined(_XBOX)
#include "../drivers_context/win32_dwm_common.h"
#endif
2011-04-22 01:13:09 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "SDL_syswm.h"
2012-09-30 09:26:26 +00:00
typedef struct sdl_menu_frame
{
bool active;
SDL_Surface *frame;
struct scaler_ctx scaler;
} sdl_menu_frame_t;
2011-12-24 12:46:12 +00:00
typedef struct sdl_video
2011-04-21 01:23:44 +00:00
{
2012-11-20 22:35:40 +00:00
SDL_Surface *screen;
2011-04-21 01:23:44 +00:00
bool quitting;
2012-12-14 21:33:04 +00:00
void *font;
const font_renderer_driver_t *font_driver;
2011-09-06 16:32:40 +00:00
uint8_t font_r;
uint8_t font_g;
uint8_t font_b;
struct scaler_ctx scaler;
sdl_menu_frame_t menu;
2011-12-24 12:46:12 +00:00
} sdl_video_t;
2011-04-21 01:23:44 +00:00
static void sdl_gfx_free(void *data)
{
2011-12-24 12:46:12 +00:00
sdl_video_t *vid = (sdl_video_t*)data;
2011-04-21 01:23:44 +00:00
if (!vid)
return;
if (vid->menu.frame)
SDL_FreeSurface(vid->menu.frame);
2011-04-21 01:23:44 +00:00
SDL_QuitSubSystem(SDL_INIT_VIDEO);
2011-04-22 01:13:09 +00:00
if (vid->font)
vid->font_driver->free(vid->font);
2011-04-22 01:13:09 +00:00
scaler_ctx_gen_reset(&vid->scaler);
2014-08-27 02:57:29 +00:00
scaler_ctx_gen_reset(&vid->menu.scaler);
2011-04-21 01:23:44 +00:00
free(vid);
}
2014-08-27 02:53:22 +00:00
static void sdl_update_scaler(SDL_Surface *surf, struct scaler_ctx *scaler,
enum scaler_pix_fmt format, unsigned width,
unsigned height, unsigned pitch)
{
if (
width != scaler->in_width
|| height != scaler->in_height
|| format != scaler->in_fmt
|| pitch != scaler->in_stride
)
{
scaler->in_fmt = format;
scaler->in_width = width;
scaler->in_height = height;
scaler->in_stride = pitch;
scaler->out_width = surf->w;
scaler->out_height = surf->h;
scaler->out_stride = surf->pitch;
scaler_ctx_gen_filter(scaler);
}
}
2011-04-22 01:13:09 +00:00
static void sdl_init_font(sdl_video_t *vid, const char *font_path, unsigned font_size)
{
2015-01-21 23:32:24 +00:00
int r, g, b;
2011-11-09 23:15:41 +00:00
if (!g_settings.video.font_enable)
return;
2015-01-21 23:32:24 +00:00
if (!font_renderer_create_default(&vid->font_driver, &vid->font,
2014-06-08 11:01:55 +00:00
*g_settings.video.font_path ? g_settings.video.font_path : NULL,
g_settings.video.font_size))
2011-04-22 01:13:09 +00:00
{
2015-01-21 23:32:24 +00:00
RARCH_LOG("[SDL]: Could not initialize fonts.\n");
return;
}
2011-09-06 16:32:40 +00:00
2015-01-21 23:32:24 +00:00
r = g_settings.video.msg_color_r * 255;
g = g_settings.video.msg_color_g * 255;
b = g_settings.video.msg_color_b * 255;
2011-09-06 16:32:40 +00:00
2015-01-21 23:32:24 +00:00
r = (r < 0) ? 0 : (r > 255 ? 255 : r);
g = (g < 0) ? 0 : (g > 255 ? 255 : g);
b = (b < 0) ? 0 : (b > 255 ? 255 : b);
vid->font_r = r;
vid->font_g = g;
vid->font_b = b;
2011-04-22 01:13:09 +00:00
}
2012-11-20 22:35:40 +00:00
static void sdl_render_msg(sdl_video_t *vid, SDL_Surface *buffer,
const char *msg, unsigned width, unsigned height, const SDL_PixelFormat *fmt)
2011-04-22 01:13:09 +00:00
{
2014-09-05 23:27:46 +00:00
int x, y, msg_base_x, msg_base_y;
2014-04-30 02:04:59 +00:00
unsigned rshift, gshift, bshift;
if (!vid->font)
return;
2014-06-08 11:01:55 +00:00
const struct font_atlas *atlas = vid->font_driver->get_atlas(vid->font);
2011-04-22 01:13:09 +00:00
2014-04-30 02:04:59 +00:00
msg_base_x = g_settings.video.msg_pos_x * width;
2014-06-08 11:01:55 +00:00
msg_base_y = (1.0f - g_settings.video.msg_pos_y) * height;
2011-04-22 01:13:09 +00:00
2014-04-30 02:04:59 +00:00
rshift = fmt->Rshift;
gshift = fmt->Gshift;
bshift = fmt->Bshift;
2014-06-08 11:01:55 +00:00
for (; *msg; msg++)
2011-04-22 01:13:09 +00:00
{
2014-06-08 11:01:55 +00:00
const struct font_glyph *glyph = vid->font_driver->get_glyph(vid->font, (uint8_t)*msg);
if (!glyph)
continue;
2014-04-30 02:04:59 +00:00
2014-06-08 11:01:55 +00:00
int glyph_width = glyph->width;
int glyph_height = glyph->height;
2014-06-08 11:01:55 +00:00
int base_x = msg_base_x + glyph->draw_offset_x;
int base_y = msg_base_y + glyph->draw_offset_y;
2014-06-08 11:01:55 +00:00
const uint8_t *src = atlas->buffer + glyph->atlas_offset_x + glyph->atlas_offset_y * atlas->width;
if (base_x < 0)
{
src -= base_x;
glyph_width += base_x;
base_x = 0;
}
if (base_y < 0)
{
2014-06-08 11:01:55 +00:00
src -= base_y * (int)atlas->width;
glyph_height += base_y;
base_y = 0;
}
2014-06-08 11:01:55 +00:00
int max_width = width - base_x;
int max_height = height - base_y;
if (max_width <= 0 || max_height <= 0)
continue;
if (glyph_width > max_width)
glyph_width = max_width;
if (glyph_height > max_height)
glyph_height = max_height;
2014-06-08 11:01:55 +00:00
uint32_t *out = (uint32_t*)buffer->pixels + base_y * (buffer->pitch >> 2) + base_x;
2014-06-08 11:01:55 +00:00
for (y = 0; y < glyph_height; y++, src += atlas->width, out += buffer->pitch >> 2)
2011-04-22 01:13:09 +00:00
{
2013-10-22 19:26:33 +00:00
for (x = 0; x < glyph_width; x++)
2011-04-22 01:13:09 +00:00
{
unsigned blend = src[x];
unsigned out_pix = out[x];
unsigned r = (out_pix >> rshift) & 0xff;
unsigned g = (out_pix >> gshift) & 0xff;
unsigned b = (out_pix >> bshift) & 0xff;
unsigned out_r = (r * (256 - blend) + vid->font_r * blend) >> 8;
unsigned out_g = (g * (256 - blend) + vid->font_g * blend) >> 8;
unsigned out_b = (b * (256 - blend) + vid->font_b * blend) >> 8;
out[x] = (out_r << rshift) | (out_g << gshift) | (out_b << bshift);
2011-04-22 01:13:09 +00:00
}
}
2014-06-08 11:01:55 +00:00
msg_base_x += glyph->advance_x;
msg_base_y += glyph->advance_y;
}
2011-04-22 01:13:09 +00:00
}
2012-09-28 20:38:42 +00:00
static void sdl_gfx_set_handles(void)
{
driver_t *driver = driver_get_ptr();
2015-01-21 23:32:24 +00:00
/* SysWMinfo headers are broken on OSX. */
#if defined(_WIN32) || defined(HAVE_X11)
2012-09-28 20:38:42 +00:00
SDL_SysWMinfo info;
SDL_VERSION(&info.version);
2015-01-21 23:32:24 +00:00
if (SDL_GetWMInfo(&info) != 1)
return;
#if defined(_WIN32)
driver->display_type = RARCH_DISPLAY_WIN32;
driver->video_display = 0;
driver->video_window = (uintptr_t)info.window;
2012-09-28 20:38:42 +00:00
#elif defined(HAVE_X11)
driver->display_type = RARCH_DISPLAY_X11;
driver->video_display = (uintptr_t)info.info.x11.display;
driver->video_window = (uintptr_t)info.info.x11.window;
#endif
2012-09-28 20:38:42 +00:00
#endif
}
2011-11-02 18:31:36 +00:00
static void *sdl_gfx_init(const video_info_t *video, const input_driver_t **input, void **input_data)
2011-04-21 01:23:44 +00:00
{
2015-01-21 23:32:24 +00:00
unsigned full_x, full_y;
sdl_video_t *vid = NULL;
#ifdef _WIN32
gfx_set_dwm();
#endif
#ifdef HAVE_X11
XInitThreads();
#endif
2014-08-27 02:53:22 +00:00
if (SDL_WasInit(0) == 0)
{
if (SDL_Init(SDL_INIT_VIDEO) < 0)
return NULL;
}
else if (SDL_InitSubSystem(SDL_INIT_VIDEO) < 0)
return NULL;
2011-04-21 01:23:44 +00:00
2015-01-21 23:32:24 +00:00
vid = (sdl_video_t*)calloc(1, sizeof(*vid));
2011-04-21 01:23:44 +00:00
if (!vid)
return NULL;
const SDL_VideoInfo *video_info = SDL_GetVideoInfo();
2012-04-21 21:25:32 +00:00
rarch_assert(video_info);
2015-01-21 23:32:24 +00:00
full_x = video_info->current_w;
full_y = video_info->current_h;
2014-08-27 02:53:22 +00:00
RARCH_LOG("[SDL]: Detecting desktop resolution %ux%u.\n", full_x, full_y);
2011-12-24 12:46:12 +00:00
if (!video->fullscreen)
2014-08-27 02:53:22 +00:00
RARCH_LOG("[SDL]: Creating window @ %ux%u\n", video->width, video->height);
vid->screen = SDL_SetVideoMode(video->width, video->height, 32,
SDL_HWSURFACE | SDL_HWACCEL | SDL_DOUBLEBUF | (video->fullscreen ? SDL_FULLSCREEN : 0));
2011-04-23 16:06:48 +00:00
2015-01-21 23:32:24 +00:00
/* We assume that SDL chooses ARGB8888.
* Assuming this simplifies the driver *a ton*.
*/
2012-11-20 22:35:40 +00:00
2011-04-21 01:23:44 +00:00
if (!vid->screen)
{
2014-08-27 02:53:22 +00:00
RARCH_ERR("[SDL]: Failed to init SDL surface: %s\n", SDL_GetError());
2011-04-21 01:23:44 +00:00
goto error;
}
if (video->fullscreen)
SDL_ShowCursor(SDL_DISABLE);
2012-09-28 20:38:42 +00:00
sdl_gfx_set_handles();
if (input && input_data)
2011-04-21 01:23:44 +00:00
{
2014-08-27 02:53:22 +00:00
void *sdl_input = input_sdl.init();
2015-01-21 23:32:24 +00:00
if (sdl_input)
{
*input = &input_sdl;
*input_data = sdl_input;
}
else
{
*input = NULL;
*input_data = NULL;
}
2011-12-14 15:37:31 +00:00
}
2011-04-21 01:23:44 +00:00
2011-04-22 01:13:09 +00:00
sdl_init_font(vid, g_settings.video.font_path, g_settings.video.font_size);
vid->scaler.scaler_type = video->smooth ? SCALER_TYPE_BILINEAR : SCALER_TYPE_POINT;
2012-11-20 22:35:40 +00:00
vid->scaler.in_fmt = video->rgb32 ? SCALER_FMT_ARGB8888 : SCALER_FMT_RGB565;
vid->scaler.out_fmt = SCALER_FMT_ARGB8888;
vid->menu.scaler = vid->scaler;
vid->menu.scaler.scaler_type = SCALER_TYPE_BILINEAR;
vid->menu.frame = SDL_ConvertSurface(vid->screen, vid->screen->format, vid->screen->flags | SDL_SRCALPHA);
if (!vid->menu.frame)
{
2014-08-27 02:53:22 +00:00
RARCH_ERR("[SDL]: Failed to init menu surface: %s\n", SDL_GetError());
goto error;
}
2011-04-21 01:23:44 +00:00
return vid;
error:
sdl_gfx_free(vid);
return NULL;
}
static void check_window(sdl_video_t *vid)
{
SDL_Event event;
SDL_PumpEvents();
while (SDL_PeepEvents(&event, 1, SDL_GETEVENT, SDL_QUITMASK))
{
2015-01-21 23:32:24 +00:00
if (event.type != SDL_QUIT)
continue;
vid->quitting = true;
break;
}
}
2014-08-27 02:53:22 +00:00
static bool sdl_gfx_frame(void *data, const void *frame, unsigned width,
unsigned height, unsigned pitch, const char *msg)
2011-04-21 01:23:44 +00:00
{
char buf[128];
sdl_video_t *vid = (sdl_video_t*)data;
if (!frame)
return true;
2014-08-27 02:53:22 +00:00
sdl_update_scaler(vid->screen, &vid->scaler, vid->scaler.in_fmt, width, height, pitch);
2011-04-21 01:23:44 +00:00
if (SDL_MUSTLOCK(vid->screen))
SDL_LockSurface(vid->screen);
2011-04-21 01:23:44 +00:00
RARCH_PERFORMANCE_INIT(sdl_scale);
RARCH_PERFORMANCE_START(sdl_scale);
2012-11-20 22:35:40 +00:00
scaler_ctx_scale(&vid->scaler, vid->screen->pixels, frame);
RARCH_PERFORMANCE_STOP(sdl_scale);
if (vid->menu.active)
SDL_BlitSurface(vid->menu.frame, NULL, vid->screen, NULL);
2012-11-20 22:35:40 +00:00
if (msg)
sdl_render_msg(vid, vid->screen, msg, vid->screen->w, vid->screen->h, vid->screen->format);
2011-04-21 01:23:44 +00:00
if (SDL_MUSTLOCK(vid->screen))
SDL_UnlockSurface(vid->screen);
2011-04-21 01:23:44 +00:00
if (video_monitor_get_fps(buf, sizeof(buf), NULL, 0))
2011-04-21 01:39:03 +00:00
SDL_WM_SetCaption(buf, NULL);
SDL_Flip(vid->screen);
2011-04-21 01:23:44 +00:00
return true;
}
static void sdl_gfx_set_nonblock_state(void *data, bool state)
{
(void)data; // Can SDL even do this?
(void)state;
}
static bool sdl_gfx_alive(void *data)
{
2011-12-24 12:46:12 +00:00
sdl_video_t *vid = (sdl_video_t*)data;
2011-10-18 17:52:43 +00:00
check_window(vid);
2011-04-21 01:23:44 +00:00
return !vid->quitting;
}
static bool sdl_gfx_focus(void *data)
{
(void)data;
return (SDL_GetAppState() & (SDL_APPINPUTFOCUS | SDL_APPACTIVE)) == (SDL_APPINPUTFOCUS | SDL_APPACTIVE);
}
2015-01-18 21:32:14 +00:00
static bool sdl_gfx_suppress_screensaver(void *data, bool enable)
{
driver_t *driver = driver_get_ptr();
2015-01-18 21:32:14 +00:00
(void)data;
(void)enable;
#ifdef HAVE_X11
if (driver->display_type == RARCH_DISPLAY_X11)
2015-01-18 21:32:14 +00:00
{
x11_suspend_screensaver(driver->video_window);
2015-01-18 21:32:14 +00:00
return true;
}
#endif
return false;
}
static bool sdl_gfx_has_windowed(void *data)
{
(void)data;
/* TODO - implement. */
return true;
}
2015-02-14 04:52:05 +00:00
static void sdl_gfx_viewport_info(void *data, struct video_viewport *vp)
{
sdl_video_t *vid = (sdl_video_t*)data;
vp->x = vp->y = 0;
2013-01-11 15:23:04 +00:00
vp->width = vp->full_width = vid->screen->w;
vp->height = vp->full_height = vid->screen->h;
}
static void sdl_set_filtering(void *data, unsigned index, bool smooth)
{
sdl_video_t *vid = (sdl_video_t*)data;
vid->scaler.scaler_type = smooth ? SCALER_TYPE_BILINEAR : SCALER_TYPE_POINT;
}
static void sdl_set_aspect_ratio(void *data, unsigned aspectratio_index)
{
sdl_video_t *vid = (sdl_video_t*)data;
switch (aspectratio_index)
{
case ASPECT_RATIO_SQUARE:
2015-01-18 22:59:57 +00:00
video_viewport_set_square_pixel(g_extern.system.av_info.geometry.base_width,
2014-08-27 02:53:22 +00:00
g_extern.system.av_info.geometry.base_height);
break;
case ASPECT_RATIO_CORE:
2015-01-18 22:59:57 +00:00
video_viewport_set_core();
break;
case ASPECT_RATIO_CONFIG:
2015-01-18 22:59:57 +00:00
video_viewport_set_config();
break;
default:
break;
}
g_extern.system.aspect_ratio = aspectratio_lut[aspectratio_index].value;
}
static void sdl_apply_state_changes(void *data)
{
(void)data;
}
static void sdl_set_texture_frame(void *data, const void *frame, bool rgb32,
unsigned width, unsigned height, float alpha)
{
(void) alpha;
sdl_video_t *vid = (sdl_video_t*)data;
enum scaler_pix_fmt format = rgb32 ? SCALER_FMT_ARGB8888 : SCALER_FMT_RGBA4444;
2014-08-27 02:53:22 +00:00
sdl_update_scaler(vid->menu.frame, &vid->menu.scaler, format, width, height,
width * (rgb32 ? sizeof(uint32_t) : sizeof(uint16_t)));
scaler_ctx_scale(&vid->menu.scaler, vid->menu.frame->pixels, frame);
SDL_SetAlpha(vid->menu.frame, SDL_SRCALPHA, 255.0 * alpha);
}
static void sdl_set_texture_enable(void *data, bool state, bool full_screen)
{
(void) full_screen;
sdl_video_t *vid = (sdl_video_t*)data;
vid->menu.active = state;
}
static void sdl_show_mouse(void *data, bool state)
{
(void)data;
SDL_ShowCursor(state);
}
static void sdl_grab_mouse_toggle(void *data)
{
(void)data;
const SDL_GrabMode mode = SDL_WM_GrabInput(SDL_GRAB_QUERY);
SDL_WM_GrabInput(mode == SDL_GRAB_ON ? SDL_GRAB_OFF : SDL_GRAB_ON);
}
static const video_poke_interface_t sdl_poke_interface = {
NULL,
sdl_set_filtering,
NULL, /* get_video_output_size */
NULL, /* get_video_output_prev */
NULL, /* get_video_output_next */
#ifdef HAVE_FBO
NULL,
NULL,
#endif
sdl_set_aspect_ratio,
sdl_apply_state_changes,
#ifdef HAVE_MENU
sdl_set_texture_frame,
sdl_set_texture_enable,
#endif
NULL,
sdl_show_mouse,
sdl_grab_mouse_toggle,
NULL
};
static void sdl_get_poke_interface(void *data, const video_poke_interface_t **iface)
{
(void)data;
*iface = &sdl_poke_interface;
}
static bool sdl_gfx_set_shader(void *data,
enum rarch_shader_type type, const char *path)
{
(void)data;
(void)type;
(void)path;
return false;
}
static void sdl_gfx_set_rotation(void *data, unsigned rotation)
{
(void)data;
(void)rotation;
}
static bool sdl_gfx_read_viewport(void *data, uint8_t *buffer)
{
(void)data;
(void)buffer;
return true;
}
2014-09-11 05:06:20 +00:00
video_driver_t video_sdl = {
2011-12-24 12:46:12 +00:00
sdl_gfx_init,
sdl_gfx_frame,
sdl_gfx_set_nonblock_state,
sdl_gfx_alive,
sdl_gfx_focus,
2015-01-18 21:32:14 +00:00
sdl_gfx_suppress_screensaver,
sdl_gfx_has_windowed,
sdl_gfx_set_shader,
2011-12-24 12:46:12 +00:00
sdl_gfx_free,
"sdl",
sdl_gfx_set_rotation,
sdl_gfx_viewport_info,
sdl_gfx_read_viewport,
NULL, /* read_frame_raw */
#ifdef HAVE_OVERLAY
NULL,
#endif
sdl_get_poke_interface
2011-04-21 01:23:44 +00:00
};