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
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
https://axmolengine.github.io/
|
2014-01-07 11:25:07 +08:00
|
|
|
|
|
|
|
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>
|
2022-07-01 01:00:18 +08:00
|
|
|
#include <thread>
|
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
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2012-08-02 13:02:59 +08:00
|
|
|
|
|
|
|
// sharedApplication pointer
|
2021-12-25 10:04:45 +08:00
|
|
|
Application* Application::sm_pSharedApplication = nullptr;
|
2012-08-02 13:02:59 +08:00
|
|
|
|
2022-07-01 01:00:18 +08:00
|
|
|
Application::Application() : _animationInterval(16666667)
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
2022-07-15 19:17:01 +08:00
|
|
|
AX_ASSERT(!sm_pSharedApplication);
|
2014-01-24 08:04:11 +08:00
|
|
|
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
|
|
|
{
|
2022-07-15 19:17:01 +08:00
|
|
|
AX_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.
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!applicationDidFinishLaunching())
|
2014-01-24 08:04:11 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-08-02 13:02:59 +08:00
|
|
|
|
2022-07-01 01:00:18 +08:00
|
|
|
std::chrono::steady_clock::time_point lastTime{};
|
2022-06-30 21:04:00 +08:00
|
|
|
|
2014-01-24 08:04:11 +08:00
|
|
|
auto director = Director::getInstance();
|
2022-09-05 14:13:52 +08:00
|
|
|
auto glView = director->getOpenGLView();
|
2014-03-14 18:40:04 +08:00
|
|
|
|
2022-09-05 14:13:52 +08:00
|
|
|
// Retain glView to avoid glView being released in the while loop
|
|
|
|
glView->retain();
|
2014-01-24 08:04:11 +08:00
|
|
|
|
2022-09-05 14:13:52 +08:00
|
|
|
while (!glView->windowShouldClose())
|
2013-08-28 12:00:06 +08:00
|
|
|
{
|
2022-07-01 01:00:18 +08:00
|
|
|
lastTime = std::chrono::steady_clock::now();
|
2022-06-30 21:04:00 +08:00
|
|
|
|
2014-03-14 18:40:04 +08:00
|
|
|
director->mainLoop();
|
2022-09-05 14:13:52 +08:00
|
|
|
glView->pollEvents();
|
2022-06-30 21:04:00 +08:00
|
|
|
|
2022-07-01 01:00:18 +08:00
|
|
|
auto interval = std::chrono::steady_clock::now() - lastTime;
|
|
|
|
if (interval < _animationInterval)
|
|
|
|
{
|
|
|
|
auto waitDuration = _animationInterval - interval;
|
|
|
|
std::this_thread::sleep_for(waitDuration);
|
|
|
|
}
|
|
|
|
else
|
2022-06-30 21:04:00 +08:00
|
|
|
{
|
2022-07-01 01:00:18 +08:00
|
|
|
std::this_thread::yield();
|
2022-06-30 21:04:00 +08:00
|
|
|
}
|
2013-08-28 12:00:06 +08:00
|
|
|
}
|
2013-09-18 17:16:31 +08:00
|
|
|
/* Only work on Desktop
|
2021-12-25 10:04:45 +08:00
|
|
|
* 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
|
|
|
|
*/
|
2022-09-05 14:13:52 +08:00
|
|
|
if (glView->isOpenGLReady())
|
2014-03-14 17:21:27 +08:00
|
|
|
{
|
|
|
|
director->end();
|
|
|
|
director->mainLoop();
|
|
|
|
director = nullptr;
|
|
|
|
}
|
2022-09-05 14:13:52 +08:00
|
|
|
glView->release();
|
2015-01-01 01:37:59 +08:00
|
|
|
return EXIT_SUCCESS;
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
2022-06-30 21:04:00 +08:00
|
|
|
void Application::setAnimationInterval(float interval)
|
|
|
|
{
|
|
|
|
// TODO do something else
|
2022-07-01 01:00:18 +08:00
|
|
|
_animationInterval =
|
|
|
|
std::chrono::nanoseconds{static_cast<std::chrono::nanoseconds::rep>(std::nano::den * interval)};
|
2022-06-30 21:04:00 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Application::setResourceRootPath(std::string_view 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
|
|
|
}
|
2021-12-25 10:04:45 +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
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
std::string_view 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
|
|
|
{
|
2022-06-17 22:18:26 +08:00
|
|
|
return Platform::Linux;
|
2012-08-16 10:21:15 +08:00
|
|
|
}
|
|
|
|
|
2015-10-29 01:57:57 +08:00
|
|
|
std::string Application::getVersion()
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
bool Application::openURL(std::string_view url)
|
2014-09-09 16:07:33 +08:00
|
|
|
{
|
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
|
|
|
{
|
2022-07-15 19:17:01 +08:00
|
|
|
AX_ASSERT(sm_pSharedApplication);
|
2014-01-24 08:04:11 +08:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
const char* Application::getCurrentLanguageCode()
|
2014-03-18 02:34:21 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
static char code[3] = {0};
|
|
|
|
char* pLanguageName = getenv("LANG");
|
2014-03-18 02:34:21 +08:00
|
|
|
if (!pLanguageName)
|
|
|
|
return "en";
|
|
|
|
strtok(pLanguageName, "_");
|
|
|
|
if (!pLanguageName)
|
|
|
|
return "en";
|
2021-12-25 10:04:45 +08:00
|
|
|
strncpy(code, pLanguageName, 2);
|
|
|
|
code[2] = '\0';
|
2014-03-18 02:34:21 +08:00
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
2013-07-26 17:29:06 +08:00
|
|
|
LanguageType Application::getCurrentLanguage()
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
char* pLanguageName = getenv("LANG");
|
2014-12-25 18:02:03 +08:00
|
|
|
if (!pLanguageName)
|
|
|
|
{
|
|
|
|
return LanguageType::ENGLISH;
|
|
|
|
}
|
|
|
|
strtok(pLanguageName, "_");
|
|
|
|
if (!pLanguageName)
|
|
|
|
{
|
|
|
|
return LanguageType::ENGLISH;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2018-02-11 09:19:47 +08:00
|
|
|
return utils::getLanguageTypeByISO2(pLanguageName);
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|