2014-01-07 11:25:07 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2011 Laschweinski
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
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.
|
|
|
|
****************************************************************************/
|
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"
|
2018-02-11 09:19:47 +08:00
|
|
|
#include "base/ccUtils.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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-07-22 09:38:46 +08:00
|
|
|
const std::string& Application::getResourceRootPath()
|
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");
|
|
|
|
if (!pLanguageName)
|
|
|
|
{
|
|
|
|
return LanguageType::ENGLISH;
|
|
|
|
}
|
|
|
|
strtok(pLanguageName, "_");
|
|
|
|
if (!pLanguageName)
|
|
|
|
{
|
|
|
|
return LanguageType::ENGLISH;
|
|
|
|
}
|
|
|
|
|
2018-02-11 09:19:47 +08:00
|
|
|
return utils::getLanguageTypeByISO2(pLanguageName);
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|