mirror of https://github.com/axmolengine/axmol.git
206 lines
9.4 KiB
C++
206 lines
9.4 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
Copyright (c) 2013-2015 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 "AppDelegate.h"
|
|
|
|
#include "cocos2d.h"
|
|
#include "controller.h"
|
|
#include "editor-support/cocostudio/CocoStudio.h"
|
|
#include "extensions/cocos-ext.h"
|
|
|
|
USING_NS_CC;
|
|
|
|
AppDelegate::AppDelegate()
|
|
: _testController(nullptr)
|
|
{
|
|
}
|
|
|
|
AppDelegate::~AppDelegate()
|
|
{
|
|
//SimpleAudioEngine::end();
|
|
cocostudio::ArmatureDataManager::destroyInstance();
|
|
}
|
|
|
|
//if you want a different context,just modify the value of glContextAttrs
|
|
//it will takes effect on all platforms
|
|
void AppDelegate::initGLContextAttrs()
|
|
{
|
|
//set OpenGL context attributions,now can only set six attributions:
|
|
//red,green,blue,alpha,depth,stencil
|
|
GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8};
|
|
|
|
GLView::setGLContextAttrs(glContextAttrs);
|
|
}
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
{
|
|
// As an example, load config file
|
|
// FIXME:: This should be loaded before the Director is initialized,
|
|
// FIXME:: but at this point, the director is already initialized
|
|
Configuration::getInstance()->loadConfigFile("configs/config-example.plist");
|
|
|
|
// initialize director
|
|
auto director = Director::getInstance();
|
|
auto glview = director->getOpenGLView();
|
|
if(!glview) {
|
|
glview = GLViewImpl::create("Cpp Tests");
|
|
director->setOpenGLView(glview);
|
|
}
|
|
|
|
director->setDisplayStats(true);
|
|
director->setAnimationInterval(1.0 / 60);
|
|
|
|
auto screenSize = glview->getFrameSize();
|
|
auto designSize = Size(480, 320);
|
|
|
|
auto fileUtils = FileUtils::getInstance();
|
|
std::vector<std::string> searchPaths;
|
|
|
|
if (screenSize.height > 320)
|
|
{
|
|
auto resourceSize = Size(960, 640);
|
|
searchPaths.push_back("hd");
|
|
searchPaths.push_back("ccs-res/hd");
|
|
searchPaths.push_back("ccs-res/hd/scenetest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/ArmatureComponentTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/AttributeComponentTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/BackgroundComponentTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/EffectComponentTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/LoadSceneEdtiorFileTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/ParticleComponentTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/SpriteComponentTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/TmxMapComponentTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/UIComponentTest");
|
|
searchPaths.push_back("ccs-res/hd/scenetest/TriggerTest");
|
|
searchPaths.push_back("ccs-res");
|
|
searchPaths.push_back("Manifests");
|
|
director->setContentScaleFactor(resourceSize.height/designSize.height);
|
|
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIButton");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UICheckBox");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIImageView");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILabel");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILabelBMFont");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILayout/BackgroundImage");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILayout/Color");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILayout/Layout");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILayout/Gradient_Color");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILayout/Scale9_BackgroundImage");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILayout/LayoutComponent");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UILoadingBar");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIPageView");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIScrollView/Both");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIScrollView/Horizontal");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIScrollView/Vertical");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIScrollView/ScrollViewAndButton");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UISlider");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UITextField");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIWidgetAddNode");
|
|
searchPaths.push_back("ccs-res/hd/cocosui/UIEditorTest/UIListView/New");
|
|
|
|
searchPaths.push_back("ccs-res/hd/cocosui/CustomTest/CustomWidgetCallbackBindTest");
|
|
searchPaths.push_back("hd/ActionTimeline");
|
|
searchPaths.push_back("ccs-res/hd/armature");
|
|
|
|
searchPaths.push_back("ccs-res/hd/scene3DTest");
|
|
}
|
|
else
|
|
{
|
|
searchPaths.push_back("ccs-res");
|
|
searchPaths.push_back("ccs-res/scenetest/ArmatureComponentTest");
|
|
searchPaths.push_back("ccs-res/scenetest/AttributeComponentTest");
|
|
searchPaths.push_back("ccs-res/scenetest/BackgroundComponentTest");
|
|
searchPaths.push_back("ccs-res/scenetest/EffectComponentTest");
|
|
searchPaths.push_back("ccs-res/scenetest/LoadSceneEdtiorFileTest");
|
|
searchPaths.push_back("ccs-res/scenetest/ParticleComponentTest");
|
|
searchPaths.push_back("ccs-res/scenetest/SpriteComponentTest");
|
|
searchPaths.push_back("ccs-res/scenetest/TmxMapComponentTest");
|
|
searchPaths.push_back("ccs-res/scenetest/UIComponentTest");
|
|
searchPaths.push_back("ccs-res/scenetest/TriggerTest");
|
|
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIButton");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UICheckBox");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIImageView");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILabel");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILabelBMFont");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILayout/BackgroundImage");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILayout/Color");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILayout/Layout");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILayout/Gradient_Color");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILayout/Scale9_BackgroundImage");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILayout/LayoutComponent");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UILoadingBar");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIPageView");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIScrollView/Both");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIScrollView/Horizontal");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIScrollView/Vertical");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIScrollView/ScrollViewAndButton");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UISlider");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UITextField");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIWidgetAddNode");
|
|
searchPaths.push_back("ccs-res/cocosui/UIEditorTest/UIListView/New");
|
|
|
|
searchPaths.push_back("ccs-res/cocosui/CustomTest/CustomWidgetCallbackBindTest");
|
|
searchPaths.push_back("ActionTimeline");
|
|
searchPaths.push_back("ccs-res/armature");
|
|
|
|
searchPaths.push_back("ccs-res/scene3DTest");
|
|
}
|
|
|
|
fileUtils->setSearchPaths(searchPaths);
|
|
|
|
glview->setDesignResolutionSize(designSize.width, designSize.height, ResolutionPolicy::SHOW_ALL);
|
|
|
|
// Enable Remote Console
|
|
auto console = director->getConsole();
|
|
console->listenOnTCP(5678);
|
|
|
|
_testController = TestController::getInstance();
|
|
|
|
return true;
|
|
}
|
|
|
|
// This function will be called when the app is inactive. When comes a phone call,it's be invoked too
|
|
void AppDelegate::applicationDidEnterBackground()
|
|
{
|
|
if (_testController)
|
|
{
|
|
_testController->onEnterBackground();
|
|
}
|
|
|
|
Director::getInstance()->stopAnimation();
|
|
}
|
|
|
|
// this function will be called when the app is active again
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
{
|
|
if (_testController)
|
|
{
|
|
_testController->onEnterForeground();
|
|
}
|
|
|
|
Director::getInstance()->startAnimation();
|
|
}
|