Skip to content

Latest commit

 

History

History
412 lines (340 loc) · 11.3 KB

SDL_waylandmouse.c

File metadata and controls

412 lines (340 loc) · 11.3 KB
 
Dec 14, 2013
Dec 14, 2013
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
Simple DirectMedia Layer
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
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.
*/
Jan 20, 2014
Jan 20, 2014
22
23
24
25
#include "../../SDL_internal.h"
#if SDL_VIDEO_DRIVER_WAYLAND
Dec 14, 2013
Dec 14, 2013
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <errno.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <limits.h>
#include "../SDL_sysvideo.h"
#include "SDL_mouse.h"
#include "../../events/SDL_mouse_c.h"
#include "SDL_waylandvideo.h"
#include "SDL_waylandevents_c.h"
Jan 9, 2014
Jan 9, 2014
45
46
47
#include "SDL_waylanddyn.h"
#include "wayland-cursor.h"
Dec 14, 2013
Dec 14, 2013
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#include "SDL_assert.h"
typedef struct {
struct wl_buffer *buffer;
struct wl_surface *surface;
int hot_x, hot_y;
/* Either a preloaded cursor, or one we created ourselves */
struct wl_cursor *cursor;
void *shm_data;
} Wayland_CursorData;
static int
wayland_create_tmp_file(off_t size)
{
static const char template[] = "/sdl-shared-XXXXXX";
char *xdg_path;
char tmp_path[PATH_MAX];
int fd;
xdg_path = SDL_getenv("XDG_RUNTIME_DIR");
if (!xdg_path) {
errno = ENOENT;
return -1;
}
SDL_strlcpy(tmp_path, xdg_path, PATH_MAX);
SDL_strlcat(tmp_path, template, PATH_MAX);
fd = mkostemp(tmp_path, O_CLOEXEC);
if (fd < 0)
return -1;
if (ftruncate(fd, size) < 0) {
close(fd);
return -1;
}
return fd;
}
static void
mouse_buffer_release(void *data, struct wl_buffer *buffer)
{
}
static const struct wl_buffer_listener mouse_buffer_listener = {
mouse_buffer_release
};
static int
create_buffer_from_shm(Wayland_CursorData *d,
int width,
int height,
uint32_t format)
{
SDL_VideoDevice *vd = SDL_GetVideoDevice();
SDL_VideoData *data = (SDL_VideoData *) vd->driverdata;
int stride = width * 4;
int size = stride * height;
int shm_fd;
shm_fd = wayland_create_tmp_file(size);
if (shm_fd < 0)
{
fprintf(stderr, "creating mouse cursor buffer failed!\n");
return -1;
}
d->shm_data = mmap(NULL,
size,
PROT_READ | PROT_WRITE,
MAP_SHARED,
shm_fd,
0);
if (data == MAP_FAILED) {
d->shm_data = NULL;
fprintf (stderr, "mmap () failed\n");
close (shm_fd);
}
struct wl_shm_pool *shm_pool = wl_shm_create_pool(data->shm,
shm_fd,
size);
d->buffer = wl_shm_pool_create_buffer(shm_pool,
0,
width,
height,
stride,
format);
wl_buffer_add_listener(d->buffer,
&mouse_buffer_listener,
d);
wl_shm_pool_destroy (shm_pool);
close (shm_fd);
return 0;
}
static SDL_Cursor *
Wayland_CreateCursor(SDL_Surface *surface, int hot_x, int hot_y)
{
SDL_Cursor *cursor;
cursor = calloc(1, sizeof (*cursor));
if (cursor) {
SDL_VideoDevice *vd = SDL_GetVideoDevice ();
SDL_VideoData *wd = (SDL_VideoData *) vd->driverdata;
Wayland_CursorData *data = calloc (1, sizeof (Wayland_CursorData));
cursor->driverdata = (void *) data;
/* Assume ARGB8888 */
SDL_assert(surface->format->format == SDL_PIXELFORMAT_ARGB8888);
SDL_assert(surface->pitch == surface->w * 4);
/* Allocate shared memory buffer for this cursor */
if (create_buffer_from_shm (data,
surface->w,
surface->h,
WL_SHM_FORMAT_XRGB8888) < 0)
{
free (cursor->driverdata);
free (cursor);
return NULL;
}
SDL_memcpy(data->shm_data,
surface->pixels,
surface->h * surface->pitch);
data->surface = wl_compositor_create_surface(wd->compositor);
wl_surface_attach(data->surface,
data->buffer,
0,
0);
wl_surface_damage(data->surface,
0,
0,
surface->w,
surface->h);
wl_surface_commit(data->surface);
data->hot_x = hot_x;
data->hot_y = hot_y;
}
return cursor;
}
static SDL_Cursor *
CreateCursorFromWlCursor(SDL_VideoData *d, struct wl_cursor *wlcursor)
{
SDL_Cursor *cursor;
cursor = calloc(1, sizeof (*cursor));
if (cursor) {
Wayland_CursorData *data = calloc (1, sizeof (Wayland_CursorData));
cursor->driverdata = (void *) data;
/* The wl_buffer here will be destroyed from wl_cursor_theme_destroy
* if we are fetching this from a wl_cursor_theme, so don't store a
* reference to it here */
data->buffer = NULL;
data->surface = wl_compositor_create_surface(d->compositor);
wl_surface_attach(data->surface,
Jan 9, 2014
Jan 9, 2014
218
WAYLAND_wl_cursor_image_get_buffer(wlcursor->images[0]),
Dec 14, 2013
Dec 14, 2013
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
0,
0);
wl_surface_damage(data->surface,
0,
0,
wlcursor->images[0]->width,
wlcursor->images[0]->height);
wl_surface_commit(data->surface);
data->hot_x = wlcursor->images[0]->hotspot_x;
data->hot_y = wlcursor->images[0]->hotspot_y;
data->cursor= wlcursor;
} else {
SDL_OutOfMemory ();
}
return cursor;
}
static SDL_Cursor *
Wayland_CreateDefaultCursor()
{
SDL_VideoDevice *device = SDL_GetVideoDevice();
SDL_VideoData *data = device->driverdata;
return CreateCursorFromWlCursor (data,
Jan 9, 2014
Jan 9, 2014
244
WAYLAND_wl_cursor_theme_get_cursor(data->cursor_theme,
Dec 14, 2013
Dec 14, 2013
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
"left_ptr"));
}
static SDL_Cursor *
Wayland_CreateSystemCursor(SDL_SystemCursor id)
{
SDL_VideoDevice *vd = SDL_GetVideoDevice();
SDL_VideoData *d = vd->driverdata;
struct wl_cursor *cursor = NULL;
switch(id)
{
default:
SDL_assert(0);
return NULL;
case SDL_SYSTEM_CURSOR_ARROW:
Jan 9, 2014
Jan 9, 2014
262
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "left_ptr");
Dec 14, 2013
Dec 14, 2013
263
264
break;
case SDL_SYSTEM_CURSOR_IBEAM:
Jan 9, 2014
Jan 9, 2014
265
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "xterm");
Dec 14, 2013
Dec 14, 2013
266
267
break;
case SDL_SYSTEM_CURSOR_WAIT:
Jan 9, 2014
Jan 9, 2014
268
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "wait");
Dec 14, 2013
Dec 14, 2013
269
270
break;
case SDL_SYSTEM_CURSOR_CROSSHAIR:
Jan 9, 2014
Jan 9, 2014
271
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "hand1");
Dec 14, 2013
Dec 14, 2013
272
273
break;
case SDL_SYSTEM_CURSOR_WAITARROW:
Jan 9, 2014
Jan 9, 2014
274
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "wait");
Dec 14, 2013
Dec 14, 2013
275
276
break;
case SDL_SYSTEM_CURSOR_SIZENWSE:
Jan 9, 2014
Jan 9, 2014
277
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "hand1");
Dec 14, 2013
Dec 14, 2013
278
279
break;
case SDL_SYSTEM_CURSOR_SIZENESW:
Jan 9, 2014
Jan 9, 2014
280
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "hand1");
Dec 14, 2013
Dec 14, 2013
281
282
break;
case SDL_SYSTEM_CURSOR_SIZEWE:
Jan 9, 2014
Jan 9, 2014
283
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "hand1");
Dec 14, 2013
Dec 14, 2013
284
285
break;
case SDL_SYSTEM_CURSOR_SIZENS:
Jan 9, 2014
Jan 9, 2014
286
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "hand1");
Dec 14, 2013
Dec 14, 2013
287
288
break;
case SDL_SYSTEM_CURSOR_SIZEALL:
Jan 9, 2014
Jan 9, 2014
289
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "hand1");
Dec 14, 2013
Dec 14, 2013
290
291
break;
case SDL_SYSTEM_CURSOR_NO:
Jan 9, 2014
Jan 9, 2014
292
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "xterm");
Dec 14, 2013
Dec 14, 2013
293
294
break;
case SDL_SYSTEM_CURSOR_HAND:
Jan 9, 2014
Jan 9, 2014
295
cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "hand1");
Dec 14, 2013
Dec 14, 2013
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
break;
}
SDL_Cursor *sdl_cursor = CreateCursorFromWlCursor (d, cursor);
return sdl_cursor;
}
static void
Wayland_FreeCursor(SDL_Cursor *cursor)
{
if (!cursor)
return;
Wayland_CursorData *d = cursor->driverdata;
/* Probably not a cursor we own */
if (!d)
return;
if (d->buffer)
wl_buffer_destroy(d->buffer);
if (d->surface)
wl_surface_destroy(d->surface);
/* Not sure what's meant to happen to shm_data */
free (cursor->driverdata);
SDL_free(cursor);
}
static int
Wayland_ShowCursor(SDL_Cursor *cursor)
{
SDL_VideoDevice *vd = SDL_GetVideoDevice();
SDL_VideoData *d = vd->driverdata;
struct wl_pointer *pointer = d->pointer;
if (!pointer)
return -1;
if (cursor)
{
Wayland_CursorData *data = cursor->driverdata;
wl_pointer_set_cursor (pointer, 0,
data->surface,
data->hot_x,
data->hot_y);
}
else
{
wl_pointer_set_cursor (pointer, 0,
NULL,
0,
0);
}
return 0;
}
static void
Wayland_WarpMouse(SDL_Window *window, int x, int y)
{
SDL_Unsupported();
return;
}
static int
Wayland_SetRelativeMouseMode(SDL_bool enabled)
{
SDL_Unsupported();
return -1;
}
void
Wayland_InitMouse(void)
{
SDL_Mouse *mouse = SDL_GetMouse();
mouse->CreateCursor = Wayland_CreateCursor;
mouse->CreateSystemCursor = Wayland_CreateSystemCursor;
mouse->ShowCursor = Wayland_ShowCursor;
mouse->FreeCursor = Wayland_FreeCursor;
mouse->WarpMouse = Wayland_WarpMouse;
mouse->SetRelativeMouseMode = Wayland_SetRelativeMouseMode;
SDL_SetDefaultCursor(Wayland_CreateDefaultCursor());
}
void
Wayland_FiniMouse(void)
{
/* This effectively assumes that nobody else
* touches SDL_Mouse which is effectively
* a singleton */
SDL_Mouse *mouse = SDL_GetMouse();
/* Free the current cursor if not the same pointer as
* the default cursor */
if (mouse->def_cursor != mouse->cur_cursor)
Wayland_FreeCursor (mouse->cur_cursor);
Wayland_FreeCursor (mouse->def_cursor);
mouse->def_cursor = NULL;
mouse->cur_cursor = NULL;
mouse->CreateCursor = NULL;
mouse->CreateSystemCursor = NULL;
mouse->ShowCursor = NULL;
mouse->FreeCursor = NULL;
mouse->WarpMouse = NULL;
mouse->SetRelativeMouseMode = NULL;
}
Jan 20, 2014
Jan 20, 2014
412
#endif /* SDL_VIDEO_DRIVER_WAYLAND */