mirror of https://github.com/axmolengine/axmol.git
102 lines
3.6 KiB
C++
102 lines
3.6 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
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 "AppDelegate.h"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "GameControllerTest.h"
|
|
#include "AppMacros.h"
|
|
|
|
USING_NS_CC;
|
|
using namespace std;
|
|
|
|
AppDelegate::AppDelegate() {
|
|
|
|
}
|
|
|
|
AppDelegate::~AppDelegate()
|
|
{
|
|
}
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
{
|
|
auto director = Director::getInstance();
|
|
auto glview = director->getOpenGLView();
|
|
if(!glview) {
|
|
glview = GLViewImpl::create("Game Controller Test");
|
|
director->setOpenGLView(glview);
|
|
}
|
|
|
|
director->setOpenGLView(glview);
|
|
|
|
glview->setDesignResolutionSize(designResolutionSize.width, designResolutionSize.height, ResolutionPolicy::SHOW_ALL);
|
|
|
|
Size frameSize = glview->getFrameSize();
|
|
|
|
vector<string> searchPath;
|
|
|
|
// In this demo, we select resource according to the frame's height.
|
|
// If the resource size is different from design resolution size, you need to set contentScaleFactor.
|
|
// We use the ratio of resource's height to the height of design resolution,
|
|
// this can make sure that the resource's height could fit for the height of design resolution.
|
|
|
|
// if the frame's height is larger than the height of medium resource size, select large resource.
|
|
if (frameSize.height > mediumResource.size.height)
|
|
{
|
|
searchPath.push_back(largeResource.directory);
|
|
|
|
director->setContentScaleFactor(MIN(largeResource.size.height/designResolutionSize.height, largeResource.size.width/designResolutionSize.width));
|
|
}
|
|
// if the frame's height is larger than the height of small resource size, select medium resource.
|
|
else
|
|
{
|
|
searchPath.push_back(mediumResource.directory);
|
|
|
|
director->setContentScaleFactor(MIN(mediumResource.size.height/designResolutionSize.height, mediumResource.size.width/designResolutionSize.width));
|
|
}
|
|
// set searching path
|
|
FileUtils::getInstance()->setSearchPaths(searchPath);
|
|
|
|
auto scene = Scene::create();
|
|
GameControllerTest *gameLayer = GameControllerTest::create();
|
|
scene->addChild(gameLayer);
|
|
|
|
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()
|
|
{
|
|
Director::getInstance()->stopAnimation();
|
|
}
|
|
|
|
// this function will be called when the app is active again
|
|
void AppDelegate::applicationWillEnterForeground() {
|
|
Director::getInstance()->startAnimation();
|
|
}
|