mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-01 04:00:32 +00:00
590 lines
14 KiB
C
590 lines
14 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2015 - 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 <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include "x11_common.h"
|
|
#include "../../general.h"
|
|
#include "../video_monitor.h"
|
|
|
|
Colormap g_x11_cmap;
|
|
Window g_x11_win;
|
|
Display *g_x11_dpy;
|
|
|
|
static Atom XA_NET_WM_STATE;
|
|
static Atom XA_NET_WM_STATE_FULLSCREEN;
|
|
static Atom XA_NET_MOVERESIZE_WINDOW;
|
|
|
|
static Atom g_x11_quit_atom;
|
|
static volatile sig_atomic_t g_x11_quit;
|
|
static bool g_x11_has_focus;
|
|
static XIM g_x11_xim;
|
|
static XIC g_x11_xic;
|
|
static bool g_x11_true_full;
|
|
|
|
#define XA_INIT(x) XA##x = XInternAtom(dpy, #x, False)
|
|
#define _NET_WM_STATE_ADD 1
|
|
#define MOVERESIZE_GRAVITY_CENTER 5
|
|
#define MOVERESIZE_X_SHIFT 8
|
|
#define MOVERESIZE_Y_SHIFT 9
|
|
|
|
static void x11_hide_mouse(Display *dpy, Window win)
|
|
{
|
|
static char bm_no_data[] = {0, 0, 0, 0, 0, 0, 0, 0};
|
|
Cursor no_ptr;
|
|
Pixmap bm_no;
|
|
XColor black, dummy;
|
|
Colormap colormap = DefaultColormap(dpy, DefaultScreen(dpy));
|
|
|
|
if (!XAllocNamedColor(dpy, colormap, "black", &black, &dummy))
|
|
return;
|
|
|
|
bm_no = XCreateBitmapFromData(dpy, win, bm_no_data, 8, 8);
|
|
no_ptr = XCreatePixmapCursor(dpy, bm_no, bm_no, &black, &black, 0, 0);
|
|
|
|
XDefineCursor(dpy, win, no_ptr);
|
|
XFreeCursor(dpy, no_ptr);
|
|
|
|
if (bm_no != None)
|
|
XFreePixmap(dpy, bm_no);
|
|
|
|
XFreeColors(dpy, colormap, &black.pixel, 1, 0);
|
|
}
|
|
|
|
void x11_show_mouse(Display *dpy, Window win, bool state)
|
|
{
|
|
if (state)
|
|
XUndefineCursor(dpy, win);
|
|
else
|
|
x11_hide_mouse(dpy, win);
|
|
}
|
|
|
|
void x11_windowed_fullscreen(Display *dpy, Window win)
|
|
{
|
|
XEvent xev = {0};
|
|
|
|
XA_INIT(_NET_WM_STATE);
|
|
XA_INIT(_NET_WM_STATE_FULLSCREEN);
|
|
|
|
xev.xclient.type = ClientMessage;
|
|
xev.xclient.send_event = True;
|
|
xev.xclient.message_type = XA_NET_WM_STATE;
|
|
xev.xclient.window = win;
|
|
xev.xclient.format = 32;
|
|
xev.xclient.data.l[0] = _NET_WM_STATE_ADD;
|
|
xev.xclient.data.l[1] = XA_NET_WM_STATE_FULLSCREEN;
|
|
|
|
XSendEvent(dpy, DefaultRootWindow(dpy), False,
|
|
SubstructureRedirectMask | SubstructureNotifyMask,
|
|
&xev);
|
|
}
|
|
|
|
/* Try to be nice to tiling WMs if possible. */
|
|
|
|
void x11_move_window(Display *dpy, Window win, int x, int y,
|
|
unsigned width, unsigned height)
|
|
{
|
|
XEvent xev = {0};
|
|
|
|
XA_INIT(_NET_MOVERESIZE_WINDOW);
|
|
|
|
xev.xclient.type = ClientMessage;
|
|
xev.xclient.send_event = True;
|
|
xev.xclient.message_type = XA_NET_MOVERESIZE_WINDOW;
|
|
xev.xclient.window = win;
|
|
xev.xclient.format = 32;
|
|
xev.xclient.data.l[0] = (1 << MOVERESIZE_X_SHIFT) | (1 << MOVERESIZE_Y_SHIFT);
|
|
xev.xclient.data.l[1] = x;
|
|
xev.xclient.data.l[2] = y;
|
|
|
|
XSendEvent(dpy, DefaultRootWindow(dpy), False,
|
|
SubstructureRedirectMask | SubstructureNotifyMask,
|
|
&xev);
|
|
}
|
|
|
|
static void x11_set_window_class(Display *dpy, Window win)
|
|
{
|
|
XClassHint hint = {0};
|
|
|
|
hint.res_name = (char*)"retroarch"; /* Broken header. */
|
|
hint.res_class = (char*)"retroarch";
|
|
XSetClassHint(dpy, win, &hint);
|
|
}
|
|
|
|
void x11_set_window_attr(Display *dpy, Window win)
|
|
{
|
|
x11_set_window_class(dpy, win);
|
|
}
|
|
|
|
void x11_suspend_screensaver(Window wnd)
|
|
{
|
|
int ret;
|
|
char cmd[64] = {0};
|
|
|
|
RARCH_LOG("Suspending screensaver (X11).\n");
|
|
|
|
snprintf(cmd, sizeof(cmd), "xdg-screensaver suspend %d", (int)wnd);
|
|
|
|
ret = system(cmd);
|
|
if (ret == -1)
|
|
RARCH_WARN("Failed to launch xdg-screensaver.\n");
|
|
else if (WEXITSTATUS(ret))
|
|
RARCH_WARN("Could not suspend screen saver.\n");
|
|
}
|
|
|
|
static bool get_video_mode(Display *dpy, unsigned width, unsigned height,
|
|
XF86VidModeModeInfo *mode, XF86VidModeModeInfo *desktop_mode)
|
|
{
|
|
float refresh_mod;
|
|
int i, num_modes = 0;
|
|
bool ret = false;
|
|
float minimum_fps_diff = 0.0f;
|
|
XF86VidModeModeInfo **modes = NULL;
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
XF86VidModeGetAllModeLines(dpy, DefaultScreen(dpy), &num_modes, &modes);
|
|
|
|
if (!num_modes)
|
|
{
|
|
XFree(modes);
|
|
return false;
|
|
}
|
|
|
|
*desktop_mode = *modes[0];
|
|
|
|
/* If we use black frame insertion, we fake a 60 Hz monitor
|
|
* for 120 Hz one, etc, so try to match that. */
|
|
refresh_mod = settings->video.black_frame_insertion ? 0.5f : 1.0f;
|
|
|
|
for (i = 0; i < num_modes; i++)
|
|
{
|
|
float refresh, diff;
|
|
const XF86VidModeModeInfo *m = modes[i];
|
|
|
|
if (!m)
|
|
continue;
|
|
|
|
if (m->hdisplay != width)
|
|
continue;
|
|
if (m->vdisplay != height)
|
|
continue;
|
|
|
|
refresh = refresh_mod * m->dotclock * 1000.0f / (m->htotal * m->vtotal);
|
|
diff = fabsf(refresh - settings->video.refresh_rate);
|
|
|
|
if (!ret || diff < minimum_fps_diff)
|
|
{
|
|
*mode = *m;
|
|
minimum_fps_diff = diff;
|
|
}
|
|
ret = true;
|
|
}
|
|
|
|
XFree(modes);
|
|
return ret;
|
|
}
|
|
|
|
bool x11_enter_fullscreen(Display *dpy, unsigned width,
|
|
unsigned height, XF86VidModeModeInfo *desktop_mode)
|
|
{
|
|
XF86VidModeModeInfo mode;
|
|
|
|
if (!get_video_mode(dpy, width, height, &mode, desktop_mode))
|
|
return false;
|
|
|
|
if (!XF86VidModeSwitchToMode(dpy, DefaultScreen(dpy), &mode))
|
|
return false;
|
|
|
|
XF86VidModeSetViewPort(dpy, DefaultScreen(dpy), 0, 0);
|
|
return true;
|
|
}
|
|
|
|
void x11_exit_fullscreen(Display *dpy, XF86VidModeModeInfo *desktop_mode)
|
|
{
|
|
XF86VidModeSwitchToMode(dpy, DefaultScreen(dpy), desktop_mode);
|
|
XF86VidModeSetViewPort(dpy, DefaultScreen(dpy), 0, 0);
|
|
}
|
|
|
|
#ifdef HAVE_XINERAMA
|
|
static XineramaScreenInfo *x11_query_screens(Display *dpy, int *num_screens)
|
|
{
|
|
int major, minor;
|
|
|
|
if (!XineramaQueryExtension(dpy, &major, &minor))
|
|
return NULL;
|
|
|
|
XineramaQueryVersion(dpy, &major, &minor);
|
|
RARCH_LOG("[X11]: Xinerama version: %d.%d.\n", major, minor);
|
|
|
|
if (!XineramaIsActive(dpy))
|
|
return NULL;
|
|
|
|
return XineramaQueryScreens(dpy, num_screens);
|
|
}
|
|
|
|
bool x11_get_xinerama_coord(Display *dpy, int screen,
|
|
int *x, int *y, unsigned *w, unsigned *h)
|
|
{
|
|
int i, num_screens = 0;
|
|
bool ret = false;
|
|
|
|
XineramaScreenInfo *info = x11_query_screens(dpy, &num_screens);
|
|
RARCH_LOG("[X11]: Xinerama screens: %d.\n", num_screens);
|
|
|
|
for (i = 0; i < num_screens; i++)
|
|
{
|
|
if (info[i].screen_number != screen)
|
|
continue;
|
|
|
|
*x = info[i].x_org;
|
|
*y = info[i].y_org;
|
|
*w = info[i].width;
|
|
*h = info[i].height;
|
|
ret = true;
|
|
break;
|
|
}
|
|
|
|
XFree(info);
|
|
return ret;
|
|
}
|
|
|
|
unsigned x11_get_xinerama_monitor(Display *dpy, int x, int y,
|
|
int w, int h)
|
|
{
|
|
int i, num_screens = 0;
|
|
unsigned monitor = 0;
|
|
int largest_area = 0;
|
|
|
|
XineramaScreenInfo *info = x11_query_screens(dpy, &num_screens);
|
|
RARCH_LOG("[X11]: Xinerama screens: %d.\n", num_screens);
|
|
|
|
for (i = 0; i < num_screens; i++)
|
|
{
|
|
int area;
|
|
int max_lx = max(x, info[i].x_org);
|
|
int min_rx = min(x + w, info[i].x_org + info[i].width);
|
|
int max_ty = max(y, info[i].y_org);
|
|
int min_by = min(y + h, info[i].y_org + info[i].height);
|
|
|
|
int len_x = min_rx - max_lx;
|
|
int len_y = min_by - max_ty;
|
|
|
|
/* The whole window is outside the screen. */
|
|
if (len_x < 0 || len_y < 0)
|
|
continue;
|
|
|
|
area = len_x * len_y;
|
|
|
|
if (area > largest_area)
|
|
{
|
|
monitor = i;
|
|
largest_area = area;
|
|
}
|
|
}
|
|
|
|
XFree(info);
|
|
return monitor;
|
|
}
|
|
#endif
|
|
|
|
bool x11_create_input_context(Display *dpy, Window win, XIM *xim, XIC *xic)
|
|
{
|
|
g_x11_has_focus = true;
|
|
|
|
*xim = XOpenIM(dpy, NULL, NULL, NULL);
|
|
|
|
if (!*xim)
|
|
{
|
|
RARCH_ERR("[X11]: Failed to open input method.\n");
|
|
return false;
|
|
}
|
|
|
|
*xic = XCreateIC(*xim, XNInputStyle,
|
|
XIMPreeditNothing | XIMStatusNothing, XNClientWindow, win, NULL);
|
|
|
|
if (!*xic)
|
|
{
|
|
RARCH_ERR("[X11]: Failed to create input context.\n");
|
|
return false;
|
|
}
|
|
|
|
XSetICFocus(*xic);
|
|
return true;
|
|
}
|
|
|
|
void x11_destroy_input_context(XIM *xim, XIC *xic)
|
|
{
|
|
if (*xic)
|
|
{
|
|
XDestroyIC(*xic);
|
|
*xic = NULL;
|
|
}
|
|
|
|
if (*xim)
|
|
{
|
|
XCloseIM(*xim);
|
|
*xim = NULL;
|
|
}
|
|
}
|
|
|
|
bool x11_get_metrics(void *data,
|
|
enum display_metric_types type, float *value)
|
|
{
|
|
int pixels_x, pixels_y, physical_width, physical_height;
|
|
unsigned screen_no = 0;
|
|
Display *dpy = (Display*)XOpenDisplay(NULL);
|
|
pixels_x = DisplayWidth(dpy, screen_no);
|
|
pixels_y = DisplayHeight(dpy, screen_no);
|
|
physical_width = DisplayWidthMM(dpy, screen_no);
|
|
physical_height = DisplayHeightMM(dpy, screen_no);
|
|
|
|
(void)pixels_y;
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
switch (type)
|
|
{
|
|
case DISPLAY_METRIC_MM_WIDTH:
|
|
*value = (float)physical_width;
|
|
break;
|
|
case DISPLAY_METRIC_MM_HEIGHT:
|
|
*value = (float)physical_height;
|
|
break;
|
|
case DISPLAY_METRIC_DPI:
|
|
*value = ((((float)pixels_x) * 25.4) / ((float)physical_width));
|
|
break;
|
|
case DISPLAY_METRIC_NONE:
|
|
default:
|
|
*value = 0;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void x_input_poll_wheel(void *data, XButtonEvent *event, bool latch);
|
|
|
|
bool x11_alive(void *data)
|
|
{
|
|
XEvent event;
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
while (XPending(g_x11_dpy))
|
|
{
|
|
bool filter;
|
|
|
|
/* Can get events from older windows. Check this. */
|
|
XNextEvent(g_x11_dpy, &event);
|
|
filter = XFilterEvent(&event, g_x11_win);
|
|
|
|
switch (event.type)
|
|
{
|
|
case ClientMessage:
|
|
if (event.xclient.window == g_x11_win &&
|
|
(Atom)event.xclient.data.l[0] == g_x11_quit_atom)
|
|
g_x11_quit = true;
|
|
break;
|
|
|
|
case DestroyNotify:
|
|
if (event.xdestroywindow.window == g_x11_win)
|
|
g_x11_quit = true;
|
|
break;
|
|
|
|
case MapNotify:
|
|
if (event.xmap.window == g_x11_win)
|
|
g_x11_has_focus = true;
|
|
break;
|
|
|
|
case UnmapNotify:
|
|
if (event.xunmap.window == g_x11_win)
|
|
g_x11_has_focus = false;
|
|
break;
|
|
|
|
case ButtonPress:
|
|
x_input_poll_wheel(driver->input_data, &event.xbutton, true);
|
|
break;
|
|
|
|
case ButtonRelease:
|
|
break;
|
|
|
|
case KeyPress:
|
|
case KeyRelease:
|
|
if (event.xkey.window == g_x11_win)
|
|
x11_handle_key_event(&event, g_x11_xic, filter);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return !g_x11_quit;
|
|
}
|
|
|
|
void x11_check_window(void *data, bool *quit,
|
|
bool *resize, unsigned *width, unsigned *height, unsigned frame_count)
|
|
{
|
|
unsigned new_width = *width;
|
|
unsigned new_height = *height;
|
|
|
|
x11_get_video_size(data, &new_width, &new_height);
|
|
|
|
if (new_width != *width || new_height != *height)
|
|
{
|
|
*resize = true;
|
|
*width = new_width;
|
|
*height = new_height;
|
|
}
|
|
|
|
x11_alive(data);
|
|
|
|
*quit = g_x11_quit;
|
|
}
|
|
|
|
void x11_get_video_size(void *data, unsigned *width, unsigned *height)
|
|
{
|
|
if (!g_x11_dpy || g_x11_win == None)
|
|
{
|
|
Display *dpy = (Display*)XOpenDisplay(NULL);
|
|
*width = 0;
|
|
*height = 0;
|
|
|
|
if (dpy)
|
|
{
|
|
int screen = DefaultScreen(dpy);
|
|
*width = DisplayWidth(dpy, screen);
|
|
*height = DisplayHeight(dpy, screen);
|
|
XCloseDisplay(dpy);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
XWindowAttributes target;
|
|
XGetWindowAttributes(g_x11_dpy, g_x11_win, &target);
|
|
|
|
*width = target.width;
|
|
*height = target.height;
|
|
}
|
|
}
|
|
|
|
bool x11_has_focus_internal(void *data)
|
|
{
|
|
return g_x11_has_focus;
|
|
}
|
|
|
|
bool x11_has_focus(void *data)
|
|
{
|
|
Window win;
|
|
int rev;
|
|
|
|
XGetInputFocus(g_x11_dpy, &win, &rev);
|
|
|
|
return (win == g_x11_win && g_x11_has_focus) || g_x11_true_full;
|
|
}
|
|
|
|
static void x11_sighandler(int sig)
|
|
{
|
|
(void)sig;
|
|
g_x11_quit = 1;
|
|
}
|
|
|
|
void x11_install_sighandlers(void)
|
|
{
|
|
struct sigaction sa = {{0}};
|
|
|
|
sa.sa_handler = x11_sighandler;
|
|
sa.sa_flags = SA_RESTART;
|
|
sigemptyset(&sa.sa_mask);
|
|
sigaction(SIGINT, &sa, NULL);
|
|
sigaction(SIGTERM, &sa, NULL);
|
|
}
|
|
|
|
bool x11_connect(void)
|
|
{
|
|
g_x11_quit = 0;
|
|
|
|
/* Keep one g_x11_dpy alive the entire process lifetime.
|
|
* This is necessary for nVidia's EGL implementation for now. */
|
|
if (!g_x11_dpy)
|
|
{
|
|
g_x11_dpy = XOpenDisplay(NULL);
|
|
if (!g_x11_dpy)
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void x11_update_window_title(void *data)
|
|
{
|
|
char buf[128] = {0};
|
|
char buf_fps[128] = {0};
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
if (video_monitor_get_fps(buf, sizeof(buf),
|
|
buf_fps, sizeof(buf_fps)))
|
|
XStoreName(g_x11_dpy, g_x11_win, buf);
|
|
if (settings->fps_show)
|
|
rarch_main_msg_queue_push(buf_fps, 1, 1, false);
|
|
}
|
|
|
|
bool x11_input_ctx_new(bool true_full)
|
|
{
|
|
driver_t *driver = driver_get_ptr();
|
|
if (!x11_create_input_context(g_x11_dpy, g_x11_win, &g_x11_xim, &g_x11_xic))
|
|
return false;
|
|
|
|
driver->display_type = RARCH_DISPLAY_X11;
|
|
driver->video_display = (uintptr_t)g_x11_dpy;
|
|
driver->video_window = (uintptr_t)g_x11_win;
|
|
g_x11_true_full = true_full;
|
|
return true;
|
|
}
|
|
|
|
void x11_input_ctx_destroy(void)
|
|
{
|
|
x11_destroy_input_context(&g_x11_xim, &g_x11_xic);
|
|
}
|
|
|
|
void x11_window_destroy(bool fullscreen)
|
|
{
|
|
if (g_x11_win)
|
|
XUnmapWindow(g_x11_dpy, g_x11_win);
|
|
if (!fullscreen)
|
|
XDestroyWindow(g_x11_dpy, g_x11_win);
|
|
g_x11_win = None;
|
|
}
|
|
|
|
void x11_colormap_destroy(void)
|
|
{
|
|
if (!g_x11_cmap)
|
|
return;
|
|
|
|
XFreeColormap(g_x11_dpy, g_x11_cmap);
|
|
g_x11_cmap = None;
|
|
}
|
|
|
|
void x11_install_quit_atom(void)
|
|
{
|
|
g_x11_quit_atom = XInternAtom(g_x11_dpy, "WM_DELETE_WINDOW", False);
|
|
if (g_x11_quit_atom)
|
|
XSetWMProtocols(g_x11_dpy, g_x11_win, &g_x11_quit_atom, 1);
|
|
}
|