2015-05-05 10:50:19 +08:00
|
|
|
/*
|
|
|
|
* Created by James Chen on 3/11/13.
|
2016-08-05 09:42:15 +08:00
|
|
|
* Copyright (c) 2013-2016 Chukong Technologies Inc.
|
2015-05-05 10:50:19 +08:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2016-03-20 21:53:44 +08:00
|
|
|
#include "scripting/js-bindings/manual/extension/jsb_cocos2dx_extension_manual.h"
|
2015-05-05 10:50:19 +08:00
|
|
|
#include "extensions/cocos-ext.h"
|
2016-03-20 21:53:44 +08:00
|
|
|
#include "scripting/js-bindings/manual/ScriptingCore.h"
|
|
|
|
#include "scripting/js-bindings/manual/cocos2d_specifics.hpp"
|
|
|
|
#include "scripting/js-bindings/auto/jsb_cocos2dx_auto.hpp"
|
2015-05-05 10:50:19 +08:00
|
|
|
#include <thread>
|
2016-11-04 11:58:48 +08:00
|
|
|
#include <chrono>
|
2015-05-05 10:50:19 +08:00
|
|
|
|
2016-04-18 15:09:21 +08:00
|
|
|
#include "base/CCDirector.h"
|
|
|
|
#include "base/CCScheduler.h"
|
|
|
|
#include "renderer/CCTextureCache.h"
|
|
|
|
#include "renderer/CCTextureCube.h"
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
USING_NS_CC_EXT;
|
|
|
|
|
|
|
|
|
|
|
|
class JSB_ScrollViewDelegate
|
|
|
|
: public Ref
|
|
|
|
, public ScrollViewDelegate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JSB_ScrollViewDelegate()
|
2015-11-25 14:32:19 +08:00
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
_JSDelegate = nullptr;
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void scrollViewDidScroll(ScrollView* view) override
|
|
|
|
{
|
|
|
|
js_proxy_t * p = jsb_get_native_proxy(view);
|
|
|
|
if (!p) return;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval arg = OBJECT_TO_JSVAL(p->obj);
|
2016-01-28 01:03:13 +08:00
|
|
|
ScriptingCore::getInstance()->executeFunctionWithOwner(OBJECT_TO_JSVAL(_JSDelegate), "scrollViewDidScroll", 1, &arg);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void scrollViewDidZoom(ScrollView* view) override
|
|
|
|
{
|
|
|
|
js_proxy_t * p = jsb_get_native_proxy(view);
|
|
|
|
if (!p) return;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval arg = OBJECT_TO_JSVAL(p->obj);
|
2016-01-28 01:03:13 +08:00
|
|
|
ScriptingCore::getInstance()->executeFunctionWithOwner(OBJECT_TO_JSVAL(_JSDelegate), "scrollViewDidZoom", 1, &arg);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-11-25 14:32:19 +08:00
|
|
|
void setJSDelegate(JS::HandleObject pJSDelegate)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
_JSDelegate = pJSDelegate;
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
private:
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::Heap<JSObject*> _JSDelegate;
|
2015-05-05 10:50:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool js_cocos2dx_CCScrollView_setDelegate(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
|
|
|
cocos2d::extension::ScrollView* cobj = (cocos2d::extension::ScrollView *)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( cobj, cx, false, "Invalid Native Object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (argc == 1)
|
|
|
|
{
|
|
|
|
// save the delegate
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject jsDelegate(cx, args.get(0).toObjectOrNull());
|
2015-12-16 17:06:56 +08:00
|
|
|
JSB_ScrollViewDelegate* nativeDelegate = new (std::nothrow) JSB_ScrollViewDelegate();
|
2015-05-05 10:50:19 +08:00
|
|
|
nativeDelegate->setJSDelegate(jsDelegate);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-26 19:33:35 +08:00
|
|
|
JS_SetProperty(cx, obj, "_delegate", args.get(0));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->setUserObject(nativeDelegate);
|
|
|
|
cobj->setDelegate(nativeDelegate);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
nativeDelegate->release();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
args.rval().setUndefined();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
JS_ReportError(cx, "wrong number of arguments: %d, was expecting %d", argc, 1);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define KEY_TABLEVIEW_DATA_SOURCE "TableViewDataSource"
|
|
|
|
#define KEY_TABLEVIEW_DELEGATE "TableViewDelegate"
|
|
|
|
|
|
|
|
class JSB_TableViewDelegate
|
|
|
|
: public Ref
|
|
|
|
, public TableViewDelegate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JSB_TableViewDelegate()
|
2015-11-25 14:32:19 +08:00
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
_JSDelegate = nullptr;
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void scrollViewDidScroll(ScrollView* view) override
|
|
|
|
{
|
|
|
|
callJSDelegate(view, "scrollViewDidScroll");
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void scrollViewDidZoom(ScrollView* view) override
|
|
|
|
{
|
|
|
|
callJSDelegate(view, "scrollViewDidZoom");
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void tableCellTouched(TableView* table, TableViewCell* cell) override
|
|
|
|
{
|
|
|
|
callJSDelegate(table, cell, "tableCellTouched");
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void tableCellHighlight(TableView* table, TableViewCell* cell) override
|
|
|
|
{
|
|
|
|
callJSDelegate(table, cell, "tableCellHighlight");
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void tableCellUnhighlight(TableView* table, TableViewCell* cell) override
|
|
|
|
{
|
|
|
|
callJSDelegate(table, cell, "tableCellUnhighlight");
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void tableCellWillRecycle(TableView* table, TableViewCell* cell) override
|
|
|
|
{
|
|
|
|
callJSDelegate(table, cell, "tableCellWillRecycle");
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-11-25 14:32:19 +08:00
|
|
|
void setJSDelegate(JS::HandleObject pJSDelegate)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
_JSDelegate = pJSDelegate;
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
private:
|
|
|
|
void callJSDelegate(ScrollView* view, std::string jsFunctionName)
|
|
|
|
{
|
|
|
|
js_proxy_t * p = jsb_get_native_proxy(view);
|
|
|
|
if (!p) return;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval arg = OBJECT_TO_JSVAL(p->obj);
|
2016-01-28 01:03:13 +08:00
|
|
|
ScriptingCore::getInstance()->executeFunctionWithOwner(OBJECT_TO_JSVAL(_JSDelegate), jsFunctionName.c_str(), 1, &arg);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
void callJSDelegate(TableView* table, TableViewCell* cell, std::string jsFunctionName)
|
|
|
|
{
|
|
|
|
js_proxy_t * p = jsb_get_native_proxy(table);
|
|
|
|
if (!p) return;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
js_proxy_t * pCellProxy = jsb_get_native_proxy(cell);
|
|
|
|
if (!pCellProxy) return;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval args[2];
|
|
|
|
args[0] = OBJECT_TO_JSVAL(p->obj);
|
|
|
|
args[1] = OBJECT_TO_JSVAL(pCellProxy->obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-28 01:03:13 +08:00
|
|
|
ScriptingCore::getInstance()->executeFunctionWithOwner(OBJECT_TO_JSVAL(_JSDelegate), jsFunctionName.c_str(), 2, args);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::Heap<JSObject*> _JSDelegate;
|
2015-05-05 10:50:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool js_cocos2dx_CCTableView_setDelegate(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
|
|
|
cocos2d::extension::TableView* cobj = (cocos2d::extension::TableView *)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( cobj, cx, false, "Invalid Native Object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (argc == 1)
|
|
|
|
{
|
|
|
|
// save the delegate
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject jsDelegate(cx, args.get(0).toObjectOrNull());
|
2015-12-16 17:06:56 +08:00
|
|
|
JSB_TableViewDelegate* nativeDelegate = new (std::nothrow) JSB_TableViewDelegate();
|
2015-05-05 10:50:19 +08:00
|
|
|
nativeDelegate->setJSDelegate(jsDelegate);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-26 19:33:35 +08:00
|
|
|
JS_SetProperty(cx, obj, "_delegate", args.get(0));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
auto userDict = static_cast<JSBinding::DictionaryRef*>(cobj->getUserObject());
|
2015-05-05 10:50:19 +08:00
|
|
|
if (NULL == userDict)
|
|
|
|
{
|
2016-08-19 16:28:47 +08:00
|
|
|
userDict = new (std::nothrow) JSBinding::DictionaryRef();
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->setUserObject(userDict);
|
|
|
|
userDict->release();
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
userDict->data.insert(KEY_TABLEVIEW_DELEGATE, nativeDelegate);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->setDelegate(nativeDelegate);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
nativeDelegate->release();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
args.rval().setUndefined();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
JS_ReportError(cx, "wrong number of arguments: %d, was expecting %d", argc, 1);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
class JSB_TableViewDataSource
|
|
|
|
: public Ref
|
|
|
|
, public TableViewDataSource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JSB_TableViewDataSource()
|
2015-11-25 14:32:19 +08:00
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
_JSTableViewDataSource = nullptr;
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual Size tableCellSizeForIndex(TableView *table, ssize_t idx) override
|
|
|
|
{
|
|
|
|
JSContext* cx = ScriptingCore::getInstance()->getGlobalContext();
|
|
|
|
JS::RootedValue ret(cx);
|
|
|
|
bool ok = callJSDelegate(table, idx, "tableCellSizeForIndex", &ret);
|
2016-04-18 15:09:21 +08:00
|
|
|
if (!ok)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
|
|
|
ok = callJSDelegate(table, "cellSizeForTable", &ret);
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
if (ok)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
|
|
|
JSB_AUTOCOMPARTMENT_WITH_GLOBAL_OBJCET
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
Size size;
|
|
|
|
bool isSucceed = jsval_to_ccsize(cx, ret, &size);
|
|
|
|
if (isSucceed) return size;
|
|
|
|
}
|
|
|
|
return Size::ZERO;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual TableViewCell* tableCellAtIndex(TableView *table, ssize_t idx) override
|
|
|
|
{
|
|
|
|
JSContext* cx = ScriptingCore::getInstance()->getGlobalContext();
|
|
|
|
JS::RootedValue ret(cx);
|
|
|
|
bool ok = callJSDelegate(table, idx, "tableCellAtIndex", &ret);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
cocos2d::extension::TableViewCell* arg0;
|
|
|
|
do {
|
|
|
|
js_proxy_t *proxy;
|
2015-11-27 10:19:13 +08:00
|
|
|
JS::RootedObject tmpObj(cx, ret.toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
proxy = jsb_get_js_proxy(tmpObj);
|
|
|
|
arg0 = (cocos2d::extension::TableViewCell*)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( arg0, cx, NULL, "Invalid Native Object");
|
|
|
|
} while (0);
|
|
|
|
return arg0;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual ssize_t numberOfCellsInTableView(TableView *table) override
|
|
|
|
{
|
|
|
|
JSContext* cx = ScriptingCore::getInstance()->getGlobalContext();
|
|
|
|
JS::RootedValue ret(cx);
|
|
|
|
bool ok = callJSDelegate(table, "numberOfCellsInTableView", &ret);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ssize_t count = 0;
|
|
|
|
bool isSucceed = jsval_to_ssize(cx, ret, &count);
|
|
|
|
if (isSucceed) return count;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-11-25 14:32:19 +08:00
|
|
|
void setTableViewDataSource(JS::HandleObject pJSSource)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
_JSTableViewDataSource = pJSSource;
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
private:
|
|
|
|
bool callJSDelegate(TableView* table, std::string jsFunctionName, JS::MutableHandleValue retVal)
|
|
|
|
{
|
|
|
|
js_proxy_t * p = jsb_get_native_proxy(table);
|
|
|
|
if (!p) return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSContext* cx = ScriptingCore::getInstance()->getGlobalContext();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
bool hasAction;
|
|
|
|
JS::RootedValue temp_retval(cx);
|
|
|
|
jsval dataVal = OBJECT_TO_JSVAL(p->obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::RootedObject obj(cx, _JSTableViewDataSource);
|
2015-05-05 10:50:19 +08:00
|
|
|
JSAutoCompartment ac(cx, obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (JS_HasProperty(cx, obj, jsFunctionName.c_str(), &hasAction) && hasAction)
|
|
|
|
{
|
|
|
|
if(!JS_GetProperty(cx, obj, jsFunctionName.c_str(), &temp_retval))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(temp_retval == JSVAL_VOID)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
JS_CallFunctionName(cx, obj, jsFunctionName.c_str(),
|
|
|
|
JS::HandleValueArray::fromMarkedLocation(1, &dataVal), retVal);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
bool callJSDelegate(TableView* table, ssize_t idx, std::string jsFunctionName, JS::MutableHandleValue retVal)
|
|
|
|
{
|
|
|
|
js_proxy_t * p = jsb_get_native_proxy(table);
|
|
|
|
if (!p) return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSContext* cx = ScriptingCore::getInstance()->getGlobalContext();
|
|
|
|
bool hasAction;
|
|
|
|
JS::RootedValue temp_retval(cx);
|
|
|
|
jsval dataVal[2];
|
|
|
|
dataVal[0] = OBJECT_TO_JSVAL(p->obj);
|
|
|
|
dataVal[1] = ssize_to_jsval(cx,idx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::RootedObject obj(cx, _JSTableViewDataSource);
|
2015-05-05 10:50:19 +08:00
|
|
|
JSAutoCompartment ac(cx, obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (JS_HasProperty(cx, obj, jsFunctionName.c_str(), &hasAction) && hasAction)
|
|
|
|
{
|
|
|
|
if(!JS_GetProperty(cx, obj, jsFunctionName.c_str(), &temp_retval))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if(temp_retval == JSVAL_VOID)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ret = JS_CallFunctionName(cx, obj, jsFunctionName.c_str(),
|
|
|
|
JS::HandleValueArray::fromMarkedLocation(2, dataVal), retVal);
|
|
|
|
return ret == true ? true : false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
private:
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::Heap<JSObject*> _JSTableViewDataSource;
|
2015-05-05 10:50:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool js_cocos2dx_CCTableView_setDataSource(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
|
|
|
cocos2d::extension::TableView* cobj = (cocos2d::extension::TableView *)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( cobj, cx, false, "Invalid Native Object");
|
|
|
|
if (argc == 1)
|
|
|
|
{
|
2015-12-16 17:06:56 +08:00
|
|
|
JSB_TableViewDataSource* pNativeSource = new (std::nothrow) JSB_TableViewDataSource();
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedObject jsdata(cx, args.get(0).toObjectOrNull());
|
|
|
|
pNativeSource->setTableViewDataSource(jsdata);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-26 19:33:35 +08:00
|
|
|
JS_SetProperty(cx, obj, "_dataSource", args.get(0));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
auto userDict = static_cast<JSBinding::DictionaryRef*>(cobj->getUserObject());
|
2015-05-05 10:50:19 +08:00
|
|
|
if (NULL == userDict)
|
|
|
|
{
|
2016-08-19 16:28:47 +08:00
|
|
|
userDict = new (std::nothrow) JSBinding::DictionaryRef();
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->setUserObject(userDict);
|
|
|
|
userDict->release();
|
|
|
|
}
|
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
userDict->data.insert(KEY_TABLEVIEW_DATA_SOURCE, pNativeSource);
|
2015-05-05 10:50:19 +08:00
|
|
|
|
|
|
|
cobj->setDataSource(pNativeSource);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
pNativeSource->release();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
args.rval().setUndefined();
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_ReportError(cx, "wrong number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool js_cocos2dx_CCTableView_create(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
|
|
|
bool ok = true;
|
|
|
|
if (argc == 3 || argc == 2)
|
|
|
|
{
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-12-16 17:06:56 +08:00
|
|
|
JSB_TableViewDataSource* pNativeSource = new (std::nothrow) JSB_TableViewDataSource();
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedObject jsdata(cx, args.get(0).toObjectOrNull());
|
|
|
|
pNativeSource->setTableViewDataSource(jsdata);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
cocos2d::Size arg1;
|
|
|
|
ok &= jsval_to_ccsize(cx, args.get(1), &arg1);
|
|
|
|
cocos2d::extension::TableView* ret = NULL;
|
2015-12-16 17:06:56 +08:00
|
|
|
ret = new (std::nothrow) TableView();
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->autorelease();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->setDataSource(pNativeSource);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval jsret;
|
|
|
|
do {
|
|
|
|
if (ret)
|
|
|
|
{
|
2015-12-17 21:55:10 +08:00
|
|
|
JS::RootedObject jsobj(cx, js_get_or_create_jsobject<cocos2d::extension::TableView>(cx, ret));
|
|
|
|
jsret = OBJECT_TO_JSVAL(jsobj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-26 19:33:35 +08:00
|
|
|
JS_SetProperty(cx, jsobj, "_dataSource", args.get(0));
|
2016-04-18 15:09:21 +08:00
|
|
|
}
|
2015-05-05 10:50:19 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
jsret = JSVAL_NULL;
|
|
|
|
}
|
|
|
|
} while (0);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (argc == 2)
|
|
|
|
{
|
|
|
|
ret->initWithViewSize(arg1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cocos2d::Node* arg2;
|
2016-04-18 15:09:21 +08:00
|
|
|
do
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
|
|
|
js_proxy_t *proxy;
|
2015-11-27 10:19:13 +08:00
|
|
|
JS::RootedObject tmpObj(cx, args.get(2).toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
proxy = jsb_get_js_proxy(tmpObj);
|
|
|
|
arg2 = (cocos2d::Node*)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( arg2, cx, false, "Invalid Native Object");
|
|
|
|
} while (0);
|
|
|
|
JSB_PRECONDITION2(ok, cx, false, "Error processing arguments");
|
|
|
|
ret->initWithViewSize(arg1, arg2);
|
|
|
|
}
|
|
|
|
ret->reloadData();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
JSBinding::DictionaryRef* userDict = new (std::nothrow) JSBinding::DictionaryRef();
|
|
|
|
userDict->data.insert(KEY_TABLEVIEW_DATA_SOURCE, pNativeSource);
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->setUserObject(userDict);
|
|
|
|
userDict->release();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
pNativeSource->release();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
args.rval().set(jsret);
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_ReportError(cx, "wrong number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool js_cocos2dx_CCTableView_init(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
|
|
|
cocos2d::extension::TableView* cobj = (cocos2d::extension::TableView *)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( cobj, cx, false, "js_cocos2dx_extension_TableView_dequeueCell : Invalid Native Object");
|
|
|
|
bool ok = true;
|
|
|
|
if (argc == 3 || argc == 2)
|
|
|
|
{
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-12-16 17:06:56 +08:00
|
|
|
JSB_TableViewDataSource* pNativeSource = new (std::nothrow) JSB_TableViewDataSource();
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedObject jsdata(cx, args.get(0).toObjectOrNull());
|
|
|
|
pNativeSource->setTableViewDataSource(jsdata);
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->setDataSource(pNativeSource);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-26 19:33:35 +08:00
|
|
|
JS_SetProperty(cx, obj, "_dataSource", args.get(0));
|
2015-05-05 10:50:19 +08:00
|
|
|
|
|
|
|
cocos2d::Size arg1;
|
|
|
|
ok &= jsval_to_ccsize(cx, args.get(1), &arg1);
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
{
|
|
|
|
cobj->initWithViewSize(arg1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cocos2d::Node* arg2;
|
2016-04-18 15:09:21 +08:00
|
|
|
do
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-11-27 10:19:13 +08:00
|
|
|
JS::RootedObject tmpObj(cx, args.get(2).toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
proxy = jsb_get_js_proxy(tmpObj);
|
|
|
|
arg2 = (cocos2d::Node*)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( arg2, cx, false, "Invalid Native Object");
|
|
|
|
} while (0);
|
|
|
|
JSB_PRECONDITION2(ok, cx, false, "Error processing arguments");
|
|
|
|
cobj->initWithViewSize(arg1, arg2);
|
|
|
|
}
|
|
|
|
cobj->reloadData();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
JSBinding::DictionaryRef* userDict = new (std::nothrow) JSBinding::DictionaryRef();
|
|
|
|
userDict->data.insert(KEY_TABLEVIEW_DATA_SOURCE, pNativeSource);
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->setUserObject(userDict);
|
|
|
|
userDict->release();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
pNativeSource->release();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
args.rval().setUndefined();
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_ReportError(cx, "wrong number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class JSB_ControlButtonTarget : public Ref
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JSB_ControlButtonTarget()
|
2015-08-06 17:20:04 +08:00
|
|
|
: _callback(nullptr),
|
2015-11-25 14:32:19 +08:00
|
|
|
_type(Control::EventType::TOUCH_DOWN)
|
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
_jsFunc = nullptr;
|
2015-11-25 14:32:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual ~JSB_ControlButtonTarget()
|
|
|
|
{
|
|
|
|
CCLOGINFO("In the destruction of JSB_ControlButtonTarget ...");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-08-06 17:20:04 +08:00
|
|
|
if (_callback != nullptr)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-08-06 17:20:04 +08:00
|
|
|
CC_SAFE_DELETE(_callback);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto iter = _jsNativeTargetMap.begin(); iter != _jsNativeTargetMap.end(); ++iter)
|
|
|
|
{
|
|
|
|
if (this == iter->second)
|
|
|
|
{
|
|
|
|
_jsNativeTargetMap.erase(iter);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
virtual void onEvent(Ref *controlButton, Control::EventType event)
|
|
|
|
{
|
2015-12-16 04:27:53 +08:00
|
|
|
js_proxy_t* p = jsb_get_native_proxy(controlButton);
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!p)
|
|
|
|
{
|
2015-12-17 21:55:10 +08:00
|
|
|
log("Failed to get proxy for control button %p", controlButton);
|
2015-05-05 10:50:19 +08:00
|
|
|
return;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-08-06 17:20:04 +08:00
|
|
|
JSContext* cx = ScriptingCore::getInstance()->getGlobalContext();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval dataVal[2];
|
|
|
|
dataVal[0] = OBJECT_TO_JSVAL(p->obj);
|
|
|
|
int arg1 = (int)event;
|
|
|
|
dataVal[1] = INT_TO_JSVAL(arg1);
|
|
|
|
JS::RootedValue jsRet(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-08-06 17:20:04 +08:00
|
|
|
_callback->invoke(2, dataVal, &jsRet);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-11-25 14:32:19 +08:00
|
|
|
void setJSCallback(JS::HandleValue jsFunc, JS::HandleObject jsTarget)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-08-06 17:20:04 +08:00
|
|
|
if (_callback != nullptr)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-08-06 17:20:04 +08:00
|
|
|
CC_SAFE_DELETE(_callback);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
JSContext* cx = ScriptingCore::getInstance()->getGlobalContext();
|
2015-12-16 17:06:56 +08:00
|
|
|
_callback = new (std::nothrow) JSFunctionWrapper(cx, jsTarget, jsFunc);
|
2016-01-28 01:03:13 +08:00
|
|
|
_jsFunc = jsFunc.toObjectOrNull();
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
void setEventType(Control::EventType type)
|
|
|
|
{
|
|
|
|
_type = type;
|
|
|
|
}
|
|
|
|
public:
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
static std::multimap<JSObject*, JSB_ControlButtonTarget*> _jsNativeTargetMap;
|
2015-08-06 17:20:04 +08:00
|
|
|
JSFunctionWrapper *_callback;
|
2015-05-05 10:50:19 +08:00
|
|
|
Control::EventType _type;
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::Heap<JSObject*> _jsFunc;
|
2015-05-05 10:50:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
std::multimap<JSObject*, JSB_ControlButtonTarget*> JSB_ControlButtonTarget::_jsNativeTargetMap;
|
|
|
|
|
|
|
|
static bool js_cocos2dx_CCControl_addTargetWithActionForControlEvents(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
|
|
|
cocos2d::extension::Control* cobj = (cocos2d::extension::Control *)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( cobj, cx, false, "Invalid Native Object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
bool ok = true;
|
|
|
|
if (argc == 3)
|
|
|
|
{
|
|
|
|
JSObject* jsDelegate = args.get(0).toObjectOrNull();
|
|
|
|
JSObject* jsFunc = args.get(1).toObjectOrNull();
|
|
|
|
Control::EventType arg2;
|
|
|
|
ok &= jsval_to_int32(cx, args.get(2), (int32_t *)&arg2);
|
|
|
|
JSB_PRECONDITION2(ok, cx, false, "Error processing control event");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// Check whether the target already exists.
|
|
|
|
auto range = JSB_ControlButtonTarget::_jsNativeTargetMap.equal_range(jsDelegate);
|
|
|
|
for (auto it = range.first; it != range.second; ++it)
|
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
if (it->second->_jsFunc.get() == jsFunc && arg2 == it->second->_type)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
|
|
|
// Return true directly.
|
|
|
|
args.rval().setUndefined();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// save the delegate
|
2015-12-16 17:06:56 +08:00
|
|
|
JSB_ControlButtonTarget* nativeDelegate = new (std::nothrow) JSB_ControlButtonTarget();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedObject jscb(cx, jsDelegate);
|
|
|
|
nativeDelegate->setJSCallback(args.get(1), jscb);
|
2015-05-05 10:50:19 +08:00
|
|
|
nativeDelegate->setEventType(arg2);
|
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
auto nativeDelegateArray = static_cast<JSBinding::ArrayRef*>(cobj->getUserObject());
|
2015-05-05 10:50:19 +08:00
|
|
|
if (nullptr == nativeDelegateArray)
|
|
|
|
{
|
2016-08-19 16:28:47 +08:00
|
|
|
nativeDelegateArray = new (std::nothrow) JSBinding::ArrayRef();
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->setUserObject(nativeDelegateArray); // The reference of nativeDelegateArray is added to 2
|
|
|
|
nativeDelegateArray->release(); // Release nativeDelegateArray to make the reference to 1
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
nativeDelegateArray->data.pushBack(nativeDelegate); // The reference of nativeDelegate is added to 2
|
2015-05-05 10:50:19 +08:00
|
|
|
nativeDelegate->release(); // Release nativeDelegate to make the reference to 1
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-26 19:33:35 +08:00
|
|
|
js_add_object_reference(args.thisv(), args.get(1));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->addTargetWithActionForControlEvents(nativeDelegate, cccontrol_selector(JSB_ControlButtonTarget::onEvent), arg2);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_ControlButtonTarget::_jsNativeTargetMap.insert(std::make_pair(jsDelegate, nativeDelegate));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
args.rval().setUndefined();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
JS_ReportError(cx, "wrong number of arguments: %d, was expecting %d", argc, 3);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool js_cocos2dx_CCControl_removeTargetWithActionForControlEvents(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
|
|
|
cocos2d::extension::Control* cobj = (cocos2d::extension::Control *)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( cobj, cx, false, "Invalid Native Object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
bool ok = true;
|
|
|
|
if (argc == 3)
|
|
|
|
{
|
|
|
|
Control::EventType arg2;
|
|
|
|
ok &= jsval_to_int32(cx, args.get(2), (int32_t *)&arg2);
|
|
|
|
JSB_PRECONDITION2(ok, cx, false, "Error processing control event");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
obj = args.get(0).toObjectOrNull();
|
|
|
|
JSObject* jsFunc = args.get(1).toObjectOrNull();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_ControlButtonTarget* nativeTargetToRemoved = nullptr;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
auto range = JSB_ControlButtonTarget::_jsNativeTargetMap.equal_range(obj);
|
|
|
|
for (auto it = range.first; it != range.second; ++it)
|
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
if (it->second->_jsFunc.get() == jsFunc && arg2 == it->second->_type)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
|
|
|
nativeTargetToRemoved = it->second;
|
|
|
|
JSB_ControlButtonTarget::_jsNativeTargetMap.erase(it);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-26 19:33:35 +08:00
|
|
|
js_remove_object_reference(args.thisv(), args.get(1));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
cobj->removeTargetWithActionForControlEvents(nativeTargetToRemoved, cccontrol_selector(JSB_ControlButtonTarget::onEvent), arg2);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
JS_ReportError(cx, "wrong number of arguments: %d, was expecting %d", argc, 3);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-17 21:55:10 +08:00
|
|
|
bool js_cocos2dx_extension_EventListenerAssetsManagerEx_init(JSContext *cx, uint32_t argc, jsval *vp)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-12-17 21:55:10 +08:00
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
2015-05-05 10:50:19 +08:00
|
|
|
bool ok = true;
|
2015-12-17 21:55:10 +08:00
|
|
|
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
2015-12-17 21:55:10 +08:00
|
|
|
cocos2d::extension::EventListenerAssetsManagerEx* cobj = (cocos2d::extension::EventListenerAssetsManagerEx *)(proxy ? proxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( cobj, cx, false, "js_cocos2dx_extension_EventListenerAssetsManagerEx_init : Invalid Native Object");
|
|
|
|
if (argc == 2) {
|
|
|
|
const cocos2d::extension::AssetsManagerEx* arg0 = nullptr;
|
|
|
|
std::function<void (cocos2d::extension::EventAssetsManagerEx *)> arg1;
|
2015-05-05 10:50:19 +08:00
|
|
|
do {
|
2015-12-17 21:55:10 +08:00
|
|
|
if (args.get(0).isNull()) { arg0 = nullptr; break; }
|
|
|
|
if (!args.get(0).isObject()) { ok = false; break; }
|
|
|
|
js_proxy_t *jsProxy;
|
|
|
|
JS::RootedObject tmpObj(cx, args.get(0).toObjectOrNull());
|
|
|
|
jsProxy = jsb_get_js_proxy(tmpObj);
|
|
|
|
arg0 = (const cocos2d::extension::AssetsManagerEx*)(jsProxy ? jsProxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( arg0, cx, false, "Invalid Native Object");
|
|
|
|
} while (0);
|
|
|
|
do {
|
|
|
|
if(JS_TypeOfValue(cx, args.get(1)) == JSTYPE_FUNCTION)
|
|
|
|
{
|
|
|
|
JS::RootedObject jstarget(cx, args.thisv().toObjectOrNull());
|
|
|
|
std::shared_ptr<JSFunctionWrapper> func(new JSFunctionWrapper(cx, jstarget, args.get(1)));
|
|
|
|
auto lambda = [=](cocos2d::extension::EventAssetsManagerEx* larg0) -> void {
|
|
|
|
JSB_AUTOCOMPARTMENT_WITH_GLOBAL_OBJCET
|
|
|
|
jsval largv[1];
|
|
|
|
do {
|
|
|
|
if (larg0) {
|
|
|
|
js_type_class_t* typeClass = js_get_type_from_native<cocos2d::extension::EventAssetsManagerEx>(larg0);
|
|
|
|
largv[0] = OBJECT_TO_JSVAL(jsb_get_or_create_weak_jsobject(cx, larg0, typeClass, "cocos2d::extension::EventAssetsManagerEx"));
|
|
|
|
} else {
|
|
|
|
largv[0] = JSVAL_NULL;
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
JS::RootedValue rval(cx);
|
|
|
|
bool succeed = func->invoke(1, &largv[0], &rval);
|
|
|
|
if (!succeed && JS_IsExceptionPending(cx)) {
|
|
|
|
JS_ReportPendingException(cx);
|
|
|
|
}
|
|
|
|
removeJSObject(cx, larg0);
|
|
|
|
};
|
|
|
|
arg1 = lambda;
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2015-12-17 21:55:10 +08:00
|
|
|
else
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-12-17 21:55:10 +08:00
|
|
|
arg1 = nullptr;
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2015-12-17 21:55:10 +08:00
|
|
|
} while(0)
|
|
|
|
;
|
|
|
|
JSB_PRECONDITION2(ok, cx, false, "js_cocos2dx_extension_EventListenerAssetsManagerEx_init : Error processing arguments");
|
|
|
|
bool ret = cobj->init(arg0, arg1);
|
|
|
|
jsval jsret = JSVAL_NULL;
|
|
|
|
jsret = BOOLEAN_TO_JSVAL(ret);
|
|
|
|
args.rval().set(jsret);
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-12-17 21:55:10 +08:00
|
|
|
JS_ReportError(cx, "js_cocos2dx_extension_EventListenerAssetsManagerEx_init : wrong number of arguments: %d, was expecting %d", argc, 2);
|
2015-05-05 10:50:19 +08:00
|
|
|
return false;
|
|
|
|
}
|
2015-12-17 21:55:10 +08:00
|
|
|
bool js_cocos2dx_extension_EventListenerAssetsManagerEx_create(JSContext *cx, uint32_t argc, jsval *vp)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-12-17 21:55:10 +08:00
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
|
|
|
bool ok = true;
|
|
|
|
if (argc == 2) {
|
|
|
|
cocos2d::extension::AssetsManagerEx* arg0 = nullptr;
|
|
|
|
std::function<void (cocos2d::extension::EventAssetsManagerEx *)> arg1;
|
2015-05-05 10:50:19 +08:00
|
|
|
do {
|
2015-12-17 21:55:10 +08:00
|
|
|
if (args.get(0).isNull()) { arg0 = nullptr; break; }
|
|
|
|
if (!args.get(0).isObject()) { ok = false; break; }
|
|
|
|
js_proxy_t *jsProxy;
|
|
|
|
JS::RootedObject tmpObj(cx, args.get(0).toObjectOrNull());
|
|
|
|
jsProxy = jsb_get_js_proxy(tmpObj);
|
|
|
|
arg0 = (cocos2d::extension::AssetsManagerEx*)(jsProxy ? jsProxy->ptr : NULL);
|
|
|
|
JSB_PRECONDITION2( arg0, cx, false, "Invalid Native Object");
|
2015-05-05 10:50:19 +08:00
|
|
|
} while (0);
|
2015-12-17 21:55:10 +08:00
|
|
|
do {
|
|
|
|
if(JS_TypeOfValue(cx, args.get(1)) == JSTYPE_FUNCTION)
|
|
|
|
{
|
|
|
|
JS::RootedObject jstarget(cx, args.thisv().toObjectOrNull());
|
|
|
|
std::shared_ptr<JSFunctionWrapper> func(new JSFunctionWrapper(cx, jstarget, args.get(1)));
|
|
|
|
auto lambda = [=](cocos2d::extension::EventAssetsManagerEx* larg0) -> void {
|
|
|
|
JSB_AUTOCOMPARTMENT_WITH_GLOBAL_OBJCET
|
|
|
|
jsval largv[1];
|
|
|
|
do {
|
|
|
|
if (larg0) {
|
|
|
|
js_type_class_t* typeClass = js_get_type_from_native<cocos2d::extension::EventAssetsManagerEx>(larg0);
|
|
|
|
largv[0] = OBJECT_TO_JSVAL(jsb_get_or_create_weak_jsobject(cx, larg0, typeClass, "cocos2d::extension::EventAssetsManagerEx"));
|
|
|
|
} else {
|
|
|
|
largv[0] = JSVAL_NULL;
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
JS::RootedValue rval(cx);
|
|
|
|
bool succeed = func->invoke(1, &largv[0], &rval);
|
|
|
|
if (!succeed && JS_IsExceptionPending(cx)) {
|
|
|
|
JS_ReportPendingException(cx);
|
|
|
|
}
|
|
|
|
removeJSObject(cx, larg0);
|
|
|
|
};
|
|
|
|
arg1 = lambda;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
arg1 = nullptr;
|
|
|
|
}
|
|
|
|
} while(0)
|
|
|
|
;
|
|
|
|
JSB_PRECONDITION2(ok, cx, false, "js_cocos2dx_extension_EventListenerAssetsManagerEx_create : Error processing arguments");
|
|
|
|
cocos2d::extension::EventListenerAssetsManagerEx* ret = cocos2d::extension::EventListenerAssetsManagerEx::create(arg0, arg1);
|
|
|
|
jsval jsret = JSVAL_NULL;
|
|
|
|
if (ret) {
|
|
|
|
JS::RootedObject jsobj(cx, js_get_or_create_jsobject<cocos2d::extension::EventListenerAssetsManagerEx>(cx, ret));
|
|
|
|
jsret = OBJECT_TO_JSVAL(jsobj);
|
|
|
|
} else {
|
|
|
|
jsret = JSVAL_NULL;
|
|
|
|
}
|
|
|
|
args.rval().set(jsret);
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
2015-12-17 21:55:10 +08:00
|
|
|
JS_ReportError(cx, "js_cocos2dx_extension_EventListenerAssetsManagerEx_create : wrong number of arguments");
|
2015-05-05 10:50:19 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-06-02 10:08:13 +08:00
|
|
|
__JSDownloaderDelegator::__JSDownloaderDelegator(JSContext *cx, JS::HandleObject obj, const std::string &url, JS::HandleObject callback)
|
2015-05-05 10:50:19 +08:00
|
|
|
: _cx(cx)
|
|
|
|
, _url(url)
|
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
_obj = obj;
|
|
|
|
_jsCallback = callback;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-26 19:33:35 +08:00
|
|
|
JS::RootedValue target(cx, OBJECT_TO_JSVAL(obj));
|
|
|
|
if (!target.isNullOrUndefined())
|
|
|
|
{
|
|
|
|
js_add_object_root(target);
|
|
|
|
}
|
|
|
|
target.set(OBJECT_TO_JSVAL(callback));
|
|
|
|
if (!target.isNullOrUndefined())
|
|
|
|
{
|
|
|
|
js_add_object_root(target);
|
|
|
|
}
|
2015-06-02 10:08:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
__JSDownloaderDelegator::~__JSDownloaderDelegator()
|
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::RootedValue target(_cx, OBJECT_TO_JSVAL(_obj));
|
2016-01-26 19:33:35 +08:00
|
|
|
if (!target.isNullOrUndefined())
|
|
|
|
{
|
|
|
|
js_remove_object_root(target);
|
|
|
|
}
|
2016-01-28 01:03:13 +08:00
|
|
|
target.set(OBJECT_TO_JSVAL(_jsCallback));
|
2016-01-26 19:33:35 +08:00
|
|
|
if (!target.isNullOrUndefined())
|
|
|
|
{
|
|
|
|
js_remove_object_root(target);
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-09-15 18:30:45 +08:00
|
|
|
_downloader->onTaskError = (nullptr);
|
|
|
|
_downloader->onDataTaskSuccess = (nullptr);
|
2015-06-02 10:08:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
__JSDownloaderDelegator *__JSDownloaderDelegator::create(JSContext *cx, JS::HandleObject obj, const std::string &url, JS::HandleObject callback)
|
|
|
|
{
|
|
|
|
__JSDownloaderDelegator *delegate = new (std::nothrow) __JSDownloaderDelegator(cx, obj, url, callback);
|
|
|
|
delegate->autorelease();
|
|
|
|
return delegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __JSDownloaderDelegator::startDownload()
|
|
|
|
{
|
2015-09-15 18:30:45 +08:00
|
|
|
if (auto texture = Director::getInstance()->getTextureCache()->getTextureForKey(_url))
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-09-15 18:30:45 +08:00
|
|
|
onSuccess(texture);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-13 15:14:10 +08:00
|
|
|
_downloader = std::make_shared<cocos2d::network::Downloader>();
|
2015-09-15 18:30:45 +08:00
|
|
|
// _downloader->setConnectionTimeout(8);
|
|
|
|
_downloader->onTaskError = [this](const cocos2d::network::DownloadTask& task,
|
|
|
|
int errorCode,
|
|
|
|
int errorCodeInternal,
|
|
|
|
const std::string& errorStr)
|
|
|
|
{
|
|
|
|
this->onError();
|
|
|
|
};
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-09-15 18:30:45 +08:00
|
|
|
_downloader->onDataTaskSuccess = [this](const cocos2d::network::DownloadTask& task,
|
|
|
|
std::vector<unsigned char>& data)
|
|
|
|
{
|
2015-12-04 17:38:59 +08:00
|
|
|
Image* img = new (std::nothrow) Image();
|
2015-09-15 18:30:45 +08:00
|
|
|
Texture2D *tex = nullptr;
|
|
|
|
do
|
|
|
|
{
|
2015-12-04 17:38:59 +08:00
|
|
|
if (false == img->initWithImageData(data.data(), data.size()))
|
2015-09-15 18:30:45 +08:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2015-12-04 17:38:59 +08:00
|
|
|
tex = Director::getInstance()->getTextureCache()->addImage(img, _url);
|
2015-09-15 18:30:45 +08:00
|
|
|
} while (0);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-12-04 17:38:59 +08:00
|
|
|
CC_SAFE_RELEASE(img);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-09-15 18:30:45 +08:00
|
|
|
if (tex)
|
|
|
|
{
|
|
|
|
this->onSuccess(tex);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->onError();
|
|
|
|
}
|
|
|
|
};
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-09-15 18:30:45 +08:00
|
|
|
_downloader->createDownloadDataTask(_url);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-02 10:08:13 +08:00
|
|
|
void __JSDownloaderDelegator::download()
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-06-02 10:08:13 +08:00
|
|
|
retain();
|
|
|
|
startDownload();
|
|
|
|
}
|
|
|
|
|
|
|
|
void __JSDownloaderDelegator::downloadAsync()
|
|
|
|
{
|
|
|
|
retain();
|
|
|
|
auto t = std::thread(&__JSDownloaderDelegator::startDownload, this);
|
|
|
|
t.detach();
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
|
2015-09-15 18:30:45 +08:00
|
|
|
void __JSDownloaderDelegator::onError()
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-06-02 10:08:13 +08:00
|
|
|
Director::getInstance()->getScheduler()->performFunctionInCocosThread([this]
|
|
|
|
{
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::RootedValue callback(_cx, OBJECT_TO_JSVAL(_jsCallback));
|
2015-06-02 10:08:13 +08:00
|
|
|
if (!callback.isNull()) {
|
|
|
|
JS::RootedObject global(_cx, ScriptingCore::getInstance()->getGlobalObject());
|
|
|
|
JSAutoCompartment ac(_cx, global);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-02 10:08:13 +08:00
|
|
|
jsval succeed = BOOLEAN_TO_JSVAL(false);
|
|
|
|
JS::RootedValue retval(_cx);
|
|
|
|
JS_CallFunctionValue(_cx, global, callback, JS::HandleValueArray::fromMarkedLocation(1, &succeed), &retval);
|
|
|
|
}
|
|
|
|
release();
|
|
|
|
});
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
|
2015-09-15 18:30:45 +08:00
|
|
|
void __JSDownloaderDelegator::onSuccess(Texture2D *tex)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-09-15 18:30:45 +08:00
|
|
|
CCASSERT(tex, "__JSDownloaderDelegator::onSuccess must make sure tex not null!");
|
|
|
|
//Director::getInstance()->getScheduler()->performFunctionInCocosThread([this, tex]
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-06-02 10:08:13 +08:00
|
|
|
JS::RootedObject global(_cx, ScriptingCore::getInstance()->getGlobalObject());
|
|
|
|
JSAutoCompartment ac(_cx, global);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-02 10:08:13 +08:00
|
|
|
jsval valArr[2];
|
|
|
|
if (tex)
|
|
|
|
{
|
|
|
|
valArr[0] = BOOLEAN_TO_JSVAL(true);
|
2015-12-17 21:55:10 +08:00
|
|
|
JS::RootedObject jsobj(_cx, js_get_or_create_jsobject<Texture2D>(_cx, tex));
|
|
|
|
valArr[1] = OBJECT_TO_JSVAL(jsobj);
|
2015-06-02 10:08:13 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
valArr[0] = BOOLEAN_TO_JSVAL(false);
|
|
|
|
valArr[1] = JSVAL_NULL;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-01-28 01:03:13 +08:00
|
|
|
JS::RootedValue callback(_cx, OBJECT_TO_JSVAL(_jsCallback));
|
2015-06-02 10:08:13 +08:00
|
|
|
if (!callback.isNull())
|
|
|
|
{
|
|
|
|
JS::RootedValue retval(_cx);
|
|
|
|
JS_CallFunctionValue(_cx, global, callback, JS::HandleValueArray::fromMarkedLocation(2, valArr), &retval);
|
|
|
|
}
|
|
|
|
release();
|
2015-09-15 18:30:45 +08:00
|
|
|
}//);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// jsb.loadRemoteImg(url, function(succeed, result) {})
|
|
|
|
bool js_load_remote_image(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
2015-11-25 14:32:19 +08:00
|
|
|
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
2015-06-02 10:08:13 +08:00
|
|
|
if (argc == 2)
|
|
|
|
{
|
2015-05-05 10:50:19 +08:00
|
|
|
std::string url;
|
|
|
|
bool ok = jsval_to_std_string(cx, args.get(0), &url);
|
2015-06-02 10:08:13 +08:00
|
|
|
JSB_PRECONDITION2(ok, cx, false, "js_load_remote_image : Error processing arguments");
|
|
|
|
JS::RootedObject callback(cx, args.get(1).toObjectOrNull());
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-02 10:08:13 +08:00
|
|
|
__JSDownloaderDelegator *delegate = __JSDownloaderDelegator::create(cx, obj, url, callback);
|
|
|
|
delegate->downloadAsync();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
args.rval().setUndefined();
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_ReportError(cx, "js_load_remote_image : wrong number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-04 11:58:48 +08:00
|
|
|
using namespace std::chrono;
|
|
|
|
|
|
|
|
bool js_performance_now(JSContext *cx, uint32_t argc, jsval *vp)
|
|
|
|
{
|
|
|
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
|
|
|
auto now = steady_clock::now();
|
|
|
|
auto micro = duration_cast<microseconds>(now - ScriptingCore::getInstance()->getEngineStartTime()).count();
|
|
|
|
args.rval().set(DOUBLE_TO_JSVAL((double)micro * 0.001));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
extern JSObject* jsb_cocos2d_extension_ScrollView_prototype;
|
|
|
|
extern JSObject* jsb_cocos2d_extension_TableView_prototype;
|
|
|
|
extern JSObject* jsb_cocos2d_extension_Control_prototype;
|
|
|
|
extern JSObject* jsb_cocos2d_extension_AssetsManagerEx_prototype;
|
2015-12-17 21:55:10 +08:00
|
|
|
extern JSObject* jsb_cocos2d_extension_EventListenerAssetsManagerEx_prototype;
|
2015-05-05 10:50:19 +08:00
|
|
|
extern JSObject* jsb_cocos2d_extension_Manifest_prototype;
|
|
|
|
|
|
|
|
void register_all_cocos2dx_extension_manual(JSContext* cx, JS::HandleObject global)
|
|
|
|
{
|
|
|
|
JS::RootedObject ccObj(cx);
|
2015-12-17 21:55:10 +08:00
|
|
|
JS::RootedObject jsbObj(cx);
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedValue tmpVal(cx);
|
|
|
|
JS::RootedObject tmpObj(cx);
|
|
|
|
get_or_create_js_obj(cx, global, "cc", &ccObj);
|
2015-12-17 21:55:10 +08:00
|
|
|
get_or_create_js_obj(cx, global, "jsb", &jsbObj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-11-27 01:26:54 +08:00
|
|
|
tmpObj.set(jsb_cocos2d_extension_AssetsManagerEx_prototype);
|
|
|
|
JS_DefineFunction(cx, tmpObj, "retain", js_cocos2dx_retain, 0, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
JS_DefineFunction(cx, tmpObj, "release", js_cocos2dx_release, 0, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
tmpObj.set(jsb_cocos2d_extension_Manifest_prototype);
|
|
|
|
JS_DefineFunction(cx, tmpObj, "retain", js_cocos2dx_retain, 0, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
JS_DefineFunction(cx, tmpObj, "release", js_cocos2dx_release, 0, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-12-17 21:55:10 +08:00
|
|
|
JS_GetProperty(cx, ccObj, "EventListenerAssetsManager", &tmpVal);
|
|
|
|
tmpObj.set(tmpVal.toObjectOrNull());
|
|
|
|
JS_DefineFunction(cx, tmpObj, "create", js_cocos2dx_extension_EventListenerAssetsManagerEx_create, 2, JSPROP_READONLY | JSPROP_PERMANENT);
|
|
|
|
tmpObj.set(jsb_cocos2d_extension_EventListenerAssetsManagerEx_prototype);
|
|
|
|
JS_DefineFunction(cx, tmpObj, "init", js_cocos2dx_extension_EventListenerAssetsManagerEx_init, 2, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-11-27 01:26:54 +08:00
|
|
|
tmpObj.set(jsb_cocos2d_extension_ScrollView_prototype);
|
|
|
|
JS_DefineFunction(cx, tmpObj, "setDelegate", js_cocos2dx_CCScrollView_setDelegate, 1, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject tableview(cx, jsb_cocos2d_extension_TableView_prototype);
|
|
|
|
JS_DefineFunction(cx, tableview, "setDelegate", js_cocos2dx_CCTableView_setDelegate, 1, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
JS_DefineFunction(cx, tableview, "setDataSource", js_cocos2dx_CCTableView_setDataSource, 1, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
JS_DefineFunction(cx, tableview, "_init", js_cocos2dx_CCTableView_init, 1, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
JS::RootedObject control(cx, jsb_cocos2d_extension_Control_prototype);
|
|
|
|
JS_DefineFunction(cx, control, "addTargetWithActionForControlEvents", js_cocos2dx_CCControl_addTargetWithActionForControlEvents, 3, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
JS_DefineFunction(cx, control, "removeTargetWithActionForControlEvents", js_cocos2dx_CCControl_removeTargetWithActionForControlEvents, 3, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_GetProperty(cx, ccObj, "TableView", &tmpVal);
|
2015-11-27 01:26:54 +08:00
|
|
|
tmpObj.set(tmpVal.toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_DefineFunction(cx, tmpObj, "create", js_cocos2dx_CCTableView_create, 3, JSPROP_READONLY | JSPROP_PERMANENT);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_DefineFunction(cx, jsbObj, "loadRemoteImg", js_load_remote_image, 2, JSPROP_READONLY | JSPROP_PERMANENT);
|
2016-11-04 11:58:48 +08:00
|
|
|
|
|
|
|
JS::RootedObject performance(cx);
|
|
|
|
get_or_create_js_obj(cx, global, "performance", &performance);
|
|
|
|
JS_DefineFunction(cx, performance, "now", js_performance_now, 0, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2016-04-18 15:09:21 +08:00
|
|
|
}
|