NativeInterfaceJSScripting.cpp
20.3 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
// Engine/Source/Runtime/WebBrowser/Private/Native/NativeJSScripting.cpp
#include "NativeInterfaceJSScripting.h"
#include "NativeInterfaceJSStructSerializerBackend.h"
#include "NativeInterfaceJSStructDeserializerBackend.h"
#include "StructSerializer.h"
#include "StructDeserializer.h"
#include "UObject/UnrealType.h"
#include "NativeWebInterfaceBrowserProxy.h"
namespace NativeInterfaceFuncs
{
const FString ExecuteMethodCommand = TEXT("ExecuteUObjectMethod");
typedef TSharedRef<TJsonWriter<>> FJsonWriterRef;
template<typename ValueType> void WriteValue(FJsonWriterRef Writer, const FString& Key, const ValueType& Value)
{
Writer->WriteValue(Key, Value);
}
void WriteNull(FJsonWriterRef Writer, const FString& Key)
{
Writer->WriteNull(Key);
}
void WriteArrayStart(FJsonWriterRef Writer, const FString& Key)
{
Writer->WriteArrayStart(Key);
}
void WriteObjectStart(FJsonWriterRef Writer, const FString& Key)
{
Writer->WriteObjectStart(Key);
}
void WriteRaw(FJsonWriterRef Writer, const FString& Key, const FString& Value)
{
Writer->WriteRawJSONValue(Key, Value);
}
template<typename ValueType> void WriteValue(FJsonWriterRef Writer, const int, const ValueType& Value)
{
Writer->WriteValue(Value);
}
void WriteNull(FJsonWriterRef Writer, int)
{
Writer->WriteNull();
}
void WriteArrayStart(FJsonWriterRef Writer, int)
{
Writer->WriteArrayStart();
}
void WriteObjectStart(FJsonWriterRef Writer, int)
{
Writer->WriteObjectStart();
}
void WriteRaw(FJsonWriterRef Writer, int, const FString& Value)
{
Writer->WriteRawJSONValue(Value);
}
template<typename KeyType>
bool WriteJsParam(FNativeInterfaceJSScriptingRef Scripting, FJsonWriterRef Writer, const KeyType& Key, FWebInterfaceJSParam& Param)
{
switch (Param.Tag)
{
case FWebInterfaceJSParam::PTYPE_NULL:
WriteNull(Writer, Key);
break;
case FWebInterfaceJSParam::PTYPE_BOOL:
WriteValue(Writer, Key, Param.BoolValue);
break;
case FWebInterfaceJSParam::PTYPE_DOUBLE:
WriteValue(Writer, Key, Param.DoubleValue);
break;
case FWebInterfaceJSParam::PTYPE_INT:
WriteValue(Writer, Key, Param.IntValue);
break;
case FWebInterfaceJSParam::PTYPE_STRING:
WriteValue(Writer, Key, *Param.StringValue);
break;
case FWebInterfaceJSParam::PTYPE_OBJECT:
{
if (Param.ObjectValue == nullptr)
{
WriteNull(Writer, Key);
}
else
{
FString ConvertedObject = Scripting->ConvertObject(Param.ObjectValue);
WriteRaw(Writer, Key, ConvertedObject);
}
break;
}
case FWebInterfaceJSParam::PTYPE_STRUCT:
{
FString ConvertedStruct = Scripting->ConvertStruct(Param.StructValue->GetTypeInfo(), Param.StructValue->GetData());
WriteRaw(Writer, Key, ConvertedStruct);
break;
}
case FWebInterfaceJSParam::PTYPE_ARRAY:
{
WriteArrayStart(Writer, Key);
for(int i=0; i < Param.ArrayValue->Num(); ++i)
{
WriteJsParam(Scripting, Writer, i, (*Param.ArrayValue)[i]);
}
Writer->WriteArrayEnd();
break;
}
case FWebInterfaceJSParam::PTYPE_MAP:
{
WriteObjectStart(Writer, Key);
for(auto& Pair : *Param.MapValue)
{
WriteJsParam(Scripting, Writer, *Pair.Key, Pair.Value);
}
Writer->WriteObjectEnd();
break;
}
default:
return false;
}
return true;
}
}
FString _GetObjectPostInitScript(const FString& Name, const FString& FullyQualifiedName)
{
return FString::Printf(TEXT("(function(){document.dispatchEvent(new CustomEvent('%s:ready', {details: %s}));})();"), *Name, *FullyQualifiedName);
}
void FNativeInterfaceJSScripting::BindUObject(const FString& Name, UObject* Object, bool bIsPermanent )
{
const FString ExposedName = GetBindingName(Name, Object);
FString Converted = ConvertObject(Object);
if (bIsPermanent)
{
// Existing permanent objects must be removed first and each object can only have one permanent binding
if (PermanentUObjectsByName.Contains(ExposedName) || BoundObjects[Object].bIsPermanent)
{
return;
}
BoundObjects[Object]={true, -1};
PermanentUObjectsByName.Add(ExposedName, Object);
}
if(!bLoaded)
{
PageLoaded();
}
else
{
const FString& EscapedName = ExposedName.ReplaceCharWithEscapedChar();
FString SetValueScript = FString::Printf(TEXT("window.ue['%s'] = %s;"), *EscapedName, *Converted);
SetValueScript.Append(_GetObjectPostInitScript(EscapedName, FString::Printf(TEXT("window.ue['%s']"), *EscapedName)));
ExecuteJavascript(SetValueScript);
}
}
void FNativeInterfaceJSScripting::ExecuteJavascript(const FString& Javascript)
{
TSharedPtr<FNativeWebInterfaceBrowserProxy> Window = WindowPtr.Pin();
if (Window.IsValid())
{
Window->ExecuteJavascript(Javascript);
}
}
void FNativeInterfaceJSScripting::UnbindUObject(const FString& Name, UObject* Object, bool bIsPermanent)
{
const FString ExposedName = GetBindingName(Name, Object);
if (bIsPermanent)
{
// If overriding an existing permanent object, make it non-permanent
if (PermanentUObjectsByName.Contains(ExposedName) && (Object == nullptr || PermanentUObjectsByName[ExposedName] == Object))
{
Object = PermanentUObjectsByName.FindAndRemoveChecked(ExposedName);
BoundObjects.Remove(Object);
return;
}
else
{
return;
}
}
FString DeleteValueScript = FString::Printf(TEXT("delete window.ue['%s'];"), *ExposedName.ReplaceCharWithEscapedChar());
ExecuteJavascript(DeleteValueScript);
}
int32 _ParseParams(const FString& ParamStr, TArray<FString>& OutArray)
{
OutArray.Reset();
const TCHAR *Start = *ParamStr;
if (Start && *Start != TEXT('\0'))
{
int32 DelimLimit = 4;
while (const TCHAR *At = FCString::Strstr(Start, TEXT("/")))
{
OutArray.Emplace(At - Start, Start);
Start = At + 1;
if (--DelimLimit == 0)
{
break;
}
}
if (*Start)
{
OutArray.Emplace(Start);
}
}
return OutArray.Num();
}
bool FNativeInterfaceJSScripting::OnJsMessageReceived(const FString& Message)
{
check(IsInGameThread());
bool Result = false;
TArray<FString> Params;
if (_ParseParams(Message, Params))
{
FString Command = Params[0];
Params.RemoveAt(0, 1);
if (Command == NativeInterfaceFuncs::ExecuteMethodCommand)
{
Result = HandleExecuteUObjectMethodMessage(Params);
}
}
return Result;
}
FString FNativeInterfaceJSScripting::ConvertStruct(UStruct* TypeInfo, const void* StructPtr)
{
TArray<uint8> ReturnBuffer;
FMemoryWriter Writer(ReturnBuffer);
FNativeInterfaceJSStructSerializerBackend ReturnBackend = FNativeInterfaceJSStructSerializerBackend(SharedThis(this), Writer);
FStructSerializer::Serialize(StructPtr, *TypeInfo, ReturnBackend);
// Extract the result value from the serialized JSON object:
ReturnBuffer.Add(0);
ReturnBuffer.Add(0); // Add two as we're dealing with UTF-16, so 2 bytes
return UTF16_TO_TCHAR((UTF16CHAR*)ReturnBuffer.GetData());
}
FString FNativeInterfaceJSScripting::ConvertObject(UObject* Object)
{
RetainBinding(Object);
UClass* Class = Object->GetClass();
bool first = true;
FString Result = TEXT("(function(){ return Object.create({");
for (TFieldIterator<UFunction> FunctionIt(Class, EFieldIteratorFlags::IncludeSuper); FunctionIt; ++FunctionIt)
{
UFunction* Function = *FunctionIt;
if(!first)
{
Result.Append(TEXT(","));
}
else
{
first = false;
}
Result.Append(*GetBindingName(Function));
Result.Append(TEXT(": function "));
Result.Append(*GetBindingName(Function));
Result.Append(TEXT(" ("));
bool firstArg = true;
for ( TFieldIterator<FProperty> It(Function); It; ++It )
{
FProperty* Param = *It;
if (Param->PropertyFlags & CPF_Parm && ! (Param->PropertyFlags & CPF_ReturnParm) )
{
FStructProperty *StructProperty = CastField<FStructProperty>(Param);
if (!StructProperty || !StructProperty->Struct->IsChildOf(FWebInterfaceJSResponse::StaticStruct()))
{
if(!firstArg)
{
Result.Append(TEXT(", "));
}
else
{
firstArg = false;
}
Result.Append(*GetBindingName(Param));
}
}
}
Result.Append(TEXT(")"));
// We hijack the RPCResponseId and use it for our priority value. 0 means it has not been assigned and we default to 2. 1-5 is high-low priority which we map to the 0-4 range used by EmbeddedCommunication.
int32 Priority = Function->RPCResponseId == 0 ? 2 : FMath::Clamp((int32)Function->RPCResponseId, 1, 5) - 1;
Result.Append(TEXT(" {return window.ue.$.executeMethod('"));
Result.Append(FString::FromInt(Priority));
Result.Append(TEXT("',this.$id, arguments)}"));
}
Result.Append(TEXT("},{"));
Result.Append(TEXT("$id: {writable: false, configurable:false, enumerable: false, value: '"));
Result.Append(*PtrToGuid(Object).ToString(EGuidFormats::Digits));
Result.Append(TEXT("'}})})()"));
return Result;
}
void FNativeInterfaceJSScripting::InvokeJSFunction(FGuid FunctionId, int32 ArgCount, FWebInterfaceJSParam Arguments[], bool bIsError)
{
if (!IsValid())
{
return;
}
FString CallbackScript = FString::Printf(TEXT("window.ue.$.invokeCallback('%s', %s, "), *FunctionId.ToString(EGuidFormats::Digits), (bIsError) ? TEXT("true") : TEXT("false"));
{
TArray<uint8> Buffer;
FMemoryWriter MemoryWriter(Buffer);
NativeInterfaceFuncs::FJsonWriterRef JsonWriter = TJsonWriter<>::Create(&MemoryWriter);
JsonWriter->WriteArrayStart();
for (int i = 0; i < ArgCount; i++)
{
NativeInterfaceFuncs::WriteJsParam(SharedThis(this), JsonWriter, i, Arguments[i]);
}
JsonWriter->WriteArrayEnd();
CallbackScript.Append((TCHAR*)Buffer.GetData(), Buffer.Num() / sizeof(TCHAR));
}
CallbackScript.Append(TEXT(")"));
ExecuteJavascript(CallbackScript);
}
void FNativeInterfaceJSScripting::InvokeJSFunctionRaw(FGuid FunctionId, const FString& RawJSValue, bool bIsError)
{
if (!IsValid())
{
return;
}
FString CallbackScript = FString::Printf(TEXT("window.ue.$.invokeCallback('%s', %s, [%s])"),
*FunctionId.ToString(EGuidFormats::Digits), (bIsError)?TEXT("true"):TEXT("false"), *RawJSValue);
ExecuteJavascript(CallbackScript);
}
void FNativeInterfaceJSScripting::InvokeJSErrorResult(FGuid FunctionId, const FString& Error)
{
FWebInterfaceJSParam Args[1] = {FWebInterfaceJSParam(Error)};
InvokeJSFunction(FunctionId, 1, Args, true);
}
bool FNativeInterfaceJSScripting::HandleExecuteUObjectMethodMessage(const TArray<FString>& MessageArgs)
{
if (MessageArgs.Num() != 4)
{
return false;
}
const FString& ObjectIdStr = MessageArgs[0];
FGuid ObjectKey;
UObject* Object = nullptr;
if (FGuid::Parse(ObjectIdStr, ObjectKey))
{
Object = GuidToPtr(ObjectKey);
}
else if(PermanentUObjectsByName.Contains(ObjectIdStr))
{
Object = PermanentUObjectsByName[ObjectIdStr];
}
if(Object == nullptr)
{
// Unknown uobject id/name
return false;
}
// Get the promise callback and use that to report any results from executing this function.
FGuid ResultCallbackId;
if (!FGuid::Parse(MessageArgs[1], ResultCallbackId))
{
// Invalid GUID
return false;
}
FName MethodName = FName(*MessageArgs[2]);
UFunction* Function = Object->FindFunction(MethodName);
if (!Function)
{
InvokeJSErrorResult(ResultCallbackId, TEXT("Unknown UObject Function"));
return true;
}
// Coerce arguments to function arguments.
uint16 ParamsSize = Function->ParmsSize;
TArray<uint8> Params;
FProperty* ReturnParam = nullptr;
FProperty* PromiseParam = nullptr;
if (ParamsSize > 0)
{
// Find return parameter and a promise argument if present, as we need to handle them differently
for ( TFieldIterator<FProperty> It(Function); It; ++It )
{
FProperty* Param = *It;
if (Param->PropertyFlags & CPF_Parm)
{
if (Param->PropertyFlags & CPF_ReturnParm)
{
ReturnParam = Param;
}
else
{
FStructProperty *StructProperty = CastField<FStructProperty>(Param);
if (StructProperty && StructProperty->Struct->IsChildOf(FWebInterfaceJSResponse::StaticStruct()))
{
PromiseParam = Param;
}
}
if (ReturnParam && PromiseParam)
{
break;
}
}
}
// UFunction is a subclass of UStruct, so we can treat the arguments as a struct for deserialization
Params.AddUninitialized(ParamsSize);
Function->InitializeStruct(Params.GetData());
// Note: This is a no-op on platforms that are using a 16-bit TCHAR
FTCHARToUTF16 UTF16String(*MessageArgs[3], MessageArgs[3].Len());
TArray<uint8> JsonData;
JsonData.Append((uint8*)UTF16String.Get(), UTF16String.Length() * sizeof(UTF16CHAR));
FMemoryReader Reader(JsonData);
FNativeInterfaceJSStructDeserializerBackend Backend = FNativeInterfaceJSStructDeserializerBackend(SharedThis(this), Reader);
FStructDeserializer::Deserialize(Params.GetData(), *Function, Backend);
}
if (PromiseParam)
{
FWebInterfaceJSResponse* PromisePtr = PromiseParam->ContainerPtrToValuePtr<FWebInterfaceJSResponse>(Params.GetData());
if (PromisePtr)
{
*PromisePtr = FWebInterfaceJSResponse(SharedThis(this), ResultCallbackId);
}
}
Object->ProcessEvent(Function, Params.GetData());
if ( ! PromiseParam ) // If PromiseParam is set, we assume that the UFunction will ensure it is called with the result
{
if ( ReturnParam )
{
FStructSerializerPolicies ReturnPolicies;
ReturnPolicies.PropertyFilter = [&ReturnParam](const FProperty* CandidateProperty, const FProperty* ParentProperty)
{
return ParentProperty != nullptr || CandidateProperty == ReturnParam;
};
TArray<uint8> ReturnBuffer;
FMemoryWriter Writer(ReturnBuffer);
FNativeInterfaceJSStructSerializerBackend ReturnBackend = FNativeInterfaceJSStructSerializerBackend(SharedThis(this), Writer);
FStructSerializer::Serialize(Params.GetData(), *Function, ReturnBackend, ReturnPolicies);
// Extract the result value from the serialized JSON object:
ReturnBuffer.Add(0);
ReturnBuffer.Add(0); // Add two as we're dealing with UTF-16, so 2 bytes
const FString ResultJS = UTF16_TO_TCHAR((UTF16CHAR*)ReturnBuffer.GetData());
InvokeJSFunctionRaw(ResultCallbackId, ResultJS, false);
}
else
{
InvokeJSFunction(ResultCallbackId, 0, nullptr, false);
}
}
return true;
}
FString FNativeInterfaceJSScripting::GetInitializeScript()
{
const FString NativeScriptingInit =
TEXT("(function() {")
TEXT("var util = Object.create({")
// Simple random-based (RFC-4122 version 4) UUID generator.
// Version 4 UUIDs have the form xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx where x is any hexadecimal digit and y is one of 8, 9, a, or b
// This function returns the UUID as a hex string without the dashes
TEXT("uuid: function()")
TEXT("{")
TEXT(" var b = new Uint8Array(16); window.crypto.getRandomValues(b);")
TEXT(" b[6] = b[6]&0xf|0x40; b[8]=b[8]&0x3f|0x80;") // Set the reserved bits to the correct values
TEXT(" return Array.prototype.reduce.call(b, function(a,i){return a+((0x100|i).toString(16).substring(1))},'').toUpperCase();")
TEXT("}, ")
// save a callback function in the callback registry
// returns the uuid of the callback for passing to the host application
// ensures that each function object is only stored once.
// (Closures executed multiple times are considered separate objects.)
TEXT("registerCallback: function(callback)")
TEXT("{")
TEXT(" var key;")
TEXT(" for(key in this.callbacks)")
TEXT(" {")
TEXT(" if (!this.callbacks[key].isOneShot && this.callbacks[key].accept === callback)")
TEXT(" {")
TEXT(" return key;")
TEXT(" }")
TEXT(" }")
TEXT(" key = this.uuid();")
TEXT(" this.callbacks[key] = {accept:callback, reject:callback, bIsOneShot:false};")
TEXT(" return key;")
TEXT("}, ")
TEXT("registerPromise: function(accept, reject, name)")
TEXT("{")
TEXT(" var key = this.uuid();")
TEXT(" this.callbacks[key] = {accept:accept, reject:reject, bIsOneShot:true, name:name};")
TEXT(" return key;")
TEXT("}, ")
// strip ReturnValue object wrapper if present
TEXT("returnValToObj: function(args)")
TEXT("{")
TEXT(" return Array.prototype.map.call(args, function(item){return item.ReturnValue || item});")
TEXT("}, ")
// invoke a callback method or promise by uuid
TEXT("invokeCallback: function(key, bIsError, args)")
TEXT("{")
TEXT(" var callback = this.callbacks[key];")
TEXT(" if (typeof callback === 'undefined')")
TEXT(" {")
TEXT(" console.error('Unknown callback id', key);")
TEXT(" return;")
TEXT(" }")
TEXT(" if (callback.bIsOneShot)")
TEXT(" {")
TEXT(" callback.iwanttodeletethis=true;")
TEXT(" delete this.callbacks[key];")
TEXT(" }")
TEXT(" callback[bIsError?'reject':'accept'].apply(window, this.returnValToObj(args));")
TEXT("}, ")
// convert an argument list to a dictionary of arguments.
// The args argument must be an argument object as it uses the callee member to deduce the argument names
TEXT("argsToDict: function(args)")
TEXT("{")
TEXT(" var res = {};")
TEXT(" args.callee.toString().match(/\\((.+?)\\)/)[1].split(/\\s*,\\s*/).forEach(function(name, idx){res[name]=args[idx]});")
TEXT(" return res;")
TEXT("}, ")
// encodes and sends a message to the host application
TEXT("sendMessage: function()")
TEXT("{")
// @todo: Each kairos native browser will have a different way of passing a message out, here we use webkit postmessage but we'll need
// to be aware of our target platform when generating this script and adjust accordingly
TEXT(" var delimiter = '/';")
#if PLATFORM_ANDROID
TEXT(" if(window.JSBridge){")
TEXT(" window.JSBridge.postMessage('', 'browserProxy', 'handlejs', Array.prototype.slice.call(arguments).join(delimiter));")
TEXT(" }")
#else
TEXT(" if(window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers.browserProxy){")
TEXT(" window.webkit.messageHandlers.browserProxy.postMessage(Array.prototype.slice.call(arguments).join(delimiter));")
TEXT(" }")
#endif
TEXT("}, ")
// custom replacer function passed into JSON.stringify to handle cases where there are function objects in the argument list
// of the executeMethod call. In those cases we want to be able to pass them as callbacks.
TEXT("customReplacer: function(key, value)")
TEXT("{")
TEXT(" if (typeof value === 'function')")
TEXT(" {")
TEXT(" return window.ue.$.registerCallback(value);")
TEXT(" }")
TEXT(" return value;")
TEXT("},")
// uses the above helper methods to execute a method on a uobject instance.
// the method set as callee on args needs to be a named function, as the name of the method to invoke is taken from it
TEXT("executeMethod: function(priority, id, args)")
TEXT("{")
TEXT(" var self = this;") // the closures need access to the outer this object
// Create a promise object to return back to the caller and create a callback function to handle the response
TEXT(" var promiseID;")
TEXT(" var promise = new Promise(function (accept, reject) ")
TEXT(" {")
TEXT(" promiseID = self.registerPromise(accept, reject, args.callee.name)")
TEXT(" });")
// Actually invoke the method by sending a message to the host app
TEXT(" this.sendMessage(priority, '") + NativeInterfaceFuncs::ExecuteMethodCommand + TEXT("', id, promiseID, args.callee.name, JSON.stringify(this.argsToDict(args), this.customReplacer));")
// Return the promise object to the caller
TEXT(" return promise;")
TEXT("}")
TEXT("},{callbacks: {value:{}}});")
// Create the global window.ue variable
TEXT("window.ue = Object.create({}, {'$': {writable: false, configurable:false, enumerable: false, value:util}});")
TEXT("})();")
;
return NativeScriptingInit;
}
void FNativeInterfaceJSScripting::PageLoaded()
{
// Expunge temporary objects.
for (TMap<UObject*, ObjectBinding>::TIterator It(BoundObjects); It; ++It)
{
if (!It->Value.bIsPermanent)
{
It.RemoveCurrent();
}
}
FString Script = GetInitializeScript();
for(auto& Item : PermanentUObjectsByName)
{
Script.Append(*FString::Printf(TEXT("window.ue['%s'] = %s;"), *Item.Key.ReplaceCharWithEscapedChar(), *ConvertObject(Item.Value)));
}
// Append postinit for each object we added.
for (auto& Item : PermanentUObjectsByName)
{
const FString& Name = Item.Key.ReplaceCharWithEscapedChar();
Script.Append(_GetObjectPostInitScript(Name, FString::Printf(TEXT("window.ue['%s']"), *Name)));
}
// Append postinit for window.ue
Script.Append(_GetObjectPostInitScript(TEXT("ue"), TEXT("window.ue")));
bLoaded = true;
ExecuteJavascript(Script);
}
FNativeInterfaceJSScripting::FNativeInterfaceJSScripting(bool bJSBindingToLoweringEnabled, TSharedRef<FNativeWebInterfaceBrowserProxy> Window)
: FWebInterfaceJSScripting(bJSBindingToLoweringEnabled)
, bLoaded(false)
{
WindowPtr = Window;
}