2012-04-19 14:35:52 +08:00
|
|
|
#include "jni/JniHelper.h"
|
2012-06-19 17:22:55 +08:00
|
|
|
#include "jni/SystemInfoJni.h"
|
|
|
|
#include "CCApplication.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#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()
|
|
|
|
{
|
|
|
|
CC_ASSERT(! sm_pSharedApplication);
|
|
|
|
sm_pSharedApplication = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCApplication::~CCApplication()
|
|
|
|
{
|
|
|
|
CC_ASSERT(this == sm_pSharedApplication);
|
|
|
|
sm_pSharedApplication = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CCApplication::run()
|
|
|
|
{
|
2012-05-02 17:50:26 +08:00
|
|
|
// Initialize instance and cocos2d.
|
|
|
|
if (! applicationDidFinishLaunching())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CCApplication::Orientation CCApplication::setOrientation(Orientation orientation)
|
|
|
|
{
|
|
|
|
return orientation;
|
|
|
|
}
|
|
|
|
|
2012-04-24 17:35:36 +08:00
|
|
|
//void CCApplication::statusBarFrame(CCRect * rect)
|
|
|
|
//{
|
|
|
|
// if (rect)
|
|
|
|
// {
|
|
|
|
// // android doesn't have status bar.
|
|
|
|
// *rect = CCRectMake(0, 0, 0, 0);
|
|
|
|
// }
|
|
|
|
//}
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// static member function
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
CCApplication& CCApplication::sharedApplication()
|
|
|
|
{
|
|
|
|
CC_ASSERT(sm_pSharedApplication);
|
|
|
|
return *sm_pSharedApplication;
|
|
|
|
}
|
|
|
|
|
|
|
|
ccLanguageType CCApplication::getCurrentLanguage()
|
|
|
|
{
|
|
|
|
const char *pLanguageName = getCurrentLanguageJNI();
|
|
|
|
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("ru", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = kLanguageRussian;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|