2014-01-07 11:25:07 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2012-04-19 14:35:52 +08:00
|
|
|
#include "jni/JniHelper.h"
|
2012-09-08 08:23:04 +08:00
|
|
|
#include "jni/Java_org_cocos2dx_lib_Cocos2dxHelper.h"
|
2012-06-19 17:22:55 +08:00
|
|
|
#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
|
2013-06-20 14:13:12 +08:00
|
|
|
Application * Application::sm_pSharedApplication = 0;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
Application::Application()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-01-04 07:13:17 +08:00
|
|
|
CCAssert(! sm_pSharedApplication, "");
|
2012-04-19 14:35:52 +08:00
|
|
|
sm_pSharedApplication = this;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
Application::~Application()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-01-04 07:13:17 +08:00
|
|
|
CCAssert(this == sm_pSharedApplication, "");
|
2012-04-19 14:35:52 +08:00
|
|
|
sm_pSharedApplication = NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
int Application::run()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
void Application::setAnimationInterval(double interval)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-03-30 06:05:42 +08:00
|
|
|
// NYI
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// static member function
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-07-15 16:24:42 +08:00
|
|
|
Application* Application::getInstance()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-01-04 07:13:17 +08:00
|
|
|
CCAssert(sm_pSharedApplication, "");
|
2012-08-21 15:28:43 +08:00
|
|
|
return sm_pSharedApplication;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2013-07-15 16:37:38 +08:00
|
|
|
// @deprecated Use getInstance() instead
|
|
|
|
Application* Application::sharedApplication()
|
|
|
|
{
|
|
|
|
return Application::getInstance();
|
|
|
|
}
|
|
|
|
|
2013-07-26 17:29:06 +08:00
|
|
|
LanguageType Application::getCurrentLanguage()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-03-08 15:56:17 +08:00
|
|
|
std::string languageName = getCurrentLanguageJNI();
|
|
|
|
const char* pLanguageName = languageName.c_str();
|
2013-07-26 17:29:06 +08:00
|
|
|
LanguageType ret = LanguageType::ENGLISH;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
if (0 == strcmp("zh", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::CHINESE;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("en", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::ENGLISH;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("fr", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::FRENCH;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("it", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::ITALIAN;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("de", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::GERMAN;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("es", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::SPANISH;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("ru", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::RUSSIAN;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2014-01-26 04:38:15 +08:00
|
|
|
else if (0 == strcmp("nl", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::DUTCH;
|
|
|
|
}
|
2012-10-18 15:57:18 +08:00
|
|
|
else if (0 == strcmp("ko", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::KOREAN;
|
2012-10-18 15:57:18 +08:00
|
|
|
}
|
2012-11-28 16:53:10 +08:00
|
|
|
else if (0 == strcmp("ja", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::JAPANESE;
|
2012-11-28 16:53:10 +08:00
|
|
|
}
|
2012-12-05 18:31:05 +08:00
|
|
|
else if (0 == strcmp("hu", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::HUNGARIAN;
|
2012-12-05 18:31:05 +08:00
|
|
|
}
|
2013-02-11 23:29:56 +08:00
|
|
|
else if (0 == strcmp("pt", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::PORTUGUESE;
|
2013-02-11 23:29:56 +08:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("ar", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::ARABIC;
|
2013-02-11 23:29:56 +08:00
|
|
|
}
|
2013-07-26 17:29:06 +08:00
|
|
|
else if (0 == strcmp("nb", pLanguageName))
|
2013-05-29 16:16:22 +08:00
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::NORWEGIAN;
|
2013-06-11 22:46:38 +08:00
|
|
|
}
|
|
|
|
else if (0 == strcmp("pl", pLanguageName))
|
|
|
|
{
|
2013-07-26 17:29:06 +08:00
|
|
|
ret = LanguageType::POLISH;
|
2013-06-11 22:46:38 +08:00
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-07-26 17:29:06 +08:00
|
|
|
Application::Platform Application::getTargetPlatform()
|
2012-08-16 10:21:15 +08:00
|
|
|
{
|
2013-07-26 18:17:30 +08:00
|
|
|
return Platform::OS_ANDROID;
|
2012-08-16 10:21:15 +08:00
|
|
|
}
|
|
|
|
|
2013-10-23 16:29:59 +08:00
|
|
|
void Application::applicationScreenSizeChanged(int newWidth, int newHeight) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|