axmol/templates/lua-template-default/frameworks/runtime-src/Classes/AppDelegate.cpp

87 lines
2.3 KiB
C++
Raw Normal View History

2015-01-12 23:42:37 +08:00
#include "AppDelegate.h"
2016-03-21 21:04:06 +08:00
#include "scripting/lua-bindings/manual/CCLuaEngine.h"
#include "audio/include/SimpleAudioEngine.h"
2015-01-12 23:42:37 +08:00
#include "cocos2d.h"
2016-03-21 21:04:06 +08:00
#include "scripting/lua-bindings/manual/lua_module_register.h"
2015-01-12 23:42:37 +08:00
using namespace CocosDenshion;
USING_NS_CC;
using namespace std;
AppDelegate::AppDelegate()
{
}
AppDelegate::~AppDelegate()
{
SimpleAudioEngine::end();
2015-04-02 18:27:53 +08:00
#if (COCOS2D_DEBUG > 0) && (CC_CODE_IDE_DEBUG_SUPPORT > 0)
// NOTE:Please don't remove this call if you want to debug with Cocos Code IDE
RuntimeEngine::getInstance()->end();
#endif
2015-01-12 23:42:37 +08:00
}
// if you want a different context, modify the value of glContextAttrs
// it will affect all platforms
2015-01-12 23:42:37 +08:00
void AppDelegate::initGLContextAttrs()
{
// set OpenGL context attributes: red,green,blue,alpha,depth,stencil
2015-01-12 23:42:37 +08:00
GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8};
GLView::setGLContextAttrs(glContextAttrs);
}
// if you want to use the package manager to install more packages,
// don't modify or remove this function
static int register_all_packages()
{
return 0; //flag for packages manager
}
2015-01-12 23:42:37 +08:00
bool AppDelegate::applicationDidFinishLaunching()
{
// set default FPS
Director::getInstance()->setAnimationInterval(1.0 / 60.0f);
2015-04-02 18:27:53 +08:00
2015-01-12 23:42:37 +08:00
// register lua module
auto engine = LuaEngine::getInstance();
ScriptEngineManager::getInstance()->setScriptEngine(engine);
lua_State* L = engine->getLuaStack()->getLuaState();
lua_module_register(L);
register_all_packages();
2015-01-12 23:42:37 +08:00
LuaStack* stack = engine->getLuaStack();
stack->setXXTEAKeyAndSign("2dxLua", strlen("2dxLua"), "XXTEA", strlen("XXTEA"));
2015-04-02 18:27:53 +08:00
//register custom function
//LuaStack* stack = engine->getLuaStack();
//register_custom_function(stack->getLuaState());
2015-01-12 23:42:37 +08:00
if (engine->executeScriptFile("src/main.lua"))
{
return false;
}
2015-04-02 18:27:53 +08:00
2015-01-12 23:42:37 +08:00
return true;
}
// This function will be called when the app is inactive. Note, when receiving a phone call it is invoked.
2015-01-12 23:42:37 +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();
}