axmol/templates/cpp-template-default/Classes/AppDelegate.cpp

139 lines
4.9 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
Copyright (c) 2021 Bytedance Inc.
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2019-11-23 20:27:39 +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:
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2019-11-23 20:27:39 +08:00
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 "AppDelegate.h"
#include "HelloWorldScene.h"
#define USE_AUDIO_ENGINE 1
2019-11-23 20:27:39 +08:00
#if USE_AUDIO_ENGINE
2022-01-03 11:34:58 +08:00
# include "audio/AudioEngine.h"
2019-11-23 20:27:39 +08:00
#endif
USING_NS_AX;
2019-11-23 20:27:39 +08:00
2022-10-07 21:21:07 +08:00
static ax::Size designResolutionSize = ax::Size(1280, 720);
static ax::Size smallResolutionSize = ax::Size(480, 320);
static ax::Size mediumResolutionSize = ax::Size(1024, 768);
static ax::Size largeResolutionSize = ax::Size(2048, 1536);
2019-11-23 20:27:39 +08:00
AppDelegate::AppDelegate() {}
2019-11-23 20:27:39 +08:00
AppDelegate::~AppDelegate() {}
2019-11-23 20:27:39 +08:00
// if you want a different context, modify the value of glContextAttrs
// it will affect all platforms
void AppDelegate::initGLContextAttrs()
{
// set OpenGL context attributes: red,green,blue,alpha,depth,stencil,multisamplesCount
GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8, 0};
GLView::setGLContextAttrs(glContextAttrs);
}
// if you want to use the package manager to install more packages,
2019-11-23 20:27:39 +08:00
// don't modify or remove this function
static int register_all_packages()
{
return 0; // flag for packages manager
2019-11-23 20:27:39 +08:00
}
bool AppDelegate::applicationDidFinishLaunching()
{
2019-11-23 20:27:39 +08:00
// initialize director
auto director = Director::getInstance();
auto glView = director->getOpenGLView();
if (!glView)
{
2022-10-07 21:21:07 +08:00
#if (AX_TARGET_PLATFORM == AX_PLATFORM_WIN32) || (AX_TARGET_PLATFORM == AX_PLATFORM_MAC) || \
(AX_TARGET_PLATFORM == AX_PLATFORM_LINUX)
glView = GLViewImpl::createWithRect(
"HelloCpp", axis::Rect(0, 0, designResolutionSize.width, designResolutionSize.height));
2019-11-23 20:27:39 +08:00
#else
glView = GLViewImpl::create("HelloCpp");
2019-11-23 20:27:39 +08:00
#endif
director->setOpenGLView(glView);
2019-11-23 20:27:39 +08:00
}
// turn on display FPS
director->setStatsDisplay(true);
2019-11-23 20:27:39 +08:00
// set FPS. the default value is 1.0/60 if you don't call this
director->setAnimationInterval(1.0f / 60);
// Set the design resolution
glView->setDesignResolutionSize(designResolutionSize.width, designResolutionSize.height,
ResolutionPolicy::NO_BORDER);
auto frameSize = glView->getFrameSize();
2019-11-23 20:27:39 +08:00
// if the frame's height is larger than the height of medium size.
if (frameSize.height > mediumResolutionSize.height)
{
director->setContentScaleFactor(MIN(largeResolutionSize.height / designResolutionSize.height,
largeResolutionSize.width / designResolutionSize.width));
2019-11-23 20:27:39 +08:00
}
// if the frame's height is larger than the height of small size.
else if (frameSize.height > smallResolutionSize.height)
{
director->setContentScaleFactor(MIN(mediumResolutionSize.height / designResolutionSize.height,
mediumResolutionSize.width / designResolutionSize.width));
2019-11-23 20:27:39 +08:00
}
// if the frame's height is smaller than the height of medium size.
else
{
director->setContentScaleFactor(MIN(smallResolutionSize.height / designResolutionSize.height,
smallResolutionSize.width / designResolutionSize.width));
2019-11-23 20:27:39 +08:00
}
register_all_packages();
// create a scene. it's an autorelease object
auto scene = utils::createInstance<HelloWorld>();
2019-11-23 20:27:39 +08:00
// run
director->runWithScene(scene);
return true;
}
// This function will be called when the app is inactive. Note, when receiving a phone call it is invoked.
void AppDelegate::applicationDidEnterBackground()
{
2019-11-23 20:27:39 +08:00
Director::getInstance()->stopAnimation();
#if USE_AUDIO_ENGINE
AudioEngine::pauseAll();
#endif
}
// this function will be called when the app is active again
void AppDelegate::applicationWillEnterForeground()
{
2019-11-23 20:27:39 +08:00
Director::getInstance()->startAnimation();
#if USE_AUDIO_ENGINE
AudioEngine::resumeAll();
#endif
}