mirror of https://github.com/axmolengine/axmol.git
34 lines
1.3 KiB
C++
34 lines
1.3 KiB
C++
#include "jsb_pluginx_extension_registration.h"
|
|
#include "jsb_pluginx_manual_iap.h"
|
|
|
|
static jsval anonEvaluate(JSContext *cx, JSObject *thisObj, const char* string) {
|
|
jsval out;
|
|
if (JS_EvaluateScript(cx, thisObj, string, strlen(string), "(string)", 1, &out) == JS_TRUE) {
|
|
return out;
|
|
}
|
|
return JSVAL_VOID;
|
|
}
|
|
|
|
void register_pluginx_js_extensions(JSContext* cx, JSObject* global)
|
|
{
|
|
// first, try to get the ns
|
|
jsval nsval;
|
|
JSObject *ns;
|
|
JS_GetProperty(cx, global, "plugin", &nsval);
|
|
if (nsval == JSVAL_VOID) {
|
|
ns = JS_NewObject(cx, NULL, NULL, NULL);
|
|
nsval = OBJECT_TO_JSVAL(ns);
|
|
JS_SetProperty(cx, global, "plugin", &nsval);
|
|
} else {
|
|
JS_ValueToObject(cx, nsval, &ns);
|
|
}
|
|
|
|
JSObject *tmpObj;
|
|
|
|
tmpObj = JSVAL_TO_OBJECT(anonEvaluate(cx, global, "(function () { return plugin.ProtocolIAP; })()"));
|
|
JS_DefineFunction(cx, tmpObj, "setResultListener", js_pluginx_ProtocolIAP_setResultListener, 1, JSPROP_READONLY | JSPROP_PERMANENT);
|
|
|
|
tmpObj = JSVAL_TO_OBJECT(anonEvaluate(cx, global, "(function () { return plugin.ProtocolIAPOnLine; })()"));
|
|
JS_DefineFunction(cx, tmpObj, "setLocalResultListener", js_pluginx_ProtocolIAPOnLine_setLocalResultListener, 1, JSPROP_READONLY | JSPROP_PERMANENT);
|
|
|
|
} |