123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- /****************************************************************************
- Copyright (c) 2011 Laschweinski
- Copyright (c) 2013-2017 Chukong Technologies Inc.
- 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.
- ****************************************************************************/
- #include "platform/CCPlatformConfig.h"
- #if CC_TARGET_PLATFORM == CC_PLATFORM_LINUX
- #include "platform/linux/CCApplication-linux.h"
- #include <unistd.h>
- #include <sys/time.h>
- #include <string>
- #include "base/CCDirector.h"
- #include "platform/CCFileUtils.h"
- NS_CC_BEGIN
- // sharedApplication pointer
- Application * Application::sm_pSharedApplication = nullptr;
- static long getCurrentMillSecond() {
- long lLastTime;
- struct timeval stCurrentTime;
- gettimeofday(&stCurrentTime,NULL);
- lLastTime = stCurrentTime.tv_sec*1000+stCurrentTime.tv_usec*0.001; // milliseconds
- return lLastTime;
- }
- Application::Application()
- : _animationInterval(1.0f/60.0f*1000.0f)
- {
- 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;
- }
- long lastTime = 0L;
- long curTime = 0L;
- 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 = getCurrentMillSecond();
- director->mainLoop();
- glview->pollEvents();
- curTime = getCurrentMillSecond();
- if (curTime - lastTime < _animationInterval)
- {
- usleep((_animationInterval - curTime + lastTime)*1000);
- }
- }
- /* 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 = interval*1000.0f;
- }
- void Application::setAnimationInterval(float interval, SetIntervalReason reason)
- {
- setAnimationInterval(interval);
- }
- void Application::setResourceRootPath(const std::string& 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);
- }
- const std::string& Application::getResourceRootPath(void)
- {
- return _resourceRootPath;
- }
- Application::Platform Application::getTargetPlatform()
- {
- return Platform::OS_LINUX;
- }
- std::string Application::getVersion()
- {
- return "";
- }
- bool Application::openURL(const std::string &url)
- {
- std::string op = std::string("xdg-open ").append(url);
- 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");
- 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;
- }
- else if (0 == strcmp("pt", pLanguageName))
- {
- ret = LanguageType::PORTUGUESE;
- }
- else if (0 == strcmp("ar", pLanguageName))
- {
- ret = LanguageType::ARABIC;
- }
- else if (0 == strcmp("nb", pLanguageName))
- {
- ret = LanguageType::NORWEGIAN;
- }
- else if (0 == strcmp("pl", pLanguageName))
- {
- ret = LanguageType::POLISH;
- }
- else if (0 == strcmp("tr", pLanguageName))
- {
- ret = LanguageType::TURKISH;
- }
- else if (0 == strcmp("uk", pLanguageName))
- {
- ret = LanguageType::UKRAINIAN;
- }
- else if (0 == strcmp("ro", pLanguageName))
- {
- ret = LanguageType::ROMANIAN;
- }
- else if (0 == strcmp("bg", pLanguageName))
- {
- ret = LanguageType::BULGARIAN;
- }
-
- return ret;
- }
- NS_CC_END
- #endif // CC_TARGET_PLATFORM == CC_PLATFORM_LINUX
|