mirror of https://github.com/axmolengine/axmol.git
108 lines
2.1 KiB
C++
108 lines
2.1 KiB
C++
/*
|
|
* CCAplication_linux.cpp
|
|
*
|
|
* Created on: Aug 8, 2011
|
|
* Author: laschweinski
|
|
*/
|
|
#include "CCApplication.h"
|
|
#include <unistd.h>
|
|
#include <sys/time.h>
|
|
#include <string>
|
|
#include "CCDirector.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
static std::string s_strRootResPath = "";
|
|
|
|
// sharedApplication pointer
|
|
CCApplication * CCApplication::sm_pSharedApplication = 0;
|
|
|
|
static long getCurrentMillSecond() {
|
|
long lLastTime;
|
|
struct timeval stCurrentTime;
|
|
|
|
gettimeofday(&stCurrentTime,NULL);
|
|
lLastTime = stCurrentTime.tv_sec*1000+stCurrentTime.tv_usec*0.001; //millseconds
|
|
return lLastTime;
|
|
}
|
|
|
|
CCApplication::CCApplication()
|
|
{
|
|
CC_ASSERT(! sm_pSharedApplication);
|
|
sm_pSharedApplication = this;
|
|
}
|
|
|
|
CCApplication::~CCApplication()
|
|
{
|
|
CC_ASSERT(this == sm_pSharedApplication);
|
|
sm_pSharedApplication = NULL;
|
|
m_nAnimationInterval = 1.0f/60.0f*1000.0f;
|
|
}
|
|
|
|
int CCApplication::run()
|
|
{
|
|
// Initialize instance and cocos2d.
|
|
if (! applicationDidFinishLaunching())
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
for (;;) {
|
|
long iLastTime = getCurrentMillSecond();
|
|
CCDirector::sharedDirector()->mainLoop();
|
|
long iCurTime = getCurrentMillSecond();
|
|
if (iCurTime-iLastTime<m_nAnimationInterval){
|
|
usleep((m_nAnimationInterval - iCurTime+iLastTime)*1000);
|
|
}
|
|
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
void CCApplication::setAnimationInterval(double interval)
|
|
{
|
|
//TODO do something else
|
|
m_nAnimationInterval = interval*1000.0f;
|
|
}
|
|
|
|
void CCApplication::setResourceRootPath(const char* pszRootResDir)
|
|
{
|
|
if (pszRootResDir)
|
|
{
|
|
s_strRootResPath = pszRootResDir;
|
|
if (s_strRootResPath[s_strRootResPath.length()-1] != '/')
|
|
{
|
|
s_strRootResPath += '/';
|
|
}
|
|
}
|
|
}
|
|
|
|
const char* CCApplication::getResourceRootPath(void)
|
|
{
|
|
return s_strRootResPath.c_str();
|
|
}
|
|
|
|
TargetPlatform CCApplication::getTargetPlatform()
|
|
{
|
|
return kTargetLinux;
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// static member function
|
|
//////////////////////////////////////////////////////////////////////////
|
|
CCApplication* CCApplication::sharedApplication()
|
|
{
|
|
CC_ASSERT(sm_pSharedApplication);
|
|
return sm_pSharedApplication;
|
|
}
|
|
|
|
ccLanguageType CCApplication::getCurrentLanguage()
|
|
{
|
|
//TODO
|
|
return kLanguageEnglish;
|
|
}
|
|
|
|
NS_CC_END
|