axmol/tools/simulator/frameworks/runtime-src/Classes/AppDelegate.cpp

55 lines
1.3 KiB
C++
Raw Normal View History

2015-05-14 14:11:40 +08:00
#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
2015-05-14 14:11:40 +08:00
void AppDelegate::initGLContextAttrs()
{
// set OpenGL context attributes: red,green,blue,alpha,depth,stencil,multisamplesCount
GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8, 0};
2015-05-14 14:11:40 +08:00
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.
2015-05-14 14:11:40 +08:00
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();
}