2012-05-29 16:21:23 +08:00
|
|
|
#include "AppDelegate.h"
|
2012-08-28 12:04:51 +08:00
|
|
|
|
2012-05-29 16:21:23 +08:00
|
|
|
#include "cocos2d.h"
|
2012-08-28 12:04:51 +08:00
|
|
|
#include "SimpleAudioEngine.h"
|
|
|
|
#include "ScriptingCore.h"
|
2013-03-11 16:39:28 +08:00
|
|
|
#include "generated/jsb_cocos2dx_auto.hpp"
|
|
|
|
#include "generated/jsb_cocos2dx_extension_auto.hpp"
|
|
|
|
#include "jsb_cocos2dx_extension_manual.h"
|
2012-08-28 12:04:51 +08:00
|
|
|
#include "cocos2d_specifics.hpp"
|
2012-11-15 10:58:36 +08:00
|
|
|
#include "js_bindings_chipmunk_registration.h"
|
2013-01-05 15:09:19 +08:00
|
|
|
#include "js_bindings_system_registration.h"
|
2013-03-28 14:55:47 +08:00
|
|
|
#include "jsb_opengl_registration.h"
|
2012-05-29 16:21:23 +08:00
|
|
|
|
|
|
|
USING_NS_CC;
|
2012-08-28 12:04:51 +08:00
|
|
|
using namespace CocosDenshion;
|
2012-05-29 16:21:23 +08:00
|
|
|
|
|
|
|
AppDelegate::AppDelegate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AppDelegate::~AppDelegate()
|
|
|
|
{
|
2012-08-29 14:55:55 +08:00
|
|
|
CCScriptEngineManager::sharedManager()->purgeSharedManager();
|
2012-05-29 16:21:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
|
|
{
|
|
|
|
// initialize director
|
|
|
|
CCDirector *pDirector = CCDirector::sharedDirector();
|
2012-08-21 14:58:31 +08:00
|
|
|
pDirector->setOpenGLView(CCEGLView::sharedOpenGLView());
|
2012-08-28 12:04:51 +08:00
|
|
|
|
2012-05-29 16:21:23 +08:00
|
|
|
// turn on display FPS
|
|
|
|
pDirector->setDisplayStats(true);
|
2012-08-28 12:04:51 +08:00
|
|
|
|
2012-05-29 16:21:23 +08:00
|
|
|
// set FPS. the default value is 1.0/60 if you don't call this
|
|
|
|
pDirector->setAnimationInterval(1.0 / 60);
|
|
|
|
|
2012-08-28 12:04:51 +08:00
|
|
|
ScriptingCore* sc = ScriptingCore::getInstance();
|
|
|
|
sc->addRegisterCallback(register_all_cocos2dx);
|
2013-03-11 16:39:28 +08:00
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_extension);
|
2012-08-28 12:04:51 +08:00
|
|
|
sc->addRegisterCallback(register_cocos2dx_js_extensions);
|
2013-03-11 16:39:28 +08:00
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_extension_manual);
|
2012-11-15 10:58:36 +08:00
|
|
|
sc->addRegisterCallback(jsb_register_chipmunk);
|
2013-03-28 14:55:47 +08:00
|
|
|
sc->addRegisterCallback(JSB_register_opengl);
|
2013-01-05 15:09:19 +08:00
|
|
|
sc->addRegisterCallback(jsb_register_system);
|
2012-08-28 12:04:51 +08:00
|
|
|
|
|
|
|
sc->start();
|
|
|
|
|
|
|
|
CCScriptEngineProtocol *pEngine = ScriptingCore::getInstance();
|
|
|
|
CCScriptEngineManager::sharedManager()->setScriptEngine(pEngine);
|
2013-03-22 12:06:04 +08:00
|
|
|
#ifdef JS_OBFUSCATED
|
|
|
|
ScriptingCore::getInstance()->runScript("game.js");
|
|
|
|
#else
|
2013-03-21 20:50:21 +08:00
|
|
|
ScriptingCore::getInstance()->runScript("tests-boot-jsb.js");
|
2013-03-22 12:06:04 +08:00
|
|
|
#endif
|
2012-05-29 16:21:23 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-28 12:04:51 +08:00
|
|
|
void handle_signal(int signal) {
|
|
|
|
static int internal_state = 0;
|
|
|
|
ScriptingCore* sc = ScriptingCore::getInstance();
|
|
|
|
// should start everything back
|
|
|
|
CCDirector* director = CCDirector::sharedDirector();
|
|
|
|
if (director->getRunningScene()) {
|
|
|
|
director->popToRootScene();
|
|
|
|
} else {
|
|
|
|
CCPoolManager::sharedPoolManager()->finalize();
|
|
|
|
if (internal_state == 0) {
|
|
|
|
//sc->dumpRoot(NULL, 0, NULL);
|
|
|
|
sc->start();
|
|
|
|
internal_state = 1;
|
|
|
|
} else {
|
|
|
|
sc->runScript("hello.js");
|
|
|
|
internal_state = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-29 16:21:23 +08:00
|
|
|
// This function will be called when the app is inactive. When comes a phone call,it's be invoked too
|
|
|
|
void AppDelegate::applicationDidEnterBackground()
|
|
|
|
{
|
2012-06-21 11:42:49 +08:00
|
|
|
CCDirector::sharedDirector()->stopAnimation();
|
2012-08-28 12:04:51 +08:00
|
|
|
SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
|
|
|
|
SimpleAudioEngine::sharedEngine()->pauseAllEffects();
|
2012-05-29 16:21:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// this function will be called when the app is active again
|
|
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
|
|
{
|
2012-06-21 11:42:49 +08:00
|
|
|
CCDirector::sharedDirector()->startAnimation();
|
2012-08-28 12:04:51 +08:00
|
|
|
SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
|
|
|
|
SimpleAudioEngine::sharedEngine()->resumeAllEffects();
|
2012-05-29 16:21:23 +08:00
|
|
|
}
|