2015-05-05 10:50:19 +08:00
|
|
|
/*
|
|
|
|
* Created by Rohan Kuruvilla
|
|
|
|
* Copyright (c) 2012 Zynga Inc.
|
2018-01-29 16:25:32 +08:00
|
|
|
* Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
* Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
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/js_manual_conversions.h"
|
2016-04-18 15:09:21 +08:00
|
|
|
|
|
|
|
#include "base/ccUTF8.h"
|
|
|
|
#include "deprecated/CCBool.h"
|
|
|
|
#include "deprecated/CCDictionary.h"
|
|
|
|
#include "deprecated/CCDouble.h"
|
|
|
|
#include "deprecated/CCFloat.h"
|
|
|
|
#include "deprecated/CCInteger.h"
|
|
|
|
#include "deprecated/CCString.h"
|
2015-12-04 10:43:39 +08:00
|
|
|
#include "editor-support/cocostudio/CocosStudioExtension.h"
|
2017-03-15 16:09:02 +08:00
|
|
|
#include "extensions/assets-manager/Manifest.h"
|
2016-04-18 15:09:21 +08:00
|
|
|
#include "math/TransformUtils.h"
|
|
|
|
#include "scripting/js-bindings/manual/ScriptingCore.h"
|
|
|
|
#include "scripting/js-bindings/manual/cocos2d_specifics.hpp"
|
|
|
|
#include "scripting/js-bindings/manual/js_bindings_config.h"
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
class StringRef : public cocos2d::Ref
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(StringRef);
|
|
|
|
|
|
|
|
virtual bool init() { return true; }
|
|
|
|
|
|
|
|
std::string data;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// JSStringWrapper
|
|
|
|
JSStringWrapper::JSStringWrapper()
|
|
|
|
: _buffer(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
JSStringWrapper::JSStringWrapper(JSString* str, JSContext* cx/* = NULL*/)
|
|
|
|
: _buffer(nullptr)
|
|
|
|
{
|
|
|
|
set(str, cx);
|
|
|
|
}
|
|
|
|
|
|
|
|
JSStringWrapper::JSStringWrapper(jsval val, JSContext* cx/* = NULL*/)
|
|
|
|
: _buffer(nullptr)
|
|
|
|
{
|
|
|
|
set(val, cx);
|
|
|
|
}
|
|
|
|
|
|
|
|
JSStringWrapper::~JSStringWrapper()
|
|
|
|
{
|
|
|
|
JS_free(ScriptingCore::getInstance()->getGlobalContext(), (void*)_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void JSStringWrapper::set(jsval val, JSContext* cx)
|
|
|
|
{
|
|
|
|
if (val.isString())
|
|
|
|
{
|
|
|
|
this->set(val.toString(), cx);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE_ARRAY(_buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void JSStringWrapper::set(JSString* str, JSContext* cx)
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE_ARRAY(_buffer);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!cx)
|
|
|
|
{
|
|
|
|
cx = ScriptingCore::getInstance()->getGlobalContext();
|
|
|
|
}
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedString jsstr(cx, str);
|
|
|
|
_buffer = JS_EncodeStringToUTF8(cx, jsstr);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* JSStringWrapper::get()
|
|
|
|
{
|
|
|
|
return _buffer ? _buffer : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
// JSFunctionWrapper
|
2015-11-25 14:32:19 +08:00
|
|
|
JSFunctionWrapper::JSFunctionWrapper(JSContext* cx, JS::HandleObject jsthis, JS::HandleValue fval)
|
2018-01-10 14:39:45 +08:00
|
|
|
: _cx(cx)
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2018-01-10 14:39:45 +08:00
|
|
|
_jsthis = new (std::nothrow) JS::PersistentRootedObject(cx, jsthis);
|
|
|
|
_fval = new (std::nothrow) JS::PersistentRootedValue(cx, fval);
|
2016-01-24 19:40:44 +08:00
|
|
|
}
|
2018-01-10 14:39:45 +08:00
|
|
|
|
2016-01-24 19:40:44 +08:00
|
|
|
JSFunctionWrapper::JSFunctionWrapper(JSContext* cx, JS::HandleObject jsthis, JS::HandleValue fval, JS::HandleValue owner)
|
2018-01-10 14:39:45 +08:00
|
|
|
: _cx(cx)
|
2016-01-24 19:40:44 +08:00
|
|
|
{
|
2018-01-10 14:39:45 +08:00
|
|
|
_jsthis = new (std::nothrow) JS::PersistentRootedObject(cx, jsthis);
|
|
|
|
_fval = new (std::nothrow) JS::PersistentRootedValue(cx, fval);
|
2017-03-16 09:42:16 +08:00
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2017-03-16 09:42:16 +08:00
|
|
|
JSFunctionWrapper::~JSFunctionWrapper()
|
|
|
|
{
|
2018-01-10 14:39:45 +08:00
|
|
|
CC_SAFE_DELETE(_jsthis);
|
|
|
|
CC_SAFE_DELETE(_fval);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool JSFunctionWrapper::invoke(unsigned int argc, jsval *argv, JS::MutableHandleValue rval)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
return invoke(JS::HandleValueArray::fromMarkedLocation(argc, argv), rval);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
|
2017-03-15 16:09:02 +08:00
|
|
|
bool JSFunctionWrapper::invoke(JS::HandleValueArray args, JS::MutableHandleValue rval)
|
|
|
|
{
|
2018-01-10 14:39:45 +08:00
|
|
|
return JS_CallFunctionValue(_cx, *_jsthis, *_fval, args, rval);
|
2017-03-15 16:09:02 +08:00
|
|
|
}
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
static Color3B getColorFromJSObject(JSContext *cx, JS::HandleObject colorObject)
|
|
|
|
{
|
|
|
|
JS::RootedValue jsr(cx);
|
|
|
|
Color3B out;
|
|
|
|
JS_GetProperty(cx, colorObject, "r", &jsr);
|
|
|
|
double fontR = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &fontR);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_GetProperty(cx, colorObject, "g", &jsr);
|
|
|
|
double fontG = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &fontG);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_GetProperty(cx, colorObject, "b", &jsr);
|
|
|
|
double fontB = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &fontB);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// the out
|
|
|
|
out.r = (unsigned char)fontR;
|
|
|
|
out.g = (unsigned char)fontG;
|
|
|
|
out.b = (unsigned char)fontB;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Size getSizeFromJSObject(JSContext *cx, JS::HandleObject sizeObject)
|
|
|
|
{
|
|
|
|
JS::RootedValue jsr(cx);
|
|
|
|
Size out;
|
|
|
|
JS_GetProperty(cx, sizeObject, "width", &jsr);
|
|
|
|
double width = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &width);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_GetProperty(cx, sizeObject, "height", &jsr);
|
|
|
|
double height = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &height);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// the out
|
|
|
|
out.width = width;
|
|
|
|
out.height = height;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_opaque( JSContext *cx, JS::HandleValue vp, void **r)
|
|
|
|
{
|
|
|
|
#ifdef __LP64__
|
|
|
|
|
|
|
|
// begin
|
|
|
|
JS::RootedObject tmp_arg(cx);
|
|
|
|
bool ok = JS_ValueToObject( cx, vp, &tmp_arg );
|
|
|
|
JSB_PRECONDITION2( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION2( tmp_arg && JS_IsTypedArrayObject( tmp_arg ), cx, false, "Not a TypedArray object");
|
|
|
|
JSB_PRECONDITION2( JS_GetTypedArrayByteLength( tmp_arg ) == sizeof(void*), cx, false, "Invalid Typed Array length");
|
|
|
|
|
|
|
|
uint32_t* arg_array = (uint32_t*)JS_GetArrayBufferViewData( tmp_arg );
|
|
|
|
uint64_t ret = arg_array[0];
|
|
|
|
ret = ret << 32;
|
|
|
|
ret |= arg_array[1];
|
|
|
|
|
|
|
|
#else
|
|
|
|
assert( sizeof(int)==4);
|
|
|
|
int32_t ret;
|
|
|
|
if( ! jsval_to_int32(cx, vp, &ret ) )
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
*r = (void*)ret;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_int( JSContext *cx, JS::HandleValue vp, int *ret )
|
|
|
|
{
|
|
|
|
// Since this is called to cast uint64 to uint32,
|
|
|
|
// it is needed to initialize the value to 0 first
|
|
|
|
#ifdef __LP64__
|
2015-08-20 17:42:26 +08:00
|
|
|
// When int size is 8 Bit (same as long), the following operation is needed
|
|
|
|
if (sizeof(int) == 8)
|
|
|
|
{
|
|
|
|
long *tmp = (long*)ret;
|
|
|
|
*tmp = 0;
|
|
|
|
}
|
2015-05-05 10:50:19 +08:00
|
|
|
#endif
|
|
|
|
return jsval_to_int32(cx, vp, (int32_t*)ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval opaque_to_jsval( JSContext *cx, void *opaque )
|
|
|
|
{
|
|
|
|
#ifdef __LP64__
|
|
|
|
uint64_t number = (uint64_t)opaque;
|
|
|
|
JSObject *typedArray = JS_NewUint32Array( cx, 2 );
|
|
|
|
uint32_t *buffer = (uint32_t*)JS_GetArrayBufferViewData(typedArray);
|
|
|
|
buffer[0] = number >> 32;
|
|
|
|
buffer[1] = number & 0xffffffff;
|
|
|
|
return OBJECT_TO_JSVAL(typedArray);
|
|
|
|
#else
|
|
|
|
assert(sizeof(int)==4);
|
|
|
|
int32_t number = (int32_t) opaque;
|
|
|
|
return INT_TO_JSVAL(number);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval c_class_to_jsval( JSContext *cx, void* handle, JS::HandleObject object, JSClass *klass, const char* class_name)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsobj = jsb_get_jsobject_for_proxy(handle);
|
|
|
|
if( !jsobj ) {
|
|
|
|
JS::RootedObject parent(cx);
|
|
|
|
jsobj = JS_NewObject(cx, klass, object, parent);
|
|
|
|
CCASSERT(jsobj, "Invalid object");
|
|
|
|
jsb_set_c_proxy_for_jsobject(jsobj, handle, JSB_C_FLAG_DO_NOT_CALL_FREE);
|
|
|
|
jsb_set_jsobject_for_proxy(jsobj, handle);
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return OBJECT_TO_JSVAL(jsobj);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_c_class( JSContext *cx, JS::HandleValue vp, void **out_native, struct jsb_c_proxy_s **out_proxy)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = JS_ValueToObject( cx, vp, &jsobj );
|
|
|
|
JSB_PRECONDITION2(ok, cx, false, "Error converting jsval to object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
struct jsb_c_proxy_s *proxy = jsb_get_c_proxy_for_jsobject(jsobj);
|
|
|
|
*out_native = proxy->handle;
|
|
|
|
if( out_proxy )
|
|
|
|
*out_proxy = proxy;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_uint( JSContext *cx, JS::HandleValue vp, unsigned int *ret )
|
|
|
|
{
|
|
|
|
// Since this is called to cast uint64 to uint32,
|
|
|
|
// it is needed to initialize the value to 0 first
|
|
|
|
#ifdef __LP64__
|
2015-08-20 17:42:26 +08:00
|
|
|
// When unsigned int size is 8 Bit (same as long), the following operation is needed
|
|
|
|
if (sizeof(unsigned int)==8)
|
|
|
|
{
|
|
|
|
long *tmp = (long*)ret;
|
|
|
|
*tmp = 0;
|
|
|
|
}
|
2015-05-05 10:50:19 +08:00
|
|
|
#endif
|
|
|
|
return jsval_to_int32(cx, vp, (int32_t*)ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval long_to_jsval( JSContext *cx, long number )
|
|
|
|
{
|
|
|
|
#ifdef __LP64__
|
|
|
|
assert( sizeof(long)==8);
|
|
|
|
|
|
|
|
char chr[128];
|
|
|
|
snprintf(chr, sizeof(chr)-1, "%ld", number);
|
|
|
|
JSString *ret_obj = JS_NewStringCopyZ(cx, chr);
|
|
|
|
return STRING_TO_JSVAL(ret_obj);
|
|
|
|
#else
|
|
|
|
CCASSERT( sizeof(int)==4, "Error!");
|
|
|
|
return INT_TO_JSVAL(number);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ulong_to_jsval( JSContext *cx, unsigned long number )
|
|
|
|
{
|
|
|
|
#ifdef __LP64__
|
|
|
|
assert( sizeof(unsigned long)==8);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
char chr[128];
|
|
|
|
snprintf(chr, sizeof(chr)-1, "%lu", number);
|
|
|
|
JSString *ret_obj = JS_NewStringCopyZ(cx, chr);
|
|
|
|
return STRING_TO_JSVAL(ret_obj);
|
|
|
|
#else
|
|
|
|
CCASSERT( sizeof(int)==4, "Error!");
|
|
|
|
return UINT_TO_JSVAL(number);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval long_long_to_jsval( JSContext *cx, long long number )
|
|
|
|
{
|
|
|
|
#if JSB_REPRESENT_LONGLONG_AS_STR
|
|
|
|
char chr[128];
|
|
|
|
snprintf(chr, sizeof(chr)-1, "%lld", number);
|
|
|
|
JSString *ret_obj = JS_NewStringCopyZ(cx, chr);
|
|
|
|
return STRING_TO_JSVAL(ret_obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
#else
|
|
|
|
CCASSERT( sizeof(long long)==8, "Error!");
|
|
|
|
JSObject *typedArray = JS_NewUint32Array( cx, 2 );
|
|
|
|
uint32_t *buffer = (uint32_t*)JS_GetArrayBufferViewData(typedArray, cx);
|
|
|
|
buffer[0] = number >> 32;
|
|
|
|
buffer[1] = number & 0xffffffff;
|
|
|
|
return OBJECT_TO_JSVAL(typedArray);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_charptr( JSContext *cx, JS::HandleValue vp, const char **ret )
|
|
|
|
{
|
|
|
|
JSString *jsstr = JS::ToString( cx, vp );
|
|
|
|
JSB_PRECONDITION2( jsstr, cx, false, "invalid string" );
|
|
|
|
|
|
|
|
JSStringWrapper strWrapper(jsstr);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
auto tmp = StringRef::create();
|
|
|
|
tmp->data = strWrapper.get();
|
2015-05-05 10:50:19 +08:00
|
|
|
|
2016-08-19 16:28:47 +08:00
|
|
|
*ret = tmp->data.c_str();
|
2015-05-05 10:50:19 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval charptr_to_jsval( JSContext *cx, const char *str)
|
|
|
|
{
|
|
|
|
return c_string_to_jsval(cx, str);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool JSB_jsval_typedarray_to_dataptr( JSContext *cx, JS::HandleValue vp, GLsizei *count, void **data, js::Scalar::Type t)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = JS_ValueToObject( cx, vp, &jsobj );
|
|
|
|
JSB_PRECONDITION2( ok && jsobj, cx, false, "Error converting value to object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// WebGL supports TypedArray and sequences for some of its APIs. So when converting a TypedArray, we should
|
|
|
|
// also check for a possible non-Typed Array JS object, like a JS Array.
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if( JS_IsTypedArrayObject( jsobj ) ) {
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*count = JS_GetTypedArrayLength(jsobj);
|
|
|
|
js::Scalar::Type type = JS_GetArrayBufferViewType(jsobj);
|
|
|
|
JSB_PRECONDITION2(t==type, cx, false, "TypedArray type different than expected type");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
switch (t) {
|
|
|
|
case js::Scalar::Int8:
|
|
|
|
case js::Scalar::Uint8:
|
|
|
|
*data = JS_GetUint8ArrayData(jsobj);
|
|
|
|
break;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
case js::Scalar::Int16:
|
|
|
|
case js::Scalar::Uint16:
|
|
|
|
*data = JS_GetUint16ArrayData(jsobj);
|
|
|
|
break;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
case js::Scalar::Int32:
|
|
|
|
case js::Scalar::Uint32:
|
|
|
|
*data = JS_GetUint32ArrayData(jsobj);
|
|
|
|
break;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
case js::Scalar::Float32:
|
|
|
|
*data = JS_GetFloat32ArrayData(jsobj);
|
|
|
|
break;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
default:
|
|
|
|
JSB_PRECONDITION2(false, cx, false, "Unsupported typedarray type");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if( JS_IsArrayObject(cx, jsobj)) {
|
|
|
|
// Slow... avoid it. Use TypedArray instead, but the spec says that it can receive
|
|
|
|
// Sequence<> as well.
|
|
|
|
uint32_t length;
|
|
|
|
JS_GetArrayLength(cx, jsobj, &length);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
for( uint32_t i=0; i<length;i++ ) {
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedValue valarg(cx);
|
|
|
|
JS_GetElement(cx, jsobj, i, &valarg);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
switch(t) {
|
|
|
|
case js::Scalar::Int32:
|
|
|
|
case js::Scalar::Uint32:
|
|
|
|
{
|
|
|
|
uint32_t e = valarg.toInt32();
|
|
|
|
((uint32_t*)data)[i] = e;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case js::Scalar::Float32:
|
|
|
|
{
|
|
|
|
double e = valarg.toNumber();
|
|
|
|
((GLfloat*)data)[i] = (GLfloat)e;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
JSB_PRECONDITION2(false, cx, false, "Unsupported typedarray type");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
} else
|
|
|
|
JSB_PRECONDITION2(false, cx, false, "Object shall be a TypedArray or Sequence");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool JSB_get_arraybufferview_dataptr( JSContext *cx, JS::HandleValue vp, GLsizei *count, GLvoid **data )
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = JS_ValueToObject( cx, vp, &jsobj );
|
|
|
|
JSB_PRECONDITION2( ok && jsobj, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION2( JS_IsArrayBufferViewObject(jsobj), cx, false, "Not an ArrayBufferView object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*data = JS_GetArrayBufferViewData(jsobj);
|
|
|
|
*count = JS_GetArrayBufferViewByteLength(jsobj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#pragma mark - Conversion Routines
|
|
|
|
bool jsval_to_ushort( JSContext *cx, JS::HandleValue vp, unsigned short *outval )
|
|
|
|
{
|
|
|
|
bool ok = true;
|
|
|
|
double dp;
|
|
|
|
ok &= JS::ToNumber(cx, vp, &dp);
|
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-05-30 18:10:48 +08:00
|
|
|
ok &= !std::isnan(dp);
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
|
|
|
|
|
|
|
*outval = (unsigned short)dp;
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_int32( JSContext *cx, JS::HandleValue vp, int32_t *outval )
|
|
|
|
{
|
|
|
|
bool ok = true;
|
|
|
|
double dp;
|
|
|
|
ok &= JS::ToNumber(cx, vp, &dp);
|
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-05-30 18:10:48 +08:00
|
|
|
ok &= !std::isnan(dp);
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*outval = (int32_t)dp;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_uint32( JSContext *cx, JS::HandleValue vp, uint32_t *outval )
|
|
|
|
{
|
|
|
|
bool ok = true;
|
|
|
|
double dp;
|
|
|
|
ok &= JS::ToNumber(cx, vp, &dp);
|
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-05-30 18:10:48 +08:00
|
|
|
ok &= !std::isnan(dp);
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*outval = (uint32_t)dp;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_uint16( JSContext *cx, JS::HandleValue vp, uint16_t *outval )
|
|
|
|
{
|
|
|
|
bool ok = true;
|
|
|
|
double dp;
|
|
|
|
ok &= JS::ToNumber(cx, vp, &dp);
|
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-05-30 18:10:48 +08:00
|
|
|
ok &= !std::isnan(dp);
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*outval = (uint16_t)dp;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: sizeof(long) == 8 in 64 bits on OS X... apparently on Windows it is 32 bits (???)
|
|
|
|
bool jsval_to_long( JSContext *cx, JS::HandleValue vp, long *r )
|
|
|
|
{
|
|
|
|
#ifdef __LP64__
|
|
|
|
// compatibility check
|
|
|
|
assert( sizeof(long)==8);
|
|
|
|
JSString *jsstr = JS::ToString(cx, vp);
|
|
|
|
JSB_PRECONDITION2(jsstr, cx, false, "Error converting value to string");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
char *str = JS_EncodeString(cx, jsstr);
|
|
|
|
JSB_PRECONDITION2(str, cx, false, "Error encoding string");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
char *endptr;
|
|
|
|
long ret = strtol(str, &endptr, 10);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*r = ret;
|
|
|
|
return true;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
#else
|
|
|
|
// compatibility check
|
|
|
|
assert( sizeof(int)==4);
|
|
|
|
long ret = vp.toInt32();
|
|
|
|
#endif
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*r = ret;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool jsval_to_ulong( JSContext *cx, JS::HandleValue vp, unsigned long *out)
|
|
|
|
{
|
|
|
|
if (out == nullptr)
|
|
|
|
return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
long rval = 0;
|
|
|
|
bool ret = false;
|
|
|
|
ret = jsval_to_long(cx, vp, &rval);
|
|
|
|
if (ret)
|
|
|
|
{
|
|
|
|
*out = (unsigned long)rval;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_long_long(JSContext *cx, JS::HandleValue vp, long long* r)
|
|
|
|
{
|
|
|
|
JSString *jsstr = JS::ToString(cx, vp);
|
|
|
|
JSB_PRECONDITION2(jsstr, cx, false, "Error converting value to string");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
char *str = JS_EncodeString(cx, jsstr);
|
|
|
|
JSB_PRECONDITION2(str, cx, false, "Error encoding string");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
char *endptr;
|
metal support for cocos2d-x (#19305)
* remove deprecated files
* remove some deprecated codes
* remove more deprecated codes
* remove ui deprecated codes
* remove more deprecated codes
* remove deprecated codes in ccmenuitem
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes
* remove more deprecated codes
* remove more deprecated codes
* remove vr related codes and ignore some modules
* remove allocator
* remove some config
* 【Feature】add back-end project file
* [Feature] add back-end file
* add pipeline descriptor and shader cache
* [Feature] support sprite for backend
* [Feature] remove unneeded code
* [Feature] according to es2.0 spec, you must use clamp-to-edge as texture wrap mode, and no mipmapping for non-power-of-two texture
* [Feature] set texture wrap mode to clamp-to-edge, and no mipmapping for non-power-of-two texture
* [Feature] remove macro define to .cpp file
* [Feature] add log info
* [Feature] add PipelineDescriptor for TriangleCommand
* [Feature] add PipelineDescriptor object as member of TriangleCommand
* [Feature] add getPipelineDescriptor method
* add renderbackend
* complete pipeline descriptor
* [Feature] add viewport in RenderCommand
* set viewport when rendrering
* [Feature] occur error when using RendererBackend, to be fixed.
* a workaround to fix black screen on macOS 10.14 (#19090)
* add rendererbackend init function
* fix typo
* [Feature] modify testFile
* [BugFix] modify shader path
* [Feature] set default viewport
* fix projection
* [Feature] modify log info
* [BugFix] change viewport data type to int
* [BugFix] add BindGroup to PipelienDescriptor
* [BugFix] change a_position to vec3 in sprite.vert
* [BugFix] set vertexLayout according to V3F_C4B_T2F structure
* [Feature] revert a_position to vec4
* [Feature] renderer should not use gl codes directly
* [Feature] it's better not use default value parameter
* fix depth test setting
* rendererbackend -> renderer
* clear color and depth at begin
* add metal backend
* metal support normalized attribute
* simplify codes
* update external
* add render pass desctriptor in pipeline descriptor
* fix warnings
* fix crash and memeory leak
* refactor Texture2D
* put pipeline descriptor into render command
* simplify codes
* [Feature] update Sprite
* fix crash when closing app
* [Feature] update SpriteBatchNode and TextureAtlas
* support render texture(not finish)
* [Feature] remove unused code
* make tests work on mac
* fix download-deps path error
* make tests work on iOS
* [Feature] support ttf under normal label effect
* refactor triangle command processing
* let renderer handle more common commands
* refactor backend
* make render texture work
* [Feature] refactor backend for GL
* [Feature]Renaming to make it easy to understand
* [Feature] change warp mode to CLAMP_TO_EDGE
* fix ghost
* simplify visit render queue logic
* support progress timer without rial mode
* support partcile system
* Feature/update label (#149)
* [BugFix] fix compile error
* [Feature] support outline effect in ios
* [Feature] add shader file
* [BugFix] fix begin and end RenderPass
* [Feature] update CustomCommand
* [Feature] revert project.pbxproj
* [Feature] simplify codes
* [BugFix] pack AI88 to RGBA8888 only when outline enable
* [Feature] support shadow effect in Label
* [Feature] support BMFont
* [Feature] support glow effect
* [Feature] simplify shader files
* LabelAtlas work
* handle blend function correctly
* support tile map
* don't share buffer in metal
* alloc buffer size as needed
* support more tilemap
* Merge branch 'minggo/metal-support' into feature/updateLabel
* minggo/metal-support:
support tile map
handle blend function correctly
LabelAtlas work
Feature/update label (#149)
support partcile system
# Conflicts:
# cocos/2d/CCLabel.cpp
# cocos/2d/CCSprite.cpp
# cocos/2d/CCSpriteBatchNode.cpp
# cocos/renderer/CCQuadCommand.cpp
# cocos/renderer/CCQuadCommand.h
* render texture work without saving file
* use global viewport
* grid3d works
* remove grabber
* tiled3d works
* [BugFix] fix label bug
* [Feature] add updateSubData for buffer
* [Feature] remove setVertexCount
* support depth test
* add callback command
* [Feature] add UITest
* [Feature] update UITest
* [Feature] remove unneeded codes
* fix custom command issue
* fix layer color blend issue
* [BugFix] fix iOS compile error
* [Feature] remove unneeded codes
* [Feature] fix updateVertexBuffer
* layerradial works
* add draw test back
* fix batch issue
* fix compiling error
* [BugFix] support ETC1
* [BugFix] get the correct pipelineDescriptor
* [BugFix] skip draw when backendTexture nullptr
* clipping node support
* [Feature] add shader files
* fix stencil issue in metal
* [Feature] update UILayoutTest
* [BugFix] skip drawing when vertexCount is zero
* refactor renderer
* add set global z order for stencil manager commands
* fix warnings caused by type
* remove viewport in render command
* [Feature] fix warnings caused by type
* [BugFix] clear vertexCount and indexCount for CustomComand when needed
* [Feature] update clear for CustomCommand
* ios use metal
* fix viewport issue
* fix LayerColorGradient crash
* [cmake] transport to android and windows (#160)
* save point 1
* compile on windows
* run on android
* revert useless change
* android set CC_ENABLE_CACHE_TEXTURE_DATA to 1
* add initGlew
* fix android crash
* add TODO new-renderer
* review update
* revert onGLFWWindowPosCallback
* fix android compiling error
* Impl progress radial (#162)
* progresstimer add radial impl
* default drawType to element
* dec invoke times of createVertexBuffer (#163)
* support depth/stencil format for gl backend
* simplify progress timer codes
* support motionstreak, effect is wrong
* fix motionstreak issue
* [Feature] update Scissor Test (#161)
* [Feature] update Scissor Test
* [Feature] update ScissorTest
* [Feature] rename function
* [Feature] get constant reference if needed
* [Feature] show render status (#164)
* improve performance
* fix depth state
* fill error that triangle vertex/index number bigger than buffer
* fix compiline error in release mode
* fix buffer conflict between CPU and GPU on iOS/macOS
* Renderer refactor (#165)
* use one vertes/index buffer with opengl
* fix error on windows
* custom command support index format config
* CCLayer: compact vertex data structure
* update comment
* fix doc
* support fast tilemap
* pass index format instead
* fix some wrong effect
* fix render texture error
* fix texture per-element size
* fix texture format error
* BlendFunc type refactor, GLenum -> backend::BlendFactor (#167)
* BlendFunc use backend::BlendFactor as inner field
* update comments
* use int to replace GLenum
* update xcode project fiel
* rename to GLBlendConst
* add ccConstants.h
* update xcode project file
* update copyright
* remove primitive command
* remove CCPrimitive.cpp/.h
* remove deprecated files
* remove unneeded files
* remove multiple view support
* remove multiple view support
* remove the usage of frame buffer in camera
* director don't use frame buffer
* remove FrameBuffer
* remove BatchCommand
* add some api reference
* add physics2d back
* fix crash when close app on mac
* improve render texture
* fix rendertexture issue
* fix rendertexture issue
* simplify codes
* CMake support for mac & ios (#169)
* update cmake
* fix compile error
* update 3rd libs version
* remove CCThread.h/.cpp
* remove ccthread
* use audio engine to implement simple audio engine
* remove unneeded codes
* remove deprecated codes
* remove winrt macro
* remove CC_USE_WIC
* set partcile blend function in more elegant way
* remove unneeded codes
* remove unneeded codes
* cmake works on windows
* update project setting
* improve performance
* GLFloat -> float
* sync v3 cmake improvements into metal-support (#172)
* pick: modern cmake, compile definitions improvement (#19139)
* modern cmake, use target_compile_definitions partly
* simplify macro define, remove USE_*
* modern cmake, macro define
* add physics 2d macro define into ccConfig.h
* remove USE_CHIPMUNK macro in build.gradle
* remove CocosSelectModule.cmake
* shrink useless define
* simplify compile options config, re-add if necessary
* update external for tmp CI test
* un-quote target_compile_options value
* add "-g" parameter only when debug mode
* keep single build type when generator Xcode & VS projecy
* update external for tmp CI tes
* add static_cast<char>(-1), fix -Wc++11-narrowing
* simplify win32 compile define
* not modify code, only improve compile options
# Conflicts:
# .gitignore
# cmake/Modules/CocosConfigDepend.cmake
# cocos/CMakeLists.txt
# external/config.json
# tests/cpp-tests/CMakeLists.txt
* modern cmake, improve cmake_compiler_flags (#19145)
* cmake_compiler_flags
* Fix typo
* Fix typo2
* Remove chanages from Android.mk
* correct lua template cmake build (#19149)
* don't add -Wno-deprecated into jsb target
* correct lua template cmake build
* fix win32 lua template compile error
* prevent cmake in-source-build friendly (#19151)
* pick: Copy resources to "Resources/" on win32 like in linux configuration
* add "/Z7" for cpp-tests on windows
* [cmake] fix iOS xcode property setting failed (#19208)
* fix iOS xcode property setting failed
* use search_depend_libs_recursive at dlls collect
* fix typo
* [cmake] add find_host_library into iOS toolchain file (#19230)
* pick: [lua android] use luajit & template cmake update (#19239)
* increase cmake stability , remove tests/CMakeLists.txt (#19261)
* cmake win32 Precompiled header (#19273)
* Precompiled header
* Fix
* Precompiled header for cocos
* Precompiled header jscocos2d
* Fix for COCOS2D_DEBUG is always 1 on Android (#19291)
Related #19289
* little build fix, tests cpp-tests works on mac
* sync v3 build related codes into metal-support (#173)
* strict initialization for std::array
* remove proj.win32 project configs
* modern cmake, cmake_cleanup_remove_unused_variables (#19146)
* Switch travis CI to xenial (#19207)
* Switch travis CI to xenial
* Remove language: android
* Set language: cpp
* Fix java problem
* Update sdkmanager
* Fix sdkmanger
* next sdkmanager fix
* Remove xenial from android
* revert to sdk-tools-{system}-3859397
* Remove linux cmake install
* Update before-install.sh
* Update .travis.yml
* Simplify install-deps-linux.sh, tested on Ubuntu 16.04 (#19212)
* Simplify install-deps-linux.sh
* Cleanup
* pick: install ninja
* update cocos2d-console submodule
* for metal-support alpha release, we only test cpp
* add HelloCpp into project(Cocos2d-x) for tmp test
* update extenal metal-support-4
* update uniform setting
* [Feature] update BindGroup
* [Feature] empty-test
* [Feature] cpp-test
* [Feature] fix GL compiler error
* [Feature] fix GL crash
* [Feature] empty-test
* [Feature] cpp-tests
* [feature] improve frameRate
* [feature] fix opengl compile error
* [feature] fix opengl compile error
* [BugFix] fix compute maxLocation error
* [Feature] update setting unifrom
* [Feature] fix namespace
* [Feature] remove unneeded code
* [Bugfix] fix project file
* [Feature] update review
* [texture2d] impl texture format support (#175)
* texture update
* update
* update texture
* commit
* compile on windows
* ddd
* rename
* rename methods
* no crash
* save gl
* save
* save
* rename
* move out pixel format convert functions
* metal crash
* update
* update android
* support gles compressed texture format
* support more compress format
* add more conversion methods
* ss
* save
* update conversion methods
* add PVRTC format support
* reformat
* add marco linux
* fix GL marcro
* pvrtc supported only by ios 8.0+
* remove unused cmake
* revert change
* refactor Texture2D::initWithData
* fix conversion log
* refactor Texture2D::initWithData
* remove some OpenGL constants for PVRTC
* add todo
* fix typo
* AutoTest works on mac/iOS by disable part cases, sync v3 bug fix (#174)
* review cpp-tests, and fix part issues on start auto test
* sync png format fix: Node:Particle3D abnormal texture effects #19204
* fix cpp-tests SpritePolygon crash, wrong png format (#19170)
* fix wrong png convert format from sRGB to Gray
* erase plist index if all frames was erased
* test_A8.png have I8 format, fix it
* [CCSpriteCache] allow re-add plist & add testcase (#19175)
* allow re-add plist & add testcase
* remove comments/rename method/update testcase
* fix isSpriteFramesWithFileLoaded & add testcase
* remove used variable
* remove unused variable
* fix double free issues when js/lua-tests exit on iOS (#19236)
* disable part cases, AutoTest works without crash on mac
* update cocos2dx files json, to test cocos new next
* fix spritecache plist parsing issue (#19269)
* [linux] Fix FileUtils::getContents with folder (#19157)
* fix FileUtils::getContents on linux/mac
* use stat.st_mode
* simplify
* [CCFileUtils] win32 getFileSize (#19176)
* win32 getFileSize
* fix stat
* [cpp test-Android]20:FileUtils/2 change title (#19197)
* sync #19200
* sync #19231
* [android lua] improve performance of lua loader (#19234)
* [lua] improve performance of lua loader
* remove cache fix
* Revert "fix spritecache plist parsing issue (#19269)"
This reverts commit f3a85ece4307a7b90816c34489d1ed2c8fd11baf.
* remove win32 project files ref in template.json
* add metal framework lnk ref into cpp template
* test on iOS, and disable part cases
* alBufferData instead of alBufferDataStatic for small audio file on Apple (#19227)
* changes AudioCache to use alBufferData instead of alBufferDataStatic
(also makes test 19 faster to trigger openal bugs faster)
The original problem: CrashIfClientProvidedBogusAudioBufferList
https://github.com/cocos2d/cocos2d-x/issues/18948
is not happening anymore, but there's still a not very frequent issue
that makes OpenAL crash with a call stack like this.
AudioCache::readDataTask > alBufferData > CleanUpDeadBufferList
It happes more frequently when the device is "cold", which means after
half an hour of not using the device (locked).
I could not find the actual source code for iOS OpenAL, so I used the
macOS versions:
https://opensource.apple.com/source/OpenAL/OpenAL-48.7/Source/OpenAL/oalImp.cpp.auto.html
They seem to use CAGuard.h to make sure the dead buffer list
has no threading issues. I'm worried because the CAGuard code I found
has macos and win32 define but no iOS, so I'm not sure. I guess the
iOS version is different and has the guard.
I could not find a place in the code that's unprotected by the locks
except the InitializeBufferMap() which should not be called more than
once from cocos, and there's a workaround in AudioEngine-impl for it.
I reduced the occurence of the CleanUpDeadBufferList crash by moving
the guard in ~AudioCache to cover the alDeleteBuffers call.
* remove hack method "setTimeout" on audio
* AutoTest works on iOS
* support set ios deployment target for root project
* enable all texture2d cases, since Jiang have fixed
* add CCTextureUtils to xcode project file (#176)
* add leak cases for SpriteFrameCache (#177)
* re-add SpriteFrameCache cases
* update template file json
* Update SpriteFrameCacheTest.cpp
* fix compiling error
2019-01-18 15:08:25 +08:00
|
|
|
#if(CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2015-05-05 10:50:19 +08:00
|
|
|
__int64 ret = _strtoi64(str, &endptr, 10);
|
|
|
|
#else
|
|
|
|
long long ret = strtoll(str, &endptr, 10);
|
|
|
|
#endif
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*r = ret;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_std_string(JSContext *cx, JS::HandleValue v, std::string* ret) {
|
2016-09-05 10:02:05 +08:00
|
|
|
if (v.isString() || v.isBoolean() || v.isNumber())
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
|
|
|
JSString *tmp = JS::ToString(cx, v);
|
|
|
|
JSB_PRECONDITION3(tmp, cx, false, "Error processing arguments");
|
|
|
|
|
|
|
|
JSStringWrapper str(tmp);
|
|
|
|
*ret = str.get();
|
|
|
|
return true;
|
|
|
|
}
|
2016-08-19 16:28:47 +08:00
|
|
|
if (v.isNullOrUndefined()) {
|
|
|
|
*ret = "";
|
|
|
|
return true;
|
|
|
|
}
|
2015-05-05 10:50:19 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccpoint(JSContext *cx, JS::HandleValue v, Point* ret) {
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsx(cx);
|
|
|
|
JS::RootedValue jsy(cx);
|
|
|
|
double x, y;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "x", &jsx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "y", &jsy) &&
|
|
|
|
JS::ToNumber(cx, jsx, &x) &&
|
|
|
|
JS::ToNumber(cx, jsy, &y);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->x = (float)x;
|
|
|
|
ret->y = (float)y;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccacceleration(JSContext* cx, JS::HandleValue v, Acceleration* ret) {
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsx(cx);
|
|
|
|
JS::RootedValue jsy(cx);
|
|
|
|
JS::RootedValue jsz(cx);
|
|
|
|
JS::RootedValue jstimestamp(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
double x, y, timestamp, z;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "x", &jsx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "y", &jsy) &&
|
|
|
|
JS_GetProperty(cx, tmp, "z", &jsz) &&
|
|
|
|
JS_GetProperty(cx, tmp, "timestamp", &jstimestamp) &&
|
|
|
|
JS::ToNumber(cx, jsx, &x) &&
|
|
|
|
JS::ToNumber(cx, jsy, &y) &&
|
|
|
|
JS::ToNumber(cx, jsz, &z) &&
|
|
|
|
JS::ToNumber(cx, jstimestamp, ×tamp);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->x = x;
|
|
|
|
ret->y = y;
|
|
|
|
ret->z = z;
|
|
|
|
ret->timestamp = timestamp;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_quaternion( JSContext *cx, JS::HandleValue v, cocos2d::Quaternion* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue x(cx);
|
|
|
|
JS::RootedValue y(cx);
|
|
|
|
JS::RootedValue z(cx);
|
|
|
|
JS::RootedValue w(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
double xx, yy, zz, ww;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "x", &x) &&
|
|
|
|
JS_GetProperty(cx, tmp, "y", &y) &&
|
|
|
|
JS_GetProperty(cx, tmp, "z", &z) &&
|
|
|
|
JS_GetProperty(cx, tmp, "w", &w) &&
|
|
|
|
JS::ToNumber(cx, x, &xx) &&
|
|
|
|
JS::ToNumber(cx, y, &yy) &&
|
|
|
|
JS::ToNumber(cx, z, &zz) &&
|
|
|
|
JS::ToNumber(cx, w, &ww) &&
|
2016-05-30 18:10:48 +08:00
|
|
|
!std::isnan(xx) && !std::isnan(yy) && !std::isnan(zz) && !std::
|
|
|
|
isnan(ww);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
|
|
|
|
|
|
|
ret->set(xx, yy, zz, ww);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_obb(JSContext *cx, JS::HandleValue v, cocos2d::OBB* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jscenter(cx);
|
|
|
|
JS::RootedValue jsxAxis(cx);
|
|
|
|
JS::RootedValue jsyAxis(cx);
|
|
|
|
JS::RootedValue jszAxis(cx);
|
|
|
|
JS::RootedValue jsextents(cx);
|
|
|
|
JS::RootedValue jsextentx(cx);
|
|
|
|
JS::RootedValue jsextenty(cx);
|
|
|
|
JS::RootedValue jsextentz(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
cocos2d::Vec3 center, xAxis, yAxis, zAxis, extents, extentx, extenty, extentz;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "center", &jscenter) &&
|
|
|
|
JS_GetProperty(cx, tmp, "xAxis", &jsxAxis) &&
|
|
|
|
JS_GetProperty(cx, tmp, "yAxis", &jsyAxis) &&
|
|
|
|
JS_GetProperty(cx, tmp, "zAxis", &jszAxis) &&
|
|
|
|
JS_GetProperty(cx, tmp, "extents", &jsextents) &&
|
|
|
|
JS_GetProperty(cx, tmp, "extentX", &jsextentx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "extentY", &jsextenty) &&
|
|
|
|
JS_GetProperty(cx, tmp, "extentZ", &jsextentz) &&
|
|
|
|
jsval_to_vector3(cx, jscenter, ¢er) &&
|
|
|
|
jsval_to_vector3(cx, jsxAxis, &xAxis) &&
|
|
|
|
jsval_to_vector3(cx, jsyAxis, &yAxis) &&
|
|
|
|
jsval_to_vector3(cx, jszAxis, &zAxis) &&
|
|
|
|
jsval_to_vector3(cx, jsextents, &extents) &&
|
|
|
|
jsval_to_vector3(cx, jsextentx, &extentx) &&
|
|
|
|
jsval_to_vector3(cx, jsextenty, &extenty) &&
|
|
|
|
jsval_to_vector3(cx, jsextentz, &extentz);
|
|
|
|
|
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
|
|
|
|
|
|
|
ret->_center.set(center);
|
|
|
|
ret->_xAxis.set(xAxis);
|
|
|
|
ret->_yAxis.set(yAxis);
|
|
|
|
ret->_zAxis.set(zAxis);
|
|
|
|
ret->_extents.set(extents);
|
|
|
|
ret->_extentX.set(extentx);
|
|
|
|
ret->_extentY.set(extenty);
|
|
|
|
ret->_extentZ.set(extentz);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ray(JSContext *cx, JS::HandleValue v, cocos2d::Ray* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsorigin(cx);
|
|
|
|
JS::RootedValue jsdirection(cx);
|
|
|
|
|
|
|
|
cocos2d::Vec3 origin, direction;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "origin", &jsorigin) &&
|
|
|
|
JS_GetProperty(cx, tmp, "direction", &jsdirection) &&
|
2016-04-18 15:09:21 +08:00
|
|
|
jsval_to_vector3(cx, jsorigin, &origin) &&
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval_to_vector3(cx, jsdirection, &direction);
|
|
|
|
|
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->set(origin, direction);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsvals_variadic_to_ccarray( JSContext *cx, jsval *vp, int argc, __Array** ret)
|
|
|
|
{
|
|
|
|
bool ok = true;
|
2015-11-27 01:26:54 +08:00
|
|
|
__Array* pArray = __Array::create();
|
2015-05-05 10:50:19 +08:00
|
|
|
for( int i=0; i < argc; i++ )
|
|
|
|
{
|
|
|
|
double num = 0.0;
|
|
|
|
// optimization: JS::ToNumber is expensive. And can convert an string like "12" to a number
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedValue jsv(cx, *vp);
|
|
|
|
if (jsv.isNumber()) {
|
|
|
|
ok &= JS::ToNumber(cx, jsv, &num );
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!ok) {
|
|
|
|
break;
|
|
|
|
}
|
2015-11-27 01:26:54 +08:00
|
|
|
pArray->addObject(__Integer::create((int)num));
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
2015-11-27 01:26:54 +08:00
|
|
|
else if (jsv.isString())
|
2015-05-05 10:50:19 +08:00
|
|
|
{
|
2015-11-27 01:26:54 +08:00
|
|
|
JSStringWrapper str(jsv, cx);
|
|
|
|
pArray->addObject(__String::create(str.get()));
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
js_proxy_t* p;
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedObject obj(cx, jsv.toObjectOrNull());
|
2015-05-05 10:50:19 +08:00
|
|
|
p = jsb_get_js_proxy(obj);
|
|
|
|
if (p) {
|
|
|
|
pArray->addObject((Ref*)p->ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// next
|
|
|
|
vp++;
|
|
|
|
}
|
|
|
|
*ret = pArray;
|
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsvals_variadic_to_ccvaluevector( JSContext *cx, jsval *vp, int argc, cocos2d::ValueVector* ret)
|
|
|
|
{
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
for (int i = 0; i < argc; i++)
|
|
|
|
{
|
|
|
|
value = *vp;
|
|
|
|
if (value.isObject())
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx, value.toObjectOrNull());
|
|
|
|
CCASSERT(jsb_get_js_proxy(jsobj) == nullptr, "Native object should be added!");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!JS_IsArrayObject(cx, jsobj))
|
|
|
|
{
|
|
|
|
// It's a normal js object.
|
|
|
|
ValueMap dictVal;
|
|
|
|
bool ok = jsval_to_ccvaluemap(cx, value, &dictVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->push_back(Value(dictVal));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// It's a js array object.
|
|
|
|
ValueVector arrVal;
|
|
|
|
bool ok = jsval_to_ccvaluevector(cx, value, &arrVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->push_back(Value(arrVal));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isString())
|
|
|
|
{
|
|
|
|
JSStringWrapper valueWapper(value.toString(), cx);
|
|
|
|
ret->push_back(Value(valueWapper.get()));
|
|
|
|
}
|
|
|
|
else if (value.isNumber())
|
|
|
|
{
|
|
|
|
double number = 0.0;
|
|
|
|
bool ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->push_back(Value(number));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isBoolean())
|
|
|
|
{
|
|
|
|
bool boolVal = JS::ToBoolean(value);
|
|
|
|
ret->push_back(Value(boolVal));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCASSERT(false, "not supported type");
|
|
|
|
}
|
|
|
|
// next
|
|
|
|
vp++;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccrect(JSContext *cx, JS::HandleValue v, Rect* ret) {
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsx(cx);
|
|
|
|
JS::RootedValue jsy(cx);
|
|
|
|
JS::RootedValue jswidth(cx);
|
|
|
|
JS::RootedValue jsheight(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
double x, y, width, height;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "x", &jsx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "y", &jsy) &&
|
|
|
|
JS_GetProperty(cx, tmp, "width", &jswidth) &&
|
|
|
|
JS_GetProperty(cx, tmp, "height", &jsheight) &&
|
|
|
|
JS::ToNumber(cx, jsx, &x) &&
|
|
|
|
JS::ToNumber(cx, jsy, &y) &&
|
|
|
|
JS::ToNumber(cx, jswidth, &width) &&
|
|
|
|
JS::ToNumber(cx, jsheight, &height);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->origin.x = x;
|
|
|
|
ret->origin.y = y;
|
|
|
|
ret->size.width = width;
|
|
|
|
ret->size.height = height;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccsize(JSContext *cx, JS::HandleValue v, Size* ret) {
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsw(cx);
|
|
|
|
JS::RootedValue jsh(cx);
|
|
|
|
double w, h;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "width", &jsw) &&
|
|
|
|
JS_GetProperty(cx, tmp, "height", &jsh) &&
|
|
|
|
JS::ToNumber(cx, jsw, &w) &&
|
|
|
|
JS::ToNumber(cx, jsh, &h);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
|
|
|
ret->width = w;
|
|
|
|
ret->height = h;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_cccolor4b(JSContext *cx, JS::HandleValue v, Color4B* ret) {
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsr(cx);
|
|
|
|
JS::RootedValue jsg(cx);
|
|
|
|
JS::RootedValue jsb(cx);
|
|
|
|
JS::RootedValue jsa(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
double r, g, b, a;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "r", &jsr) &&
|
|
|
|
JS_GetProperty(cx, tmp, "g", &jsg) &&
|
|
|
|
JS_GetProperty(cx, tmp, "b", &jsb) &&
|
|
|
|
JS_GetProperty(cx, tmp, "a", &jsa) &&
|
|
|
|
JS::ToNumber(cx, jsr, &r) &&
|
|
|
|
JS::ToNumber(cx, jsg, &g) &&
|
|
|
|
JS::ToNumber(cx, jsb, &b) &&
|
|
|
|
JS::ToNumber(cx, jsa, &a);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->r = (GLubyte)r;
|
|
|
|
ret->g = (GLubyte)g;
|
|
|
|
ret->b = (GLubyte)b;
|
|
|
|
ret->a = (GLubyte)a;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_cccolor4f(JSContext *cx, JS::HandleValue v, Color4F* ret) {
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsr(cx);
|
|
|
|
JS::RootedValue jsg(cx);
|
|
|
|
JS::RootedValue jsb(cx);
|
|
|
|
JS::RootedValue jsa(cx);
|
|
|
|
double r, g, b, a;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "r", &jsr) &&
|
|
|
|
JS_GetProperty(cx, tmp, "g", &jsg) &&
|
|
|
|
JS_GetProperty(cx, tmp, "b", &jsb) &&
|
|
|
|
JS_GetProperty(cx, tmp, "a", &jsa) &&
|
|
|
|
JS::ToNumber(cx, jsr, &r) &&
|
|
|
|
JS::ToNumber(cx, jsg, &g) &&
|
|
|
|
JS::ToNumber(cx, jsb, &b) &&
|
|
|
|
JS::ToNumber(cx, jsa, &a);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
|
|
|
ret->r = (float)r / 255;
|
|
|
|
ret->g = (float)g / 255;
|
|
|
|
ret->b = (float)b / 255;
|
|
|
|
ret->a = (float)a / 255;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_cccolor3b(JSContext *cx, JS::HandleValue v, Color3B* ret) {
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsr(cx);
|
|
|
|
JS::RootedValue jsg(cx);
|
|
|
|
JS::RootedValue jsb(cx);
|
|
|
|
double r, g, b;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "r", &jsr) &&
|
|
|
|
JS_GetProperty(cx, tmp, "g", &jsg) &&
|
|
|
|
JS_GetProperty(cx, tmp, "b", &jsb) &&
|
|
|
|
JS::ToNumber(cx, jsr, &r) &&
|
|
|
|
JS::ToNumber(cx, jsg, &g) &&
|
|
|
|
JS::ToNumber(cx, jsb, &b);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->r = (GLubyte)r;
|
|
|
|
ret->g = (GLubyte)g;
|
|
|
|
ret->b = (GLubyte)b;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_cccolor_to_opacity(JSContext *cx, JS::HandleValue v, int32_t* ret) {
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsa(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
double a;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_LookupProperty(cx, tmp, "a", &jsa) &&
|
|
|
|
!jsa.isUndefined() &&
|
|
|
|
JS::ToNumber(cx, jsa, &a);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (ok) {
|
|
|
|
*ret = (int32_t)a;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccarray_of_CCPoint(JSContext* cx, JS::HandleValue v, Point **points, int *numPoints) {
|
|
|
|
// Parsing sequence
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = v.isObject() && JS_ValueToObject( cx, v, &jsobj );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsobj && JS_IsArrayObject( cx, jsobj), cx, false, "Object must be an array");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
uint32_t len;
|
|
|
|
JS_GetArrayLength(cx, jsobj, &len);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-12-16 17:06:56 +08:00
|
|
|
Point *array = new (std::nothrow) Point[len];
|
2015-05-05 10:50:19 +08:00
|
|
|
|
|
|
|
for( uint32_t i=0; i< len;i++ ) {
|
|
|
|
JS::RootedValue valarg(cx);
|
|
|
|
JS_GetElement(cx, jsobj, i, &valarg);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ok = jsval_to_ccpoint(cx, valarg, &array[i]);
|
2016-08-19 16:28:47 +08:00
|
|
|
if(!ok)
|
|
|
|
delete [] array;
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*numPoints = len;
|
|
|
|
*points = array;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool jsval_to_ccarray(JSContext* cx, JS::HandleValue v, __Array** ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = v.isObject() && JS_ValueToObject( cx, v, &jsobj );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsobj && JS_IsArrayObject( cx, jsobj), cx, false, "Object must be an array");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
uint32_t len = 0;
|
|
|
|
JS_GetArrayLength(cx, jsobj, &len);
|
|
|
|
__Array* arr = __Array::createWithCapacity(len);
|
|
|
|
for (uint32_t i=0; i < len; i++) {
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
if (JS_GetElement(cx, jsobj, i, &value)) {
|
|
|
|
if (value.isObject())
|
|
|
|
{
|
|
|
|
js_proxy_t *proxy;
|
|
|
|
JS::RootedObject tmp(cx, value.toObjectOrNull());
|
|
|
|
proxy = jsb_get_js_proxy(tmp);
|
|
|
|
cocos2d::Ref* cobj = (cocos2d::Ref *)(proxy ? proxy->ptr : NULL);
|
|
|
|
// Don't test it.
|
|
|
|
//TEST_NATIVE_OBJECT(cx, cobj)
|
|
|
|
if (cobj) {
|
|
|
|
// It's a native js object.
|
|
|
|
arr->addObject(cobj);
|
|
|
|
}
|
|
|
|
else if (!JS_IsArrayObject(cx, tmp)){
|
|
|
|
// It's a normal js object.
|
|
|
|
__Dictionary* dictVal = NULL;
|
|
|
|
ok = jsval_to_ccdictionary(cx, value, &dictVal);
|
|
|
|
if (ok) {
|
|
|
|
arr->addObject(dictVal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// It's a js array object.
|
|
|
|
__Array* arrVal = NULL;
|
|
|
|
ok = jsval_to_ccarray(cx, value, &arrVal);
|
|
|
|
if (ok) {
|
|
|
|
arr->addObject(arrVal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isString()) {
|
|
|
|
JSStringWrapper valueWapper(value.toString(), cx);
|
2015-11-27 01:26:54 +08:00
|
|
|
arr->addObject(__String::create(valueWapper.get()));
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
else if (value.isNumber()) {
|
|
|
|
double number = 0.0;
|
|
|
|
ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok) {
|
2015-11-27 01:26:54 +08:00
|
|
|
arr->addObject(__Double::create(number));
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isBoolean()) {
|
|
|
|
bool boolVal = JS::ToBoolean(value);
|
2015-11-27 01:26:54 +08:00
|
|
|
arr->addObject(__Bool::create(boolVal));
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
CCASSERT(false, "not supported type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*ret = arr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccvalue(JSContext* cx, JS::HandleValue v, cocos2d::Value* ret)
|
|
|
|
{
|
|
|
|
if (v.isObject())
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx, v.toObjectOrNull());
|
|
|
|
CCASSERT(jsb_get_js_proxy(jsobj) == nullptr, "Native object should be added!");
|
|
|
|
if (!JS_IsArrayObject(cx, jsobj))
|
|
|
|
{
|
|
|
|
// It's a normal js object.
|
|
|
|
ValueMap dictVal;
|
|
|
|
bool ok = jsval_to_ccvaluemap(cx, v, &dictVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
*ret = Value(dictVal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// It's a js array object.
|
|
|
|
ValueVector arrVal;
|
|
|
|
bool ok = jsval_to_ccvaluevector(cx, v, &arrVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
*ret = Value(arrVal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (v.isString())
|
|
|
|
{
|
|
|
|
JSStringWrapper valueWapper(v.toString(), cx);
|
|
|
|
*ret = Value(valueWapper.get());
|
|
|
|
}
|
|
|
|
else if (v.isNumber())
|
|
|
|
{
|
|
|
|
double number = 0.0;
|
|
|
|
bool ok = JS::ToNumber(cx, v, &number);
|
|
|
|
if (ok) {
|
|
|
|
*ret = Value(number);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (v.isBoolean())
|
|
|
|
{
|
|
|
|
bool boolVal = JS::ToBoolean(v);
|
|
|
|
*ret = Value(boolVal);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
CCASSERT(false, "not supported type");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccvaluemap(JSContext* cx, JS::HandleValue v, cocos2d::ValueMap* ret)
|
|
|
|
{
|
|
|
|
if (v.isNullOrUndefined())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject tmp(cx, v.toObjectOrNull());
|
|
|
|
if (!tmp) {
|
|
|
|
CCLOG("%s", "jsval_to_ccvaluemap: the jsval is not an object.");
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject it(cx, JS_NewPropertyIterator(cx, tmp));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ValueMap& dict = *ret;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
JS::RootedId idp(cx);
|
|
|
|
JS::RootedValue key(cx);
|
|
|
|
if (! JS_NextProperty(cx, it, idp.address()) || ! JS_IdToValue(cx, idp, &key)) {
|
|
|
|
return false; // error
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (key.isNullOrUndefined()) {
|
|
|
|
break; // end of iteration
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!key.isString()) {
|
|
|
|
continue; // ignore integer properties
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSStringWrapper keyWrapper(key.toString(), cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedValue value(cx);
|
|
|
|
JS_GetPropertyById(cx, tmp, idp, &value);
|
|
|
|
if (value.isObject())
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx, value.toObjectOrNull());
|
|
|
|
CCASSERT(jsb_get_js_proxy(jsobj) == nullptr, "Native object should be added!");
|
|
|
|
if (!JS_IsArrayObject(cx, jsobj))
|
|
|
|
{
|
|
|
|
// It's a normal js object.
|
|
|
|
ValueMap dictVal;
|
|
|
|
bool ok = jsval_to_ccvaluemap(cx, value, &dictVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
dict.insert(ValueMap::value_type(keyWrapper.get(), Value(dictVal)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// It's a js array object.
|
|
|
|
ValueVector arrVal;
|
|
|
|
bool ok = jsval_to_ccvaluevector(cx, value, &arrVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
dict.insert(ValueMap::value_type(keyWrapper.get(), Value(arrVal)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isString())
|
|
|
|
{
|
|
|
|
JSStringWrapper valueWapper(value.toString(), cx);
|
|
|
|
dict.insert(ValueMap::value_type(keyWrapper.get(), Value(valueWapper.get())));
|
|
|
|
}
|
|
|
|
else if (value.isNumber())
|
|
|
|
{
|
|
|
|
double number = 0.0;
|
|
|
|
bool ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok) {
|
|
|
|
dict.insert(ValueMap::value_type(keyWrapper.get(), Value(number)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isBoolean())
|
|
|
|
{
|
|
|
|
bool boolVal = JS::ToBoolean(value);
|
|
|
|
dict.insert(ValueMap::value_type(keyWrapper.get(), Value(boolVal)));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
CCASSERT(false, "not supported type");
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccvaluemapintkey(JSContext* cx, JS::HandleValue v, cocos2d::ValueMapIntKey* ret)
|
|
|
|
{
|
|
|
|
if (v.isNullOrUndefined())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject tmp(cx, v.toObjectOrNull());
|
|
|
|
if (!tmp) {
|
|
|
|
CCLOG("%s", "jsval_to_ccvaluemap: the jsval is not an object.");
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject it(cx, JS_NewPropertyIterator(cx, tmp));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ValueMapIntKey& dict = *ret;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
JS::RootedId idp(cx);
|
|
|
|
JS::RootedValue key(cx);
|
|
|
|
if (! JS_NextProperty(cx, it, idp.address()) || ! JS_IdToValue(cx, idp, &key)) {
|
|
|
|
return false; // error
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (key.isNullOrUndefined()) {
|
|
|
|
break; // end of iteration
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!key.isString()) {
|
|
|
|
continue; // ignore integer properties
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
int keyVal = key.toInt32();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedValue value(cx);
|
|
|
|
JS_GetPropertyById(cx, tmp, idp, &value);
|
|
|
|
if (value.isObject())
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx, value.toObjectOrNull());
|
|
|
|
CCASSERT(jsb_get_js_proxy(jsobj) == nullptr, "Native object should be added!");
|
|
|
|
if (!JS_IsArrayObject(cx, jsobj))
|
|
|
|
{
|
|
|
|
// It's a normal js object.
|
|
|
|
ValueMap dictVal;
|
|
|
|
bool ok = jsval_to_ccvaluemap(cx, value, &dictVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
dict.insert(ValueMapIntKey::value_type(keyVal, Value(dictVal)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// It's a js array object.
|
|
|
|
ValueVector arrVal;
|
|
|
|
bool ok = jsval_to_ccvaluevector(cx, value, &arrVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
dict.insert(ValueMapIntKey::value_type(keyVal, Value(arrVal)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isString())
|
|
|
|
{
|
|
|
|
JSStringWrapper valueWapper(value.toString(), cx);
|
|
|
|
dict.insert(ValueMapIntKey::value_type(keyVal, Value(valueWapper.get())));
|
|
|
|
}
|
|
|
|
else if (value.isNumber())
|
|
|
|
{
|
|
|
|
double number = 0.0;
|
|
|
|
bool ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok) {
|
|
|
|
dict.insert(ValueMapIntKey::value_type(keyVal, Value(number)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isBoolean())
|
|
|
|
{
|
|
|
|
bool boolVal = JS::ToBoolean(value);
|
|
|
|
dict.insert(ValueMapIntKey::value_type(keyVal, Value(boolVal)));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
CCASSERT(false, "not supported type");
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccvaluevector(JSContext* cx, JS::HandleValue v, cocos2d::ValueVector* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsArr(cx);
|
|
|
|
bool ok = v.isObject() && JS_ValueToObject( cx, v, &jsArr );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsArr && JS_IsArrayObject( cx, jsArr), cx, false, "Object must be an array");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
uint32_t len = 0;
|
|
|
|
JS_GetArrayLength(cx, jsArr, &len);
|
|
|
|
|
|
|
|
for (uint32_t i=0; i < len; i++)
|
|
|
|
{
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
if (JS_GetElement(cx, jsArr, i, &value))
|
|
|
|
{
|
|
|
|
if (value.isObject())
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx, value.toObjectOrNull());
|
|
|
|
CCASSERT(jsb_get_js_proxy(jsobj) == nullptr, "Native object should be added!");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!JS_IsArrayObject(cx, jsobj))
|
|
|
|
{
|
|
|
|
// It's a normal js object.
|
|
|
|
ValueMap dictVal;
|
|
|
|
ok = jsval_to_ccvaluemap(cx, value, &dictVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->push_back(Value(dictVal));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// It's a js array object.
|
|
|
|
ValueVector arrVal;
|
|
|
|
ok = jsval_to_ccvaluevector(cx, value, &arrVal);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->push_back(Value(arrVal));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isString())
|
|
|
|
{
|
|
|
|
JSStringWrapper valueWapper(value.toString(), cx);
|
|
|
|
ret->push_back(Value(valueWapper.get()));
|
|
|
|
}
|
|
|
|
else if (value.isNumber())
|
|
|
|
{
|
|
|
|
double number = 0.0;
|
|
|
|
ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->push_back(Value(number));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isBoolean())
|
|
|
|
{
|
|
|
|
bool boolVal = JS::ToBoolean(value);
|
|
|
|
ret->push_back(Value(boolVal));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCASSERT(false, "not supported type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ssize( JSContext *cx, JS::HandleValue vp, ssize_t* size)
|
|
|
|
{
|
|
|
|
bool ret = false;
|
|
|
|
int32_t sizeInt32 = 0;
|
|
|
|
ret = jsval_to_int32(cx, vp, &sizeInt32);
|
|
|
|
*size = sizeInt32;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-12-07 13:34:12 +08:00
|
|
|
bool jsval_to_size( JSContext *cx, JS::HandleValue vp, size_t* size)
|
|
|
|
{
|
|
|
|
bool ret = false;
|
|
|
|
uint32_t sizeUint32 = 0;
|
|
|
|
ret = jsval_to_uint32(cx, vp, &sizeUint32);
|
|
|
|
*size = sizeUint32;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
bool jsval_to_std_vector_string( JSContext *cx, JS::HandleValue vp, std::vector<std::string>* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = vp.isObject() && JS_ValueToObject( cx, vp, &jsobj );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsobj && JS_IsArrayObject( cx, jsobj), cx, false, "Object must be an array");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
uint32_t len = 0;
|
|
|
|
JS_GetArrayLength(cx, jsobj, &len);
|
2015-05-21 18:03:51 +08:00
|
|
|
ret->reserve(len);
|
2015-05-05 10:50:19 +08:00
|
|
|
for (uint32_t i=0; i < len; i++)
|
|
|
|
{
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
if (JS_GetElement(cx, jsobj, i, &value))
|
|
|
|
{
|
|
|
|
if (value.isString())
|
|
|
|
{
|
|
|
|
JSStringWrapper valueWapper(value.toString(), cx);
|
|
|
|
ret->push_back(valueWapper.get());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
JS_ReportError(cx, "not supported type in array");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_std_vector_int( JSContext *cx, JS::HandleValue vp, std::vector<int>* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = vp.isObject() && JS_ValueToObject( cx, vp, &jsobj );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsobj && JS_IsArrayObject( cx, jsobj), cx, false, "Object must be an array");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
uint32_t len = 0;
|
|
|
|
JS_GetArrayLength(cx, jsobj, &len);
|
2015-05-21 18:03:51 +08:00
|
|
|
ret->reserve(len);
|
2015-05-05 10:50:19 +08:00
|
|
|
for (uint32_t i=0; i < len; i++)
|
|
|
|
{
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
if (JS_GetElement(cx, jsobj, i, &value))
|
|
|
|
{
|
|
|
|
if (value.isNumber())
|
|
|
|
{
|
|
|
|
double number = 0.0;
|
|
|
|
ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->push_back(static_cast<int>(number));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
JS_ReportError(cx, "not supported type in array");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-21 18:03:51 +08:00
|
|
|
bool jsval_to_std_vector_float( JSContext *cx, JS::HandleValue vp, std::vector<float>* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = vp.isObject() && JS_ValueToObject( cx, vp, &jsobj );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsobj && JS_IsArrayObject( cx, jsobj), cx, false, "Object must be an array");
|
|
|
|
|
|
|
|
uint32_t len = 0;
|
|
|
|
JS_GetArrayLength(cx, jsobj, &len);
|
|
|
|
ret->reserve(len);
|
|
|
|
for (uint32_t i=0; i < len; i++)
|
|
|
|
{
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
if (JS_GetElement(cx, jsobj, i, &value))
|
|
|
|
{
|
|
|
|
if (value.isNumber())
|
|
|
|
{
|
|
|
|
double number = 0.0;
|
|
|
|
ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->push_back(number);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
JS_ReportError(cx, "not supported type in array");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
bool jsval_to_matrix(JSContext *cx, JS::HandleValue vp, cocos2d::Mat4* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
bool ok = vp.isObject() && JS_ValueToObject( cx, vp, &jsobj );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsobj && JS_IsArrayObject( cx, jsobj), cx, false, "Object must be an matrix");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
uint32_t len = 0;
|
|
|
|
JS_GetArrayLength(cx, jsobj, &len);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (len != 16)
|
|
|
|
{
|
|
|
|
JS_ReportError(cx, "array length error: %d, was expecting 16", len);
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
for (uint32_t i=0; i < len; i++)
|
|
|
|
{
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
if (JS_GetElement(cx, jsobj, i, &value))
|
|
|
|
{
|
|
|
|
if (value.isNumber())
|
|
|
|
{
|
|
|
|
double number = 0.0;
|
|
|
|
ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
ret->m[i] = static_cast<float>(number);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
JS_ReportError(cx, "not supported type in matrix");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_vector2(JSContext *cx, JS::HandleValue vp, cocos2d::Vec2* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsx(cx);
|
|
|
|
JS::RootedValue jsy(cx);
|
|
|
|
double x, y;
|
|
|
|
bool ok = vp.isObject() &&
|
|
|
|
JS_ValueToObject(cx, vp, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "x", &jsx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "y", &jsy) &&
|
|
|
|
JS::ToNumber(cx, jsx, &x) &&
|
2015-05-11 15:44:36 +08:00
|
|
|
JS::ToNumber(cx, jsy, &y) &&
|
2016-05-30 18:10:48 +08:00
|
|
|
!std::isnan(x) && !std::isnan(y);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->x = (float)x;
|
|
|
|
ret->y = (float)y;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_vector3(JSContext *cx, JS::HandleValue vp, cocos2d::Vec3* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsx(cx);
|
|
|
|
JS::RootedValue jsy(cx);
|
|
|
|
JS::RootedValue jsz(cx);
|
|
|
|
double x, y, z;
|
|
|
|
bool ok = vp.isObject() &&
|
|
|
|
JS_ValueToObject(cx, vp, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "x", &jsx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "y", &jsy) &&
|
|
|
|
JS_GetProperty(cx, tmp, "z", &jsz) &&
|
|
|
|
JS::ToNumber(cx, jsx, &x) &&
|
|
|
|
JS::ToNumber(cx, jsy, &y) &&
|
|
|
|
JS::ToNumber(cx, jsz, &z) &&
|
2016-05-30 18:10:48 +08:00
|
|
|
!std::isnan(x) && !std::isnan(y) && !std::isnan(z);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->x = (float)x;
|
|
|
|
ret->y = (float)y;
|
|
|
|
ret->z = (float)z;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_vector4(JSContext *cx, JS::HandleValue vp, cocos2d::Vec4* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsx(cx);
|
|
|
|
JS::RootedValue jsy(cx);
|
|
|
|
JS::RootedValue jsz(cx);
|
|
|
|
JS::RootedValue jsw(cx);
|
|
|
|
double x, y, z, w;
|
|
|
|
bool ok = vp.isObject() &&
|
|
|
|
JS_ValueToObject(cx, vp, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "x", &jsx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "y", &jsy) &&
|
|
|
|
JS_GetProperty(cx, tmp, "z", &jsz) &&
|
|
|
|
JS_GetProperty(cx, tmp, "w", &jsw) &&
|
|
|
|
JS::ToNumber(cx, jsx, &x) &&
|
|
|
|
JS::ToNumber(cx, jsy, &y) &&
|
|
|
|
JS::ToNumber(cx, jsz, &z) &&
|
|
|
|
JS::ToNumber(cx, jsw, &w) &&
|
2016-05-30 18:10:48 +08:00
|
|
|
!std::isnan(x) && !std::isnan(y) && !std::isnan(z) && !std::isnan(w);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->x = (float)x;
|
|
|
|
ret->y = (float)y;
|
|
|
|
ret->z = (float)z;
|
|
|
|
ret->w = (float)w;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_blendfunc(JSContext *cx, JS::HandleValue vp, cocos2d::BlendFunc* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jssrc(cx);
|
|
|
|
JS::RootedValue jsdst(cx);
|
|
|
|
double src, dst;
|
|
|
|
bool ok = vp.isObject() &&
|
|
|
|
JS_ValueToObject(cx, vp, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "src", &jssrc) &&
|
|
|
|
JS_GetProperty(cx, tmp, "dst", &jsdst) &&
|
|
|
|
JS::ToNumber(cx, jssrc, &src) &&
|
|
|
|
JS::ToNumber(cx, jsdst, &dst);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->src = (unsigned int)src;
|
|
|
|
ret->dst = (unsigned int)dst;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
bool jsval_to_vector_vec2(JSContext* cx, JS::HandleValue v, std::vector<cocos2d::Vec2>* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsArr(cx);
|
|
|
|
bool ok = v.isObject() && JS_ValueToObject( cx, v, &jsArr );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsArr && JS_IsArrayObject( cx, jsArr), cx, false, "Object must be an array");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
uint32_t len = 0;
|
|
|
|
JS_GetArrayLength(cx, jsArr, &len);
|
|
|
|
ret->reserve(len);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
for (uint32_t i=0; i < len; i++)
|
|
|
|
{
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
if (JS_GetElement(cx, jsArr, i, &value))
|
|
|
|
{
|
|
|
|
cocos2d::Vec2 vec2;
|
|
|
|
ok &= jsval_to_vector2(cx, value, &vec2);
|
|
|
|
ret->push_back(vec2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_cctex2f(JSContext* cx, JS::HandleValue vp, cocos2d::Tex2F* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsx(cx);
|
|
|
|
JS::RootedValue jsy(cx);
|
|
|
|
double x, y;
|
|
|
|
bool ok = vp.isObject() &&
|
|
|
|
JS_ValueToObject(cx, vp, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "x", &jsx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "y", &jsy) &&
|
|
|
|
JS::ToNumber(cx, jsx, &x) &&
|
|
|
|
JS::ToNumber(cx, jsy, &y) &&
|
2016-05-30 18:10:48 +08:00
|
|
|
!std::isnan(x) && !std::isnan(y);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
ret->u = (GLfloat)x;
|
|
|
|
ret->v = (GLfloat)y;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_v3fc4bt2f(JSContext* cx, JS::HandleValue v, cocos2d::V3F_C4B_T2F* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject object(cx, v.toObjectOrNull());
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
cocos2d::Vec3 v3;
|
|
|
|
cocos2d::Color4B color;
|
|
|
|
cocos2d::Tex2F t2;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
JS::RootedValue jsv3(cx);
|
|
|
|
JS::RootedValue jscolor(cx);
|
|
|
|
JS::RootedValue jst2(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
bool ok = JS_GetProperty(cx, object, "v3f", &jsv3) &&
|
|
|
|
JS_GetProperty(cx, object, "c4b", &jscolor) &&
|
|
|
|
JS_GetProperty(cx, object, "t2f", &jst2) &&
|
|
|
|
jsval_to_vector3(cx, jsv3, &v3) &&
|
|
|
|
jsval_to_cccolor4b(cx, jscolor, &color) &&
|
|
|
|
jsval_to_cctex2f(cx, jst2, &t2);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
ret->vertices = v3;
|
|
|
|
ret->colors = color;
|
|
|
|
ret->texCoords = t2;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_v3fc4bt2f_quad(JSContext* cx, JS::HandleValue v, cocos2d::V3F_C4B_T2F_Quad* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject object(cx, v.toObjectOrNull());
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
cocos2d::V3F_C4B_T2F tl;
|
|
|
|
cocos2d::V3F_C4B_T2F bl;
|
|
|
|
cocos2d::V3F_C4B_T2F tr;
|
|
|
|
cocos2d::V3F_C4B_T2F br;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
JS::RootedValue jstl(cx);
|
|
|
|
JS::RootedValue jsbl(cx);
|
|
|
|
JS::RootedValue jstr(cx);
|
|
|
|
JS::RootedValue jsbr(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
bool ok = JS_GetProperty(cx, object, "tl", &jstl) &&
|
|
|
|
JS_GetProperty(cx, object, "bl", &jsbl) &&
|
|
|
|
JS_GetProperty(cx, object, "tr", &jstr) &&
|
|
|
|
JS_GetProperty(cx, object, "br", &jsbr) &&
|
|
|
|
jsval_to_v3fc4bt2f(cx, jstl, &tl) &&
|
|
|
|
jsval_to_v3fc4bt2f(cx, jsbl, &bl) &&
|
|
|
|
jsval_to_v3fc4bt2f(cx, jstr, &tr) &&
|
|
|
|
jsval_to_v3fc4bt2f(cx, jsbr, &br);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
ret->tl = tl;
|
|
|
|
ret->bl = bl;
|
|
|
|
ret->tr = tr;
|
|
|
|
ret->br = br;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_vector_v3fc4bt2f(JSContext* cx, JS::HandleValue v, std::vector<cocos2d::V3F_C4B_T2F>* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsArr(cx);
|
|
|
|
bool ok = v.isObject() && JS_ValueToObject( cx, v, &jsArr );
|
|
|
|
JSB_PRECONDITION3( ok, cx, false, "Error converting value to object");
|
|
|
|
JSB_PRECONDITION3( jsArr && JS_IsArrayObject( cx, jsArr), cx, false, "Object must be an array");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
uint32_t len = 0;
|
|
|
|
JS_GetArrayLength(cx, jsArr, &len);
|
|
|
|
ret->reserve(len);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
for (uint32_t i=0; i < len; i++)
|
|
|
|
{
|
|
|
|
JS::RootedValue value(cx);
|
|
|
|
if (JS_GetElement(cx, jsArr, i, &value))
|
|
|
|
{
|
|
|
|
cocos2d::V3F_C4B_T2F vert;
|
|
|
|
ok &= jsval_to_v3fc4bt2f(cx, value, &vert);
|
|
|
|
ret->push_back(vert);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
bool jsval_to_std_map_string_string(JSContext* cx, JS::HandleValue v, std::map<std::string, std::string>* ret)
|
|
|
|
{
|
|
|
|
if (v.isNullOrUndefined())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
JS::RootedObject tmp(cx, v.toObjectOrNull());
|
2016-04-18 15:09:21 +08:00
|
|
|
if (!tmp)
|
2015-07-24 15:48:34 +08:00
|
|
|
{
|
|
|
|
CCLOG("%s", "jsval_to_std_map_string_string: the jsval is not an object.");
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
JS::RootedObject it(cx, JS_NewPropertyIterator(cx, tmp));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
std::map<std::string, std::string>& dict = *ret;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
JS::RootedId idp(cx);
|
|
|
|
JS::RootedValue key(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
if (! JS_NextProperty(cx, it, idp.address()) || ! JS_IdToValue(cx, idp, &key))
|
2015-07-24 15:48:34 +08:00
|
|
|
{
|
|
|
|
return false; // error
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
|
|
|
if (key.isNullOrUndefined())
|
2015-07-24 15:48:34 +08:00
|
|
|
{
|
|
|
|
break; // end of iteration
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
|
|
|
if (!key.isString())
|
2015-07-24 15:48:34 +08:00
|
|
|
{
|
|
|
|
continue; // only take account of string key
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
JSStringWrapper keyWrapper(key.toString(), cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
JS::RootedValue value(cx);
|
|
|
|
JS_GetPropertyById(cx, tmp, idp, &value);
|
|
|
|
if (value.isString())
|
|
|
|
{
|
|
|
|
JSStringWrapper valueWapper(value.toString(), cx);
|
|
|
|
dict[keyWrapper.get()] = valueWapper.get();
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
else
|
2015-07-24 15:48:34 +08:00
|
|
|
{
|
|
|
|
CCASSERT(false, "jsval_to_std_map_string_string: not supported map type");
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// native --> jsval
|
|
|
|
|
|
|
|
jsval ccarray_to_jsval(JSContext* cx, __Array *arr)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsretArr(cx, JS_NewArrayObject(cx, 0));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
Ref* obj;
|
|
|
|
int i = 0;
|
|
|
|
CCARRAY_FOREACH(arr, obj)
|
|
|
|
{
|
|
|
|
JS::RootedValue arrElement(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
//First, check whether object is associated with js object.
|
2015-12-11 14:15:44 +08:00
|
|
|
js_type_class_t *typeClass = js_get_type_from_native<cocos2d::Ref>(obj);
|
|
|
|
auto jsobj = jsb_ref_get_or_create_jsobject(cx, obj, typeClass, "cocos2d::Ref");
|
|
|
|
if (jsobj) {
|
|
|
|
arrElement = OBJECT_TO_JSVAL(jsobj);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
__String* strVal = NULL;
|
|
|
|
__Dictionary* dictVal = NULL;
|
|
|
|
__Array* arrVal = NULL;
|
|
|
|
__Double* doubleVal = NULL;
|
|
|
|
__Bool* boolVal = NULL;
|
|
|
|
__Float* floatVal = NULL;
|
|
|
|
__Integer* intVal = NULL;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if ((strVal = dynamic_cast<cocos2d::__String *>(obj))) {
|
|
|
|
arrElement = c_string_to_jsval(cx, strVal->getCString());
|
|
|
|
} else if ((dictVal = dynamic_cast<cocos2d::__Dictionary*>(obj))) {
|
|
|
|
arrElement = ccdictionary_to_jsval(cx, dictVal);
|
|
|
|
} else if ((arrVal = dynamic_cast<cocos2d::__Array*>(obj))) {
|
|
|
|
arrElement = ccarray_to_jsval(cx, arrVal);
|
|
|
|
} else if ((doubleVal = dynamic_cast<__Double*>(obj))) {
|
|
|
|
arrElement = DOUBLE_TO_JSVAL(doubleVal->getValue());
|
|
|
|
} else if ((floatVal = dynamic_cast<__Float*>(obj))) {
|
|
|
|
arrElement = DOUBLE_TO_JSVAL(floatVal->getValue());
|
|
|
|
} else if ((intVal = dynamic_cast<__Integer*>(obj))) {
|
|
|
|
arrElement = INT_TO_JSVAL(intVal->getValue());
|
|
|
|
} else if ((boolVal = dynamic_cast<__Bool*>(obj))) {
|
|
|
|
arrElement = BOOLEAN_TO_JSVAL(boolVal->getValue() ? true : false);
|
|
|
|
} else {
|
2016-07-25 01:53:22 +08:00
|
|
|
CCASSERT(false, "the type isn't supported.");
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!JS_SetElement(cx, jsretArr, i, arrElement)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsretArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccdictionary_to_jsval(JSContext* cx, __Dictionary* dict)
|
|
|
|
{
|
|
|
|
|
|
|
|
JS::RootedObject proto(cx);
|
|
|
|
JS::RootedObject parent(cx);
|
|
|
|
JS::RootedObject jsRet(cx, JS_NewObject(cx, NULL, proto, parent));
|
|
|
|
DictElement* pElement = NULL;
|
|
|
|
CCDICT_FOREACH(dict, pElement)
|
|
|
|
{
|
|
|
|
JS::RootedValue dictElement(cx);
|
|
|
|
Ref* obj = pElement->getObject();
|
|
|
|
//First, check whether object is associated with js object.
|
2015-12-11 14:15:44 +08:00
|
|
|
js_type_class_t *typeClass = js_get_type_from_native<cocos2d::Ref>(obj);
|
|
|
|
auto jsobj = jsb_ref_get_or_create_jsobject(cx, obj, typeClass, "cocos2d::Ref");
|
|
|
|
if (jsobj) {
|
|
|
|
dictElement = OBJECT_TO_JSVAL(jsobj);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
__String* strVal = NULL;
|
|
|
|
__Dictionary* dictVal = NULL;
|
|
|
|
__Array* arrVal = NULL;
|
|
|
|
__Double* doubleVal = NULL;
|
|
|
|
__Bool* boolVal = NULL;
|
|
|
|
__Float* floatVal = NULL;
|
|
|
|
__Integer* intVal = NULL;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if ((strVal = dynamic_cast<cocos2d::__String *>(obj))) {
|
|
|
|
dictElement = c_string_to_jsval(cx, strVal->getCString());
|
|
|
|
} else if ((dictVal = dynamic_cast<__Dictionary*>(obj))) {
|
|
|
|
dictElement = ccdictionary_to_jsval(cx, dictVal);
|
|
|
|
} else if ((arrVal = dynamic_cast<__Array*>(obj))) {
|
|
|
|
dictElement = ccarray_to_jsval(cx, arrVal);
|
|
|
|
} else if ((doubleVal = dynamic_cast<__Double*>(obj))) {
|
|
|
|
dictElement = DOUBLE_TO_JSVAL(doubleVal->getValue());
|
|
|
|
} else if ((floatVal = dynamic_cast<__Float*>(obj))) {
|
|
|
|
dictElement = DOUBLE_TO_JSVAL(floatVal->getValue());
|
|
|
|
} else if ((intVal = dynamic_cast<__Integer*>(obj))) {
|
|
|
|
dictElement = INT_TO_JSVAL(intVal->getValue());
|
|
|
|
} else if ((boolVal = dynamic_cast<__Bool*>(obj))) {
|
|
|
|
dictElement = BOOLEAN_TO_JSVAL(boolVal->getValue() ? true : false);
|
|
|
|
} else {
|
2016-07-25 01:53:22 +08:00
|
|
|
CCASSERT(false, "the type isn't supported.");
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const char* key = pElement->getStrKey();
|
|
|
|
if (key && strlen(key) > 0)
|
|
|
|
{
|
|
|
|
JS_SetProperty(cx, jsRet, key, dictElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsRet);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccdictionary(JSContext* cx, JS::HandleValue v, __Dictionary** ret)
|
|
|
|
{
|
|
|
|
if (v.isNullOrUndefined())
|
|
|
|
{
|
|
|
|
*ret = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject tmp(cx, v.toObjectOrNull());
|
|
|
|
if (!tmp) {
|
|
|
|
CCLOG("%s", "jsval_to_ccdictionary: the jsval is not an object.");
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject it(cx, JS_NewPropertyIterator(cx, tmp));
|
|
|
|
__Dictionary* dict = NULL;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
JS::RootedId idp(cx);
|
|
|
|
JS::RootedValue key(cx);
|
|
|
|
if (! JS_NextProperty(cx, it, idp.address()) || ! JS_IdToValue(cx, idp, &key)) {
|
|
|
|
return false; // error
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (key.isNullOrUndefined()) {
|
|
|
|
break; // end of iteration
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!key.isString()) {
|
|
|
|
continue; // ignore integer properties
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSStringWrapper keyWrapper(key.toString(), cx);
|
|
|
|
if (!dict) {
|
|
|
|
dict = __Dictionary::create();
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedValue value(cx);
|
|
|
|
JS_GetPropertyById(cx, tmp, idp, &value);
|
|
|
|
if (value.isObject())
|
|
|
|
{
|
|
|
|
js_proxy_t *proxy;
|
|
|
|
tmp = value.toObjectOrNull();
|
|
|
|
proxy = jsb_get_js_proxy(tmp);
|
|
|
|
cocos2d::Ref* cobj = (cocos2d::Ref *)(proxy ? proxy->ptr : NULL);
|
|
|
|
// Don't test it.
|
|
|
|
//TEST_NATIVE_OBJECT(cx, cobj)
|
|
|
|
if (cobj) {
|
|
|
|
// It's a native <-> js glue object.
|
|
|
|
dict->setObject(cobj, keyWrapper.get());
|
|
|
|
}
|
|
|
|
else if (!JS_IsArrayObject(cx, tmp)){
|
|
|
|
// It's a normal js object.
|
|
|
|
__Dictionary* dictVal = NULL;
|
|
|
|
bool ok = jsval_to_ccdictionary(cx, value, &dictVal);
|
|
|
|
if (ok) {
|
|
|
|
dict->setObject(dictVal, keyWrapper.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// It's a js array object.
|
|
|
|
__Array* arrVal = NULL;
|
|
|
|
bool ok = jsval_to_ccarray(cx, value, &arrVal);
|
|
|
|
if (ok) {
|
|
|
|
dict->setObject(arrVal, keyWrapper.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isString()) {
|
|
|
|
JSStringWrapper valueWapper(value.toString(), cx);
|
2015-11-27 01:26:54 +08:00
|
|
|
dict->setObject(__String::create(valueWapper.get()), keyWrapper.get());
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
else if (value.isNumber()) {
|
|
|
|
double number = 0.0;
|
|
|
|
bool ok = JS::ToNumber(cx, value, &number);
|
|
|
|
if (ok) {
|
2015-11-27 01:26:54 +08:00
|
|
|
dict->setObject(__Double::create(number), keyWrapper.get());
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (value.isBoolean()) {
|
|
|
|
bool boolVal = JS::ToBoolean(value);
|
2015-11-27 01:26:54 +08:00
|
|
|
dict->setObject(__Bool::create(boolVal), keyWrapper.get());
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
CCASSERT(false, "not supported type");
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*ret = dict;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_ccaffinetransform(JSContext* cx, JS::HandleValue v, AffineTransform* ret)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jsa(cx);
|
|
|
|
JS::RootedValue jsb(cx);
|
|
|
|
JS::RootedValue jsc(cx);
|
|
|
|
JS::RootedValue jsd(cx);
|
|
|
|
JS::RootedValue jstx(cx);
|
|
|
|
JS::RootedValue jsty(cx);
|
|
|
|
double a, b, c, d, tx, ty;
|
|
|
|
bool ok = JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "a", &jsa) &&
|
|
|
|
JS_GetProperty(cx, tmp, "b", &jsb) &&
|
|
|
|
JS_GetProperty(cx, tmp, "c", &jsc) &&
|
|
|
|
JS_GetProperty(cx, tmp, "d", &jsd) &&
|
|
|
|
JS_GetProperty(cx, tmp, "tx", &jstx) &&
|
|
|
|
JS_GetProperty(cx, tmp, "ty", &jsty) &&
|
|
|
|
JS::ToNumber(cx, jsa, &a) &&
|
|
|
|
JS::ToNumber(cx, jsb, &b) &&
|
|
|
|
JS::ToNumber(cx, jsc, &c) &&
|
|
|
|
JS::ToNumber(cx, jsd, &d) &&
|
|
|
|
JS::ToNumber(cx, jstx, &tx) &&
|
|
|
|
JS::ToNumber(cx, jsty, &ty);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*ret = AffineTransformMake(a, b, c, d, tx, ty);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// From native type to jsval
|
|
|
|
jsval int32_to_jsval( JSContext *cx, int32_t number )
|
|
|
|
{
|
|
|
|
return INT_TO_JSVAL(number);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval uint32_to_jsval( JSContext *cx, uint32_t number )
|
|
|
|
{
|
|
|
|
return UINT_TO_JSVAL(number);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ushort_to_jsval( JSContext *cx, unsigned short number )
|
|
|
|
{
|
|
|
|
return UINT_TO_JSVAL(number);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval std_string_to_jsval(JSContext* cx, const std::string& v)
|
|
|
|
{
|
|
|
|
return c_string_to_jsval(cx, v.c_str(), v.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval c_string_to_jsval(JSContext* cx, const char* v, size_t length /* = -1 */)
|
|
|
|
{
|
|
|
|
if (v == NULL)
|
|
|
|
{
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
if (length == -1)
|
|
|
|
{
|
|
|
|
length = strlen(v);
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
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
|
|
|
if (0 == length)
|
|
|
|
{
|
|
|
|
auto emptyStr = JS_NewStringCopyZ(cx, "");
|
|
|
|
return STRING_TO_JSVAL(emptyStr);
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval ret = JSVAL_NULL;
|
|
|
|
|
2016-04-19 15:13:12 +08:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER <= 1800)
|
|
|
|
// NOTE: Visual Studio 2013 (Platform Toolset v120) is not fully C++11 compatible.
|
|
|
|
// It also doesn't provide support for char16_t and std::u16string.
|
|
|
|
// For more information, please see this article
|
|
|
|
// https://blogs.msdn.microsoft.com/vcblog/2014/11/17/c111417-features-in-vs-2015-preview/
|
|
|
|
int utf16_size = 0;
|
|
|
|
const jschar* strUTF16 = (jschar*)cc_utf8_to_utf16(v, (int)length, &utf16_size);
|
|
|
|
|
|
|
|
if (strUTF16 && utf16_size > 0) {
|
|
|
|
JSString* str = JS_NewUCStringCopyN(cx, strUTF16, (size_t)utf16_size);
|
|
|
|
if (str) {
|
|
|
|
ret = STRING_TO_JSVAL(str);
|
|
|
|
}
|
|
|
|
delete[] strUTF16;
|
|
|
|
}
|
|
|
|
#else
|
2016-04-18 16:56:48 +08:00
|
|
|
std::u16string strUTF16;
|
|
|
|
bool ok = StringUtils::UTF8ToUTF16(std::string(v, length), strUTF16);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-04-18 16:56:48 +08:00
|
|
|
if (ok && !strUTF16.empty()) {
|
|
|
|
JSString* str = JS_NewUCStringCopyN(cx, reinterpret_cast<const jschar*>(strUTF16.data()), strUTF16.size());
|
2015-05-05 10:50:19 +08:00
|
|
|
if (str) {
|
|
|
|
ret = STRING_TO_JSVAL(str);
|
|
|
|
}
|
|
|
|
}
|
2016-04-19 15:13:12 +08:00
|
|
|
#endif
|
2015-05-05 10:50:19 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccpoint_to_jsval(JSContext* cx, const Point& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "x", v.x, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "y", v.y, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccacceleration_to_jsval(JSContext* cx, const Acceleration& v)
|
|
|
|
{
|
|
|
|
JSB_AUTOCOMPARTMENT_WITH_GLOBAL_OBJCET
|
|
|
|
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "x", v.x, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "y", v.y, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "z", v.z, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "timestamp", v.timestamp, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccrect_to_jsval(JSContext* cx, const Rect& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "x", v.origin.x, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "y", v.origin.y, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "width", v.size.width, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "height", v.size.height, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccsize_to_jsval(JSContext* cx, const Size& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "width", v.width, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "height", v.height, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval cccolor4b_to_jsval(JSContext* cx, const Color4B& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "r", (int32_t)v.r, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "g", (int32_t)v.g, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "b", (int32_t)v.b, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "a", (int32_t)v.a, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval cccolor4f_to_jsval(JSContext* cx, const Color4F& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "r", (int32_t)(v.r * 255), JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "g", (int32_t)(v.g * 255), JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "b", (int32_t)(v.b * 255), JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "a", (int32_t)(v.a * 255), JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval cccolor3b_to_jsval(JSContext* cx, const Color3B& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "r", (int32_t)v.r, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "g", (int32_t)v.g, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "b", (int32_t)v.b, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccaffinetransform_to_jsval(JSContext* cx, const AffineTransform& t)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "a", t.a, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "b", t.b, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "c", t.c, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "d", t.d, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "tx", t.tx, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "ty", t.ty, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval quaternion_to_jsval(JSContext* cx, const cocos2d::Quaternion& q)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, nullptr, JS::NullPtr(), JS::NullPtr()));
|
|
|
|
if(!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "x", q.x, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "y", q.y, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "z", q.z, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "w", q.w, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if(ok)
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
2015-09-09 16:03:57 +08:00
|
|
|
jsval uniform_to_jsval(JSContext* cx, const cocos2d::Uniform* uniform)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, nullptr, JS::NullPtr(), JS::NullPtr()));
|
|
|
|
if(!tmp) return JSVAL_NULL;
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedValue jsname(cx, std_string_to_jsval(cx, uniform->name));
|
2015-09-09 16:03:57 +08:00
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "location", uniform->location, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "size", uniform->size, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "type", uniform->type, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
2015-11-27 01:26:54 +08:00
|
|
|
JS_DefineProperty(cx, tmp, "name", jsname, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2015-09-09 16:03:57 +08:00
|
|
|
if(ok)
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-09-09 16:03:57 +08:00
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval meshVertexAttrib_to_jsval(JSContext* cx, const cocos2d::MeshVertexAttrib& q)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, nullptr, JS::NullPtr(), JS::NullPtr()));
|
|
|
|
if(!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "size", q.size, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "type", q.type, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "vertexAttrib", q.vertexAttrib, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "attribSizeBytes", q.attribSizeBytes, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if(ok)
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval FontDefinition_to_jsval(JSContext* cx, const FontDefinition& t)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedValue prop(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
bool ok = true;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-11-27 01:26:54 +08:00
|
|
|
prop.set(std_string_to_jsval(cx, t._fontName));
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "fontName", prop, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2015-05-05 10:50:19 +08:00
|
|
|
ok &= JS_DefineProperty(cx, tmp, "fontSize", t._fontSize, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "textAlign", (int32_t)t._alignment, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "verticalAlign", (int32_t)t._vertAlignment, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2015-11-27 01:26:54 +08:00
|
|
|
prop.set(cccolor3b_to_jsval(cx, t._fontFillColor));
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "fillStyle", prop, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2015-05-05 10:50:19 +08:00
|
|
|
ok &= JS_DefineProperty(cx, tmp, "boundingWidth", t._dimensions.width, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "boundingHeight", t._dimensions.height, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// Shadow
|
2015-11-27 01:26:54 +08:00
|
|
|
prop.set(BOOLEAN_TO_JSVAL(t._shadow._shadowEnabled));
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "shadowEnabled", prop, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2015-05-05 10:50:19 +08:00
|
|
|
ok &= JS_DefineProperty(cx, tmp, "shadowOffsetX", t._shadow._shadowOffset.width, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "shadowOffsetY", t._shadow._shadowOffset.height, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "shadowBlur", t._shadow._shadowBlur, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "shadowOpacity", t._shadow._shadowOpacity, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// Stroke
|
2015-11-27 01:26:54 +08:00
|
|
|
prop.set(BOOLEAN_TO_JSVAL(t._stroke._strokeEnabled));
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "strokeEnabled", prop, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
prop.set(cccolor3b_to_jsval(cx, t._stroke._strokeColor));
|
|
|
|
ok &= JS_DefineProperty(cx, tmp, "strokeStyle", prop, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2015-05-05 10:50:19 +08:00
|
|
|
ok &= JS_DefineProperty(cx, tmp, "lineWidth", t._stroke._strokeSize, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_FontDefinition( JSContext *cx, JS::HandleValue vp, FontDefinition *out )
|
|
|
|
{
|
|
|
|
JS::RootedObject jsobj(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!JS_ValueToObject( cx, vp, &jsobj ) )
|
|
|
|
return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION( jsobj, "Not a valid JS object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-03-29 09:52:17 +08:00
|
|
|
// default values
|
2015-05-05 10:50:19 +08:00
|
|
|
const char * defautlFontName = "Arial";
|
|
|
|
const int defaultFontSize = 32;
|
|
|
|
TextHAlignment defaultTextAlignment = TextHAlignment::LEFT;
|
|
|
|
TextVAlignment defaultTextVAlignment = TextVAlignment::TOP;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// by default shadow and stroke are off
|
|
|
|
out->_shadow._shadowEnabled = false;
|
|
|
|
out->_stroke._strokeEnabled = false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// white text by default
|
|
|
|
out->_fontFillColor = Color3B::WHITE;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// font name
|
|
|
|
JS::RootedValue jsr(cx);
|
|
|
|
JS_GetProperty(cx, jsobj, "fontName", &jsr);
|
|
|
|
JS::ToString(cx, jsr);
|
|
|
|
JSStringWrapper wrapper(jsr);
|
|
|
|
const char* fontName = wrapper.get();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (fontName && strlen(fontName) > 0)
|
|
|
|
{
|
|
|
|
out->_fontName = fontName;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out->_fontName = defautlFontName;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// font size
|
|
|
|
bool hasProperty, hasSecondProp;
|
|
|
|
JS_HasProperty(cx, jsobj, "fontSize", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "fontSize", &jsr);
|
|
|
|
double fontSize = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &fontSize);
|
|
|
|
out->_fontSize = fontSize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out->_fontSize = defaultFontSize;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// font alignment horizontal
|
|
|
|
JS_HasProperty(cx, jsobj, "textAlign", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "textAlign", &jsr);
|
|
|
|
double fontAlign = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &fontAlign);
|
|
|
|
out->_alignment = (TextHAlignment)(int)fontAlign;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out->_alignment = defaultTextAlignment;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// font alignment vertical
|
|
|
|
JS_HasProperty(cx, jsobj, "verticalAlign", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "verticalAlign", &jsr);
|
|
|
|
double fontAlign = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &fontAlign);
|
|
|
|
out->_vertAlignment = (TextVAlignment)(int)fontAlign;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out->_vertAlignment = defaultTextVAlignment;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// font fill color
|
|
|
|
JS_HasProperty(cx, jsobj, "fillStyle", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "fillStyle", &jsr);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject jsobjColor(cx);
|
2015-11-27 01:26:54 +08:00
|
|
|
JS::RootedValue jsvalColor(cx, jsr);
|
|
|
|
if (!JS_ValueToObject( cx, jsvalColor, &jsobjColor ) )
|
2015-05-05 10:50:19 +08:00
|
|
|
return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
out->_fontFillColor = getColorFromJSObject(cx, jsobjColor);
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// font rendering box dimensions
|
|
|
|
JS_HasProperty(cx, jsobj, "boundingWidth", &hasProperty);
|
|
|
|
JS_HasProperty(cx, jsobj, "boundingHeight", &hasSecondProp);
|
|
|
|
if ( hasProperty && hasSecondProp )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "boundingWidth", &jsr);
|
|
|
|
double boundingW = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &boundingW);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_GetProperty(cx, jsobj, "boundingHeight", &jsr);
|
|
|
|
double boundingH = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &boundingH);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
Size dimension;
|
|
|
|
dimension.width = boundingW;
|
|
|
|
dimension.height = boundingH;
|
|
|
|
out->_dimensions = dimension;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// shadow
|
|
|
|
JS_HasProperty(cx, jsobj, "shadowEnabled", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "shadowEnabled", &jsr);
|
|
|
|
out->_shadow._shadowEnabled = ToBoolean(jsr);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if ( out->_shadow._shadowEnabled )
|
|
|
|
{
|
|
|
|
// default shadow values
|
|
|
|
out->_shadow._shadowOffset = Size(5, 5);
|
|
|
|
out->_shadow._shadowBlur = 1;
|
|
|
|
out->_shadow._shadowOpacity = 1;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2016-03-29 09:52:17 +08:00
|
|
|
// shadow offset
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_HasProperty(cx, jsobj, "shadowOffsetX", &hasProperty);
|
|
|
|
JS_HasProperty(cx, jsobj, "shadowOffsetY", &hasSecondProp);
|
|
|
|
if ( hasProperty && hasSecondProp )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "shadowOffsetX", &jsr);
|
|
|
|
double offx = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &offx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS_GetProperty(cx, jsobj, "shadowOffsetY", &jsr);
|
|
|
|
double offy = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &offy);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
Size offset;
|
|
|
|
offset.width = offx;
|
|
|
|
offset.height = offy;
|
|
|
|
out->_shadow._shadowOffset = offset;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// shadow blur
|
|
|
|
JS_HasProperty(cx, jsobj, "shadowBlur", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "shadowBlur", &jsr);
|
|
|
|
double shadowBlur = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &shadowBlur);
|
|
|
|
out->_shadow._shadowBlur = shadowBlur;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// shadow intensity
|
|
|
|
JS_HasProperty(cx, jsobj, "shadowOpacity", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "shadowOpacity", &jsr);
|
|
|
|
double shadowOpacity = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &shadowOpacity);
|
|
|
|
out->_shadow._shadowOpacity = shadowOpacity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// stroke
|
|
|
|
JS_HasProperty(cx, jsobj, "strokeEnabled", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "strokeEnabled", &jsr);
|
|
|
|
out->_stroke._strokeEnabled = ToBoolean(jsr);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if ( out->_stroke._strokeEnabled )
|
|
|
|
{
|
|
|
|
// default stroke values
|
|
|
|
out->_stroke._strokeSize = 1;
|
|
|
|
out->_stroke._strokeColor = Color3B::BLUE;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// stroke color
|
|
|
|
JS_HasProperty(cx, jsobj, "strokeStyle", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "strokeStyle", &jsr);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject jsobjStrokeColor(cx);
|
|
|
|
if (!JS_ValueToObject( cx, jsr, &jsobjStrokeColor ) )
|
|
|
|
return false;
|
|
|
|
out->_stroke._strokeColor = getColorFromJSObject(cx, jsobjStrokeColor);
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// stroke size
|
|
|
|
JS_HasProperty(cx, jsobj, "lineWidth", &hasProperty);
|
|
|
|
if ( hasProperty )
|
|
|
|
{
|
|
|
|
JS_GetProperty(cx, jsobj, "lineWidth", &jsr);
|
|
|
|
double strokeSize = 0.0;
|
|
|
|
JS::ToNumber(cx, jsr, &strokeSize);
|
|
|
|
out->_stroke._strokeSize = strokeSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
// we are done here
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool jsval_to_CCPoint( JSContext *cx, JS::HandleValue vp, Point *ret )
|
|
|
|
{
|
|
|
|
#ifdef JSB_COMPATIBLE_WITH_COCOS2D_HTML5_BASIC_TYPES
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedObject jsobj(cx);
|
|
|
|
if( ! JS_ValueToObject( cx, vp, &jsobj ) )
|
|
|
|
return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION( jsobj, "Not a valid JS object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JS::RootedValue valx(cx);
|
|
|
|
JS::RootedValue valy(cx);
|
|
|
|
bool ok = true;
|
|
|
|
ok &= JS_GetProperty(cx, jsobj, "x", &valx);
|
|
|
|
ok &= JS_GetProperty(cx, jsobj, "y", &valy);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if( ! ok )
|
|
|
|
return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
double x, y;
|
|
|
|
ok &= JS::ToNumber(cx, valx, &x);
|
|
|
|
ok &= JS::ToNumber(cx, valy, &y);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if( ! ok )
|
|
|
|
return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
ret->x = x;
|
|
|
|
ret->y = y;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
#else // #! JSB_COMPATIBLE_WITH_COCOS2D_HTML5_BASIC_TYPES
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSObject *tmp_arg;
|
|
|
|
if( ! JS_ValueToObject( cx, vp, &tmp_arg ) )
|
|
|
|
return false;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION( tmp_arg && JS_IsTypedArrayObject( tmp_arg, cx ), "Not a TypedArray object");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
JSB_PRECONDITION( JS_GetTypedArrayByteLength( tmp_arg, cx ) == sizeof(cpVect), "Invalid length");
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
*ret = *(Point*)JS_GetArrayBufferViewData( tmp_arg, cx );
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return true;
|
|
|
|
#endif // #! JSB_COMPATIBLE_WITH_COCOS2D_HTML5_BASIC_TYPES
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccvalue_to_jsval(JSContext* cx, const cocos2d::Value& v)
|
|
|
|
{
|
|
|
|
jsval ret = JSVAL_NULL;
|
|
|
|
const Value& obj = v;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
switch (obj.getType())
|
|
|
|
{
|
|
|
|
case Value::Type::BOOLEAN:
|
|
|
|
ret = BOOLEAN_TO_JSVAL(obj.asBool());
|
|
|
|
break;
|
|
|
|
case Value::Type::FLOAT:
|
|
|
|
case Value::Type::DOUBLE:
|
|
|
|
ret = DOUBLE_TO_JSVAL(obj.asDouble());
|
|
|
|
break;
|
|
|
|
case Value::Type::INTEGER:
|
|
|
|
ret = INT_TO_JSVAL(obj.asInt());
|
|
|
|
break;
|
|
|
|
case Value::Type::STRING:
|
|
|
|
ret = std_string_to_jsval(cx, obj.asString());
|
|
|
|
break;
|
|
|
|
case Value::Type::VECTOR:
|
|
|
|
ret = ccvaluevector_to_jsval(cx, obj.asValueVector());
|
|
|
|
break;
|
|
|
|
case Value::Type::MAP:
|
|
|
|
ret = ccvaluemap_to_jsval(cx, obj.asValueMap());
|
|
|
|
break;
|
|
|
|
case Value::Type::INT_KEY_MAP:
|
|
|
|
ret = ccvaluemapintkey_to_jsval(cx, obj.asIntKeyMap());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccvaluemap_to_jsval(JSContext* cx, const cocos2d::ValueMap& v)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsRet(cx, JS_NewArrayObject(cx, 0));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
for (auto iter = v.begin(); iter != v.end(); ++iter)
|
|
|
|
{
|
|
|
|
JS::RootedValue dictElement(cx);
|
|
|
|
|
|
|
|
std::string key = iter->first;
|
|
|
|
const Value& obj = iter->second;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
switch (obj.getType())
|
|
|
|
{
|
|
|
|
case Value::Type::BOOLEAN:
|
|
|
|
dictElement = BOOLEAN_TO_JSVAL(obj.asBool());
|
|
|
|
break;
|
|
|
|
case Value::Type::FLOAT:
|
|
|
|
case Value::Type::DOUBLE:
|
|
|
|
dictElement = DOUBLE_TO_JSVAL(obj.asDouble());
|
|
|
|
break;
|
|
|
|
case Value::Type::INTEGER:
|
|
|
|
dictElement = INT_TO_JSVAL(obj.asInt());
|
|
|
|
break;
|
|
|
|
case Value::Type::STRING:
|
|
|
|
dictElement = std_string_to_jsval(cx, obj.asString());
|
|
|
|
break;
|
|
|
|
case Value::Type::VECTOR:
|
|
|
|
dictElement = ccvaluevector_to_jsval(cx, obj.asValueVector());
|
|
|
|
break;
|
|
|
|
case Value::Type::MAP:
|
|
|
|
dictElement = ccvaluemap_to_jsval(cx, obj.asValueMap());
|
|
|
|
break;
|
|
|
|
case Value::Type::INT_KEY_MAP:
|
|
|
|
dictElement = ccvaluemapintkey_to_jsval(cx, obj.asIntKeyMap());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!key.empty())
|
|
|
|
{
|
|
|
|
JS_SetProperty(cx, jsRet, key.c_str(), dictElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsRet);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccvaluemapintkey_to_jsval(JSContext* cx, const cocos2d::ValueMapIntKey& v)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsRet(cx, JS_NewArrayObject(cx, 0));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
for (auto iter = v.begin(); iter != v.end(); ++iter)
|
|
|
|
{
|
|
|
|
JS::RootedValue dictElement(cx);
|
|
|
|
std::stringstream keyss;
|
|
|
|
keyss << iter->first;
|
|
|
|
std::string key = keyss.str();
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
const Value& obj = iter->second;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
switch (obj.getType())
|
|
|
|
{
|
|
|
|
case Value::Type::BOOLEAN:
|
|
|
|
dictElement = BOOLEAN_TO_JSVAL(obj.asBool());
|
|
|
|
break;
|
|
|
|
case Value::Type::FLOAT:
|
|
|
|
case Value::Type::DOUBLE:
|
|
|
|
dictElement = DOUBLE_TO_JSVAL(obj.asDouble());
|
|
|
|
break;
|
|
|
|
case Value::Type::INTEGER:
|
|
|
|
dictElement = INT_TO_JSVAL(obj.asInt());
|
|
|
|
break;
|
|
|
|
case Value::Type::STRING:
|
|
|
|
dictElement = std_string_to_jsval(cx, obj.asString());
|
|
|
|
break;
|
|
|
|
case Value::Type::VECTOR:
|
|
|
|
dictElement = ccvaluevector_to_jsval(cx, obj.asValueVector());
|
|
|
|
break;
|
|
|
|
case Value::Type::MAP:
|
|
|
|
dictElement = ccvaluemap_to_jsval(cx, obj.asValueMap());
|
|
|
|
break;
|
|
|
|
case Value::Type::INT_KEY_MAP:
|
|
|
|
dictElement = ccvaluemapintkey_to_jsval(cx, obj.asIntKeyMap());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!key.empty())
|
|
|
|
{
|
|
|
|
JS_SetProperty(cx, jsRet, key.c_str(), dictElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsRet);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ccvaluevector_to_jsval(JSContext* cx, const cocos2d::ValueVector& v)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsretArr(cx, JS_NewArrayObject(cx, 0));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
int i = 0;
|
|
|
|
for (const auto& obj : v)
|
|
|
|
{
|
|
|
|
JS::RootedValue arrElement(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
switch (obj.getType())
|
|
|
|
{
|
|
|
|
case Value::Type::BOOLEAN:
|
|
|
|
arrElement = BOOLEAN_TO_JSVAL(obj.asBool());
|
|
|
|
break;
|
|
|
|
case Value::Type::FLOAT:
|
|
|
|
case Value::Type::DOUBLE:
|
|
|
|
arrElement = DOUBLE_TO_JSVAL(obj.asDouble());
|
|
|
|
break;
|
|
|
|
case Value::Type::INTEGER:
|
|
|
|
arrElement = INT_TO_JSVAL(obj.asInt());
|
|
|
|
break;
|
|
|
|
case Value::Type::STRING:
|
|
|
|
arrElement = std_string_to_jsval(cx, obj.asString());
|
|
|
|
break;
|
|
|
|
case Value::Type::VECTOR:
|
|
|
|
arrElement = ccvaluevector_to_jsval(cx, obj.asValueVector());
|
|
|
|
break;
|
|
|
|
case Value::Type::MAP:
|
|
|
|
arrElement = ccvaluemap_to_jsval(cx, obj.asValueMap());
|
|
|
|
break;
|
|
|
|
case Value::Type::INT_KEY_MAP:
|
|
|
|
arrElement = ccvaluemapintkey_to_jsval(cx, obj.asIntKeyMap());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!JS_SetElement(cx, jsretArr, i, arrElement)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsretArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval ssize_to_jsval(JSContext *cx, ssize_t v)
|
|
|
|
{
|
|
|
|
CCASSERT(v < INT_MAX, "The size should not bigger than 32 bit (int32_t).");
|
|
|
|
return int32_to_jsval(cx, static_cast<int>(v));
|
|
|
|
}
|
|
|
|
|
2017-12-07 13:34:12 +08:00
|
|
|
jsval size_to_jsval(JSContext *cx, size_t v)
|
|
|
|
{
|
|
|
|
CCASSERT(v < UINT_MAX, "The size should not bigger than 32 bit (int32_t).");
|
|
|
|
return uint32_to_jsval(cx, static_cast<uint32_t>(v));
|
|
|
|
}
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
jsval std_vector_string_to_jsval( JSContext *cx, const std::vector<std::string>& v)
|
|
|
|
{
|
2015-05-21 18:03:51 +08:00
|
|
|
JS::RootedObject jsretArr(cx, JS_NewArrayObject(cx, v.size()));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
int i = 0;
|
|
|
|
for (const std::string obj : v)
|
|
|
|
{
|
|
|
|
JS::RootedValue arrElement(cx);
|
|
|
|
arrElement = std_string_to_jsval(cx, obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!JS_SetElement(cx, jsretArr, i, arrElement)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsretArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval std_vector_int_to_jsval( JSContext *cx, const std::vector<int>& v)
|
|
|
|
{
|
2015-05-21 18:03:51 +08:00
|
|
|
JS::RootedObject jsretArr(cx, JS_NewArrayObject(cx, v.size()));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
int i = 0;
|
|
|
|
for (const int obj : v)
|
|
|
|
{
|
|
|
|
JS::RootedValue arrElement(cx);
|
|
|
|
arrElement = int32_to_jsval(cx, obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-21 18:03:51 +08:00
|
|
|
if (!JS_SetElement(cx, jsretArr, i, arrElement)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsretArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval std_vector_float_to_jsval( JSContext *cx, const std::vector<float>& v)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsretArr(cx, JS_NewArrayObject(cx, v.size()));
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
for (const float obj : v)
|
|
|
|
{
|
|
|
|
JS::RootedValue arrElement(cx);
|
|
|
|
arrElement = DOUBLE_TO_JSVAL(obj);
|
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!JS_SetElement(cx, jsretArr, i, arrElement)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsretArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval matrix_to_jsval(JSContext *cx, const cocos2d::Mat4& v)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsretArr(cx, JS_NewArrayObject(cx, 16));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
for (int i = 0; i < 16; i++) {
|
|
|
|
JS::RootedValue arrElement(cx);
|
|
|
|
arrElement = DOUBLE_TO_JSVAL(v.m[i]);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!JS_SetElement(cx, jsretArr, i, arrElement)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-05-05 10:50:19 +08:00
|
|
|
return OBJECT_TO_JSVAL(jsretArr);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval vector2_to_jsval(JSContext *cx, const cocos2d::Vec2& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "x", v.x, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "y", v.y, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval vector3_to_jsval(JSContext *cx, const cocos2d::Vec3& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "x", v.x, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "y", v.y, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "z", v.z, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
2015-06-17 18:50:55 +08:00
|
|
|
jsval vector4_to_jsval(JSContext *cx, const cocos2d::Vec4& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-06-17 18:50:55 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "x", v.x, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "y", v.y, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "z", v.z, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "w", v.z, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
2015-05-05 10:50:19 +08:00
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsval blendfunc_to_jsval(JSContext *cx, const cocos2d::BlendFunc& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-05-05 10:50:19 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "src", (uint32_t)v.src, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "dst", (uint32_t)v.dst, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
2015-06-12 12:56:37 +08:00
|
|
|
|
|
|
|
jsval vector_vec2_to_jsval(JSContext *cx, const std::vector<cocos2d::Vec2>& v)
|
|
|
|
{
|
|
|
|
JS::RootedObject jsretArr(cx, JS_NewArrayObject(cx, v.size()));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
int i = 0;
|
2016-08-19 16:28:47 +08:00
|
|
|
for (const cocos2d::Vec2& obj : v)
|
2015-06-12 12:56:37 +08:00
|
|
|
{
|
|
|
|
JS::RootedValue arrElement(cx);
|
|
|
|
arrElement = vector2_to_jsval(cx, obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-06-12 12:56:37 +08:00
|
|
|
if (!JS_SetElement(cx, jsretArr, i, arrElement)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsretArr);
|
2015-07-24 15:48:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
jsval std_map_string_string_to_jsval(JSContext* cx, const std::map<std::string, std::string>& v)
|
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject jsRet(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
for (auto iter = v.begin(); iter != v.end(); ++iter)
|
|
|
|
{
|
|
|
|
JS::RootedValue element(cx);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
std::string key = iter->first;
|
|
|
|
std::string obj = iter->second;
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
element = std_string_to_jsval(cx, obj);
|
2016-04-18 15:09:21 +08:00
|
|
|
|
2015-07-24 15:48:34 +08:00
|
|
|
if (!key.empty())
|
|
|
|
{
|
|
|
|
JS_SetProperty(cx, jsRet, key.c_str(), element);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return OBJECT_TO_JSVAL(jsRet);
|
2015-08-20 17:42:26 +08:00
|
|
|
}
|
2015-11-19 14:31:39 +08:00
|
|
|
|
2015-12-05 00:40:43 +08:00
|
|
|
bool jsval_to_resourcedata(JSContext *cx, JS::HandleValue v, ResourceData* ret) {
|
2015-11-19 14:31:39 +08:00
|
|
|
JS::RootedObject tmp(cx);
|
|
|
|
JS::RootedValue jstype(cx);
|
|
|
|
JS::RootedValue jsfile(cx);
|
|
|
|
JS::RootedValue jsplist(cx);
|
|
|
|
|
|
|
|
double t = 0;
|
|
|
|
std::string file, plist;
|
|
|
|
bool ok = v.isObject() &&
|
|
|
|
JS_ValueToObject(cx, v, &tmp) &&
|
|
|
|
JS_GetProperty(cx, tmp, "type", &jstype) &&
|
|
|
|
JS_GetProperty(cx, tmp, "name", &jsfile) &&
|
|
|
|
JS_GetProperty(cx, tmp, "plist", &jsplist) &&
|
|
|
|
JS::ToNumber(cx, jstype, &t) &&
|
|
|
|
jsval_to_std_string(cx, jsfile, &file) &&
|
|
|
|
jsval_to_std_string(cx, jsplist, &plist);
|
|
|
|
|
|
|
|
JSB_PRECONDITION3(ok, cx, false, "Error processing arguments");
|
|
|
|
|
|
|
|
ret->type = (int)t;
|
|
|
|
ret->file = file;
|
|
|
|
ret->plist = plist;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-05 00:40:43 +08:00
|
|
|
jsval resourcedata_to_jsval(JSContext* cx, const ResourceData& v)
|
2015-11-19 14:31:39 +08:00
|
|
|
{
|
2017-03-16 09:42:16 +08:00
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
2015-11-19 14:31:39 +08:00
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "type", v.type, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "file", JS::RootedValue(cx, std_string_to_jsval(cx, v.file)), JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "plist", JS::RootedValue(cx, std_string_to_jsval(cx, v.plist)), JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|
2017-03-15 16:09:02 +08:00
|
|
|
|
|
|
|
jsval asset_to_jsval(JSContext* cx, const cocos2d::extension::ManifestAsset& v)
|
|
|
|
{
|
|
|
|
JS::RootedObject tmp(cx, JS_NewObject(cx, NULL, JS::NullPtr(), JS::NullPtr()));
|
|
|
|
if (!tmp) return JSVAL_NULL;
|
|
|
|
bool ok = JS_DefineProperty(cx, tmp, "md5", JS::RootedValue(cx, std_string_to_jsval(cx, v.md5)), JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "path", JS::RootedValue(cx, std_string_to_jsval(cx, v.path)), JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "compressed", v.compressed, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "size", v.size, JSPROP_ENUMERATE | JSPROP_PERMANENT) &&
|
|
|
|
JS_DefineProperty(cx, tmp, "downloadState", (int)v.downloadState, JSPROP_ENUMERATE | JSPROP_PERMANENT);
|
|
|
|
if (ok) {
|
|
|
|
return OBJECT_TO_JSVAL(tmp);
|
|
|
|
}
|
|
|
|
return JSVAL_NULL;
|
|
|
|
}
|