Skip to content

Latest commit

 

History

History
539 lines (443 loc) · 16.4 KB

SDL_waylandvideo.c

File metadata and controls

539 lines (443 loc) · 16.4 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 5, 2019
Jan 5, 2019
3
Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
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
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"
#if SDL_VIDEO_DRIVER_WAYLAND
#include "SDL_video.h"
#include "SDL_mouse.h"
#include "SDL_stdinc.h"
#include "../../events/SDL_events_c.h"
#include "SDL_waylandvideo.h"
#include "SDL_waylandevents_c.h"
#include "SDL_waylandwindow.h"
#include "SDL_waylandopengles.h"
#include "SDL_waylandmouse.h"
#include "SDL_waylandtouch.h"
Nov 6, 2016
Nov 6, 2016
37
#include "SDL_waylandclipboard.h"
Aug 28, 2017
Aug 28, 2017
38
#include "SDL_waylandvulkan.h"
Sep 1, 2016
Sep 1, 2016
40
41
#include <sys/types.h>
#include <unistd.h>
42
43
44
45
46
47
#include <fcntl.h>
#include <xkbcommon/xkbcommon.h>
#include "SDL_waylanddyn.h"
#include <wayland-util.h>
Jun 25, 2018
Jun 25, 2018
48
#include "xdg-shell-client-protocol.h"
Feb 7, 2018
Feb 7, 2018
49
#include "xdg-shell-unstable-v6-client-protocol.h"
Nov 4, 2018
Nov 4, 2018
50
#include "xdg-decoration-unstable-v1-client-protocol.h"
Oct 29, 2018
Oct 29, 2018
51
#include "org-kde-kwin-server-decoration-manager-client-protocol.h"
Feb 7, 2018
Feb 7, 2018
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#define WAYLANDVID_DRIVER_NAME "wayland"
/* Initialization/Query functions */
static int
Wayland_VideoInit(_THIS);
static void
Wayland_GetDisplayModes(_THIS, SDL_VideoDisplay *sdl_display);
static int
Wayland_SetDisplayMode(_THIS, SDL_VideoDisplay *display, SDL_DisplayMode *mode);
static void
Wayland_VideoQuit(_THIS);
Sep 1, 2016
Sep 1, 2016
67
68
69
70
71
/* Find out what class name we should use
* Based on src/video/x11/SDL_x11video.c */
static char *
get_classname()
{
Feb 7, 2018
Feb 7, 2018
72
/* !!! FIXME: this is probably wrong, albeit harmless in many common cases. From protocol spec:
Sep 24, 2018
Sep 24, 2018
73
74
75
76
"The surface class identifies the general class of applications
to which the surface belongs. A common convention is to use the
file name (or the full path if it is a non-standard location) of
the application's .desktop file as the class." */
Feb 7, 2018
Feb 7, 2018
77
Sep 1, 2016
Sep 1, 2016
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
char *spot;
#if defined(__LINUX__) || defined(__FREEBSD__)
char procfile[1024];
char linkfile[1024];
int linksize;
#endif
/* First allow environment variable override */
spot = SDL_getenv("SDL_VIDEO_WAYLAND_WMCLASS");
if (spot) {
return SDL_strdup(spot);
} else {
/* Fallback to the "old" envvar */
spot = SDL_getenv("SDL_VIDEO_X11_WMCLASS");
if (spot) {
return SDL_strdup(spot);
}
}
/* Next look at the application's executable name */
#if defined(__LINUX__) || defined(__FREEBSD__)
#if defined(__LINUX__)
SDL_snprintf(procfile, SDL_arraysize(procfile), "/proc/%d/exe", getpid());
#elif defined(__FREEBSD__)
SDL_snprintf(procfile, SDL_arraysize(procfile), "/proc/%d/file",
getpid());
#else
#error Where can we find the executable name?
#endif
linksize = readlink(procfile, linkfile, sizeof(linkfile) - 1);
if (linksize > 0) {
linkfile[linksize] = '\0';
spot = SDL_strrchr(linkfile, '/');
if (spot) {
return SDL_strdup(spot + 1);
} else {
return SDL_strdup(linkfile);
}
}
#endif /* __LINUX__ || __FREEBSD__ */
/* Finally use the default we've used forever */
return SDL_strdup("SDL_App");
}
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/* Wayland driver bootstrap functions */
static int
Wayland_Available(void)
{
struct wl_display *display = NULL;
if (SDL_WAYLAND_LoadSymbols()) {
display = WAYLAND_wl_display_connect(NULL);
if (display != NULL) {
WAYLAND_wl_display_disconnect(display);
}
SDL_WAYLAND_UnloadSymbols();
}
return (display != NULL);
}
static void
Wayland_DeleteDevice(SDL_VideoDevice *device)
{
SDL_free(device);
SDL_WAYLAND_UnloadSymbols();
}
static SDL_VideoDevice *
Wayland_CreateDevice(int devindex)
{
SDL_VideoDevice *device;
if (!SDL_WAYLAND_LoadSymbols()) {
return NULL;
}
/* Initialize all variables that we clean on shutdown */
device = SDL_calloc(1, sizeof(SDL_VideoDevice));
if (!device) {
SDL_WAYLAND_UnloadSymbols();
SDL_OutOfMemory();
return NULL;
}
/* Set the function pointers */
device->VideoInit = Wayland_VideoInit;
device->VideoQuit = Wayland_VideoQuit;
device->SetDisplayMode = Wayland_SetDisplayMode;
device->GetDisplayModes = Wayland_GetDisplayModes;
device->GetWindowWMInfo = Wayland_GetWindowWMInfo;
device->PumpEvents = Wayland_PumpEvents;
device->GL_SwapWindow = Wayland_GLES_SwapWindow;
device->GL_GetSwapInterval = Wayland_GLES_GetSwapInterval;
device->GL_SetSwapInterval = Wayland_GLES_SetSwapInterval;
Jun 11, 2019
Jun 11, 2019
175
device->GL_GetDrawableSize = Wayland_GLES_GetDrawableSize;
176
177
178
179
180
181
182
device->GL_MakeCurrent = Wayland_GLES_MakeCurrent;
device->GL_CreateContext = Wayland_GLES_CreateContext;
device->GL_LoadLibrary = Wayland_GLES_LoadLibrary;
device->GL_UnloadLibrary = Wayland_GLES_UnloadLibrary;
device->GL_GetProcAddress = Wayland_GLES_GetProcAddress;
device->GL_DeleteContext = Wayland_GLES_DeleteContext;
Aug 28, 2017
Aug 28, 2017
183
device->CreateSDLWindow = Wayland_CreateWindow;
184
185
device->ShowWindow = Wayland_ShowWindow;
device->SetWindowFullscreen = Wayland_SetWindowFullscreen;
Oct 8, 2016
Oct 8, 2016
186
187
device->MaximizeWindow = Wayland_MaximizeWindow;
device->RestoreWindow = Wayland_RestoreWindow;
Oct 29, 2018
Oct 29, 2018
188
device->SetWindowBordered = Wayland_SetWindowBordered;
189
device->SetWindowSize = Wayland_SetWindowSize;
Oct 8, 2016
Oct 8, 2016
190
device->SetWindowTitle = Wayland_SetWindowTitle;
191
192
193
device->DestroyWindow = Wayland_DestroyWindow;
device->SetWindowHitTest = Wayland_SetWindowHitTest;
Nov 6, 2016
Nov 6, 2016
194
195
196
197
device->SetClipboardText = Wayland_SetClipboardText;
device->GetClipboardText = Wayland_GetClipboardText;
device->HasClipboardText = Wayland_HasClipboardText;
Aug 28, 2017
Aug 28, 2017
198
#if SDL_VIDEO_VULKAN
Aug 28, 2017
Aug 28, 2017
199
200
201
202
device->Vulkan_LoadLibrary = Wayland_Vulkan_LoadLibrary;
device->Vulkan_UnloadLibrary = Wayland_Vulkan_UnloadLibrary;
device->Vulkan_GetInstanceExtensions = Wayland_Vulkan_GetInstanceExtensions;
device->Vulkan_CreateSurface = Wayland_Vulkan_CreateSurface;
Jun 11, 2019
Jun 11, 2019
203
device->Vulkan_GetDrawableSize = Wayland_Vulkan_GetDrawableSize;
Aug 28, 2017
Aug 28, 2017
204
205
#endif
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
device->free = Wayland_DeleteDevice;
return device;
}
VideoBootStrap Wayland_bootstrap = {
WAYLANDVID_DRIVER_NAME, "SDL Wayland video driver",
Wayland_Available, Wayland_CreateDevice
};
static void
display_handle_geometry(void *data,
struct wl_output *output,
int x, int y,
int physical_width,
int physical_height,
int subpixel,
const char *make,
const char *model,
int transform)
{
SDL_VideoDisplay *display = data;
Jun 28, 2016
Jun 28, 2016
230
display->name = SDL_strdup(model);
231
232
233
234
235
236
237
238
239
240
241
}
static void
display_handle_mode(void *data,
struct wl_output *output,
uint32_t flags,
int width,
int height,
int refresh)
{
SDL_DisplayMode mode;
Jun 11, 2019
Jun 11, 2019
242
SDL_VideoDisplay *display = data;
Jan 3, 2017
Jan 3, 2017
245
mode.format = SDL_PIXELFORMAT_RGB888;
246
247
248
mode.w = width;
mode.h = height;
mode.refresh_rate = refresh / 1000; // mHz to Hz
Jun 11, 2019
Jun 11, 2019
249
mode.driverdata = ((SDL_WaylandOutputData*)display->driverdata)->output;
250
251
252
253
254
255
256
257
258
259
260
261
SDL_AddDisplayMode(display, &mode);
if (flags & WL_OUTPUT_MODE_CURRENT) {
display->current_mode = mode;
display->desktop_mode = mode;
}
}
static void
display_handle_done(void *data,
struct wl_output *output)
{
Jun 11, 2019
Jun 11, 2019
262
/* !!! FIXME: this will fail on any further property changes! */
263
264
SDL_VideoDisplay *display = data;
SDL_AddVideoDisplay(display);
Jun 11, 2019
Jun 11, 2019
265
wl_output_set_user_data(output, display->driverdata);
266
267
268
269
270
271
272
273
274
SDL_free(display->name);
SDL_free(display);
}
static void
display_handle_scale(void *data,
struct wl_output *output,
int32_t factor)
{
Jun 11, 2019
Jun 11, 2019
275
276
SDL_VideoDisplay *display = data;
((SDL_WaylandOutputData*)display->driverdata)->scale_factor = factor;
277
278
279
280
281
282
283
284
285
286
287
288
289
}
static const struct wl_output_listener output_listener = {
display_handle_geometry,
display_handle_mode,
display_handle_done,
display_handle_scale
};
static void
Wayland_add_display(SDL_VideoData *d, uint32_t id)
{
struct wl_output *output;
Jun 11, 2019
Jun 11, 2019
290
SDL_WaylandOutputData *data;
291
292
293
294
295
296
297
298
299
300
SDL_VideoDisplay *display = SDL_malloc(sizeof *display);
if (!display) {
SDL_OutOfMemory();
return;
}
SDL_zero(*display);
output = wl_registry_bind(d->registry, id, &wl_output_interface, 2);
if (!output) {
SDL_SetError("Failed to retrieve output.");
Nov 16, 2016
Nov 16, 2016
301
SDL_free(display);
Jun 11, 2019
Jun 11, 2019
304
305
306
307
data = SDL_malloc(sizeof *data);
data->output = output;
data->scale_factor = 1.0;
display->driverdata = data;
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
wl_output_add_listener(output, &output_listener, display);
}
#ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
static void
windowmanager_hints(void *data, struct qt_windowmanager *qt_windowmanager,
int32_t show_is_fullscreen)
{
}
static void
windowmanager_quit(void *data, struct qt_windowmanager *qt_windowmanager)
{
SDL_SendQuit();
}
static const struct qt_windowmanager_listener windowmanager_listener = {
windowmanager_hints,
windowmanager_quit,
};
#endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
Feb 7, 2018
Feb 7, 2018
331
332
333
334
335
336
337
338
339
340
341
342
static void
handle_ping_zxdg_shell(void *data, struct zxdg_shell_v6 *zxdg, uint32_t serial)
{
zxdg_shell_v6_pong(zxdg, serial);
}
static const struct zxdg_shell_v6_listener shell_listener_zxdg = {
handle_ping_zxdg_shell
};
Jun 25, 2018
Jun 25, 2018
343
344
345
346
347
348
349
350
351
352
353
static void
handle_ping_xdg_wm_base(void *data, struct xdg_wm_base *xdg, uint32_t serial)
{
xdg_wm_base_pong(xdg, serial);
}
static const struct xdg_wm_base_listener shell_listener_xdg = {
handle_ping_xdg_wm_base
};
354
355
356
357
358
359
static void
display_handle_global(void *data, struct wl_registry *registry, uint32_t id,
const char *interface, uint32_t version)
{
SDL_VideoData *d = data;
Oct 29, 2018
Oct 29, 2018
360
361
/*printf("WAYLAND INTERFACE: %s\n", interface);*/
362
if (strcmp(interface, "wl_compositor") == 0) {
Jun 11, 2019
Jun 11, 2019
363
d->compositor = wl_registry_bind(d->registry, id, &wl_compositor_interface, SDL_min(3, version));
364
365
366
367
} else if (strcmp(interface, "wl_output") == 0) {
Wayland_add_display(d, id);
} else if (strcmp(interface, "wl_seat") == 0) {
Wayland_display_add_input(d, id);
Jun 25, 2018
Jun 25, 2018
368
369
370
} else if (strcmp(interface, "xdg_wm_base") == 0) {
d->shell.xdg = wl_registry_bind(d->registry, id, &xdg_wm_base_interface, 1);
xdg_wm_base_add_listener(d->shell.xdg, &shell_listener_xdg, NULL);
Feb 7, 2018
Feb 7, 2018
371
372
373
} else if (strcmp(interface, "zxdg_shell_v6") == 0) {
d->shell.zxdg = wl_registry_bind(d->registry, id, &zxdg_shell_v6_interface, 1);
zxdg_shell_v6_add_listener(d->shell.zxdg, &shell_listener_zxdg, NULL);
374
} else if (strcmp(interface, "wl_shell") == 0) {
Feb 7, 2018
Feb 7, 2018
375
d->shell.wl = wl_registry_bind(d->registry, id, &wl_shell_interface, 1);
376
377
378
} else if (strcmp(interface, "wl_shm") == 0) {
d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
d->cursor_theme = WAYLAND_wl_cursor_theme_load(NULL, 32, d->shm);
Sep 1, 2016
Sep 1, 2016
379
380
381
382
} else if (strcmp(interface, "zwp_relative_pointer_manager_v1") == 0) {
Wayland_display_add_relative_pointer_manager(d, id);
} else if (strcmp(interface, "zwp_pointer_constraints_v1") == 0) {
Wayland_display_add_pointer_constraints(d, id);
Nov 6, 2016
Nov 6, 2016
383
384
} else if (strcmp(interface, "wl_data_device_manager") == 0) {
d->data_device_manager = wl_registry_bind(d->registry, id, &wl_data_device_manager_interface, 3);
Nov 4, 2018
Nov 4, 2018
385
386
} else if (strcmp(interface, "zxdg_decoration_manager_v1") == 0) {
d->decoration_manager = wl_registry_bind(d->registry, id, &zxdg_decoration_manager_v1_interface, 1);
Oct 29, 2018
Oct 29, 2018
387
388
} else if (strcmp(interface, "org_kde_kwin_server_decoration_manager") == 0) {
d->kwin_server_decoration_manager = wl_registry_bind(d->registry, id, &org_kde_kwin_server_decoration_manager_interface, 1);
Feb 7, 2018
Feb 7, 2018
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
#ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
} else if (strcmp(interface, "qt_touch_extension") == 0) {
Wayland_touch_create(d, id);
} else if (strcmp(interface, "qt_surface_extension") == 0) {
d->surface_extension = wl_registry_bind(registry, id,
&qt_surface_extension_interface, 1);
} else if (strcmp(interface, "qt_windowmanager") == 0) {
d->windowmanager = wl_registry_bind(registry, id,
&qt_windowmanager_interface, 1);
qt_windowmanager_add_listener(d->windowmanager, &windowmanager_listener, d);
#endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
}
}
Mar 12, 2019
Mar 12, 2019
404
405
406
static void
display_remove_global(void *data, struct wl_registry *registry, uint32_t id) {}
407
static const struct wl_registry_listener registry_listener = {
Sep 29, 2017
Sep 29, 2017
408
display_handle_global,
Mar 12, 2019
Mar 12, 2019
409
display_remove_global
410
411
412
413
414
};
int
Wayland_VideoInit(_THIS)
{
Aug 6, 2019
Aug 6, 2019
415
SDL_VideoData *data = SDL_calloc(1, sizeof(*data));
416
417
418
419
420
if (data == NULL)
return SDL_OutOfMemory();
_this->driverdata = data;
Oct 13, 2016
Oct 13, 2016
421
422
423
424
425
data->xkb_context = WAYLAND_xkb_context_new(0);
if (!data->xkb_context) {
return SDL_SetError("Failed to create XKB context");
}
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
data->display = WAYLAND_wl_display_connect(NULL);
if (data->display == NULL) {
return SDL_SetError("Failed to connect to a Wayland display");
}
data->registry = wl_display_get_registry(data->display);
if (data->registry == NULL) {
return SDL_SetError("Failed to get the Wayland registry");
}
wl_registry_add_listener(data->registry, &registry_listener, data);
// First roundtrip to receive all registry objects.
WAYLAND_wl_display_roundtrip(data->display);
// Second roundtrip to receive all output events.
WAYLAND_wl_display_roundtrip(data->display);
Wayland_InitMouse();
Sep 1, 2016
Sep 1, 2016
446
447
448
/* Get the surface class name, usually the name of the application */
data->classname = get_classname();
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
WAYLAND_wl_display_flush(data->display);
return 0;
}
static void
Wayland_GetDisplayModes(_THIS, SDL_VideoDisplay *sdl_display)
{
// Nothing to do here, everything was already done in the wl_output
// callbacks.
}
static int
Wayland_SetDisplayMode(_THIS, SDL_VideoDisplay *display, SDL_DisplayMode *mode)
{
return SDL_Unsupported();
}
void
Wayland_VideoQuit(_THIS)
{
SDL_VideoData *data = _this->driverdata;
Jan 3, 2018
Jan 3, 2018
471
int i, j;
472
473
474
475
476
Wayland_FiniMouse ();
for (i = 0; i < _this->num_displays; ++i) {
SDL_VideoDisplay *display = &_this->displays[i];
Jun 11, 2019
Jun 11, 2019
477
478
479
wl_output_destroy(((SDL_WaylandOutputData*)display->driverdata)->output);
SDL_free(display->driverdata);
480
display->driverdata = NULL;
Jan 3, 2018
Jan 3, 2018
481
482
483
484
485
for (j = display->num_display_modes; j--;) {
display->display_modes[j].driverdata = NULL;
}
display->desktop_mode.driverdata = NULL;
486
487
488
}
Wayland_display_destroy_input(data);
Sep 1, 2016
Sep 1, 2016
489
490
Wayland_display_destroy_pointer_constraints(data);
Wayland_display_destroy_relative_pointer_manager(data);
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
if (data->xkb_context) {
WAYLAND_xkb_context_unref(data->xkb_context);
data->xkb_context = NULL;
}
#ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
if (data->windowmanager)
qt_windowmanager_destroy(data->windowmanager);
if (data->surface_extension)
qt_surface_extension_destroy(data->surface_extension);
Wayland_touch_destroy(data);
#endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
if (data->shm)
wl_shm_destroy(data->shm);
if (data->cursor_theme)
WAYLAND_wl_cursor_theme_destroy(data->cursor_theme);
Feb 7, 2018
Feb 7, 2018
512
513
514
if (data->shell.wl)
wl_shell_destroy(data->shell.wl);
Jun 25, 2018
Jun 25, 2018
515
516
517
if (data->shell.xdg)
xdg_wm_base_destroy(data->shell.xdg);
Feb 7, 2018
Feb 7, 2018
518
519
if (data->shell.zxdg)
zxdg_shell_v6_destroy(data->shell.zxdg);
520
521
522
523
524
525
526
527
528
529
530
531
if (data->compositor)
wl_compositor_destroy(data->compositor);
if (data->registry)
wl_registry_destroy(data->registry);
if (data->display) {
WAYLAND_wl_display_flush(data->display);
WAYLAND_wl_display_disconnect(data->display);
}
Sep 1, 2016
Sep 1, 2016
532
SDL_free(data->classname);
May 25, 2017
May 25, 2017
533
SDL_free(data);
534
535
536
537
538
539
_this->driverdata = NULL;
}
#endif /* SDL_VIDEO_DRIVER_WAYLAND */
/* vi: set ts=4 sw=4 expandtab: */