mirror of https://github.com/axmolengine/axmol.git
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
#include "AppDelegate.h"
|
|
#include "CCLuaEngine.h"
|
|
#include "SimpleAudioEngine.h"
|
|
#include "cocos2d.h"
|
|
|
|
using namespace CocosDenshion;
|
|
|
|
USING_NS_CC;
|
|
using namespace std;
|
|
|
|
AppDelegate::AppDelegate()
|
|
{
|
|
}
|
|
|
|
AppDelegate::~AppDelegate()
|
|
{
|
|
SimpleAudioEngine::end();
|
|
}
|
|
|
|
// 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);
|
|
}
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
{
|
|
// set default FPS
|
|
Director::getInstance()->setAnimationInterval(1.0 / 60.0f);
|
|
|
|
// Runtime end
|
|
cocos2d::log("iShow!");
|
|
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();
|
|
|
|
SimpleAudioEngine::getInstance()->pauseBackgroundMusic();
|
|
}
|
|
|
|
// this function will be called when the app is active again
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
{
|
|
Director::getInstance()->startAnimation();
|
|
|
|
SimpleAudioEngine::getInstance()->resumeBackgroundMusic();
|
|
}
|