2013-04-08 11:58:52 +08:00
|
|
|
#include "AppDelegate.h"
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "SimpleAudioEngine.h"
|
|
|
|
#include "ScriptingCore.h"
|
|
|
|
#include "generated/jsb_cocos2dx_auto.hpp"
|
|
|
|
#include "generated/jsb_cocos2dx_extension_auto.hpp"
|
|
|
|
#include "cocos2d_specifics.hpp"
|
|
|
|
#include "js_bindings_chipmunk_registration.h"
|
|
|
|
#include "js_bindings_system_registration.h"
|
|
|
|
#include "js_bindings_ccbreader.h"
|
|
|
|
#include "jsb_opengl_registration.h"
|
|
|
|
|
|
|
|
#include "jsb_pluginx_protocols_auto.hpp"
|
|
|
|
#include "jsb_pluginx_extension_registration.h"
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
using namespace CocosDenshion;
|
|
|
|
|
|
|
|
AppDelegate::AppDelegate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AppDelegate::~AppDelegate()
|
|
|
|
{
|
2013-06-20 16:02:39 +08:00
|
|
|
ScriptEngineManager::purgeSharedManager();
|
2013-04-08 11:58:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
|
|
{
|
|
|
|
// initialize director
|
2013-07-12 11:50:36 +08:00
|
|
|
Director *pDirector = Director::getInstance();
|
2013-07-12 13:11:21 +08:00
|
|
|
pDirector->setOpenGLView(EGLView::getInstance());
|
2013-04-08 11:58:52 +08:00
|
|
|
|
|
|
|
// turn on display FPS
|
|
|
|
pDirector->setDisplayStats(true);
|
|
|
|
|
|
|
|
// set FPS. the default value is 1.0/60 if you don't call this
|
|
|
|
pDirector->setAnimationInterval(1.0 / 60);
|
|
|
|
|
|
|
|
ScriptingCore* sc = ScriptingCore::getInstance();
|
|
|
|
|
|
|
|
sc->addRegisterCallback(register_all_cocos2dx);
|
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_extension);
|
|
|
|
sc->addRegisterCallback(register_cocos2dx_js_extensions);
|
|
|
|
sc->addRegisterCallback(jsb_register_chipmunk);
|
|
|
|
sc->addRegisterCallback(jsb_register_system);
|
|
|
|
sc->addRegisterCallback(JSB_register_opengl);
|
|
|
|
|
|
|
|
sc->addRegisterCallback(register_all_pluginx_protocols);
|
|
|
|
sc->addRegisterCallback(register_pluginx_js_extensions);
|
|
|
|
|
|
|
|
sc->start();
|
|
|
|
|
2013-06-20 16:02:39 +08:00
|
|
|
ScriptEngineProtocol *pEngine = ScriptingCore::getInstance();
|
|
|
|
ScriptEngineManager::sharedManager()->setScriptEngine(pEngine);
|
2013-04-08 11:58:52 +08:00
|
|
|
ScriptingCore::getInstance()->runScript("main.js");
|
|
|
|
|
|
|
|
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()
|
|
|
|
{
|
2013-07-12 11:50:36 +08:00
|
|
|
Director::getInstance()->stopAnimation();
|
2013-04-08 11:58:52 +08:00
|
|
|
SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
|
|
|
|
SimpleAudioEngine::sharedEngine()->pauseAllEffects();
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function will be called when the app is active again
|
|
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
|
|
{
|
2013-07-12 11:50:36 +08:00
|
|
|
Director::getInstance()->startAnimation();
|
2013-04-08 11:58:52 +08:00
|
|
|
SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
|
|
|
|
SimpleAudioEngine::sharedEngine()->resumeAllEffects();
|
|
|
|
}
|