axmol/core/platform/android/Application-android.cpp

133 lines
3.9 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
https://axmol.dev/
2019-11-23 20:27:39 +08:00
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.
****************************************************************************/
#include "platform/android/jni/JniHelper.h"
#include "platform/Application.h"
#include "base/Director.h"
#include "base/Utils.h"
2019-11-23 20:27:39 +08:00
#include <android/log.h>
#include <jni.h>
#include <cstring>
2021-12-25 10:04:45 +08:00
#define LOG_TAG "CCApplication_android Debug"
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
2019-11-23 20:27:39 +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__
2021-12-25 10:04:45 +08:00
extern "C" size_t __ctype_get_mb_cur_max(void)
{
return (size_t)sizeof(wchar_t);
2019-11-23 20:27:39 +08:00
}
#endif
static const char* applicationHelperClassName = "org.axmol.lib.AxmolEngine";
2019-11-23 20:27:39 +08:00
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
// sharedApplication pointer
2021-12-25 10:04:45 +08:00
Application* Application::sm_pSharedApplication = nullptr;
2019-11-23 20:27:39 +08:00
Application::Application()
{
2021-12-25 10:04:45 +08:00
CCAssert(!sm_pSharedApplication, "");
2019-11-23 20:27:39 +08:00
sm_pSharedApplication = this;
}
Application::~Application()
{
CCAssert(this == sm_pSharedApplication, "");
sm_pSharedApplication = nullptr;
}
int Application::run()
{
// Initialize instance and cocos2d.
2021-12-25 10:04:45 +08:00
if (!applicationDidFinishLaunching())
2019-11-23 20:27:39 +08:00
{
return 0;
}
return -1;
}
void Application::setAnimationInterval(float interval)
{
2022-10-01 16:24:52 +08:00
JniHelper::callStaticVoidMethod("org/axmol/lib/AxmolRenderer", "setAnimationInterval", interval);
}
2019-11-23 20:27:39 +08:00
//////////////////////////////////////////////////////////////////////////
// static member function
//////////////////////////////////////////////////////////////////////////
Application* Application::getInstance()
{
CCAssert(sm_pSharedApplication, "");
return sm_pSharedApplication;
}
// @deprecated Use getInstance() instead
Application* Application::sharedApplication()
{
return Application::getInstance();
}
2021-12-25 10:04:45 +08:00
const char* Application::getCurrentLanguageCode()
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
static char code[3] = {0};
std::string language = JniHelper::callStaticStringMethod(applicationHelperClassName, "getCurrentLanguage");
2019-11-23 20:27:39 +08:00
strncpy(code, language.c_str(), 2);
2021-12-25 10:04:45 +08:00
code[2] = '\0';
2019-11-23 20:27:39 +08:00
return code;
}
LanguageType Application::getCurrentLanguage()
{
const char* code = getCurrentLanguageCode();
return utils::getLanguageTypeByISO2(code);
}
Application::Platform Application::getTargetPlatform()
{
2022-06-20 01:49:50 +08:00
return Platform::Android;
2019-11-23 20:27:39 +08:00
}
std::string Application::getVersion()
{
return JniHelper::callStaticStringMethod(applicationHelperClassName, "getVersion");
2019-11-23 20:27:39 +08:00
}
bool Application::openURL(std::string_view url)
2019-11-23 20:27:39 +08:00
{
return JniHelper::callStaticBooleanMethod(applicationHelperClassName, "openURL", url);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
void Application::applicationScreenSizeChanged(int newWidth, int newHeight) {}
2019-11-23 20:27:39 +08:00
NS_AX_END
#undef LOGD
#undef LOG_TAG