Skip to content

Latest commit

 

History

History
283 lines (239 loc) · 7.94 KB

SDL_emscriptenmouse.c

File metadata and controls

283 lines (239 loc) · 7.94 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 2, 2021
Jan 2, 2021
3
Copyright (C) 1997-2021 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
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_EMSCRIPTEN
#include <emscripten/emscripten.h>
#include <emscripten/html5.h>
#include "SDL_emscriptenmouse.h"
Apr 9, 2020
Apr 9, 2020
29
#include "SDL_emscriptenvideo.h"
30
31
32
33
#include "../../events/SDL_mouse_c.h"
static SDL_Cursor*
Feb 17, 2017
Feb 17, 2017
34
Emscripten_CreateCursorFromString(const char* cursor_str, SDL_bool is_custom)
35
36
37
38
39
40
41
42
43
44
45
46
47
{
SDL_Cursor* cursor;
Emscripten_CursorData *curdata;
cursor = SDL_calloc(1, sizeof(SDL_Cursor));
if (cursor) {
curdata = (Emscripten_CursorData *) SDL_calloc(1, sizeof(*curdata));
if (!curdata) {
SDL_OutOfMemory();
SDL_free(cursor);
return NULL;
}
Feb 17, 2017
Feb 17, 2017
48
curdata->system_cursor = cursor_str;
Feb 17, 2017
Feb 17, 2017
49
curdata->is_custom = is_custom;
50
51
52
53
54
55
56
57
58
cursor->driverdata = curdata;
}
else {
SDL_OutOfMemory();
}
return cursor;
}
Feb 17, 2017
Feb 17, 2017
59
60
61
static SDL_Cursor*
Emscripten_CreateDefaultCursor()
{
Feb 17, 2017
Feb 17, 2017
62
return Emscripten_CreateCursorFromString("default", SDL_FALSE);
Feb 17, 2017
Feb 17, 2017
63
64
}
Feb 17, 2017
Feb 17, 2017
66
Emscripten_CreateCursor(SDL_Surface* surface, int hot_x, int hot_y)
Feb 17, 2017
Feb 17, 2017
68
69
70
71
72
73
74
75
76
77
78
79
const char *cursor_url = NULL;
SDL_Surface *conv_surf;
conv_surf = SDL_ConvertSurfaceFormat(surface, SDL_PIXELFORMAT_ABGR8888, 0);
if (!conv_surf) {
return NULL;
}
cursor_url = (const char *)EM_ASM_INT({
var w = $0;
var h = $1;
Nov 4, 2017
Nov 4, 2017
80
81
82
var hot_x = $2;
var hot_y = $3;
var pixels = $4;
Feb 17, 2017
Feb 17, 2017
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
var canvas = document.createElement("canvas");
canvas.width = w;
canvas.height = h;
var ctx = canvas.getContext("2d");
var image = ctx.createImageData(w, h);
var data = image.data;
var src = pixels >> 2;
var dst = 0;
var num;
if (typeof CanvasPixelArray !== 'undefined' && data instanceof CanvasPixelArray) {
// IE10/IE11: ImageData objects are backed by the deprecated CanvasPixelArray,
// not UInt8ClampedArray. These don't have buffers, so we need to revert
// to copying a byte at a time. We do the undefined check because modern
// browsers do not define CanvasPixelArray anymore.
num = data.length;
while (dst < num) {
var val = HEAP32[src]; // This is optimized. Instead, we could do {{{ makeGetValue('buffer', 'dst', 'i32') }}};
data[dst ] = val & 0xff;
data[dst+1] = (val >> 8) & 0xff;
data[dst+2] = (val >> 16) & 0xff;
data[dst+3] = (val >> 24) & 0xff;
src++;
dst += 4;
}
} else {
var data32 = new Int32Array(data.buffer);
num = data32.length;
data32.set(HEAP32.subarray(src, src + num));
}
ctx.putImageData(image, 0, 0);
Nov 4, 2017
Nov 4, 2017
117
118
119
var url = hot_x === 0 && hot_y === 0
? "url(" + canvas.toDataURL() + "), auto"
: "url(" + canvas.toDataURL() + ") " + hot_x + " " + hot_y + ", auto";
Feb 17, 2017
Feb 17, 2017
120
121
122
123
124
var urlBuf = _malloc(url.length + 1);
stringToUTF8(url, urlBuf, url.length + 1);
return urlBuf;
Nov 4, 2017
Nov 4, 2017
125
}, surface->w, surface->h, hot_x, hot_y, conv_surf->pixels);
Feb 17, 2017
Feb 17, 2017
126
127
128
129
SDL_FreeSurface(conv_surf);
return Emscripten_CreateCursorFromString(cursor_url, SDL_TRUE);
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
}
static SDL_Cursor*
Emscripten_CreateSystemCursor(SDL_SystemCursor id)
{
const char *cursor_name = NULL;
switch(id) {
case SDL_SYSTEM_CURSOR_ARROW:
cursor_name = "default";
break;
case SDL_SYSTEM_CURSOR_IBEAM:
cursor_name = "text";
break;
case SDL_SYSTEM_CURSOR_WAIT:
cursor_name = "wait";
break;
case SDL_SYSTEM_CURSOR_CROSSHAIR:
cursor_name = "crosshair";
break;
case SDL_SYSTEM_CURSOR_WAITARROW:
cursor_name = "progress";
break;
case SDL_SYSTEM_CURSOR_SIZENWSE:
cursor_name = "nwse-resize";
break;
case SDL_SYSTEM_CURSOR_SIZENESW:
cursor_name = "nesw-resize";
break;
case SDL_SYSTEM_CURSOR_SIZEWE:
cursor_name = "ew-resize";
break;
case SDL_SYSTEM_CURSOR_SIZENS:
cursor_name = "ns-resize";
break;
case SDL_SYSTEM_CURSOR_SIZEALL:
Aug 18, 2018
Aug 18, 2018
166
cursor_name = "move";
167
168
169
170
171
172
173
174
175
176
177
178
break;
case SDL_SYSTEM_CURSOR_NO:
cursor_name = "not-allowed";
break;
case SDL_SYSTEM_CURSOR_HAND:
cursor_name = "pointer";
break;
default:
SDL_assert(0);
return NULL;
}
Feb 17, 2017
Feb 17, 2017
179
return Emscripten_CreateCursorFromString(cursor_name, SDL_FALSE);
180
181
182
183
184
185
186
187
188
189
}
static void
Emscripten_FreeCursor(SDL_Cursor* cursor)
{
Emscripten_CursorData *curdata;
if (cursor) {
curdata = (Emscripten_CursorData *) cursor->driverdata;
if (curdata != NULL) {
Feb 17, 2017
Feb 17, 2017
190
191
192
if (curdata->is_custom) {
SDL_free((char *)curdata->system_cursor);
}
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
SDL_free(cursor->driverdata);
}
SDL_free(cursor);
}
}
static int
Emscripten_ShowCursor(SDL_Cursor* cursor)
{
Emscripten_CursorData *curdata;
if (SDL_GetMouseFocus() != NULL) {
if(cursor && cursor->driverdata) {
curdata = (Emscripten_CursorData *) cursor->driverdata;
if(curdata->system_cursor) {
EM_ASM_INT({
if (Module['canvas']) {
Jan 29, 2019
Jan 29, 2019
211
Module['canvas'].style['cursor'] = UTF8ToString($0);
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
}
return 0;
}, curdata->system_cursor);
}
}
else {
EM_ASM(
if (Module['canvas']) {
Module['canvas'].style['cursor'] = 'none';
}
);
}
}
return 0;
}
static void
Emscripten_WarpMouse(SDL_Window* window, int x, int y)
{
SDL_Unsupported();
}
static int
Emscripten_SetRelativeMouseMode(SDL_bool enabled)
{
Apr 9, 2020
Apr 9, 2020
237
238
239
SDL_Window *window;
SDL_WindowData *window_data;
240
241
/* TODO: pointer lock isn't actually enabled yet */
if(enabled) {
Apr 9, 2020
Apr 9, 2020
242
243
244
245
246
247
248
249
window = SDL_GetMouseFocus();
if (window == NULL) {
return -1;
}
window_data = (SDL_WindowData *) window->driverdata;
if(emscripten_request_pointerlock(window_data->canvas_id, 1) >= EMSCRIPTEN_RESULT_SUCCESS) {
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
return 0;
}
} else {
if(emscripten_exit_pointerlock() >= EMSCRIPTEN_RESULT_SUCCESS) {
return 0;
}
}
return -1;
}
void
Emscripten_InitMouse()
{
SDL_Mouse* mouse = SDL_GetMouse();
mouse->CreateCursor = Emscripten_CreateCursor;
mouse->ShowCursor = Emscripten_ShowCursor;
mouse->FreeCursor = Emscripten_FreeCursor;
mouse->WarpMouse = Emscripten_WarpMouse;
mouse->CreateSystemCursor = Emscripten_CreateSystemCursor;
mouse->SetRelativeMouseMode = Emscripten_SetRelativeMouseMode;
SDL_SetDefaultCursor(Emscripten_CreateDefaultCursor());
}
void
Emscripten_FiniMouse()
{
}
#endif /* SDL_VIDEO_DRIVER_EMSCRIPTEN */
/* vi: set ts=4 sw=4 expandtab: */