2012-07-21 12:23:40 +08:00
|
|
|
/****************************************************************************
|
|
|
|
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 <Cocoa/Cocoa.h>
|
2012-09-05 16:15:09 +08:00
|
|
|
#include <algorithm>
|
2013-01-28 10:36:37 +08:00
|
|
|
#include "platform/CCFileUtils.h"
|
2012-09-05 16:15:09 +08:00
|
|
|
#include "CCGeometry.h"
|
2012-07-22 02:46:42 +08:00
|
|
|
#include "CCDirector.h"
|
2012-07-21 12:23:40 +08:00
|
|
|
#import "CCDirectorCaller.h"
|
|
|
|
|
2012-09-05 16:15:09 +08:00
|
|
|
NS_CC_BEGIN
|
2012-07-21 12:23:40 +08:00
|
|
|
|
|
|
|
CCApplication* CCApplication::sm_pSharedApplication = 0;
|
|
|
|
|
|
|
|
CCApplication::CCApplication()
|
|
|
|
{
|
2012-09-04 11:16:59 +08:00
|
|
|
CCAssert(! sm_pSharedApplication, "sm_pSharedApplication already exist");
|
2012-07-21 12:23:40 +08:00
|
|
|
sm_pSharedApplication = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCApplication::~CCApplication()
|
|
|
|
{
|
2012-09-04 11:16:59 +08:00
|
|
|
CCAssert(this == sm_pSharedApplication, "sm_pSharedApplication != this");
|
2012-07-21 12:23:40 +08:00
|
|
|
sm_pSharedApplication = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CCApplication::run()
|
|
|
|
{
|
|
|
|
if (/*initInstance() &&*/ applicationDidFinishLaunching())
|
|
|
|
{
|
|
|
|
[[CCDirectorCaller sharedDirectorCaller] startMainLoop];
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCApplication::setAnimationInterval(double interval)
|
|
|
|
{
|
|
|
|
[[CCDirectorCaller sharedDirectorCaller] setAnimationInterval: interval ];
|
|
|
|
}
|
|
|
|
|
2012-08-16 10:21:15 +08:00
|
|
|
TargetPlatform CCApplication::getTargetPlatform()
|
2012-07-21 12:23:40 +08:00
|
|
|
{
|
2012-08-16 10:21:15 +08:00
|
|
|
return kTargetMacOS;
|
2012-08-09 14:34:20 +08:00
|
|
|
}
|
|
|
|
|
2012-07-21 12:23:40 +08:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// static member function
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-08-21 15:28:43 +08:00
|
|
|
CCApplication* CCApplication::sharedApplication()
|
2012-07-21 12:23:40 +08:00
|
|
|
{
|
2012-09-04 11:16:59 +08:00
|
|
|
CCAssert(sm_pSharedApplication, "sm_pSharedApplication not set");
|
2012-08-21 15:28:43 +08:00
|
|
|
return sm_pSharedApplication;
|
2012-07-21 12:23:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ccLanguageType CCApplication::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];
|
|
|
|
|
|
|
|
ccLanguageType ret = kLanguageEnglish;
|
|
|
|
if ([languageCode isEqualToString:@"zh"])
|
|
|
|
{
|
|
|
|
ret = kLanguageChinese;
|
|
|
|
}
|
|
|
|
else if ([languageCode isEqualToString:@"en"])
|
|
|
|
{
|
|
|
|
ret = kLanguageEnglish;
|
|
|
|
}
|
2012-10-18 15:57:18 +08:00
|
|
|
else if ([languageCode isEqualToString:@"fr"]){
|
|
|
|
ret = kLanguageFrench;
|
|
|
|
}
|
|
|
|
else if ([languageCode isEqualToString:@"it"]){
|
|
|
|
ret = kLanguageItalian;
|
|
|
|
}
|
|
|
|
else if ([languageCode isEqualToString:@"de"]){
|
|
|
|
ret = kLanguageGerman;
|
|
|
|
}
|
|
|
|
else if ([languageCode isEqualToString:@"es"]){
|
|
|
|
ret = kLanguageSpanish;
|
|
|
|
}
|
|
|
|
else if ([languageCode isEqualToString:@"ru"]){
|
|
|
|
ret = kLanguageRussian;
|
|
|
|
}
|
|
|
|
else if ([languageCode isEqualToString:@"ko"]){
|
|
|
|
ret = kLanguageKorean;
|
|
|
|
}
|
2012-11-28 16:53:10 +08:00
|
|
|
else if ([languageCode isEqualToString:@"ja"]){
|
|
|
|
ret = kLanguageJapanese;
|
|
|
|
}
|
2012-12-05 18:31:05 +08:00
|
|
|
else if ([languageCode isEqualToString:@"hu"]){
|
|
|
|
ret = kLanguageHungarian;
|
|
|
|
}
|
2013-02-11 23:29:56 +08:00
|
|
|
else if ([languageCode isEqualToString:@"pt"])
|
|
|
|
{
|
|
|
|
ret = kLanguagePortuguese;
|
|
|
|
}
|
|
|
|
else if ([languageCode isEqualToString:@"ar"])
|
|
|
|
{
|
|
|
|
ret = kLanguageArabic;
|
|
|
|
}
|
2013-05-29 16:16:22 +08:00
|
|
|
else if ([languageCode isEqualToString:@"nb"]){
|
|
|
|
ret = kLanguageNorwegian;
|
2013-06-11 22:46:38 +08:00
|
|
|
}
|
|
|
|
else if ([languageCode isEqualToString:@"pl"]){
|
|
|
|
ret = kLanguagePolish;
|
|
|
|
}
|
2012-07-21 12:23:40 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-09-05 16:15:09 +08:00
|
|
|
void CCApplication::setResourceRootPath(const std::string& rootResDir)
|
|
|
|
{
|
|
|
|
m_resourceRootPath = rootResDir;
|
|
|
|
if (m_resourceRootPath[m_resourceRootPath.length() - 1] != '/')
|
|
|
|
{
|
|
|
|
m_resourceRootPath += '/';
|
|
|
|
}
|
2013-01-28 10:36:37 +08:00
|
|
|
CCFileUtils* pFileUtils = CCFileUtils::sharedFileUtils();
|
2013-01-29 09:56:38 +08:00
|
|
|
std::vector<std::string> searchPaths = pFileUtils->getSearchPaths();
|
2013-01-28 10:36:37 +08:00
|
|
|
searchPaths.insert(searchPaths.begin(), m_resourceRootPath);
|
2013-01-29 09:56:38 +08:00
|
|
|
pFileUtils->setSearchPaths(searchPaths);
|
2012-09-05 16:15:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& CCApplication::getResourceRootPath(void)
|
|
|
|
{
|
|
|
|
return m_resourceRootPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCApplication::setStartupScriptFilename(const std::string& startupScriptFile)
|
|
|
|
{
|
|
|
|
m_startupScriptFilename = startupScriptFile;
|
|
|
|
std::replace(m_startupScriptFilename.begin(), m_startupScriptFilename.end(), '\\', '/');
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& CCApplication::getStartupScriptFilename(void)
|
|
|
|
{
|
|
|
|
return m_startupScriptFilename;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|