2018-01-29 16:25:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-07-09 22:23:34 +08:00
|
|
|
https://axis-project.github.io/
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2018-01-29 16:25:32 +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:
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-05-14 08:59:29 +08:00
|
|
|
#include "scripting/lua-bindings/manual/platform/android/jni/Cocos2dxLuaJavaBridge.h"
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
#if defined(__ANDROID__)
|
2021-12-25 10:04:45 +08:00
|
|
|
# include <android/log.h>
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
# include "scripting/lua-bindings/manual/platform/android/CCLuaJavaBridge.h"
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
# include "base/ccUTF8.h"
|
2015-08-04 11:30:30 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
# define LOG_TAG "Cocos2dxLuaJavaBridge_java"
|
|
|
|
# define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
JNIEXPORT jint JNICALL Java_org_cocos2dx_lib_Cocos2dxLuaJavaBridge_callLuaFunctionWithString(JNIEnv* env,
|
|
|
|
jclass,
|
|
|
|
jint functionId,
|
|
|
|
jstring value)
|
2014-03-10 14:04:58 +08:00
|
|
|
{
|
2015-08-05 16:15:22 +08:00
|
|
|
std::string strValue = cocos2d::StringUtils::getStringUTFCharsJNI(env, value);
|
2021-12-25 10:04:45 +08:00
|
|
|
int ret = LuaJavaBridge::callLuaFunctionById(functionId, strValue.c_str());
|
2014-03-10 14:04:58 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
JNIEXPORT jint JNICALL
|
|
|
|
Java_org_cocos2dx_lib_Cocos2dxLuaJavaBridge_callLuaGlobalFunctionWithString(JNIEnv* env,
|
|
|
|
jclass,
|
|
|
|
jstring luaFunctionName,
|
|
|
|
jstring value)
|
2014-03-10 14:04:58 +08:00
|
|
|
{
|
2015-08-05 16:10:14 +08:00
|
|
|
std::string functionNameStr = cocos2d::StringUtils::getStringUTFCharsJNI(env, luaFunctionName);
|
2021-12-25 10:04:45 +08:00
|
|
|
std::string valueStr = cocos2d::StringUtils::getStringUTFCharsJNI(env, value);
|
|
|
|
|
2015-08-04 16:24:08 +08:00
|
|
|
int ret = LuaJavaBridge::callLuaGlobalFunction(functionNameStr.c_str(), valueStr.c_str());
|
2014-03-10 14:04:58 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
JNIEXPORT jint JNICALL Java_org_cocos2dx_lib_Cocos2dxLuaJavaBridge_retainLuaFunction(JNIEnv* env,
|
|
|
|
jclass,
|
|
|
|
jint luaFunctionId)
|
2014-03-10 14:04:58 +08:00
|
|
|
{
|
|
|
|
return LuaJavaBridge::retainLuaFunctionById(luaFunctionId);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
JNIEXPORT jint JNICALL Java_org_cocos2dx_lib_Cocos2dxLuaJavaBridge_releaseLuaFunction(JNIEnv* env,
|
|
|
|
jclass,
|
|
|
|
jint luaFunctionId)
|
2014-03-10 14:04:58 +08:00
|
|
|
{
|
|
|
|
return LuaJavaBridge::releaseLuaFunctionById(luaFunctionId);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
} // extern "C"
|
2020-10-17 16:32:16 +08:00
|
|
|
|
|
|
|
#endif
|