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

88 lines
2.4 KiB
C++
Raw Normal View History

2014-03-11 16:52:06 +08:00
#include "AppDelegate.h"
#include "CCLuaEngine.h"
#include "SimpleAudioEngine.h"
#include "cocos2d.h"
#include "Runtime.h"
2014-05-05 21:04:04 +08:00
#include "ConfigParser.h"
2014-03-11 16:52:06 +08:00
using namespace CocosDenshion;
USING_NS_CC;
using namespace std;
AppDelegate::AppDelegate()
{
}
AppDelegate::~AppDelegate()
{
SimpleAudioEngine::end();
}
bool AppDelegate::applicationDidFinishLaunching()
{
2014-05-09 14:06:20 +08:00
2014-05-07 20:50:29 +08:00
#if (COCOS2D_DEBUG>0)
2014-05-09 14:06:20 +08:00
initRuntime();
2014-05-05 21:04:04 +08:00
#endif
2014-03-11 16:52:06 +08:00
// initialize director
auto director = Director::getInstance();
2014-04-10 15:53:42 +08:00
auto glview = director->getOpenGLView();
if(!glview) {
2014-05-07 20:50:29 +08:00
if (!ConfigParser::getInstance()->isInit()) {
ConfigParser::getInstance()->readConfig();
}
2014-05-05 21:04:04 +08:00
Size viewSize = ConfigParser::getInstance()->getInitViewSize();
string title = ConfigParser::getInstance()->getInitViewName();
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32 || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
2014-05-08 13:47:41 +08:00
extern void createSimulator(const char* viewName, float width, float height,bool isLandscape = true, float frameZoomFactor = 1.0f);
2014-05-07 20:50:29 +08:00
bool isLanscape = ConfigParser::getInstance()->isLanscape();
createSimulator(title.c_str(),viewSize.width,viewSize.height,isLanscape);
2014-05-05 21:04:04 +08:00
#else
glview = GLView::createWithRect(title.c_str(), Rect(0,0,viewSize.width,viewSize.height));
2014-04-10 15:53:42 +08:00
director->setOpenGLView(glview);
2014-05-05 21:04:04 +08:00
#endif
2014-04-10 15:53:42 +08:00
}
2014-03-11 16:52:06 +08:00
// 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);
2014-04-09 19:17:13 +08:00
2014-05-08 13:47:41 +08:00
auto engine = LuaEngine::getInstance();
ScriptEngineManager::getInstance()->setScriptEngine(engine);
//register custom function
//LuaStack* stack = engine->getLuaStack();
//register_custom_function(stack->getLuaState());
2014-05-07 20:50:29 +08:00
#if (COCOS2D_DEBUG>0)
2014-04-10 15:53:42 +08:00
if (startRuntime())
return true;
2014-04-09 19:17:13 +08:00
#endif
2014-05-09 14:06:20 +08:00
engine->executeScriptFile(ConfigParser::getInstance()->getEntryFile().c_str());
2014-03-11 16:52:06 +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();
}
2014-05-05 21:04:04 +08:00