mirror of https://github.com/axmolengine/axmol.git
136 lines
3.0 KiB
C++
136 lines
3.0 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
|
|
Application * Application::sm_pSharedApplication = 0;
|
|
|
|
Application::Application()
|
|
{
|
|
CCAssert(! sm_pSharedApplication, "");
|
|
sm_pSharedApplication = this;
|
|
}
|
|
|
|
Application::~Application()
|
|
{
|
|
CCAssert(this == sm_pSharedApplication, "");
|
|
sm_pSharedApplication = NULL;
|
|
}
|
|
|
|
int Application::run()
|
|
{
|
|
// Initialize instance and cocos2d.
|
|
if (! applicationDidFinishLaunching())
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
void Application::setAnimationInterval(double interval)
|
|
{
|
|
// NYI
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// static member function
|
|
//////////////////////////////////////////////////////////////////////////
|
|
Application* Application::getInstance()
|
|
{
|
|
CCAssert(sm_pSharedApplication, "");
|
|
return sm_pSharedApplication;
|
|
}
|
|
|
|
// @deprecated Use getInstance() instead
|
|
Application* Application::sharedApplication()
|
|
{
|
|
return Application::getInstance();
|
|
}
|
|
|
|
LanguageType Application::getCurrentLanguage()
|
|
{
|
|
std::string languageName = getCurrentLanguageJNI();
|
|
const char* pLanguageName = languageName.c_str();
|
|
LanguageType ret = LanguageType::ENGLISH;
|
|
|
|
if (0 == strcmp("zh", pLanguageName))
|
|
{
|
|
ret = LanguageType::CHINESE;
|
|
}
|
|
else if (0 == strcmp("en", pLanguageName))
|
|
{
|
|
ret = LanguageType::ENGLISH;
|
|
}
|
|
else if (0 == strcmp("fr", pLanguageName))
|
|
{
|
|
ret = LanguageType::FRENCH;
|
|
}
|
|
else if (0 == strcmp("it", pLanguageName))
|
|
{
|
|
ret = LanguageType::ITALIAN;
|
|
}
|
|
else if (0 == strcmp("de", pLanguageName))
|
|
{
|
|
ret = LanguageType::GERMAN;
|
|
}
|
|
else if (0 == strcmp("es", pLanguageName))
|
|
{
|
|
ret = LanguageType::SPANISH;
|
|
}
|
|
else if (0 == strcmp("ru", pLanguageName))
|
|
{
|
|
ret = LanguageType::RUSSIAN;
|
|
}
|
|
else if (0 == strcmp("ko", pLanguageName))
|
|
{
|
|
ret = LanguageType::KOREAN;
|
|
}
|
|
else if (0 == strcmp("ja", pLanguageName))
|
|
{
|
|
ret = LanguageType::JAPANESE;
|
|
}
|
|
else if (0 == strcmp("hu", pLanguageName))
|
|
{
|
|
ret = LanguageType::HUNGARIAN;
|
|
}
|
|
else if (0 == strcmp("pt", pLanguageName))
|
|
{
|
|
ret = LanguageType::PORTUGUESE;
|
|
}
|
|
else if (0 == strcmp("ar", pLanguageName))
|
|
{
|
|
ret = LanguageType::ARABIC;
|
|
}
|
|
else if (0 == strcmp("nb", pLanguageName))
|
|
{
|
|
ret = LanguageType::NORWEGIAN;
|
|
}
|
|
else if (0 == strcmp("pl", pLanguageName))
|
|
{
|
|
ret = LanguageType::POLISH;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
Application::Platform Application::getTargetPlatform()
|
|
{
|
|
return Platform::OS_ANDROID;
|
|
}
|
|
|
|
void Application::applicationScreenSizeChanged(int newWidth, int newHeight) {
|
|
|
|
}
|
|
|
|
NS_CC_END
|