mirror of https://github.com/axmolengine/axmol.git
116 lines
3.8 KiB
C++
116 lines
3.8 KiB
C++
/****************************************************************************
|
|
Copyright (c) 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.
|
|
****************************************************************************/
|
|
#include "ProtocolUser.h"
|
|
#include "PluginJniHelper.h"
|
|
#include <android/log.h>
|
|
#include "PluginUtils.h"
|
|
#include "PluginJavaData.h"
|
|
|
|
namespace cocos2d { namespace plugin {
|
|
|
|
extern "C" {
|
|
JNIEXPORT void JNICALL Java_org_cocos2dx_plugin_UserWrapper_nativeOnActionResult(JNIEnv* env, jobject thiz, jstring className, jint ret, jstring msg)
|
|
{
|
|
std::string strMsg = PluginJniHelper::jstring2string(msg);
|
|
std::string strClassName = PluginJniHelper::jstring2string(className);
|
|
PluginProtocol* pPlugin = PluginUtils::getPluginPtr(strClassName);
|
|
PluginUtils::outputLog("ProtocolUser", "nativeOnActionResult(), Get plugin ptr : %p", pPlugin);
|
|
if (pPlugin != NULL)
|
|
{
|
|
PluginUtils::outputLog("ProtocolUser", "nativeOnActionResult(), Get plugin name : %s", pPlugin->getPluginName());
|
|
ProtocolUser* pUser = dynamic_cast<ProtocolUser*>(pPlugin);
|
|
if (pUser != NULL)
|
|
{
|
|
UserActionListener* listener = pUser->getActionListener();
|
|
if (NULL != listener)
|
|
{
|
|
listener->onActionResult(pUser, (UserActionResultCode) ret, strMsg.c_str());
|
|
}
|
|
else
|
|
{
|
|
PluginUtils::outputLog("Listener of plugin %s not set correctly", pPlugin->getPluginName());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ProtocolUser::ProtocolUser()
|
|
: _listener(NULL)
|
|
{
|
|
}
|
|
|
|
ProtocolUser::~ProtocolUser()
|
|
{
|
|
}
|
|
|
|
void ProtocolUser::configDeveloperInfo(TUserDeveloperInfo devInfo)
|
|
{
|
|
if (devInfo.empty())
|
|
{
|
|
PluginUtils::outputLog("ProtocolUser", "The developer info is empty!");
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
PluginJavaData* pData = PluginUtils::getPluginJavaData(this);
|
|
PluginJniMethodInfo t;
|
|
if (PluginJniHelper::getMethodInfo(t
|
|
, pData->jclassName.c_str()
|
|
, "configDeveloperInfo"
|
|
, "(Ljava/util/Hashtable;)V"))
|
|
{
|
|
// generate the hashtable from map
|
|
jobject obj_Map = PluginUtils::createJavaMapObject(&devInfo);
|
|
|
|
// invoke java method
|
|
t.env->CallVoidMethod(pData->jobj, t.methodID, obj_Map);
|
|
t.env->DeleteLocalRef(obj_Map);
|
|
t.env->DeleteLocalRef(t.classID);
|
|
}
|
|
}
|
|
}
|
|
|
|
void ProtocolUser::login()
|
|
{
|
|
PluginUtils::callJavaFunctionWithName(this, "login");
|
|
}
|
|
|
|
void ProtocolUser::logout()
|
|
{
|
|
PluginUtils::callJavaFunctionWithName(this, "logout");
|
|
}
|
|
|
|
bool ProtocolUser::isLogined()
|
|
{
|
|
return PluginUtils::callJavaBoolFuncWithName(this, "isLogined");
|
|
}
|
|
|
|
std::string ProtocolUser::getSessionID()
|
|
{
|
|
return PluginUtils::callJavaStringFuncWithName(this, "getSessionID");
|
|
}
|
|
|
|
}} // namespace cocos2d { namespace plugin {
|