mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
132 lines
3 KiB
C++
132 lines
3 KiB
C++
|
#include "jni/JniHelper.h"
|
||
|
#include "jni/Java_org_cocos2dx_lib_Cocos2dxHelper.h"
|
||
|
#include "CCApplication.h"
|
||
|
#include "CCDirector.h"
|
||
|
#include "CCEGLView.h"
|
||
|
#include <android/log.h>
|
||
|
#include <jni.h>
|
||
|
#include <cstring>
|
||
|
|
||
|
#define LOG_TAG "CCApplication_android Debug"
|
||
|
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__)
|
||
|
|
||
|
NS_CC_BEGIN
|
||
|
|
||
|
// sharedApplication pointer
|
||
|
CCApplication * CCApplication::sm_pSharedApplication = 0;
|
||
|
|
||
|
CCApplication::CCApplication()
|
||
|
{
|
||
|
CCAssert(! sm_pSharedApplication, "");
|
||
|
sm_pSharedApplication = this;
|
||
|
}
|
||
|
|
||
|
CCApplication::~CCApplication()
|
||
|
{
|
||
|
CCAssert(this == sm_pSharedApplication, "");
|
||
|
sm_pSharedApplication = NULL;
|
||
|
}
|
||
|
|
||
|
int CCApplication::run()
|
||
|
{
|
||
|
// Initialize instance and cocos2d.
|
||
|
if (! applicationDidFinishLaunching())
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
void CCApplication::setAnimationInterval(double interval)
|
||
|
{
|
||
|
JniMethodInfo methodInfo;
|
||
|
if (! JniHelper::getStaticMethodInfo(methodInfo, "org/cocos2dx/lib/Cocos2dxRenderer", "setAnimationInterval",
|
||
|
"(D)V"))
|
||
|
{
|
||
|
CCLOG("%s %d: error to get methodInfo", __FILE__, __LINE__);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
methodInfo.env->CallStaticVoidMethod(methodInfo.classID, methodInfo.methodID, interval);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
// static member function
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
CCApplication* CCApplication::sharedApplication()
|
||
|
{
|
||
|
CCAssert(sm_pSharedApplication, "");
|
||
|
return sm_pSharedApplication;
|
||
|
}
|
||
|
|
||
|
ccLanguageType CCApplication::getCurrentLanguage()
|
||
|
{
|
||
|
gd::string languageName = getCurrentLanguageJNI();
|
||
|
const char* pLanguageName = languageName.c_str();
|
||
|
ccLanguageType ret = kLanguageEnglish;
|
||
|
|
||
|
if (0 == strcmp("zh", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageChinese;
|
||
|
}
|
||
|
else if (0 == strcmp("en", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageEnglish;
|
||
|
}
|
||
|
else if (0 == strcmp("fr", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageFrench;
|
||
|
}
|
||
|
else if (0 == strcmp("it", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageItalian;
|
||
|
}
|
||
|
else if (0 == strcmp("de", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageGerman;
|
||
|
}
|
||
|
else if (0 == strcmp("es", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageSpanish;
|
||
|
}
|
||
|
else if (0 == strcmp("nl", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageDutch;
|
||
|
}
|
||
|
else if (0 == strcmp("ru", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageRussian;
|
||
|
}
|
||
|
else if (0 == strcmp("ko", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageKorean;
|
||
|
}
|
||
|
else if (0 == strcmp("ja", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageJapanese;
|
||
|
}
|
||
|
else if (0 == strcmp("hu", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageHungarian;
|
||
|
}
|
||
|
else if (0 == strcmp("pt", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguagePortuguese;
|
||
|
}
|
||
|
else if (0 == strcmp("ar", pLanguageName))
|
||
|
{
|
||
|
ret = kLanguageArabic;
|
||
|
}
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
TargetPlatform CCApplication::getTargetPlatform()
|
||
|
{
|
||
|
return kTargetAndroid;
|
||
|
}
|
||
|
|
||
|
NS_CC_END
|