mirror of https://github.com/axmolengine/axmol.git
189 lines
5.3 KiB
C++
189 lines
5.3 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2011 Laschweinski
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
https://axis-project.github.io/
|
|
|
|
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.
|
|
****************************************************************************/
|
|
#include "platform/linux/CCApplication-linux.h"
|
|
#include <unistd.h>
|
|
#include <sys/time.h>
|
|
#include <string>
|
|
#include <thread>
|
|
#include "base/CCDirector.h"
|
|
#include "base/ccUtils.h"
|
|
#include "platform/CCFileUtils.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
// sharedApplication pointer
|
|
Application* Application::sm_pSharedApplication = nullptr;
|
|
|
|
Application::Application() : _animationInterval(16666667)
|
|
{
|
|
CC_ASSERT(!sm_pSharedApplication);
|
|
sm_pSharedApplication = this;
|
|
}
|
|
|
|
Application::~Application()
|
|
{
|
|
CC_ASSERT(this == sm_pSharedApplication);
|
|
sm_pSharedApplication = nullptr;
|
|
}
|
|
|
|
int Application::run()
|
|
{
|
|
initGLContextAttrs();
|
|
// Initialize instance and cocos2d.
|
|
if (!applicationDidFinishLaunching())
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
std::chrono::steady_clock::time_point lastTime{};
|
|
|
|
auto director = Director::getInstance();
|
|
auto glview = director->getOpenGLView();
|
|
|
|
// Retain glview to avoid glview being released in the while loop
|
|
glview->retain();
|
|
|
|
while (!glview->windowShouldClose())
|
|
{
|
|
lastTime = std::chrono::steady_clock::now();
|
|
|
|
director->mainLoop();
|
|
glview->pollEvents();
|
|
|
|
auto interval = std::chrono::steady_clock::now() - lastTime;
|
|
if (interval < _animationInterval)
|
|
{
|
|
auto waitDuration = _animationInterval - interval;
|
|
std::this_thread::sleep_for(waitDuration);
|
|
}
|
|
else
|
|
{
|
|
std::this_thread::yield();
|
|
}
|
|
}
|
|
/* 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
|
|
*/
|
|
if (glview->isOpenGLReady())
|
|
{
|
|
director->end();
|
|
director->mainLoop();
|
|
director = nullptr;
|
|
}
|
|
glview->release();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
void Application::setAnimationInterval(float interval)
|
|
{
|
|
// TODO do something else
|
|
_animationInterval =
|
|
std::chrono::nanoseconds{static_cast<std::chrono::nanoseconds::rep>(std::nano::den * interval)};
|
|
}
|
|
|
|
void Application::setResourceRootPath(std::string_view 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);
|
|
}
|
|
|
|
std::string_view Application::getResourceRootPath()
|
|
{
|
|
return _resourceRootPath;
|
|
}
|
|
|
|
Application::Platform Application::getTargetPlatform()
|
|
{
|
|
return Platform::Linux;
|
|
}
|
|
|
|
std::string Application::getVersion()
|
|
{
|
|
return "";
|
|
}
|
|
|
|
bool Application::openURL(std::string_view url)
|
|
{
|
|
std::string op = std::string("xdg-open '").append(url).append("'");
|
|
return system(op.c_str()) == 0;
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// static member function
|
|
//////////////////////////////////////////////////////////////////////////
|
|
Application* Application::getInstance()
|
|
{
|
|
CC_ASSERT(sm_pSharedApplication);
|
|
return sm_pSharedApplication;
|
|
}
|
|
|
|
// @deprecated Use getInstance() instead
|
|
Application* Application::sharedApplication()
|
|
{
|
|
return Application::getInstance();
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
LanguageType Application::getCurrentLanguage()
|
|
{
|
|
char* pLanguageName = getenv("LANG");
|
|
if (!pLanguageName)
|
|
{
|
|
return LanguageType::ENGLISH;
|
|
}
|
|
strtok(pLanguageName, "_");
|
|
if (!pLanguageName)
|
|
{
|
|
return LanguageType::ENGLISH;
|
|
}
|
|
|
|
return utils::getLanguageTypeByISO2(pLanguageName);
|
|
}
|
|
|
|
NS_CC_END
|