2012-10-10 14:50:04 +08:00
|
|
|
#include "AppDelegate.h"
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "SimpleAudioEngine.h"
|
|
|
|
#include "ScriptingCore.h"
|
|
|
|
#include "generated/cocos2dx.hpp"
|
|
|
|
#include "cocos2d_specifics.hpp"
|
2012-11-29 15:26:24 +08:00
|
|
|
#include "js_bindings_chipmunk_registration.h"
|
|
|
|
#include "js_bindings_ccbreader.h"
|
2013-01-05 17:41:19 +08:00
|
|
|
#include "js_bindings_system_registration.h"
|
|
|
|
|
2012-10-10 14:50:04 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
using namespace CocosDenshion;
|
|
|
|
|
|
|
|
AppDelegate::AppDelegate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AppDelegate::~AppDelegate()
|
|
|
|
{
|
|
|
|
CCScriptEngineManager::sharedManager()->purgeSharedManager();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
|
|
{
|
|
|
|
// initialize director
|
|
|
|
CCDirector *pDirector = CCDirector::sharedDirector();
|
|
|
|
pDirector->setOpenGLView(CCEGLView::sharedOpenGLView());
|
2012-12-04 18:44:32 +08:00
|
|
|
pDirector->setProjection(kCCDirectorProjection2D);
|
2012-10-24 16:12:40 +08:00
|
|
|
|
|
|
|
// Set the design resolution
|
2012-10-10 15:06:11 +08:00
|
|
|
CCEGLView::sharedOpenGLView()->setDesignResolutionSize(320, 480, kResolutionShowAll);
|
2012-10-24 16:12:40 +08:00
|
|
|
|
2012-10-10 14:50:04 +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_cocos2dx_js_extensions);
|
2012-11-29 15:26:24 +08:00
|
|
|
sc->addRegisterCallback(register_CCBuilderReader);
|
|
|
|
sc->addRegisterCallback(jsb_register_chipmunk);
|
2013-01-05 17:41:19 +08:00
|
|
|
sc->addRegisterCallback(jsb_register_system);
|
2012-10-10 14:50:04 +08:00
|
|
|
sc->start();
|
|
|
|
|
|
|
|
CCScriptEngineProtocol *pEngine = ScriptingCore::getInstance();
|
|
|
|
CCScriptEngineManager::sharedManager()->setScriptEngine(pEngine);
|
2013-01-12 06:01:36 +08:00
|
|
|
#if JSB_ENABLE_DEBUGGER
|
|
|
|
ScriptingCore::getInstance()->enableDebugger();
|
|
|
|
ScriptingCore::getInstance()->runScript("main.debug.js");
|
|
|
|
#else
|
2012-12-04 11:36:45 +08:00
|
|
|
ScriptingCore::getInstance()->runScript("MoonWarriors-jsb.js");
|
2013-01-12 06:01:36 +08:00
|
|
|
#endif
|
2012-11-23 15:07:19 +08:00
|
|
|
|
2012-10-10 14:50:04 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function will be called when the app is inactive. When comes a phone call,it's be invoked too
|
|
|
|
void AppDelegate::applicationDidEnterBackground()
|
|
|
|
{
|
|
|
|
CCDirector::sharedDirector()->stopAnimation();
|
|
|
|
SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
|
|
|
|
SimpleAudioEngine::sharedEngine()->pauseAllEffects();
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function will be called when the app is active again
|
|
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
|
|
{
|
|
|
|
CCDirector::sharedDirector()->startAnimation();
|
|
|
|
SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
|
|
|
|
SimpleAudioEngine::sharedEngine()->resumeAllEffects();
|
|
|
|
}
|