2013-04-25 17:33:42 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2012-2013 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2013-04-07 16:58:26 +08:00
|
|
|
#ifndef __PLUGIN_UTILS_H__
|
|
|
|
#define __PLUGIN_UTILS_H__
|
|
|
|
|
|
|
|
#include "PluginJniHelper.h"
|
|
|
|
#include "PluginJavaData.h"
|
|
|
|
#include "PluginProtocol.h"
|
|
|
|
#include <map>
|
2013-05-23 17:57:55 +08:00
|
|
|
#include "PluginParam.h"
|
2013-04-07 16:58:26 +08:00
|
|
|
|
|
|
|
namespace cocos2d { namespace plugin {
|
|
|
|
|
|
|
|
#define return_if_fails(cond) if (!(cond)) return;
|
|
|
|
#define return_val_if_fails(cond, ret) if(!(cond)) return (ret);
|
|
|
|
|
|
|
|
class PluginUtils
|
|
|
|
{
|
|
|
|
public:
|
2013-04-22 10:38:14 +08:00
|
|
|
static jobject createJavaMapObject(PluginJniMethodInfo&t, std::map<std::string, std::string>* paramMap);
|
2013-05-24 17:34:01 +08:00
|
|
|
static void initJavaPlugin(PluginProtocol* pPlugin, jobject jObj, const char* className);
|
2013-04-22 10:38:14 +08:00
|
|
|
static JNIEnv* getEnv();
|
2013-04-07 16:58:26 +08:00
|
|
|
|
|
|
|
static PluginJavaData* getPluginJavaData(PluginProtocol* pKeyObj);
|
|
|
|
static void setPluginJavaData(PluginProtocol* pKeyObj, PluginJavaData* pData);
|
|
|
|
static void erasePluginJavaData(PluginProtocol* pKeyObj);
|
|
|
|
|
2013-05-16 11:45:46 +08:00
|
|
|
static PluginProtocol* getPluginPtr(std::string className);
|
2013-04-25 17:33:42 +08:00
|
|
|
|
2013-05-23 17:57:55 +08:00
|
|
|
static jobject getJObjFromParam(PluginParam* param);
|
|
|
|
|
2013-04-07 16:58:26 +08:00
|
|
|
template <typename T>
|
2013-05-23 17:57:55 +08:00
|
|
|
static void callJavaFunctionWithName_oneParam(PluginProtocol* thiz, const char* funcName, const char* paramCode, T param)
|
2013-04-07 16:58:26 +08:00
|
|
|
{
|
2013-04-22 10:38:14 +08:00
|
|
|
return_if_fails(funcName != NULL && strlen(funcName) > 0);
|
|
|
|
return_if_fails(paramCode != NULL && strlen(paramCode) > 0);
|
2013-04-07 16:58:26 +08:00
|
|
|
PluginJavaData* pData = PluginUtils::getPluginJavaData(thiz);
|
2013-05-27 13:58:31 +08:00
|
|
|
return_if_fails(pData != NULL);
|
|
|
|
|
2013-05-23 17:57:55 +08:00
|
|
|
PluginJniMethodInfo t;
|
2013-04-22 10:38:14 +08:00
|
|
|
if (PluginJniHelper::getMethodInfo(t
|
|
|
|
, pData->jclassName.c_str()
|
|
|
|
, funcName
|
|
|
|
, paramCode))
|
|
|
|
{
|
|
|
|
t.env->CallVoidMethod(pData->jobj, t.methodID, param);
|
|
|
|
t.env->DeleteLocalRef(t.classID);
|
|
|
|
}
|
|
|
|
}
|
2013-05-23 17:57:55 +08:00
|
|
|
|
2013-04-22 10:38:14 +08:00
|
|
|
static void callJavaFunctionWithName(PluginProtocol* thiz, const char* funcName)
|
|
|
|
{
|
|
|
|
return_if_fails(funcName != NULL && strlen(funcName) > 0);
|
|
|
|
PluginJavaData* pData = PluginUtils::getPluginJavaData(thiz);
|
2013-05-27 13:58:31 +08:00
|
|
|
return_if_fails(pData != NULL);
|
|
|
|
|
2013-04-22 10:38:14 +08:00
|
|
|
PluginJniMethodInfo t;
|
|
|
|
if (PluginJniHelper::getMethodInfo(t
|
|
|
|
, pData->jclassName.c_str()
|
|
|
|
, funcName
|
|
|
|
, "()V"))
|
|
|
|
{
|
|
|
|
t.env->CallVoidMethod(pData->jobj, t.methodID);
|
|
|
|
t.env->DeleteLocalRef(t.classID);
|
|
|
|
}
|
2013-04-07 16:58:26 +08:00
|
|
|
}
|
2013-05-23 17:57:55 +08:00
|
|
|
|
|
|
|
static void outputLog(const char* logTag, const char* pFormat, ...);
|
2013-04-07 16:58:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}} // namespace cocos2d { namespace plugin {
|
|
|
|
|
|
|
|
#endif //__PLUGIN_UTILS_H__
|