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"
|
2012-09-24 11:05:15 +08:00
|
|
|
#include "generated/cocos2dx.hpp"
|
2012-08-28 12:04:51 +08:00
|
|
|
#include "cocos2d_specifics.hpp"
|
2012-08-30 06:56:19 +08:00
|
|
|
#include "js_bindings_chipmunk_manual.hpp"
|
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);
|
|
|
|
sc->addRegisterCallback(register_cocos2dx_js_extensions);
|
2012-08-30 06:56:19 +08:00
|
|
|
sc->addRegisterCallback(register_chipmunk_manual);
|
|
|
|
sc->addRegisterCallback(register_CCPhysicsSprite);
|
2012-08-28 12:04:51 +08:00
|
|
|
|
|
|
|
sc->start();
|
|
|
|
|
|
|
|
CCScriptEngineProtocol *pEngine = ScriptingCore::getInstance();
|
|
|
|
CCScriptEngineManager::sharedManager()->setScriptEngine(pEngine);
|
2012-10-12 04:49:33 +08:00
|
|
|
ScriptingCore::getInstance()->runScript("tests-boot-jsb.js");
|
2012-08-28 12:04:51 +08:00
|
|
|
|
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
|
|
|
}
|