mirror of https://github.com/axmolengine/axmol.git
65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
#include "AppDelegate.h"
|
|
#include "CCLuaEngine.h"
|
|
#include "SimpleAudioEngine.h"
|
|
#include "cocos2d.h"
|
|
#include "Runtime.h"
|
|
|
|
using namespace CocosDenshion;
|
|
|
|
USING_NS_CC;
|
|
using namespace std;
|
|
|
|
AppDelegate::AppDelegate()
|
|
{
|
|
}
|
|
|
|
AppDelegate::~AppDelegate()
|
|
{
|
|
SimpleAudioEngine::end();
|
|
}
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
{
|
|
// initialize director
|
|
auto director = Director::getInstance();
|
|
auto glview = director->getOpenGLView();
|
|
if(!glview) {
|
|
glview = GLView::createWithRect("HelloLua", Rect(0,0,900,640));
|
|
director->setOpenGLView(glview);
|
|
}
|
|
|
|
glview->setDesignResolutionSize(480, 320, ResolutionPolicy::NO_BORDER);
|
|
|
|
// turn on display FPS
|
|
director->setDisplayStats(true);
|
|
|
|
// set FPS. the default value is 1.0/60 if you don't call this
|
|
director->setAnimationInterval(1.0 / 60);
|
|
|
|
#ifdef COCOS2D_DEBUG
|
|
if (startRuntime())
|
|
return true;
|
|
#endif
|
|
|
|
auto engine = LuaEngine::getInstance();
|
|
ScriptEngineManager::getInstance()->setScriptEngine(engine);
|
|
engine->executeScriptFile("src/main.lua");
|
|
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();
|
|
}
|