mirror of https://github.com/axmolengine/axmol.git
53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
#include "cocos2d.h"
|
|
#include "AppDelegate.h"
|
|
#include "CCLuaEngine.h"
|
|
#include "audio/include/SimpleAudioEngine.h"
|
|
#include "lua_assetsmanager_test_sample.h"
|
|
|
|
using namespace CocosDenshion;
|
|
|
|
USING_NS_CC;
|
|
|
|
AppDelegate::AppDelegate()
|
|
{
|
|
}
|
|
|
|
AppDelegate::~AppDelegate()
|
|
{
|
|
SimpleAudioEngine::end();
|
|
}
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
{
|
|
// register lua engine
|
|
LuaEngine* pEngine = LuaEngine::getInstance();
|
|
ScriptEngineManager::getInstance()->setScriptEngine(pEngine);
|
|
|
|
LuaStack* stack = pEngine->getLuaStack();
|
|
stack->setXXTEAKeyAndSign("2dxLua", strlen("2dxLua"), "XXTEA", strlen("XXTEA"));
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32 || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID ||CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
|
register_assetsmanager_test_sample(stack->getLuaState());
|
|
#endif
|
|
|
|
pEngine->executeScriptFile("src/controller.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();
|
|
}
|