2014-01-07 11:25:07 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2014-01-07 11:25:07 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2014-01-31 08:51:43 +08:00
|
|
|
|
2014-09-10 08:41:49 +08:00
|
|
|
#include "platform/CCPlatformConfig.h"
|
2014-01-31 08:51:43 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID
|
|
|
|
|
2017-06-05 13:37:50 +08:00
|
|
|
#include "platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxEngineDataManager.h"
|
2015-11-27 17:00:33 +08:00
|
|
|
#include "platform/android/jni/JniHelper.h"
|
2016-03-22 16:41:40 +08:00
|
|
|
#include "platform/CCApplication.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "base/CCDirector.h"
|
2018-02-11 09:19:47 +08:00
|
|
|
#include "base/ccUtils.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#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__)
|
|
|
|
|
2014-11-22 15:50:55 +08:00
|
|
|
// FIXME: using ndk-r10c will cause the next function could not be found. It may be a bug of ndk-r10c.
|
|
|
|
// Here is the workaround method to fix the problem.
|
|
|
|
#ifdef __aarch64__
|
|
|
|
extern "C" size_t __ctype_get_mb_cur_max(void) {
|
|
|
|
return (size_t) sizeof(wchar_t);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-10 15:06:19 +08:00
|
|
|
static const std::string helperClassName = "org.cocos2dx.lib.Cocos2dxHelper";
|
2015-11-27 17:00:33 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
// sharedApplication pointer
|
2016-06-23 11:39:23 +08:00
|
|
|
Application * Application::sm_pSharedApplication = nullptr;
|
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, "");
|
2016-06-23 11:39:23 +08:00
|
|
|
sm_pSharedApplication = nullptr;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2016-03-22 16:41:40 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-06-05 13:37:50 +08:00
|
|
|
void Application::setAnimationInterval(float interval)
|
|
|
|
{
|
|
|
|
setAnimationInterval(interval, SetIntervalReason::BY_ENGINE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::setAnimationInterval(float interval, SetIntervalReason reason)
|
|
|
|
{
|
|
|
|
EngineDataManager::setAnimationInterval(interval, reason);
|
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();
|
|
|
|
}
|
|
|
|
|
2014-03-18 02:34:21 +08:00
|
|
|
const char * Application::getCurrentLanguageCode()
|
|
|
|
{
|
|
|
|
static char code[3]={0};
|
2015-11-27 17:00:33 +08:00
|
|
|
std::string language = JniHelper::callStaticStringMethod(helperClassName, "getCurrentLanguage");
|
|
|
|
strncpy(code, language.c_str(), 2);
|
2014-03-18 02:34:21 +08:00
|
|
|
code[2]='\0';
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
2013-07-26 17:29:06 +08:00
|
|
|
LanguageType Application::getCurrentLanguage()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2018-02-11 09:19:47 +08:00
|
|
|
const char* code = getCurrentLanguageCode();
|
2016-03-22 16:41:40 +08:00
|
|
|
|
2018-02-11 09:19:47 +08:00
|
|
|
return utils::getLanguageTypeByISO2(code);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-10-29 01:57:57 +08:00
|
|
|
std::string Application::getVersion()
|
|
|
|
{
|
2015-11-27 18:19:10 +08:00
|
|
|
return JniHelper::callStaticStringMethod(helperClassName, "getVersion");
|
2015-10-29 01:57:57 +08:00
|
|
|
}
|
|
|
|
|
2014-09-09 16:07:33 +08:00
|
|
|
bool Application::openURL(const std::string &url)
|
|
|
|
{
|
2015-11-27 17:00:33 +08:00
|
|
|
return JniHelper::callStaticBooleanMethod(helperClassName, "openURL", url);
|
2014-09-09 16:07:33 +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
|
2014-01-31 08:51:43 +08:00
|
|
|
|
|
|
|
#endif // CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID
|