mirror of https://github.com/axmolengine/axmol.git
182 lines
5.9 KiB
Plaintext
182 lines
5.9 KiB
Plaintext
/****************************************************************************
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
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.
|
|
****************************************************************************/
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <Metal/Metal.h>
|
|
#include <algorithm>
|
|
#include <thread>
|
|
|
|
#include "platform/CCApplication.h"
|
|
#include "platform/CCFileUtils.h"
|
|
#include "math/CCMath.h"
|
|
#include "base/CCDirector.h"
|
|
#include "base/ccUtils.h"
|
|
#include "renderer/backend/metal/DeviceMTL.h"
|
|
|
|
NS_AX_BEGIN
|
|
|
|
Application* Application::sm_pSharedApplication = nullptr;
|
|
|
|
Application::Application() : _animationInterval(16666667)
|
|
{
|
|
AXASSERT(!sm_pSharedApplication, "sm_pSharedApplication already exist");
|
|
sm_pSharedApplication = this;
|
|
}
|
|
|
|
Application::~Application()
|
|
{
|
|
AXASSERT(this == sm_pSharedApplication, "sm_pSharedApplication != this");
|
|
sm_pSharedApplication = 0;
|
|
}
|
|
|
|
int Application::run()
|
|
{
|
|
initGLContextAttrs();
|
|
if (!applicationDidFinishLaunching())
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
std::chrono::steady_clock::time_point lastTime{};
|
|
|
|
constexpr std::chrono::nanoseconds _1ms{1000000};
|
|
|
|
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;
|
|
auto waitDuration = _animationInterval - interval - _1ms;
|
|
if (waitDuration.count() > 0)
|
|
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();
|
|
}
|
|
|
|
glview->release();
|
|
|
|
return 0;
|
|
}
|
|
|
|
void Application::setAnimationInterval(float interval)
|
|
{
|
|
_animationInterval =
|
|
std::chrono::nanoseconds{static_cast<std::chrono::nanoseconds::rep>(std::nano::den * interval)};
|
|
}
|
|
|
|
Application::Platform Application::getTargetPlatform()
|
|
{
|
|
return Platform::macOS;
|
|
}
|
|
|
|
std::string Application::getVersion()
|
|
{
|
|
NSString* version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
|
|
if (version)
|
|
{
|
|
return [version UTF8String];
|
|
}
|
|
return "";
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// static member function
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
Application* Application::getInstance()
|
|
{
|
|
AXASSERT(sm_pSharedApplication, "sm_pSharedApplication not set");
|
|
return sm_pSharedApplication;
|
|
}
|
|
|
|
const char* Application::getCurrentLanguageCode()
|
|
{
|
|
static char code[3] = {0};
|
|
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
|
|
NSArray* languages = [defaults objectForKey:@"AppleLanguages"];
|
|
NSString* currentLanguage = [languages objectAtIndex:0];
|
|
|
|
// get the current language code.(such as English is "en", Chinese is "zh" and so on)
|
|
NSDictionary* temp = [NSLocale componentsFromLocaleIdentifier:currentLanguage];
|
|
NSString* languageCode = [temp objectForKey:NSLocaleLanguageCode];
|
|
[languageCode getCString:code maxLength:3 encoding:NSASCIIStringEncoding];
|
|
code[2] = '\0';
|
|
return code;
|
|
}
|
|
|
|
LanguageType Application::getCurrentLanguage()
|
|
{
|
|
// get the current language and country config
|
|
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
|
|
NSArray* languages = [defaults objectForKey:@"AppleLanguages"];
|
|
NSString* currentLanguage = [languages objectAtIndex:0];
|
|
|
|
// get the current language code.(such as English is "en", Chinese is "zh" and so on)
|
|
NSDictionary* temp = [NSLocale componentsFromLocaleIdentifier:currentLanguage];
|
|
NSString* languageCode = [temp objectForKey:NSLocaleLanguageCode];
|
|
|
|
return utils::getLanguageTypeByISO2([languageCode UTF8String]);
|
|
}
|
|
|
|
bool Application::openURL(std::string_view url)
|
|
{
|
|
NSString* msg = [NSString stringWithCString:url.data() encoding:NSUTF8StringEncoding];
|
|
NSURL* nsUrl = [NSURL URLWithString:msg];
|
|
return [[NSWorkspace sharedWorkspace] openURL:nsUrl];
|
|
}
|
|
|
|
void Application::setStartupScriptFilename(std::string_view startupScriptFile)
|
|
{
|
|
_startupScriptFilename = startupScriptFile;
|
|
std::replace(_startupScriptFilename.begin(), _startupScriptFilename.end(), '\\', '/');
|
|
}
|
|
|
|
std::string_view Application::getStartupScriptFilename()
|
|
{
|
|
return _startupScriptFilename;
|
|
}
|
|
|
|
NS_AX_END
|