web.c
16.8 KB
1
2
3
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
37
38
39
40
41
42
43
44
45
46
47
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
218
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
244
245
246
247
248
249
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
283
284
285
286
287
288
289
290
291
292
293
294
295
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
/*
TE4 - T-Engine 4
Copyright (C) 2009 - 2014 Nicolas Casalini
This program 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 Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
Nicolas Casalini "DarkGod"
darkgod@te4.org
*/
#include "display.h"
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
#include "auxiliar.h"
#include "physfs.h"
#include "core_lua.h"
#include "types.h"
#include "main.h"
#include "te4web.h"
#include "web-external.h"
#include "lua_externs.h"
/*
* Grab web browser methods -- availabe only here
*/
static bool webcore = FALSE;
static void (*te4_web_setup)(
int, char**, char*,
void*(*)(), void(*)(void*), void(*)(void*), void(*)(void*),
void* (*)(int, int), void (*)(void*), void (*)(void*, int, int, const void*),
void (*)(bool*, bool*, bool*, bool*),
void (*)(int handlers, const char *fct, int nb_args, WebJsValue *args, WebJsValue *ret)
);
static void (*te4_web_initialize)();
static void (*te4_web_do_update)(void (*cb)(WebEvent*));
static void (*te4_web_new)(web_view_type *view, int w, int h);
static bool (*te4_web_close)(web_view_type *view);
static void* (*te4_web_toscreen)(web_view_type *view, int *w, int *h);
static bool (*te4_web_loading)(web_view_type *view);
static void (*te4_web_focus)(web_view_type *view, bool focus);
static void (*te4_web_inject_mouse_move)(web_view_type *view, int x, int y);
static void (*te4_web_inject_mouse_wheel)(web_view_type *view, int x, int y);
static void (*te4_web_inject_mouse_button)(web_view_type *view, int kind, bool up);
static void (*te4_web_inject_key)(web_view_type *view, int scancode, int asymb, const char *uni, int unilen, bool up);
static void (*te4_web_download_action)(web_view_type *view, long id, const char *path);
static void (*te4_web_reply_local)(int id, const char *mime, const char *result, size_t len);
static void (*te4_web_load_url)(web_view_type *view, const char *url);
static void (*te4_web_set_js_call)(web_view_type *view, const char *name);
static int lua_web_new(lua_State *L) {
int w = luaL_checknumber(L, 1);
int h = luaL_checknumber(L, 2);
web_view_type *view = (web_view_type*)lua_newuserdata(L, sizeof(web_view_type));
auxiliar_setclass(L, "web{view}", -1);
lua_pushvalue(L, 3);
view->handlers = luaL_ref(L, LUA_REGISTRYINDEX);
te4_web_new(view, w, h);
return 1;
}
static int lua_web_close(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
if (!te4_web_close(view)) {
luaL_unref(L, LUA_REGISTRYINDEX, view->handlers);
}
return 0;
}
static int lua_web_load_url(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
const char* url = luaL_checkstring(L, 2);
te4_web_load_url(view, url);
return 0;
}
static int lua_web_toscreen(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
int x = luaL_checknumber(L, 2);
int y = luaL_checknumber(L, 3);
int w = -1;
int h = -1;
if (lua_isnumber(L, 4)) w = lua_tonumber(L, 4);
if (lua_isnumber(L, 5)) h = lua_tonumber(L, 5);
GLuint *tex = (GLuint*)te4_web_toscreen(view, &w, &h);
if (tex) {
float r = 1, g = 1, b = 1, a = 1;
glBindTexture(GL_TEXTURE_2D, *tex);
GLfloat texcoords[2*4] = {
0, 0,
0, 1,
1, 1,
1, 0,
};
GLfloat colors[4*4] = {
r, g, b, a,
r, g, b, a,
r, g, b, a,
r, g, b, a,
};
glColorPointer(4, GL_FLOAT, 0, colors);
glTexCoordPointer(2, GL_FLOAT, 0, texcoords);
GLfloat vertices[2*4] = {
x, y,
x, y + h,
x + w, y + h,
x + w, y,
};
glVertexPointer(2, GL_FLOAT, 0, vertices);
glDrawArrays(GL_QUADS, 0, 4);
}
return 0;
}
static int lua_web_loading(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
lua_pushboolean(L, te4_web_loading(view));
return 1;
}
static int lua_web_focus(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
te4_web_focus(view, lua_toboolean(L, 2));
return 0;
}
static int lua_web_inject_mouse_move(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
int x = luaL_checknumber(L, 2);
int y = luaL_checknumber(L, 3);
te4_web_inject_mouse_move(view, x, y);
return 0;
}
static int lua_web_inject_mouse_wheel(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
int x = luaL_checknumber(L, 2);
int y = luaL_checknumber(L, 3);
te4_web_inject_mouse_wheel(view, x, y);
return 0;
}
static int lua_web_inject_mouse_button(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
bool up = lua_toboolean(L, 2);
int kind = luaL_checknumber(L, 3);
te4_web_inject_mouse_button(view, kind, up);
return 0;
}
static int lua_web_inject_key(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
bool up = lua_toboolean(L, 2);
int scancode = lua_tonumber(L, 3);
int asymb = lua_tonumber(L, 4);
const char *uni = NULL;
size_t unilen = 0;
if (lua_isstring(L, 5)) uni = lua_tolstring(L, 5, &unilen);
te4_web_inject_key(view, scancode, asymb, uni, unilen, up);
return 0;
}
static int lua_web_download_action(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
long id = lua_tonumber(L, 2);
if (lua_isstring(L, 3)) te4_web_download_action(view, id, lua_tostring(L, 3));
else te4_web_download_action(view, id, NULL);
return 0;
}
static int lua_web_set_method(lua_State *L) {
web_view_type *view = (web_view_type*)auxiliar_checkclass(L, "web{view}", 1);
const char *name = luaL_checkstring(L, 2);
te4_web_set_js_call(view, name);
return 0;
}
static int lua_web_local_reply_file(lua_State *L) {
int id = lua_tonumber(L, 1);
const char *mime = luaL_checkstring(L, 2);
const char *file = luaL_checkstring(L, 3);
PHYSFS_file *f = PHYSFS_openRead(file);
if (!f) {
te4_web_reply_local(id, mime, NULL, 0);
return 0;
}
size_t len = PHYSFS_fileLength(f);
char *data = malloc(len * sizeof(char));
size_t read = 0;
while (read < len) {
size_t rl = PHYSFS_read(f, data + read, sizeof(char), len - read);
if (rl <= 0) break;
read += rl;
}
PHYSFS_close(f);
te4_web_reply_local(id, mime, data, read);
return 0;
}
static int lua_web_local_reply_data(lua_State *L) {
int id = lua_tonumber(L, 1);
const char *mime = luaL_checkstring(L, 2);
size_t len;
const char *data = luaL_checklstring(L, 3, &len);
te4_web_reply_local(id, mime, data, len);
return 0;
}
static const struct luaL_Reg view_reg[] =
{
{"__gc", lua_web_close},
{"downloadAction", lua_web_download_action},
{"loadURL", lua_web_load_url},
{"toScreen", lua_web_toscreen},
{"focus", lua_web_focus},
{"loading", lua_web_loading},
{"injectMouseMove", lua_web_inject_mouse_move},
{"injectMouseWheel", lua_web_inject_mouse_wheel},
{"injectMouseButton", lua_web_inject_mouse_button},
{"injectKey", lua_web_inject_key},
{"setMethod", lua_web_set_method},
{NULL, NULL},
};
static const struct luaL_Reg weblib[] =
{
{"new", lua_web_new},
{"localReplyData", lua_web_local_reply_data},
{"localReplyFile", lua_web_local_reply_file},
{NULL, NULL},
};
static lua_State *he_L;
static void handle_event(WebEvent *event) {
switch (event->kind) {
case TE4_WEB_EVENT_TITLE_CHANGE:
lua_rawgeti(he_L, LUA_REGISTRYINDEX, event->handlers);
lua_pushstring(he_L, "on_title");
lua_gettable(he_L, -2);
lua_remove(he_L, -2);
if (!lua_isnil(he_L, -1)) {
lua_pushstring(he_L, event->data.title);
docall(he_L, 1, 0);
} else lua_pop(he_L, 1);
break;
case TE4_WEB_EVENT_REQUEST_POPUP_URL:
lua_rawgeti(he_L, LUA_REGISTRYINDEX, event->handlers);
lua_pushstring(he_L, "on_popup");
lua_gettable(he_L, -2);
lua_remove(he_L, -2);
if (!lua_isnil(he_L, -1)) {
lua_pushstring(he_L, event->data.popup.url);
lua_pushnumber(he_L, event->data.popup.w);
lua_pushnumber(he_L, event->data.popup.h);
docall(he_L, 3, 0);
} else lua_pop(he_L, 1);
break;
case TE4_WEB_EVENT_DOWNLOAD_REQUEST:
lua_rawgeti(he_L, LUA_REGISTRYINDEX, event->handlers);
lua_pushstring(he_L, "on_download_request");
lua_gettable(he_L, -2);
lua_remove(he_L, -2);
if (!lua_isnil(he_L, -1)) {
lua_pushnumber(he_L, event->data.download_request.id);
lua_pushstring(he_L, event->data.download_request.url);
lua_pushstring(he_L, event->data.download_request.name);
lua_pushstring(he_L, event->data.download_request.mime);
docall(he_L, 4, 0);
} else lua_pop(he_L, 1);
break;
case TE4_WEB_EVENT_DOWNLOAD_UPDATE:
lua_rawgeti(he_L, LUA_REGISTRYINDEX, event->handlers);
lua_pushstring(he_L, "on_download_update");
lua_gettable(he_L, -2);
lua_remove(he_L, -2);
if (!lua_isnil(he_L, -1)) {
lua_pushnumber(he_L, event->data.download_update.id);
lua_pushnumber(he_L, event->data.download_update.got);
lua_pushnumber(he_L, event->data.download_update.total);
lua_pushnumber(he_L, event->data.download_update.percent);
lua_pushnumber(he_L, event->data.download_update.speed);
docall(he_L, 5, 0);
} else lua_pop(he_L, 1);
break;
case TE4_WEB_EVENT_DOWNLOAD_FINISH:
lua_rawgeti(he_L, LUA_REGISTRYINDEX, event->handlers);
lua_pushstring(he_L, "on_download_finish");
lua_gettable(he_L, -2);
lua_remove(he_L, -2);
if (!lua_isnil(he_L, -1)) {
lua_pushnumber(he_L, event->data.download_update.id);
docall(he_L, 1, 0);
} else lua_pop(he_L, 1);
break;
case TE4_WEB_EVENT_LOADING:
lua_rawgeti(he_L, LUA_REGISTRYINDEX, event->handlers);
lua_pushstring(he_L, "on_loading");
lua_gettable(he_L, -2);
lua_remove(he_L, -2);
if (!lua_isnil(he_L, -1)) {
lua_pushstring(he_L, event->data.loading.url);
lua_pushnumber(he_L, event->data.loading.status);
docall(he_L, 2, 0);
} else lua_pop(he_L, 1);
break;
case TE4_WEB_EVENT_LOCAL_REQUEST:
lua_getglobal(he_L, "core");
lua_getfield(he_L, -1, "webview");
lua_getfield(he_L, -1, "responder");
lua_remove(he_L, -2);
lua_remove(he_L, -2);
if (!lua_isnil(he_L, -1)) {
lua_pushnumber(he_L, event->data.local_request.id);
lua_pushstring(he_L, event->data.local_request.path);
docall(he_L, 2, 0);
} else lua_pop(he_L, 1);
break;
case TE4_WEB_EVENT_RUN_LUA:
if (!luaL_loadstring(he_L, event->data.run_lua.code)) {
docall(he_L, 0, 0);
} else {
printf("[WEBCORE] Failed to run lua code:\n%s\n ==>> Error: %s\n", event->data.run_lua.code, lua_tostring(he_L, -1));
lua_pop(he_L, 1);
}
break;
}
}
void te4_web_update(lua_State *L) {
if (webcore) {
he_L = L;
te4_web_do_update(handle_event);
}
}
void te4_web_init(lua_State *L) {
if (!webcore) return;
te4_web_initialize();
auxiliar_newclass(L, "web{view}", view_reg);
luaL_openlib(L, "core.webview", weblib, 0);
lua_pushstring(L, "kind");
lua_pushstring(L, "awesomium");
lua_settable(L, -3);
lua_settop(L, 0);
}
static void *web_mutex_create() {
return (void*)SDL_CreateMutex();
}
static void web_mutex_destroy(void *mutex) {
SDL_DestroyMutex((SDL_mutex*)mutex);
}
static void web_mutex_lock(void *mutex) {
SDL_mutexP((SDL_mutex*)mutex);
}
static void web_mutex_unlock(void *mutex) {
SDL_mutexV((SDL_mutex*)mutex);
}
static void *web_make_texture(int w, int h) {
GLuint *tex = malloc(sizeof(GLuint));
glGenTextures(1, tex);
glBindTexture(GL_TEXTURE_2D, *tex);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
GLfloat largest_supported_anisotropy;
glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &largest_supported_anisotropy);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, largest_supported_anisotropy);
unsigned char *buffer = calloc(w * h * 4, sizeof(unsigned char));
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, w, h, 0, GL_BGRA, GL_UNSIGNED_BYTE, buffer);
free(buffer);
return tex;
}
static void web_del_texture(void *tex) {
GLuint t = *((GLuint*)tex);
glDeleteTextures(1, &t);
free(tex);
}
static void web_texture_update(void *tex, int w, int h, const void* buffer) {
GLuint t = *((GLuint*)tex);
tglBindTexture(GL_TEXTURE_2D, t);
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, w, h, GL_BGRA, GL_UNSIGNED_BYTE, buffer);
}
static void web_key_mods(bool *shift, bool *ctrl, bool *alt, bool *meta) {
SDL_Keymod smod = SDL_GetModState();
*shift = *ctrl = *alt = *meta = FALSE;
if (smod & KMOD_SHIFT) *shift = TRUE;
if (smod & KMOD_CTRL) *ctrl = TRUE;
if (smod & KMOD_ALT) *alt = TRUE;
if (smod & KMOD_GUI) *meta = TRUE;
}
static void web_instant_js(int handlers, const char *fct, int nb_args, WebJsValue *args, WebJsValue *ret) {
lua_rawgeti(he_L, LUA_REGISTRYINDEX, handlers);
lua_pushstring(he_L, fct);
lua_gettable(he_L, -2);
lua_remove(he_L, -2);
if (!lua_isnil(he_L, -1)) {
int i;
for (i = 0; i < nb_args; i++) {
if (args[i].kind == TE4_WEB_JS_NULL) lua_pushnil(he_L);
else if (args[i].kind == TE4_WEB_JS_BOOLEAN) lua_pushboolean(he_L, args[i].data.b);
else if (args[i].kind == TE4_WEB_JS_NUMBER) lua_pushnumber(he_L, args[i].data.n);
else if (args[i].kind == TE4_WEB_JS_STRING) lua_pushstring(he_L, args[i].data.s);
}
if (!docall(he_L, nb_args, 1)) {
if (lua_isnumber(he_L, -1)) {
ret->kind = TE4_WEB_JS_NUMBER;
ret->data.n = lua_tonumber(he_L, -1);
} else if (lua_isstring(he_L, -1)) {
ret->kind = TE4_WEB_JS_STRING;
ret->data.s = lua_tostring(he_L, -1);
} else if (lua_isboolean(he_L, -1)) {
ret->kind = TE4_WEB_JS_BOOLEAN;
ret->data.b = lua_toboolean(he_L, -1);
} else {
ret->kind = TE4_WEB_JS_NULL;
}
lua_pop(he_L, 1);
} else {
ret->kind = TE4_WEB_JS_NULL;
}
} else {
ret->kind = TE4_WEB_JS_NULL;
lua_pop(he_L, 1);
}
}
void te4_web_load() {
#if defined(SELFEXE_LINUX)
void *web = SDL_LoadObject("libte4-web.so");
#elif defined(SELFEXE_BSD)
void *web = SDL_LoadObject("libte4-web.so");
#elif defined(SELFEXE_WINDOWS)
void *web = SDL_LoadObject("te4-web.dll");
#elif defined(SELFEXE_MACOSX)
void *web = SDL_LoadObject("libte4-web.dylib");
#else
void *web = NULL;
#endif
printf("Loading web core: %s\n", web ? "loaded!" : SDL_GetError());
if (web) {
webcore = TRUE;
te4_web_setup = (void (*)(
int, char**, char*,
void*(*)(), void(*)(void*), void(*)(void*), void(*)(void*),
void* (*)(int, int), void (*)(void*), void (*)(void*, int, int, const void*),
void (*)(bool*, bool*, bool*, bool*),
void (*)(int handlers, const char *fct, int nb_args, WebJsValue *args, WebJsValue *ret)
)) SDL_LoadFunction(web, "te4_web_setup");
te4_web_initialize = (void (*)()) SDL_LoadFunction(web, "te4_web_initialize");
te4_web_do_update = (void (*)(void (*cb)(WebEvent*))) SDL_LoadFunction(web, "te4_web_do_update");
te4_web_new = (void (*)(web_view_type *view, int w, int h)) SDL_LoadFunction(web, "te4_web_new");
te4_web_close = (bool (*)(web_view_type *view)) SDL_LoadFunction(web, "te4_web_close");
te4_web_toscreen = (void* (*)(web_view_type *view, int *w, int *h)) SDL_LoadFunction(web, "te4_web_toscreen");
te4_web_loading = (bool (*)(web_view_type *view)) SDL_LoadFunction(web, "te4_web_loading");
te4_web_focus = (void (*)(web_view_type *view, bool focus)) SDL_LoadFunction(web, "te4_web_focus");
te4_web_inject_mouse_move = (void (*)(web_view_type *view, int x, int y)) SDL_LoadFunction(web, "te4_web_inject_mouse_move");
te4_web_inject_mouse_wheel = (void (*)(web_view_type *view, int x, int y)) SDL_LoadFunction(web, "te4_web_inject_mouse_wheel");
te4_web_inject_mouse_button = (void (*)(web_view_type *view, int kind, bool up)) SDL_LoadFunction(web, "te4_web_inject_mouse_button");
te4_web_inject_key = (void (*)(web_view_type *view, int scancode, int asymb, const char *uni, int unilen, bool up)) SDL_LoadFunction(web, "te4_web_inject_key");
te4_web_download_action = (void (*)(web_view_type *view, long id, const char *path)) SDL_LoadFunction(web, "te4_web_download_action");
te4_web_reply_local = (void (*)(int id, const char *mime, const char *result, size_t len)) SDL_LoadFunction(web, "te4_web_reply_local");
te4_web_load_url = (void (*)(web_view_type *view, const char *url)) SDL_LoadFunction(web, "te4_web_load_url");
te4_web_set_js_call = (void (*)(web_view_type *view, const char *name)) SDL_LoadFunction(web, "te4_web_set_js_call");
te4_web_setup(
g_argc, g_argv, NULL,
web_mutex_create, web_mutex_destroy, web_mutex_lock, web_mutex_unlock,
web_make_texture, web_del_texture, web_texture_update,
web_key_mods,
web_instant_js
);
}
}