2014-03-10 15:32:48 +08:00
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "AppDelegate.h"
|
|
|
|
#include "CCLuaEngine.h"
|
2014-04-28 14:04:37 +08:00
|
|
|
#include "audio/include/SimpleAudioEngine.h"
|
2014-03-10 15:32:48 +08:00
|
|
|
#include "lua_assetsmanager_test_sample.h"
|
2014-08-04 09:39:42 +08:00
|
|
|
#include "lua_module_register.h"
|
2014-10-10 09:49:25 +08:00
|
|
|
#include "lua_test_bindings.h"
|
2014-03-10 15:32:48 +08:00
|
|
|
|
|
|
|
using namespace CocosDenshion;
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
|
|
|
AppDelegate::AppDelegate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AppDelegate::~AppDelegate()
|
|
|
|
{
|
|
|
|
SimpleAudioEngine::end();
|
|
|
|
}
|
|
|
|
|
2014-08-22 16:22:16 +08:00
|
|
|
void AppDelegate::initGLContextAttrs()
|
2014-08-21 09:35:32 +08:00
|
|
|
{
|
2014-08-22 16:22:16 +08:00
|
|
|
GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8};
|
2014-08-21 09:35:32 +08:00
|
|
|
|
2014-08-22 16:22:16 +08:00
|
|
|
GLView::setGLContextAttrs(glContextAttrs);
|
2014-08-21 09:35:32 +08:00
|
|
|
}
|
|
|
|
|
2014-03-10 15:32:48 +08:00
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
|
|
{
|
|
|
|
// register lua engine
|
|
|
|
LuaEngine* pEngine = LuaEngine::getInstance();
|
|
|
|
ScriptEngineManager::getInstance()->setScriptEngine(pEngine);
|
2014-08-04 17:11:57 +08:00
|
|
|
|
2014-06-06 17:17:43 +08:00
|
|
|
|
|
|
|
LuaStack* stack = pEngine->getLuaStack();
|
|
|
|
stack->setXXTEAKeyAndSign("2dxLua", strlen("2dxLua"), "XXTEA", strlen("XXTEA"));
|
2014-08-04 09:39:42 +08:00
|
|
|
|
2014-08-04 17:11:57 +08:00
|
|
|
lua_State* L = stack->getLuaState();
|
|
|
|
|
|
|
|
lua_module_register(L);
|
2014-10-19 22:20:34 +08:00
|
|
|
|
2014-08-04 09:39:42 +08:00
|
|
|
lua_getglobal(L, "_G");
|
|
|
|
if (lua_istable(L,-1))//stack:...,_G,
|
|
|
|
{
|
2014-10-19 22:20:34 +08:00
|
|
|
#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)
|
2014-08-04 09:39:42 +08:00
|
|
|
register_assetsmanager_test_sample(L);
|
2014-10-19 22:20:34 +08:00
|
|
|
#endif
|
2014-10-10 09:49:25 +08:00
|
|
|
register_test_binding(L);
|
2014-08-04 09:39:42 +08:00
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
2014-10-19 22:20:34 +08:00
|
|
|
|
2014-05-08 14:58:53 +08:00
|
|
|
|
2014-03-10 15:32:48 +08:00
|
|
|
pEngine->executeScriptFile("src/controller.lua");
|
2014-05-08 14:58:53 +08:00
|
|
|
|
2014-03-10 15:32:48 +08:00
|
|
|
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();
|
|
|
|
}
|