axmol/cocos2dx/platform/linux/CCApplication.cpp

182 lines
3.7 KiB
C++
Raw Normal View History

2012-08-02 13:02:59 +08:00
/*
* Aplication_linux.cpp
2012-08-02 13:02:59 +08:00
*
* Created on: Aug 8, 2011
* Author: laschweinski
*/
#include "CCApplication.h"
#include <unistd.h>
#include <sys/time.h>
#include <string>
2012-08-02 13:02:59 +08:00
#include "CCDirector.h"
#include "platform/CCFileUtils.h"
2012-08-02 13:02:59 +08:00
NS_CC_BEGIN
2012-08-02 13:02:59 +08:00
// sharedApplication pointer
Application * Application::sm_pSharedApplication = 0;
2012-08-02 13:02:59 +08:00
static long getCurrentMillSecond() {
long lLastTime;
struct timeval stCurrentTime;
gettimeofday(&stCurrentTime,NULL);
lLastTime = stCurrentTime.tv_sec*1000+stCurrentTime.tv_usec*0.001; //millseconds
return lLastTime;
}
Application::Application()
2012-08-02 13:02:59 +08:00
{
CC_ASSERT(! sm_pSharedApplication);
sm_pSharedApplication = this;
}
Application::~Application()
2012-08-02 13:02:59 +08:00
{
CC_ASSERT(this == sm_pSharedApplication);
sm_pSharedApplication = NULL;
_animationInterval = 1.0f/60.0f*1000.0f;
2012-08-02 13:02:59 +08:00
}
int Application::run()
2012-08-02 13:02:59 +08:00
{
// Initialize instance and cocos2d.
if (! applicationDidFinishLaunching())
{
return 0;
}
for (;;) {
long iLastTime = getCurrentMillSecond();
Director::getInstance()->mainLoop();
2012-08-02 13:02:59 +08:00
long iCurTime = getCurrentMillSecond();
if (iCurTime-iLastTime<_animationInterval){
usleep((_animationInterval - iCurTime+iLastTime)*1000);
2012-08-02 13:02:59 +08:00
}
}
return -1;
}
void Application::setAnimationInterval(double interval)
2012-08-02 13:02:59 +08:00
{
//TODO do something else
_animationInterval = interval*1000.0f;
2012-08-02 13:02:59 +08:00
}
void Application::setResourceRootPath(const std::string& rootResDir)
{
_resourceRootPath = rootResDir;
if (_resourceRootPath[_resourceRootPath.length() - 1] != '/')
{
_resourceRootPath += '/';
}
FileUtils* pFileUtils = FileUtils::getInstance();
std::vector<std::string> searchPaths = pFileUtils->getSearchPaths();
searchPaths.insert(searchPaths.begin(), _resourceRootPath);
pFileUtils->setSearchPaths(searchPaths);
}
const std::string& Application::getResourceRootPath(void)
{
return _resourceRootPath;
}
Application::Platform Application::getTargetPlatform()
{
return Platform::OS_LINUX;
}
2012-08-02 13:02:59 +08:00
//////////////////////////////////////////////////////////////////////////
// static member function
//////////////////////////////////////////////////////////////////////////
Application* Application::getInstance()
2012-08-02 13:02:59 +08:00
{
CC_ASSERT(sm_pSharedApplication);
return sm_pSharedApplication;
2012-08-02 13:02:59 +08:00
}
// @deprecated Use getInstance() instead
Application* Application::sharedApplication()
{
return Application::getInstance();
}
LanguageType Application::getCurrentLanguage()
2012-08-02 13:02:59 +08:00
{
char *pLanguageName = getenv("LANG");
2013-07-26 19:54:44 +08:00
LanguageType ret = LanguageType::ENGLISH;
if (!pLanguageName)
{
2013-07-26 19:54:44 +08:00
return LanguageType::ENGLISH;
}
strtok(pLanguageName, "_");
if (!pLanguageName)
{
return LanguageType::ENGLISH;
}
if (0 == strcmp("zh", pLanguageName))
{
ret = LanguageType::CHINESE;
}
else if (0 == strcmp("en", pLanguageName))
{
ret = LanguageType::ENGLISH;
}
else if (0 == strcmp("fr", pLanguageName))
{
ret = LanguageType::FRENCH;
}
else if (0 == strcmp("it", pLanguageName))
{
ret = LanguageType::ITALIAN;
}
else if (0 == strcmp("de", pLanguageName))
{
ret = LanguageType::GERMAN;
}
else if (0 == strcmp("es", pLanguageName))
{
ret = LanguageType::SPANISH;
}
else if (0 == strcmp("ru", pLanguageName))
{
ret = LanguageType::RUSSIAN;
}
else if (0 == strcmp("ko", pLanguageName))
{
ret = LanguageType::KOREAN;
}
else if (0 == strcmp("ja", pLanguageName))
{
ret = LanguageType::JAPANESE;
}
2012-12-05 18:31:05 +08:00
else if (0 == strcmp("hu", pLanguageName))
{
ret = LanguageType::HUNGARIAN;
2012-12-05 18:31:05 +08:00
}
else if (0 == strcmp("pt", pLanguageName))
{
ret = LanguageType::PORTUGUESE;
}
else if (0 == strcmp("ar", pLanguageName))
{
ret = LanguageType::ARABIC;
}
else if (0 == strcmp("nb", pLanguageName))
{
ret = LanguageType::NORWEGIAN;
}
2013-06-11 22:46:38 +08:00
else if (0 == strcmp("pl", pLanguageName))
{
ret = LanguageType::POLISH;
2013-06-11 22:46:38 +08:00
}
return ret;
2012-08-02 13:02:59 +08:00
}
NS_CC_END