mirror of https://github.com/axmolengine/axmol.git
150 lines
4.6 KiB
Plaintext
150 lines
4.6 KiB
Plaintext
/****************************************************************************
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
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.
|
|
****************************************************************************/
|
|
|
|
#import "CCApplication.h"
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "CCGeometry.h"
|
|
#import "CCDirectorCaller.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
Application* Application::sm_pSharedApplication = 0;
|
|
|
|
Application::Application()
|
|
{
|
|
CC_ASSERT(! sm_pSharedApplication);
|
|
sm_pSharedApplication = this;
|
|
}
|
|
|
|
Application::~Application()
|
|
{
|
|
CC_ASSERT(this == sm_pSharedApplication);
|
|
sm_pSharedApplication = 0;
|
|
}
|
|
|
|
int Application::run()
|
|
{
|
|
if (applicationDidFinishLaunching())
|
|
{
|
|
[[CCDirectorCaller sharedDirectorCaller] startMainLoop];
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void Application::setAnimationInterval(double interval)
|
|
{
|
|
[[CCDirectorCaller sharedDirectorCaller] setAnimationInterval: interval ];
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// static member function
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
Application* Application::getInstance()
|
|
{
|
|
CC_ASSERT(sm_pSharedApplication);
|
|
return sm_pSharedApplication;
|
|
}
|
|
|
|
// @deprecated Use getInstance() instead
|
|
Application* Application::sharedApplication()
|
|
{
|
|
return Application::getInstance();
|
|
}
|
|
|
|
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];
|
|
|
|
LanguageType ret = LanguageType::ENGLISH;
|
|
if ([languageCode isEqualToString:@"zh"])
|
|
{
|
|
ret = LanguageType::CHINESE;
|
|
}
|
|
else if ([languageCode isEqualToString:@"en"])
|
|
{
|
|
ret = LanguageType::ENGLISH;
|
|
}
|
|
else if ([languageCode isEqualToString:@"fr"]){
|
|
ret = LanguageType::FRENCH;
|
|
}
|
|
else if ([languageCode isEqualToString:@"it"]){
|
|
ret = LanguageType::ITALIAN;
|
|
}
|
|
else if ([languageCode isEqualToString:@"de"]){
|
|
ret = LanguageType::GERMAN;
|
|
}
|
|
else if ([languageCode isEqualToString:@"es"]){
|
|
ret = LanguageType::SPANISH;
|
|
}
|
|
else if ([languageCode isEqualToString:@"ru"]){
|
|
ret = LanguageType::RUSSIAN;
|
|
}
|
|
else if ([languageCode isEqualToString:@"ko"]){
|
|
ret = LanguageType::KOREAN;
|
|
}
|
|
else if ([languageCode isEqualToString:@"ja"]){
|
|
ret = LanguageType::JAPANESE;
|
|
}
|
|
else if ([languageCode isEqualToString:@"hu"]){
|
|
ret = LanguageType::HUNGARIAN;
|
|
}
|
|
else if ([languageCode isEqualToString:@"pt"]){
|
|
ret = LanguageType::PORTUGUESE;
|
|
}
|
|
else if ([languageCode isEqualToString:@"ar"]){
|
|
ret = LanguageType::ARABIC;
|
|
}
|
|
else if ([languageCode isEqualToString:@"nb"]){
|
|
ret = LanguageType::NORWEGIAN;
|
|
}
|
|
else if ([languageCode isEqualToString:@"pl"]){
|
|
ret = LanguageType::POLISH;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
Application::Platform Application::getTargetPlatform()
|
|
{
|
|
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) // idiom for iOS <= 3.2, otherwise: [UIDevice userInterfaceIdiom] is faster.
|
|
{
|
|
return Platform::OS_IPAD;
|
|
}
|
|
else
|
|
{
|
|
return Platform::OS_IPHONE;
|
|
}
|
|
}
|
|
|
|
NS_CC_END
|