web.cpp
27.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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
/*
TE4 - T-Engine 4
Copyright (C) 2009 - 2018 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 <map>
extern "C" {
#include "web-external.h"
#include <stdio.h>
#include <stdlib.h>
}
#include "web.h"
#include "web-internal.h"
#include <map>
FILE *logfile = NULL;
void *(*web_mutex_create)();
void (*web_mutex_destroy)(void *mutex);
void (*web_mutex_lock)(void *mutex);
void (*web_mutex_unlock)(void *mutex);
void *(*web_make_texture)(int w, int h);
void (*web_del_texture)(void *tex);
void (*web_texture_update)(void *tex, int w, int h, const void* buffer);
static void (*web_key_mods)(bool *shift, bool *ctrl, bool *alt, bool *meta);
static void (*web_instant_js)(int handlers, const char *fct, int nb_args, WebJsValue *args, WebJsValue *ret);
static bool web_core = false;
static char *cstring_to_c(const CefString &cstr) {
std::string str = cstr.ToString();
size_t len = cstr.size();
char *ret = (char*)malloc((len+1) * sizeof(char));
memcpy(ret, str.c_str(), len);
ret[len] = '\0';
return ret;
}
class RenderHandler : public CefRenderHandler
{
public:
void *tex;
int w, h;
RenderHandler(int w, int h) {
this->w = w;
this->h = h;
tex = web_make_texture(w, h);
}
~RenderHandler() {
fprintf(logfile, "[WEBCORE] Destroyed renderer\n");
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_DELETE_TEXTURE;
event->data.texture = tex;
push_event(event);
}
// CefRenderHandler interface
public:
bool GetViewRect(CefRefPtr<CefBrowser> browser, CefRect &rect)
{
rect = CefRect(0, 0, w, h);
return true;
}
void OnPaint(CefRefPtr<CefBrowser> browser, PaintElementType type, const RectList &dirtyRects, const void *buffer, int width, int height)
{
web_texture_update(tex, width, height, buffer);
}
// CefBase interface
public:
IMPLEMENT_REFCOUNTING(RenderHandler);
};
class CurrentDownload {
public:
CurrentDownload() { accept_cb = NULL; cancel_cb = NULL; }
CefRefPtr<CefBeforeDownloadCallback> accept_cb;
CefRefPtr<CefDownloadItemCallback> cancel_cb;
};
class BrowserClient;
class WebViewOpaque {
public:
bool crashed;
CefRefPtr<RenderHandler> render;
CefRefPtr<CefBrowser> browser;
CefRefPtr<BrowserClient> view;
};
static std::map<BrowserClient*, bool> all_browsers;
static int all_browsers_nb = 0;
class BrowserClient :
public CefClient,
public CefRequestHandler,
public CefDisplayHandler,
public CefLifeSpanHandler,
public CefDownloadHandler,
public CefLoadHandler
{
std::map<int32, CurrentDownload*> downloads;
CefRefPtr<CefRenderHandler> m_renderHandler;
int handlers;
public:
WebViewOpaque *opaque;
CefRefPtr<CefBrowser> browser;
bool first_load;
BrowserClient(WebViewOpaque *opaque, RenderHandler *renderHandler, int handlers) : m_renderHandler(renderHandler) {
this->opaque = opaque;
this->handlers = handlers;
this->first_load = true;
all_browsers[this] = true;
all_browsers_nb++;
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_BROWSER_COUNT;
event->data.count = all_browsers_nb;
push_event(event);
}
~BrowserClient() {
fprintf(logfile, "[WEBCORE] Destroyed client\n");
for (std::map<int32, CurrentDownload*>::iterator it=downloads.begin(); it != downloads.end(); ++it) {
delete it->second;
}
all_browsers.erase(this);
all_browsers_nb--;
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_BROWSER_COUNT;
event->data.count = all_browsers_nb;
push_event(event);
}
virtual CefRefPtr<CefRenderHandler> GetRenderHandler() {
return m_renderHandler;
}
virtual CefRefPtr<CefDisplayHandler> GetDisplayHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefRequestHandler> GetRequestHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefLifeSpanHandler> GetLifeSpanHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefDownloadHandler> GetDownloadHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefLoadHandler> GetLoadHandler() OVERRIDE {
return this;
}
virtual void OnTitleChange(CefRefPtr<CefBrowser> browser, const CefString& title) OVERRIDE {
char *cur_title = cstring_to_c(title);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_TITLE_CHANGE;
event->handlers = handlers;
event->data.title = cur_title;
push_event(event);
}
virtual bool OnBeforeResourceLoad(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame, CefRefPtr<CefRequest> request) OVERRIDE {
return false;
}
virtual bool OnBeforePluginLoad(CefRefPtr<CefBrowser> browser, const CefString& url, const CefString& policy_url, CefRefPtr<CefWebPluginInfo> info) OVERRIDE {
char *name = cstring_to_c(info->GetName());
char *path = cstring_to_c(info->GetPath());
fprintf(logfile, "[WEBCORE] Forbade plugin %s from %s\n", name, path);
free(name);
free(path);
return true;
}
virtual void OnRenderProcessTerminated(CefRefPtr<CefBrowser> browser, TerminationStatus status) OVERRIDE {
if ((status == TS_ABNORMAL_TERMINATION) || (status == TS_PROCESS_WAS_KILLED) || (status == TS_PROCESS_CRASHED)) {
opaque->crashed = true;
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_END_BROWSER;
event->handlers = handlers;
push_event(event);
}
}
virtual bool OnBeforePopup(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
const CefString& target_url,
const CefString& target_frame_name,
const CefPopupFeatures& popupFeatures,
CefWindowInfo& windowInfo,
CefRefPtr<CefClient>& client,
CefBrowserSettings& settings,
bool* no_javascript_access) OVERRIDE {
char *url = cstring_to_c(target_url);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_REQUEST_POPUP_URL;
event->handlers = handlers;
event->data.popup.url = url;
event->data.popup.w = popupFeatures.widthSet ? popupFeatures.width : -1;
event->data.popup.h = popupFeatures.heightSet ? popupFeatures.height : -1;
push_event(event);
fprintf(logfile, "[WEBCORE] stopped popup to %s (%dx%d), pushing event...\n", url, event->data.popup.w, event->data.popup.h);
return true;
}
virtual void OnBeforeDownload(CefRefPtr<CefBrowser> browser, CefRefPtr<CefDownloadItem> download_item, const CefString& suggested_name, CefRefPtr<CefBeforeDownloadCallback> callback) OVERRIDE {
int32 id = download_item->GetId();
CurrentDownload *cd = new CurrentDownload();
cd->accept_cb = callback;
this->downloads[id] = cd;
const char *mime = cstring_to_c(download_item->GetMimeType());
const char *url = cstring_to_c(download_item->GetURL());
const char *name = cstring_to_c(suggested_name);
fprintf(logfile, "[WEBCORE] Download request id %ld [name: %s] [mime: %s] [url: %s]\n", id, name, mime, url);
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_DOWNLOAD_REQUEST;
event->handlers = handlers;
event->data.download_request.url = url;
event->data.download_request.name = name;
event->data.download_request.mime = mime;
event->data.download_request.id = id;
push_event(event);
}
virtual void OnDownloadUpdated(CefRefPtr<CefBrowser> browser, CefRefPtr<CefDownloadItem> download_item, CefRefPtr<CefDownloadItemCallback> callback) OVERRIDE {
int32 id = download_item->GetId();
CurrentDownload *cd = this->downloads[id];
if (!cd) { return; }
cd->cancel_cb = callback;
fprintf(logfile, "[WEBCORE] Download update id %ld [size: %ld / %ld] [completed: %d, canceled: %d, inprogress: %d, valid: %d]\n",
id,
download_item->GetReceivedBytes(), download_item->GetTotalBytes(),
download_item->IsComplete(), download_item->IsCanceled(),
download_item->IsInProgress(), download_item->IsValid()
);
if (download_item->IsComplete() || download_item->IsCanceled()) {
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_DOWNLOAD_FINISH;
event->handlers = handlers;
event->data.download_finish.id = id;
push_event(event);
} else {
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_DOWNLOAD_UPDATE;
event->handlers = handlers;
event->data.download_update.id = id;
event->data.download_update.got = download_item->GetReceivedBytes();
event->data.download_update.total = download_item->GetTotalBytes();
event->data.download_update.percent = download_item->GetPercentComplete();
event->data.download_update.speed = download_item->GetCurrentSpeed();
push_event(event);
}
}
void downloadAction(int32 id, const char *path) {
CurrentDownload *cd = this->downloads[id];
if (!cd) return;
if (!path) {
// Cancel
if (cd->cancel_cb) cd->cancel_cb->Cancel();
delete cd;
downloads.erase(id);
fprintf(logfile, "[WEBCORE] Cancel download(%d)\n", id);
} else {
// Accept
CefString fullpath(path);
cd->accept_cb->Continue(fullpath, false);
fprintf(logfile, "[WEBCORE] Accepting download(%d) to %s\n", id, path);
}
}
virtual void OnLoadStart(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame) {
const char *url = cstring_to_c(frame->GetURL());
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_LOADING;
event->handlers = handlers;
event->data.loading.url = url;
event->data.loading.status = 0;
push_event(event);
}
virtual void OnLoadEnd(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame, int httpStatusCode) {
const char *url = cstring_to_c(frame->GetURL());
WebEvent *event = new WebEvent();
event->kind = TE4_WEB_EVENT_LOADING;
event->handlers = handlers;
event->data.loading.url = url;
event->data.loading.status = 1;
push_event(event);
}
virtual void OnAfterCreated(CefRefPtr<CefBrowser> browser) {
fprintf(logfile, "[WEBCORE] Created browser for webview\n");
this->browser = browser;
}
virtual void OnBeforeClose(CefRefPtr<CefBrowser> browser) {
this->opaque->render = NULL;
this->opaque->view = NULL;
this->opaque->browser = NULL;
this->browser = NULL;
delete this->opaque;
fprintf(logfile, "[WEBCORE] Destroyed webview for browser\n");
}
IMPLEMENT_REFCOUNTING(BrowserClient);
};
class ClientApp :
public CefApp,
public CefRenderProcessHandler
{
public:
virtual CefRefPtr<CefRenderProcessHandler> GetRenderProcessHandler() OVERRIDE {
return this;
}
virtual bool OnBeforeNavigation(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame, CefRefPtr<CefRequest> request, NavigationType navigation_type, bool is_redirect) OVERRIDE {
return false;
}
IMPLEMENT_REFCOUNTING(ClientApp);
};
void te4_web_new(web_view_type *view, int w, int h) {
WebViewOpaque *opaque = new WebViewOpaque();
view->opaque = (void*)opaque;
CefWindowInfo window_info;
CefBrowserSettings browserSettings;
browserSettings.java = STATE_DISABLED;
browserSettings.plugins = STATE_DISABLED;
window_info.SetAsOffScreen(NULL);
window_info.SetTransparentPainting(true);
opaque->render = new RenderHandler(w, h);
opaque->view = new BrowserClient(opaque, opaque->render, view->handlers);
CefString curl("");
opaque->browser = CefBrowserHost::CreateBrowserSync(window_info, opaque->view.get(), curl, browserSettings);
opaque->crashed = false;
view->w = w;
view->h = h;
view->closed = false;
fprintf(logfile, "[WEBCORE] Created webview\n");
}
bool te4_web_close(web_view_type *view) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (!view->closed) {
view->closed = true;
if (opaque->crashed) {
fprintf(logfile, "[WEBCORE] Destroying webview but it was already crashed, doing nothing\n");
} else {
fprintf(logfile, "[WEBCORE] Destroying webview for browser\n");
opaque->browser->GetHost()->CloseBrowser(true);
fprintf(logfile, "[WEBCORE] Destroying send done\n");
}
return true;
}
return false;
}
void te4_web_load_url(web_view_type *view, const char *url) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
CefString curl(url);
opaque->browser->GetMainFrame()->LoadURL(curl);
}
void te4_web_set_js_call(web_view_type *view, const char *name) {
// WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
// opaque->listener->te4_js.SetCustomMethod(WebString::CreateFromUTF8(name, strlen(name)), true);
}
void *te4_web_toscreen(web_view_type *view, int *w, int *h) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return NULL;
const RenderHandler* surface = opaque->render;
if (surface) {
*w = (*w < 0) ? surface->w : *w;
*h = (*h < 0) ? surface->h : *h;
return surface->tex;
}
return NULL;
}
bool te4_web_loading(web_view_type *view) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return false;
return opaque->browser->IsLoading();
}
void te4_web_focus(web_view_type *view, bool focus) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
opaque->browser->GetHost()->SendFocusEvent(focus);
}
static int get_cef_state_modifiers() {
bool shift, ctrl, alt, meta;
web_key_mods(&shift, &ctrl, &alt, &meta);
int modifiers = 0;
if (shift)
modifiers |= EVENTFLAG_SHIFT_DOWN;
else if (ctrl)
modifiers |= EVENTFLAG_CONTROL_DOWN;
else if (alt)
modifiers |= EVENTFLAG_ALT_DOWN;
return modifiers;
}
void te4_web_inject_mouse_move(web_view_type *view, int x, int y) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
view->last_mouse_x = x;
view->last_mouse_y = y;
CefMouseEvent mouse_event;
mouse_event.x = x;
mouse_event.y = y;
mouse_event.modifiers = get_cef_state_modifiers();
opaque->browser->GetHost()->SendMouseMoveEvent(mouse_event, false);
}
void te4_web_inject_mouse_wheel(web_view_type *view, int x, int y) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
CefMouseEvent mouse_event;
mouse_event.x = view->last_mouse_x;
mouse_event.y = view->last_mouse_y;
mouse_event.modifiers = get_cef_state_modifiers();
opaque->browser->GetHost()->SendMouseWheelEvent(mouse_event, -x, -y);
}
void te4_web_inject_mouse_button(web_view_type *view, int kind, bool up) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
CefBrowserHost::MouseButtonType button_type = MBT_LEFT;
if (kind == 2) button_type = MBT_MIDDLE;
else if (kind == 3) button_type = MBT_RIGHT;
CefMouseEvent mouse_event;
mouse_event.x = view->last_mouse_x;
mouse_event.y = view->last_mouse_y;
mouse_event.modifiers = get_cef_state_modifiers();
opaque->browser->GetHost()->SendMouseClickEvent(mouse_event, button_type, up, 1);
}
#if defined(SELFEXE_MACOSX)
#include <Carbon/Carbon.h>
// A convenient array for getting symbol characters on the number keys.
static const char kShiftCharsForNumberKeys[] = ")!@#$%^&*(";
// Convert an ANSI character to a Mac key code.
static int GetMacKeyCodeFromChar(int key_code) {
switch (key_code) {
case ' ': return kVK_Space;
case '0': case ')': return kVK_ANSI_0;
case '1': case '!': return kVK_ANSI_1;
case '2': case '@': return kVK_ANSI_2;
case '3': case '#': return kVK_ANSI_3;
case '4': case '$': return kVK_ANSI_4;
case '5': case '%': return kVK_ANSI_5;
case '6': case '^': return kVK_ANSI_6;
case '7': case '&': return kVK_ANSI_7;
case '8': case '*': return kVK_ANSI_8;
case '9': case '(': return kVK_ANSI_9;
case 'a': case 'A': return kVK_ANSI_A;
case 'b': case 'B': return kVK_ANSI_B;
case 'c': case 'C': return kVK_ANSI_C;
case 'd': case 'D': return kVK_ANSI_D;
case 'e': case 'E': return kVK_ANSI_E;
case 'f': case 'F': return kVK_ANSI_F;
case 'g': case 'G': return kVK_ANSI_G;
case 'h': case 'H': return kVK_ANSI_H;
case 'i': case 'I': return kVK_ANSI_I;
case 'j': case 'J': return kVK_ANSI_J;
case 'k': case 'K': return kVK_ANSI_K;
case 'l': case 'L': return kVK_ANSI_L;
case 'm': case 'M': return kVK_ANSI_M;
case 'n': case 'N': return kVK_ANSI_N;
case 'o': case 'O': return kVK_ANSI_O;
case 'p': case 'P': return kVK_ANSI_P;
case 'q': case 'Q': return kVK_ANSI_Q;
case 'r': case 'R': return kVK_ANSI_R;
case 's': case 'S': return kVK_ANSI_S;
case 't': case 'T': return kVK_ANSI_T;
case 'u': case 'U': return kVK_ANSI_U;
case 'v': case 'V': return kVK_ANSI_V;
case 'w': case 'W': return kVK_ANSI_W;
case 'x': case 'X': return kVK_ANSI_X;
case 'y': case 'Y': return kVK_ANSI_Y;
case 'z': case 'Z': return kVK_ANSI_Z;
// U.S. Specific mappings. Mileage may vary.
case ';': case ':': return kVK_ANSI_Semicolon;
case '=': case '+': return kVK_ANSI_Equal;
case ',': case '<': return kVK_ANSI_Comma;
case '-': case '_': return kVK_ANSI_Minus;
case '.': case '>': return kVK_ANSI_Period;
case '/': case '?': return kVK_ANSI_Slash;
case '`': case '~': return kVK_ANSI_Grave;
case '[': case '{': return kVK_ANSI_LeftBracket;
case '\\': case '|': return kVK_ANSI_Backslash;
case ']': case '}': return kVK_ANSI_RightBracket;
case '\'': case '"': return kVK_ANSI_Quote;
}
return -1;
}
#endif // defined(OS_MACOSX)
extern "C" {
#include <tSDL.h>
}
void te4_web_inject_key(web_view_type *view, int scancode, int asymb, const char *uni, int unilen, bool up) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
int key_code = scancode;
CefKeyEvent key_event;
key_event.modifiers = get_cef_state_modifiers();
// OMFG ... CEF3 is very very nice, except for key handling
// Once this will be working(-ish) I never want to take a look at that thing again.
#if defined(SELFEXE_LINUX)
if (key_code == SDLK_BACKSPACE)
key_event.native_key_code = 0xff08;
else if (key_code == SDLK_DELETE)
key_event.native_key_code = 0xffff;
else if (key_code == SDLK_DOWN)
key_event.native_key_code = 0xff54;
else if (key_code == SDLK_RETURN)
key_event.native_key_code = 0xff0d;
else if (key_code == SDLK_ESCAPE)
key_event.native_key_code = 0xff1b;
else if (key_code == SDLK_LEFT)
key_event.native_key_code = 0xff51;
else if (key_code == SDLK_RIGHT)
key_event.native_key_code = 0xff53;
else if (key_code == SDLK_TAB)
key_event.native_key_code = 0xff09;
else if (key_code == SDLK_UP)
key_event.native_key_code = 0xff52;
else if (key_code == SDLK_PAGEUP)
key_event.native_key_code = 0xff55;
else if (key_code == SDLK_PAGEDOWN)
key_event.native_key_code = 0xff56;
else
key_event.native_key_code = key_code;
#elif defined(SELFEXE_WINDOWS)
// This has been fully untested and most certainly isnt working
BYTE VkCode;
if (key_code == SDLK_BACKSPACE)
VkCode = VK_BACK;
else if (key_code == SDLK_DELETE)
VkCode = VK_DELETE;
else if (key_code == SDLK_DOWN)
VkCode = VK_DOWN;
else if (key_code == SDLK_RETURN)
VkCode = VK_RETURN;
else if (key_code == SDLK_ESCAPE)
VkCode = VK_ESCAPE;
else if (key_code == SDLK_LEFT)
VkCode = VK_LEFT;
else if (key_code == SDLK_RIGHT)
VkCode = VK_RIGHT;
else if (key_code == SDLK_TAB)
VkCode = VK_TAB;
else if (key_code == SDLK_UP)
VkCode = VK_UP;
else if (unilen == 1 && uni[0] >= '!' && uni[0] <= '@')
VkCode = uni[0];
else if (unilen == 1 && uni[0] >= '[' && uni[0] <= '`')
VkCode = uni[0];
else if (unilen == 1 && uni[0] >= '{' && uni[0] <= '~')
VkCode = uni[0];
else if (unilen == 1 && uni[0] >= 'A' && uni[0] <= 'Z')
VkCode = uni[0];
else if (unilen == 1 && uni[0] >= 'a' && uni[0] <= 'z')
VkCode = uni[0];
else if (unilen == 1 && uni[0] >= 'a' && uni[0] <= 'z')
VkCode = uni[0];
else
VkCode = LOBYTE(VkKeyScanA(key_code));
UINT scanCode = MapVirtualKey(VkCode, MAPVK_VK_TO_VSC);
key_event.native_key_code = (scanCode << 16) | // key scan code
1; // key repeat count
key_event.windows_key_code = VkCode;
#elif defined(SELFEXE_MACOSX)
if (key_code == SDLK_BACKSPACE) {
key_event.native_key_code = kVK_Delete;
key_event.unmodified_character = kBackspaceCharCode;
} else if (key_code == SDLK_DELETE) {
key_event.native_key_code = kVK_ForwardDelete;
key_event.unmodified_character = kDeleteCharCode;
} else if (key_code == SDLK_DOWN) {
key_event.native_key_code = kVK_DownArrow;
key_event.unmodified_character = /* NSDownArrowFunctionKey */ 0xF701;
} else if (key_code == SDLK_RETURN) {
key_event.native_key_code = kVK_Return;
key_event.unmodified_character = kReturnCharCode;
} else if (key_code == SDLK_ESCAPE) {
key_event.native_key_code = kVK_Escape;
key_event.unmodified_character = kEscapeCharCode;
} else if (key_code == SDLK_LEFT) {
key_event.native_key_code = kVK_LeftArrow;
key_event.unmodified_character = /* NSLeftArrowFunctionKey */ 0xF702;
} else if (key_code == SDLK_RIGHT) {
key_event.native_key_code = kVK_RightArrow;
key_event.unmodified_character = /* NSRightArrowFunctionKey */ 0xF703;
} else if (key_code == SDLK_TAB) {
key_event.native_key_code = kVK_Tab;
key_event.unmodified_character = kTabCharCode;
} else if (key_code == SDLK_UP) {
key_event.native_key_code = kVK_UpArrow;
key_event.unmodified_character = /* NSUpArrowFunctionKey */ 0xF700;
} else {
key_event.native_key_code = GetMacKeyCodeFromChar(key_code);
if (key_event.native_key_code == -1)
return;
key_event.unmodified_character = key_code;
}
key_event.character = key_event.unmodified_character;
// Fill in |character| according to flags.
if (key_event.modifiers & EVENTFLAG_SHIFT_DOWN) {
if (key_code >= '0' && key_code <= '9') {
key_event.character = kShiftCharsForNumberKeys[key_code - '0'];
} else if (key_code >= 'A' && key_code <= 'Z') {
key_event.character = 'A' + (key_code - 'A');
} else {
switch (key_event.native_key_code) {
case kVK_ANSI_Grave:
key_event.character = '~';
break;
case kVK_ANSI_Minus:
key_event.character = '_';
break;
case kVK_ANSI_Equal:
key_event.character = '+';
break;
case kVK_ANSI_LeftBracket:
key_event.character = '{';
break;
case kVK_ANSI_RightBracket:
key_event.character = '}';
break;
case kVK_ANSI_Backslash:
key_event.character = '|';
break;
case kVK_ANSI_Semicolon:
key_event.character = ':';
break;
case kVK_ANSI_Quote:
key_event.character = '\"';
break;
case kVK_ANSI_Comma:
key_event.character = '<';
break;
case kVK_ANSI_Period:
key_event.character = '>';
break;
case kVK_ANSI_Slash:
key_event.character = '?';
break;
default:
break;
}
}
}
// Control characters.
if (key_event.modifiers & EVENTFLAG_CONTROL_DOWN) {
if (key_code >= 'A' && key_code <= 'Z')
key_event.character = 1 + key_code - 'A';
else if (key_event.native_key_code == kVK_ANSI_LeftBracket)
key_event.character = 27;
else if (key_event.native_key_code == kVK_ANSI_Backslash)
key_event.character = 28;
else if (key_event.native_key_code == kVK_ANSI_RightBracket)
key_event.character = 29;
}
#else
// Try a fallback..
key_event.native_key_code = key_code;
#endif
key_event.unmodified_character = key_code;
key_event.character = key_event.unmodified_character;
key_event.modifiers = get_cef_state_modifiers();
if (unilen) {
key_event.type = KEYEVENT_RAWKEYDOWN;
opaque->browser->GetHost()->SendKeyEvent(key_event);
key_event.type = KEYEVENT_KEYUP;
opaque->browser->GetHost()->SendKeyEvent(key_event);
key_event.type = KEYEVENT_CHAR;
opaque->browser->GetHost()->SendKeyEvent(key_event);
} else if (!up) {
key_event.type = KEYEVENT_KEYDOWN;
opaque->browser->GetHost()->SendKeyEvent(key_event);
} else {
// Need to send both KEYUP and CHAR events.
key_event.type = KEYEVENT_KEYUP;
opaque->browser->GetHost()->SendKeyEvent(key_event);
}
}
void te4_web_download_action(web_view_type *view, long id, const char *path) {
WebViewOpaque *opaque = (WebViewOpaque*)view->opaque;
if (view->closed) return;
opaque->view->downloadAction(id, path);
}
void te4_web_reply_local(int id, const char *mime, const char *result, size_t len) {
}
void te4_web_do_update(void (*cb)(WebEvent*)) {
if (!web_core) return;
if (all_browsers_nb) CefDoMessageLoopWork();
WebEvent *event;
while ((event = pop_event())) {
cb(event);
switch (event->kind) {
case TE4_WEB_EVENT_TITLE_CHANGE:
free((void*)event->data.title);
break;
case TE4_WEB_EVENT_REQUEST_POPUP_URL:
free((void*)event->data.popup.url);
break;
case TE4_WEB_EVENT_DOWNLOAD_REQUEST:
free((void*)event->data.download_request.url);
free((void*)event->data.download_request.name);
free((void*)event->data.download_request.mime);
break;
case TE4_WEB_EVENT_DOWNLOAD_UPDATE:
break;
case TE4_WEB_EVENT_DOWNLOAD_FINISH:
break;
case TE4_WEB_EVENT_LOADING:
free((void*)event->data.loading.url);
break;
case TE4_WEB_EVENT_LOCAL_REQUEST:
free((void*)event->data.local_request.path);
break;
case TE4_WEB_EVENT_RUN_LUA:
free((void*)event->data.run_lua.code);
break;
case TE4_WEB_EVENT_DELETE_TEXTURE:
web_del_texture(event->data.texture);
break;
}
delete event;
}
}
static int g_argc;
static char **g_argv;
static char *spawnname;
CefRefPtr<ClientApp> app(new ClientApp);
void te4_web_setup(
int argc, char **gargv, char *spawnc,
void*(*mutex_create)(), void(*mutex_destroy)(void*), void(*mutex_lock)(void*), void(*mutex_unlock)(void*),
void *(*make_texture)(int, int), void (*del_texture)(void*), void (*texture_update)(void*, int, int, const void*),
void (*key_mods)(bool*, bool*, bool*, bool*),
void (*instant_js)(int handlers, const char *fct, int nb_args, WebJsValue *args, WebJsValue *ret)
) {
#ifdef SELFEXE_MACOSX
logfile = fopen("/tmp/te4_log_web.txt", "w");
#else
logfile = fopen("te4_log_web.txt", "w");
#endif
#ifdef _WIN32
setvbuf(logfile, NULL, _IONBF, 2);
#endif
#ifdef SELFEXE_MACOSX
setvbuf(logfile, NULL, _IONBF, 2);
#endif
web_mutex_create = mutex_create;
web_mutex_destroy = mutex_destroy;
web_mutex_lock = mutex_lock;
web_mutex_unlock = mutex_unlock;
web_make_texture = make_texture;
web_del_texture = del_texture;
web_texture_update = texture_update;
web_key_mods = key_mods;
web_instant_js = instant_js;
spawnname = spawnc;
g_argc = argc;
g_argv = gargv;
}
void te4_web_initialize(const char *locales, const char *pak) {
if (!web_core) {
#ifdef _WIN32
CefMainArgs args(GetModuleHandle(NULL));
#else
char **cargv = (char**)calloc(g_argc, sizeof(char*));
for (int i = 0; i < g_argc; i++) cargv[i] = strdup(g_argv[i]);
CefMainArgs args(g_argc, cargv);
#endif
CefSettings settings;
settings.multi_threaded_message_loop = false;
CefString spawn(spawnname);
CefString(&settings.browser_subprocess_path) = spawn;
CefString clocales(locales);
CefString(&settings.locales_dir_path) = clocales;
CefString resources(pak);
CefString(&settings.resources_dir_path) = resources;
CefInitialize(args, settings, app.get());
web_core = true;
}
te4_web_init_utils();
}
void te4_web_shutdown() {
fprintf(logfile, "[WEBCORE] Shutdown starting...\n");
std::map<BrowserClient*, bool> all;
for (std::map<BrowserClient*, bool>::iterator it=all_browsers.begin(); it != all_browsers.end(); ++it) {
all[it->first] = it->second;
}
fprintf(logfile, "[WEBCORE] Sending kill to all browsers (%d)\n", all_browsers_nb);
for (std::map<BrowserClient*, bool>::iterator it=all.begin(); it != all.end(); ++it) {
fprintf(logfile, "[WEBCORE] Sending kill to a browser (crash status %d)\n", it->first->opaque->crashed);
if (!it->first->opaque->crashed) {
it->first->browser->GetHost()->CloseBrowser(true);
}
}
while (!all_browsers.empty()) {
CefDoMessageLoopWork();
fprintf(logfile, "Waiting browsers to close: %d left\n", all_browsers.size());
}
fprintf(logfile, "[WEBCORE] all browsers dead, shutting down\n");
CefShutdown();
fprintf(logfile, "[WEBCORE] all browsers dead, shutdown completed\n");
fclose(logfile);
}