Skip to content

Latest commit

 

History

History
372 lines (299 loc) · 11.7 KB

SDL_emscriptenvideo.c

File metadata and controls

372 lines (299 loc) · 11.7 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
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 "SDL_video.h"
#include "SDL_mouse.h"
Sep 13, 2016
Sep 13, 2016
27
#include "SDL_hints.h"
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../SDL_egl_c.h"
#include "../../events/SDL_events_c.h"
#include "SDL_emscriptenvideo.h"
#include "SDL_emscriptenopengles.h"
#include "SDL_emscriptenframebuffer.h"
#include "SDL_emscriptenevents.h"
#include "SDL_emscriptenmouse.h"
#define EMSCRIPTENVID_DRIVER_NAME "emscripten"
/* Initialization/Query functions */
static int Emscripten_VideoInit(_THIS);
static int Emscripten_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode);
static void Emscripten_VideoQuit(_THIS);
Apr 9, 2020
Apr 9, 2020
45
static int Emscripten_GetDisplayUsableBounds(_THIS, SDL_VideoDisplay * display, SDL_Rect * rect);
46
47
48
49
50
51
static int Emscripten_CreateWindow(_THIS, SDL_Window * window);
static void Emscripten_SetWindowSize(_THIS, SDL_Window * window);
static void Emscripten_DestroyWindow(_THIS, SDL_Window * window);
static void Emscripten_SetWindowFullscreen(_THIS, SDL_Window * window, SDL_VideoDisplay * display, SDL_bool fullscreen);
static void Emscripten_PumpEvents(_THIS);
Sep 13, 2016
Sep 13, 2016
52
static void Emscripten_SetWindowTitle(_THIS, SDL_Window * window);
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* Emscripten driver bootstrap functions */
static void
Emscripten_DeleteDevice(SDL_VideoDevice * device)
{
SDL_free(device);
}
static SDL_VideoDevice *
Emscripten_CreateDevice(int devindex)
{
SDL_VideoDevice *device;
/* Initialize all variables that we clean on shutdown */
device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
if (!device) {
SDL_OutOfMemory();
return (0);
}
Sep 13, 2016
Sep 13, 2016
75
76
77
78
/* Firefox sends blur event which would otherwise prevent full screen
* when the user clicks to allow full screen.
* See https://bugzilla.mozilla.org/show_bug.cgi?id=1144964
*/
Sep 13, 2016
Sep 13, 2016
79
80
SDL_SetHint(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, "0");
81
82
83
/* Set the function pointers */
device->VideoInit = Emscripten_VideoInit;
device->VideoQuit = Emscripten_VideoQuit;
Apr 9, 2020
Apr 9, 2020
84
device->GetDisplayUsableBounds = Emscripten_GetDisplayUsableBounds;
85
86
87
88
89
device->SetDisplayMode = Emscripten_SetDisplayMode;
device->PumpEvents = Emscripten_PumpEvents;
Aug 28, 2017
Aug 28, 2017
90
device->CreateSDLWindow = Emscripten_CreateWindow;
91
device->SetWindowTitle = Emscripten_SetWindowTitle;
Sep 13, 2016
Sep 13, 2016
92
/*device->SetWindowIcon = Emscripten_SetWindowIcon;
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
device->SetWindowPosition = Emscripten_SetWindowPosition;*/
device->SetWindowSize = Emscripten_SetWindowSize;
/*device->ShowWindow = Emscripten_ShowWindow;
device->HideWindow = Emscripten_HideWindow;
device->RaiseWindow = Emscripten_RaiseWindow;
device->MaximizeWindow = Emscripten_MaximizeWindow;
device->MinimizeWindow = Emscripten_MinimizeWindow;
device->RestoreWindow = Emscripten_RestoreWindow;
device->SetWindowGrab = Emscripten_SetWindowGrab;*/
device->DestroyWindow = Emscripten_DestroyWindow;
device->SetWindowFullscreen = Emscripten_SetWindowFullscreen;
device->CreateWindowFramebuffer = Emscripten_CreateWindowFramebuffer;
device->UpdateWindowFramebuffer = Emscripten_UpdateWindowFramebuffer;
device->DestroyWindowFramebuffer = Emscripten_DestroyWindowFramebuffer;
Aug 5, 2017
Aug 5, 2017
109
#if SDL_VIDEO_OPENGL_EGL
110
111
112
113
114
115
116
117
118
119
device->GL_LoadLibrary = Emscripten_GLES_LoadLibrary;
device->GL_GetProcAddress = Emscripten_GLES_GetProcAddress;
device->GL_UnloadLibrary = Emscripten_GLES_UnloadLibrary;
device->GL_CreateContext = Emscripten_GLES_CreateContext;
device->GL_MakeCurrent = Emscripten_GLES_MakeCurrent;
device->GL_SetSwapInterval = Emscripten_GLES_SetSwapInterval;
device->GL_GetSwapInterval = Emscripten_GLES_GetSwapInterval;
device->GL_SwapWindow = Emscripten_GLES_SwapWindow;
device->GL_DeleteContext = Emscripten_GLES_DeleteContext;
device->GL_GetDrawableSize = Emscripten_GLES_GetDrawableSize;
Aug 5, 2017
Aug 5, 2017
120
#endif
121
122
123
124
125
126
127
128
device->free = Emscripten_DeleteDevice;
return device;
}
VideoBootStrap Emscripten_bootstrap = {
EMSCRIPTENVID_DRIVER_NAME, "SDL emscripten video driver",
Jul 12, 2020
Jul 12, 2020
129
Emscripten_CreateDevice
130
131
132
133
134
135
136
137
138
139
140
};
int
Emscripten_VideoInit(_THIS)
{
SDL_DisplayMode mode;
/* Use a fake 32-bpp desktop mode */
mode.format = SDL_PIXELFORMAT_RGB888;
Sep 13, 2016
Sep 13, 2016
141
142
143
mode.w = EM_ASM_INT_V({
return screen.width;
});
Sep 13, 2016
Sep 13, 2016
145
146
147
mode.h = EM_ASM_INT_V({
return screen.height;
});
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
mode.refresh_rate = 0;
mode.driverdata = NULL;
if (SDL_AddBasicVideoDisplay(&mode) < 0) {
return -1;
}
SDL_AddDisplayMode(&_this->displays[0], &mode);
Emscripten_InitMouse();
/* We're done! */
return 0;
}
static int
Emscripten_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode)
{
/* can't do this */
return 0;
}
static void
Emscripten_VideoQuit(_THIS)
{
Emscripten_FiniMouse();
}
Apr 9, 2020
Apr 9, 2020
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
static int
Emscripten_GetDisplayUsableBounds(_THIS, SDL_VideoDisplay * display, SDL_Rect * rect)
{
if (rect) {
rect->x = 0;
rect->y = 0;
rect->w = EM_ASM_INT_V({
return window.innerWidth;
});
rect->h = EM_ASM_INT_V({
return window.innerHeight;
});
}
return 0;
}
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
static void
Emscripten_PumpEvents(_THIS)
{
/* do nothing. */
}
static int
Emscripten_CreateWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *wdata;
double scaled_w, scaled_h;
double css_w, css_h;
/* Allocate window internal data */
wdata = (SDL_WindowData *) SDL_calloc(1, sizeof(SDL_WindowData));
if (wdata == NULL) {
return SDL_OutOfMemory();
}
May 9, 2019
May 9, 2019
211
212
wdata->canvas_id = SDL_strdup("#canvas");
213
214
215
216
217
218
219
220
221
if (window->flags & SDL_WINDOW_ALLOW_HIGHDPI) {
wdata->pixel_ratio = emscripten_get_device_pixel_ratio();
} else {
wdata->pixel_ratio = 1.0f;
}
scaled_w = SDL_floor(window->w * wdata->pixel_ratio);
scaled_h = SDL_floor(window->h * wdata->pixel_ratio);
Jan 29, 2019
Jan 29, 2019
222
/* set a fake size to check if there is any CSS sizing the canvas */
May 9, 2019
May 9, 2019
223
224
emscripten_set_canvas_element_size(wdata->canvas_id, 1, 1);
emscripten_get_element_css_size(wdata->canvas_id, &css_w, &css_h);
Jan 29, 2019
Jan 29, 2019
226
wdata->external_size = SDL_floor(css_w) != 1 || SDL_floor(css_h) != 1;
227
228
229
230
231
232
233
234
if ((window->flags & SDL_WINDOW_RESIZABLE) && wdata->external_size) {
/* external css has resized us */
scaled_w = css_w * wdata->pixel_ratio;
scaled_h = css_h * wdata->pixel_ratio;
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESIZED, css_w, css_h);
}
May 9, 2019
May 9, 2019
235
emscripten_set_canvas_element_size(wdata->canvas_id, scaled_w, scaled_h);
Jan 29, 2019
Jan 29, 2019
236
237
238
239
240
/* if the size is not being controlled by css, we need to scale down for hidpi */
if (!wdata->external_size) {
if (wdata->pixel_ratio != 1.0f) {
/*scale canvas down*/
May 9, 2019
May 9, 2019
241
emscripten_set_element_css_size(wdata->canvas_id, window->w, window->h);
Aug 5, 2017
Aug 5, 2017
245
#if SDL_VIDEO_OPENGL_EGL
246
247
248
249
250
251
252
253
254
255
256
257
if (window->flags & SDL_WINDOW_OPENGL) {
if (!_this->egl_data) {
if (SDL_GL_LoadLibrary(NULL) < 0) {
return -1;
}
}
wdata->egl_surface = SDL_EGL_CreateSurface(_this, 0);
if (wdata->egl_surface == EGL_NO_SURFACE) {
return SDL_SetError("Could not create GLES window surface");
}
}
Aug 5, 2017
Aug 5, 2017
258
#endif
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
wdata->window = window;
/* Setup driver data for this window */
window->driverdata = wdata;
/* One window, it always has focus */
SDL_SetMouseFocus(window);
SDL_SetKeyboardFocus(window);
Emscripten_RegisterEventHandlers(wdata);
/* Window has been successfully created */
return 0;
}
static void Emscripten_SetWindowSize(_THIS, SDL_Window * window)
{
SDL_WindowData *data;
if (window->driverdata) {
data = (SDL_WindowData *) window->driverdata;
Oct 14, 2016
Oct 14, 2016
281
/* update pixel ratio */
Feb 17, 2017
Feb 17, 2017
282
283
284
if (window->flags & SDL_WINDOW_ALLOW_HIGHDPI) {
data->pixel_ratio = emscripten_get_device_pixel_ratio();
}
May 9, 2019
May 9, 2019
285
emscripten_set_canvas_element_size(data->canvas_id, window->w * data->pixel_ratio, window->h * data->pixel_ratio);
286
287
288
/*scale canvas down*/
if (!data->external_size && data->pixel_ratio != 1.0f) {
May 9, 2019
May 9, 2019
289
emscripten_set_element_css_size(data->canvas_id, window->w, window->h);
290
291
292
293
294
295
296
297
298
299
300
301
302
}
}
}
static void
Emscripten_DestroyWindow(_THIS, SDL_Window * window)
{
SDL_WindowData *data;
if(window->driverdata) {
data = (SDL_WindowData *) window->driverdata;
Emscripten_UnregisterEventHandlers(data);
Aug 5, 2017
Aug 5, 2017
303
#if SDL_VIDEO_OPENGL_EGL
304
305
306
307
if (data->egl_surface != EGL_NO_SURFACE) {
SDL_EGL_DestroySurface(_this, data->egl_surface);
data->egl_surface = EGL_NO_SURFACE;
}
Aug 5, 2017
Aug 5, 2017
308
#endif
Jan 29, 2019
Jan 29, 2019
309
310
/* We can't destroy the canvas, so resize it to zero instead */
May 9, 2019
May 9, 2019
311
312
emscripten_set_canvas_element_size(data->canvas_id, 0, 0);
SDL_free(data->canvas_id);
Jan 29, 2019
Jan 29, 2019
313
314
315
316
317
318
319
320
321
322
323
324
325
326
SDL_free(window->driverdata);
window->driverdata = NULL;
}
}
static void
Emscripten_SetWindowFullscreen(_THIS, SDL_Window * window, SDL_VideoDisplay * display, SDL_bool fullscreen)
{
SDL_WindowData *data;
if(window->driverdata) {
data = (SDL_WindowData *) window->driverdata;
if(fullscreen) {
Sep 13, 2016
Sep 13, 2016
327
328
EmscriptenFullscreenStrategy strategy;
SDL_bool is_desktop_fullscreen = (window->flags & SDL_WINDOW_FULLSCREEN_DESKTOP) == SDL_WINDOW_FULLSCREEN_DESKTOP;
Sep 13, 2016
Sep 13, 2016
329
int res;
Sep 13, 2016
Sep 13, 2016
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
strategy.scaleMode = is_desktop_fullscreen ? EMSCRIPTEN_FULLSCREEN_SCALE_STRETCH : EMSCRIPTEN_FULLSCREEN_SCALE_ASPECT;
if(!is_desktop_fullscreen) {
strategy.canvasResolutionScaleMode = EMSCRIPTEN_FULLSCREEN_CANVAS_SCALE_NONE;
} else if(window->flags & SDL_WINDOW_ALLOW_HIGHDPI) {
strategy.canvasResolutionScaleMode = EMSCRIPTEN_FULLSCREEN_CANVAS_SCALE_HIDEF;
} else {
strategy.canvasResolutionScaleMode = EMSCRIPTEN_FULLSCREEN_CANVAS_SCALE_STDDEF;
}
strategy.filteringMode = EMSCRIPTEN_FULLSCREEN_FILTERING_DEFAULT;
strategy.canvasResizedCallback = Emscripten_HandleCanvasResize;
strategy.canvasResizedCallbackUserData = data;
346
data->requested_fullscreen_mode = window->flags & (SDL_WINDOW_FULLSCREEN_DESKTOP | SDL_WINDOW_FULLSCREEN);
Sep 13, 2016
Sep 13, 2016
347
data->fullscreen_resize = is_desktop_fullscreen;
May 9, 2019
May 9, 2019
349
res = emscripten_request_fullscreen_strategy(data->canvas_id, 1, &strategy);
Sep 13, 2016
Sep 13, 2016
350
351
352
353
if(res != EMSCRIPTEN_RESULT_SUCCESS && res != EMSCRIPTEN_RESULT_DEFERRED) {
/* unset flags, fullscreen failed */
window->flags &= ~(SDL_WINDOW_FULLSCREEN_DESKTOP | SDL_WINDOW_FULLSCREEN);
}
354
355
356
357
358
359
}
else
emscripten_exit_fullscreen();
}
}
Sep 13, 2016
Sep 13, 2016
360
361
362
static void
Emscripten_SetWindowTitle(_THIS, SDL_Window * window) {
EM_ASM_INT({
May 13, 2020
May 13, 2020
363
364
if (typeof setWindowTitle !== 'undefined') {
setWindowTitle(UTF8ToString($0));
Sep 13, 2016
Sep 13, 2016
365
366
367
368
369
}
return 0;
}, window->title);
}
370
371
372
#endif /* SDL_VIDEO_DRIVER_EMSCRIPTEN */
/* vi: set ts=4 sw=4 expandtab: */