axmol/core/platform/ios/Application-ios.mm

137 lines
4.5 KiB
Plaintext

/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
https://axmolengine.github.io/
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.
****************************************************************************/
#import "Application.h"
#import <UIKit/UIKit.h>
#import "math/Math.h"
#import "platform/ios/DirectorCaller-ios.h"
#import "base/Utils.h"
NS_AX_BEGIN
Application* Application::sm_pSharedApplication = nullptr;
Application::Application()
{
AX_ASSERT(!sm_pSharedApplication);
sm_pSharedApplication = this;
}
Application::~Application()
{
AX_ASSERT(this == sm_pSharedApplication);
sm_pSharedApplication = 0;
}
int Application::run()
{
if (applicationDidFinishLaunching())
{
[[CCDirectorCaller sharedDirectorCaller] startMainLoop];
}
return 0;
}
void Application::setAnimationInterval(float interval)
{
[[CCDirectorCaller sharedDirectorCaller] setAnimationInterval:interval];
}
/////////////////////////////////////////////////////////////////////////////////////////////////
// static member function
//////////////////////////////////////////////////////////////////////////////////////////////////
Application* Application::getInstance()
{
AX_ASSERT(sm_pSharedApplication);
return sm_pSharedApplication;
}
const char* Application::getCurrentLanguageCode()
{
static char code[3] = {0};
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
NSArray* languages = [defaults objectForKey:@"AppleLanguages"];
NSString* currentLanguage = [languages objectAtIndex:0];
// get the current language code.(such as English is "en", Chinese is "zh" and so on)
NSDictionary* temp = [NSLocale componentsFromLocaleIdentifier:currentLanguage];
NSString* languageCode = [temp objectForKey:NSLocaleLanguageCode];
[languageCode getCString:code maxLength:3 encoding:NSASCIIStringEncoding];
code[2] = '\0';
return code;
}
LanguageType Application::getCurrentLanguage()
{
// get the current language and country config
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
NSArray* languages = [defaults objectForKey:@"AppleLanguages"];
NSString* currentLanguage = [languages objectAtIndex:0];
// get the current language code.(such as English is "en", Chinese is "zh" and so on)
NSDictionary* temp = [NSLocale componentsFromLocaleIdentifier:currentLanguage];
NSString* languageCode = [temp objectForKey:NSLocaleLanguageCode];
return utils::getLanguageTypeByISO2([languageCode UTF8String]);
}
Application::Platform Application::getTargetPlatform()
{
return Platform::iOS;
}
std::string Application::getVersion()
{
NSString* version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
if (version)
{
return [version UTF8String];
}
return "";
}
bool Application::openURL(std::string_view url)
{
NSString* msg = [NSString stringWithCString:url.data() encoding:NSUTF8StringEncoding];
NSURL* nsUrl = [NSURL URLWithString:msg];
id application = [UIApplication sharedApplication];
if ([application respondsToSelector:@selector(openURL:options:completionHandler:)])
{
[application openURL:nsUrl options:@{} completionHandler:nil];
}
else
{
return [application openURL:nsUrl];
}
}
void Application::applicationScreenSizeChanged(int newWidth, int newHeight) {}
NS_AX_END