2014-01-07 11:25:07 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2011 Laschweinski
|
2017-02-14 14:36:57 +08:00
|
|
|
Copyright (c) 2013-2017 Chukong Technologies Inc.
|
2014-01-07 11:25:07 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-09-10 08:41:49 +08:00
|
|
|
#include "platform/CCPlatformConfig.h"
|
2014-01-31 09:10:18 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_LINUX
|
|
|
|
|
2016-03-20 21:53:44 +08:00
|
|
|
#include "platform/linux/CCApplication-linux.h"
|
2012-08-02 13:02:59 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/time.h>
|
2012-08-03 13:56:18 +08:00
|
|
|
#include <string>
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "base/CCDirector.h"
|
2014-05-17 05:36:00 +08:00
|
|
|
#include "platform/CCFileUtils.h"
|
2012-08-02 13:02:59 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2012-08-03 13:56:18 +08:00
|
|
|
|
2012-08-02 13:02:59 +08:00
|
|
|
// sharedApplication pointer
|
2016-06-23 11:39:23 +08:00
|
|
|
Application * Application::sm_pSharedApplication = nullptr;
|
2012-08-02 13:02:59 +08:00
|
|
|
|
|
|
|
static long getCurrentMillSecond() {
|
2014-01-24 08:04:11 +08:00
|
|
|
long lLastTime;
|
|
|
|
struct timeval stCurrentTime;
|
2012-08-02 13:02:59 +08:00
|
|
|
|
2014-01-24 08:04:11 +08:00
|
|
|
gettimeofday(&stCurrentTime,NULL);
|
2016-10-17 10:12:54 +08:00
|
|
|
lLastTime = stCurrentTime.tv_sec*1000+stCurrentTime.tv_usec*0.001; // milliseconds
|
2014-01-24 08:04:11 +08:00
|
|
|
return lLastTime;
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
Application::Application()
|
2014-02-21 11:55:37 +08:00
|
|
|
: _animationInterval(1.0f/60.0f*1000.0f)
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
2014-01-24 08:04:11 +08:00
|
|
|
CC_ASSERT(! sm_pSharedApplication);
|
|
|
|
sm_pSharedApplication = this;
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
Application::~Application()
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
2014-01-24 08:04:11 +08:00
|
|
|
CC_ASSERT(this == sm_pSharedApplication);
|
2016-06-23 11:39:23 +08:00
|
|
|
sm_pSharedApplication = nullptr;
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
int Application::run()
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
2014-08-22 16:22:16 +08:00
|
|
|
initGLContextAttrs();
|
2014-01-24 08:04:11 +08:00
|
|
|
// Initialize instance and cocos2d.
|
|
|
|
if (! applicationDidFinishLaunching())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-08-02 13:02:59 +08:00
|
|
|
|
2014-03-14 18:40:04 +08:00
|
|
|
long lastTime = 0L;
|
|
|
|
long curTime = 0L;
|
|
|
|
|
2014-01-24 08:04:11 +08:00
|
|
|
auto director = Director::getInstance();
|
|
|
|
auto glview = director->getOpenGLView();
|
2014-03-14 18:40:04 +08:00
|
|
|
|
|
|
|
// Retain glview to avoid glview being released in the while loop
|
2014-03-14 17:21:27 +08:00
|
|
|
glview->retain();
|
2014-01-24 08:04:11 +08:00
|
|
|
|
|
|
|
while (!glview->windowShouldClose())
|
2013-08-28 12:00:06 +08:00
|
|
|
{
|
2014-03-14 18:40:04 +08:00
|
|
|
lastTime = getCurrentMillSecond();
|
|
|
|
|
|
|
|
director->mainLoop();
|
2014-03-15 00:10:39 +08:00
|
|
|
glview->pollEvents();
|
2014-03-14 18:40:04 +08:00
|
|
|
|
|
|
|
curTime = getCurrentMillSecond();
|
|
|
|
if (curTime - lastTime < _animationInterval)
|
|
|
|
{
|
|
|
|
usleep((_animationInterval - curTime + lastTime)*1000);
|
2014-01-24 08:04:11 +08:00
|
|
|
}
|
2013-08-28 12:00:06 +08:00
|
|
|
}
|
2013-09-18 17:16:31 +08:00
|
|
|
/* Only work on Desktop
|
|
|
|
* Director::mainLoop is really one frame logic
|
|
|
|
* when we want to close the window, we should call Director::end();
|
|
|
|
* then call Director::mainLoop to do release of internal resources
|
|
|
|
*/
|
2014-03-14 17:21:27 +08:00
|
|
|
if (glview->isOpenGLReady())
|
|
|
|
{
|
|
|
|
director->end();
|
|
|
|
director->mainLoop();
|
|
|
|
director = nullptr;
|
|
|
|
}
|
|
|
|
glview->release();
|
2015-01-01 01:37:59 +08:00
|
|
|
return EXIT_SUCCESS;
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
2015-07-06 14:57:42 +08:00
|
|
|
void Application::setAnimationInterval(float interval)
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
2014-01-24 08:04:11 +08:00
|
|
|
//TODO do something else
|
|
|
|
_animationInterval = interval*1000.0f;
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
2017-06-05 13:37:50 +08:00
|
|
|
void Application::setAnimationInterval(float interval, SetIntervalReason reason)
|
|
|
|
{
|
|
|
|
setAnimationInterval(interval);
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
void Application::setResourceRootPath(const std::string& rootResDir)
|
2012-08-03 13:56:18 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_resourceRootPath = rootResDir;
|
|
|
|
if (_resourceRootPath[_resourceRootPath.length() - 1] != '/')
|
2013-01-28 10:36:37 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_resourceRootPath += '/';
|
2013-01-28 10:36:37 +08:00
|
|
|
}
|
2013-07-12 12:03:39 +08:00
|
|
|
FileUtils* pFileUtils = FileUtils::getInstance();
|
2013-01-29 09:56:38 +08:00
|
|
|
std::vector<std::string> searchPaths = pFileUtils->getSearchPaths();
|
2013-06-15 14:03:30 +08:00
|
|
|
searchPaths.insert(searchPaths.begin(), _resourceRootPath);
|
2013-01-29 09:56:38 +08:00
|
|
|
pFileUtils->setSearchPaths(searchPaths);
|
2012-08-03 13:56:18 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
const std::string& Application::getResourceRootPath(void)
|
2012-08-03 13:56:18 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _resourceRootPath;
|
2012-08-03 13:56:18 +08:00
|
|
|
}
|
2012-08-16 10:21:15 +08:00
|
|
|
|
2013-07-26 17:29:06 +08:00
|
|
|
Application::Platform Application::getTargetPlatform()
|
2012-08-16 10:21:15 +08:00
|
|
|
{
|
2013-07-26 18:17:30 +08:00
|
|
|
return Platform::OS_LINUX;
|
2012-08-16 10:21:15 +08:00
|
|
|
}
|
|
|
|
|
2015-10-29 01:57:57 +08:00
|
|
|
std::string Application::getVersion()
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2014-09-09 16:07:33 +08:00
|
|
|
bool Application::openURL(const std::string &url)
|
|
|
|
{
|
2017-04-10 10:15:29 +08:00
|
|
|
std::string op = std::string("xdg-open '").append(url).append("'");
|
2016-11-28 10:41:36 +08:00
|
|
|
return system(op.c_str()) == 0;
|
2014-09-09 16:07:33 +08:00
|
|
|
}
|
|
|
|
|
2012-08-02 13:02:59 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// static member function
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-07-15 16:24:42 +08:00
|
|
|
Application* Application::getInstance()
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
2014-01-24 08:04:11 +08:00
|
|
|
CC_ASSERT(sm_pSharedApplication);
|
|
|
|
return sm_pSharedApplication;
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
2013-07-15 16:37:38 +08:00
|
|
|
// @deprecated Use getInstance() instead
|
|
|
|
Application* Application::sharedApplication()
|
|
|
|
{
|
|
|
|
return Application::getInstance();
|
|
|
|
}
|
|
|
|
|
2014-03-18 02:34:21 +08:00
|
|
|
const char * Application::getCurrentLanguageCode()
|
|
|
|
{
|
|
|
|
static char code[3]={0};
|
|
|
|
char *pLanguageName = getenv("LANG");
|
|
|
|
if (!pLanguageName)
|
|
|
|
return "en";
|
|
|
|
strtok(pLanguageName, "_");
|
|
|
|
if (!pLanguageName)
|
|
|
|
return "en";
|
|
|
|
strncpy(code,pLanguageName,2);
|
|
|
|
code[2]='\0';
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
2013-07-26 17:29:06 +08:00
|
|
|
LanguageType Application::getCurrentLanguage()
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
2014-12-25 18:02:03 +08:00
|
|
|
char *pLanguageName = getenv("LANG");
|
|
|
|
LanguageType ret = LanguageType::ENGLISH;
|
|
|
|
if (!pLanguageName)
|
|
|
|
{
|
|
|
|
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("nl", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::DUTCH;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
else if (0 == strcmp("hu", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::HUNGARIAN;
|
|
|
|
}
|
2013-02-11 23:29:56 +08:00
|
|
|
else if (0 == strcmp("pt", pLanguageName))
|
2014-01-24 08:04:11 +08:00
|
|
|
{
|
|
|
|
ret = LanguageType::PORTUGUESE;
|
|
|
|
}
|
2013-02-11 23:29:56 +08:00
|
|
|
else if (0 == strcmp("ar", pLanguageName))
|
2014-01-24 08:04:11 +08:00
|
|
|
{
|
|
|
|
ret = LanguageType::ARABIC;
|
|
|
|
}
|
|
|
|
else if (0 == strcmp("nb", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::NORWEGIAN;
|
|
|
|
}
|
|
|
|
else if (0 == strcmp("pl", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::POLISH;
|
|
|
|
}
|
2014-12-25 18:02:03 +08:00
|
|
|
else if (0 == strcmp("tr", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::TURKISH;
|
|
|
|
}
|
|
|
|
else if (0 == strcmp("uk", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::UKRAINIAN;
|
|
|
|
}
|
2015-02-25 23:20:48 +08:00
|
|
|
else if (0 == strcmp("ro", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::ROMANIAN;
|
|
|
|
}
|
2015-03-17 21:14:02 +08:00
|
|
|
else if (0 == strcmp("bg", pLanguageName))
|
|
|
|
{
|
|
|
|
ret = LanguageType::BULGARIAN;
|
|
|
|
}
|
2014-01-24 08:04:11 +08:00
|
|
|
|
|
|
|
return ret;
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|
2014-01-31 09:10:18 +08:00
|
|
|
|
|
|
|
#endif // CC_TARGET_PLATFORM == CC_PLATFORM_LINUX
|
|
|
|
|