mirror of https://github.com/axmolengine/axmol.git
83 lines
2.1 KiB
C++
83 lines
2.1 KiB
C++
#include "AppDelegate.h"
|
|
#include "CCLuaEngine.h"
|
|
#include "SimpleAudioEngine.h"
|
|
#include "cocos2d.h"
|
|
#include "ide-support/CodeIDESupport.h"
|
|
|
|
#include "runtime/Runtime.h"
|
|
|
|
// Lua
|
|
#include "ide-support/RuntimeLuaImpl.h"
|
|
|
|
// Js
|
|
#include "ide-support/RuntimeJsImpl.h"
|
|
|
|
|
|
using namespace CocosDenshion;
|
|
|
|
USING_NS_CC;
|
|
using namespace std;
|
|
|
|
AppDelegate::AppDelegate()
|
|
{
|
|
}
|
|
|
|
AppDelegate::~AppDelegate()
|
|
{
|
|
SimpleAudioEngine::end();
|
|
|
|
// NOTE:Please don't remove this call if you want to debug with Cocos Code IDE
|
|
RuntimeEngine::getInstance()->end();
|
|
}
|
|
|
|
//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()
|
|
{
|
|
// set default FPS
|
|
Director::getInstance()->setAnimationInterval(1.0 / 60.0f);
|
|
|
|
auto runtimeEngine = RuntimeEngine::getInstance();
|
|
runtimeEngine->setEventTrackingEnable(true);
|
|
runtimeEngine->addRuntime(RuntimeLuaImpl::create(), kRuntimeEngineLua);
|
|
auto jsRuntime = RuntimeJsImpl::create();
|
|
runtimeEngine->addRuntime(jsRuntime, kRuntimeEngineJs);
|
|
runtimeEngine->start();
|
|
|
|
// js need special debug port
|
|
if (runtimeEngine->getProjectConfig().getDebuggerType() != kCCRuntimeDebuggerNone)
|
|
{
|
|
jsRuntime->startWithDebugger();
|
|
}
|
|
|
|
|
|
// Runtime end
|
|
cocos2d::log("iShow!");
|
|
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()
|
|
{
|
|
Director::getInstance()->stopAnimation();
|
|
|
|
SimpleAudioEngine::getInstance()->pauseBackgroundMusic();
|
|
}
|
|
|
|
// this function will be called when the app is active again
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
{
|
|
Director::getInstance()->startAnimation();
|
|
|
|
SimpleAudioEngine::getInstance()->resumeBackgroundMusic();
|
|
}
|