mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
662a9e99f5
- remove cocos2dx folder - change all include paths in cocos2d to be relative
163 lines
5.1 KiB
Text
Vendored
163 lines
5.1 KiB
Text
Vendored
/****************************************************************************
|
|
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>
|
|
#include <algorithm>
|
|
#include "../platform/CCFileUtils.h"
|
|
#include "CCGeometry.h"
|
|
#include "CCDirector.h"
|
|
#import "CCDirectorCaller.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
CCApplication* CCApplication::sm_pSharedApplication = 0;
|
|
|
|
CCApplication::CCApplication()
|
|
{
|
|
CCAssert(! sm_pSharedApplication, "sm_pSharedApplication already exist");
|
|
sm_pSharedApplication = this;
|
|
}
|
|
|
|
CCApplication::~CCApplication()
|
|
{
|
|
CCAssert(this == sm_pSharedApplication, "sm_pSharedApplication != this");
|
|
sm_pSharedApplication = 0;
|
|
}
|
|
|
|
int CCApplication::run()
|
|
{
|
|
if (/*initInstance() &&*/ applicationDidFinishLaunching())
|
|
{
|
|
[[CCDirectorCaller sharedDirectorCaller] startMainLoop];
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void CCApplication::setAnimationInterval(double interval)
|
|
{
|
|
[[CCDirectorCaller sharedDirectorCaller] setAnimationInterval: interval ];
|
|
}
|
|
|
|
TargetPlatform CCApplication::getTargetPlatform()
|
|
{
|
|
return kTargetMacOS;
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// static member function
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
CCApplication* CCApplication::sharedApplication()
|
|
{
|
|
CCAssert(sm_pSharedApplication, "sm_pSharedApplication not set");
|
|
return sm_pSharedApplication;
|
|
}
|
|
|
|
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;
|
|
}
|
|
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;
|
|
}
|
|
else if ([languageCode isEqualToString:@"ja"]){
|
|
ret = kLanguageJapanese;
|
|
}
|
|
else if ([languageCode isEqualToString:@"hu"]){
|
|
ret = kLanguageHungarian;
|
|
}
|
|
else if ([languageCode isEqualToString:@"pt"])
|
|
{
|
|
ret = kLanguagePortuguese;
|
|
}
|
|
else if ([languageCode isEqualToString:@"ar"])
|
|
{
|
|
ret = kLanguageArabic;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
void CCApplication::setResourceRootPath(const gd::string& rootResDir)
|
|
{
|
|
m_resourceRootPath = rootResDir;
|
|
if (m_resourceRootPath[m_resourceRootPath.length() - 1] != '/')
|
|
{
|
|
m_resourceRootPath += '/';
|
|
}
|
|
CCFileUtils* pFileUtils = CCFileUtils::sharedFileUtils();
|
|
gd::vector<gd::string> searchPaths = pFileUtils->getSearchPaths();
|
|
searchPaths.insert(searchPaths.begin(), m_resourceRootPath);
|
|
pFileUtils->setSearchPaths(searchPaths);
|
|
}
|
|
|
|
const gd::string& CCApplication::getResourceRootPath(void)
|
|
{
|
|
return m_resourceRootPath;
|
|
}
|
|
|
|
void CCApplication::setStartupScriptFilename(const gd::string& startupScriptFile)
|
|
{
|
|
m_startupScriptFilename = startupScriptFile;
|
|
std::replace(m_startupScriptFilename.begin(), m_startupScriptFilename.end(), '\\', '/');
|
|
}
|
|
|
|
const gd::string& CCApplication::getStartupScriptFilename(void)
|
|
{
|
|
return m_startupScriptFilename;
|
|
}
|
|
|
|
NS_CC_END
|