Files
UnrealEngineUWP/Engine/Source/Runtime/WebBrowser/Private/MobileJS/MobileJSScripting.h
Ben Marsh 7598af0532 Update copyright notices to 2019.
#rb none
#lockdown Nick.Penwarden

[CL 4662404 by Ben Marsh in Main branch]
2018-12-14 13:41:00 -05:00

68 lines
2.5 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#if PLATFORM_ANDROID || PLATFORM_IOS
#include "WebJSFunction.h"
#include "WebJSScripting.h"
typedef TSharedRef<class FMobileJSScripting> FMobileJSScriptingRef;
typedef TSharedPtr<class FMobileJSScripting> FMobileJSScriptingPtr;
/**
* Implements handling of bridging UObjects client side with JavaScript renderer side.
*/
class FMobileJSScripting
: public FWebJSScripting
, public TSharedFromThis<FMobileJSScripting>
{
public:
static const FString JSMessageTag;
static const FString JSMessageHandler;
FMobileJSScripting(bool bJSBindingToLoweringEnabled);
virtual void BindUObject(const FString& Name, UObject* Object, bool bIsPermanent = true) override;
virtual void UnbindUObject(const FString& Name, UObject* Object = nullptr, bool bIsPermanent = true) override;
void BindUObject(TSharedRef<class IWebBrowserWindow> InWindow, const FString& Name, UObject* Object, bool bIsPermanent = true);
void UnbindUObject(TSharedRef<class IWebBrowserWindow> InWindow, const FString& Name, UObject* Object = nullptr, bool bIsPermanent = true);
/**
* Called when a message was received from the browser process.
*
* @param Command The command sent from the browser.
* @param Params Command-specific data.
* @return true if the message was handled, else false.
*/
bool OnJsMessageReceived(const FString& Command, const TArray<FString>& Params, const FString& Origin);
FString ConvertStruct(UStruct* TypeInfo, const void* StructPtr);
FString ConvertObject(UObject* Object);
virtual void InvokeJSFunction(FGuid FunctionId, int32 ArgCount, FWebJSParam Arguments[], bool bIsError=false) override;
virtual void InvokeJSErrorResult(FGuid FunctionId, const FString& Error) override;
void PageLoaded(TSharedRef<class IWebBrowserWindow> InWindow); // Called on page load
void SetWindow(TSharedRef<class IWebBrowserWindow> InWindow);
private:
void InitializeScript(TSharedRef<class IWebBrowserWindow> InWindow);
void InvokeJSFunctionRaw(FGuid FunctionId, const FString& JSValue, bool bIsError=false);
bool IsValid()
{
return WindowPtr.Pin().IsValid();
}
void AddPermanentBind(const FString& Name, UObject* Object);
void RemovePermanentBind(const FString& Name, UObject* Object);
/** Message handling helpers */
bool HandleExecuteUObjectMethodMessage(const TArray<FString>& Params);
/** Pointer to the Mobile Browser for this window. */
TWeakPtr<class IWebBrowserWindow> WindowPtr;
};
#endif // PLATFORM_ANDROID || PLATFORM_IOS