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-08-27 16:05:48 +08:00
|
|
|
#include "jsb_cocos2dx_auto.hpp"
|
|
|
|
#include "jsb_cocos2dx_extension_auto.hpp"
|
2013-10-21 22:09:21 +08:00
|
|
|
#include "jsb_cocos2dx_builder_auto.hpp"
|
|
|
|
#include "jsb_cocos2dx_studio_auto.hpp"
|
2013-11-18 16:54:52 +08:00
|
|
|
#include "jsb_cocos2dx_gui_auto.hpp"
|
2013-12-20 18:20:13 +08:00
|
|
|
#include "jsb_cocos2dx_spine_auto.hpp"
|
2013-10-21 22:09:21 +08:00
|
|
|
#include "extension/jsb_cocos2dx_extension_manual.h"
|
|
|
|
#include "cocostudio/jsb_cocos2dx_studio_manual.h"
|
2013-11-18 16:54:52 +08:00
|
|
|
#include "gui/jsb_cocos2dx_gui_manual.h"
|
2012-08-28 12:04:51 +08:00
|
|
|
#include "cocos2d_specifics.hpp"
|
2013-10-21 22:09:21 +08:00
|
|
|
#include "cocosbuilder/cocosbuilder_specifics.hpp"
|
|
|
|
#include "chipmunk/js_bindings_chipmunk_registration.h"
|
|
|
|
#include "localstorage/js_bindings_system_registration.h"
|
2013-03-28 14:55:47 +08:00
|
|
|
#include "jsb_opengl_registration.h"
|
2013-10-21 22:09:21 +08:00
|
|
|
#include "network/XMLHTTPRequest.h"
|
|
|
|
#include "network/jsb_websocket.h"
|
|
|
|
#include "cocosbuilder/js_bindings_ccbreader.h"
|
2012-05-29 16:21:23 +08:00
|
|
|
|
|
|
|
USING_NS_CC;
|
2013-05-31 23:13:03 +08:00
|
|
|
USING_NS_CC_EXT;
|
2012-08-28 12:04:51 +08:00
|
|
|
using namespace CocosDenshion;
|
2012-05-29 16:21:23 +08:00
|
|
|
|
|
|
|
AppDelegate::AppDelegate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AppDelegate::~AppDelegate()
|
|
|
|
{
|
2013-07-24 06:20:22 +08:00
|
|
|
ScriptEngineManager::destroyInstance();
|
2012-05-29 16:21:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
|
|
{
|
|
|
|
// initialize director
|
2013-08-16 16:05:27 +08:00
|
|
|
auto pDirector = Director::getInstance();
|
2013-07-12 13:11:21 +08:00
|
|
|
pDirector->setOpenGLView(EGLView::getInstance());
|
2013-05-15 19:56:58 +08:00
|
|
|
|
2013-06-27 16:09:30 +08:00
|
|
|
// JS-Test in Html5 uses 800x450 as design resolution
|
2013-07-26 18:18:58 +08:00
|
|
|
EGLView::getInstance()->setDesignResolutionSize(800, 450, ResolutionPolicy::FIXED_HEIGHT);
|
2012-05-29 16:21:23 +08:00
|
|
|
// turn on display FPS
|
|
|
|
pDirector->setDisplayStats(true);
|
2013-05-15 19:56:58 +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);
|
2013-05-15 19:56:58 +08:00
|
|
|
|
2013-10-07 17:19:00 +08:00
|
|
|
FileUtils::getInstance()->addSearchPath("res");
|
2013-10-16 15:43:59 +08:00
|
|
|
FileUtils::getInstance()->addSearchPath("script");
|
2013-11-18 16:54:52 +08:00
|
|
|
FileUtils::getInstance()->addSearchPath("res/scenetest");
|
2013-10-07 17:19:00 +08:00
|
|
|
|
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);
|
2013-05-15 19:56:58 +08:00
|
|
|
sc->addRegisterCallback(MinXmlHttpRequest::_js_register);
|
2013-05-31 23:13:03 +08:00
|
|
|
sc->addRegisterCallback(register_jsb_websocket);
|
2013-10-21 22:09:21 +08:00
|
|
|
|
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_builder);
|
2013-08-12 11:21:31 +08:00
|
|
|
sc->addRegisterCallback(register_CCBuilderReader);
|
2013-10-21 22:09:21 +08:00
|
|
|
|
2013-11-18 16:54:52 +08:00
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_gui);
|
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_gui_manual);
|
2013-10-21 22:09:21 +08:00
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_studio);
|
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_studio_manual);
|
2013-08-12 11:21:31 +08:00
|
|
|
|
2013-12-20 18:20:13 +08:00
|
|
|
sc->addRegisterCallback(register_all_cocos2dx_spine);
|
|
|
|
|
2012-08-28 12:04:51 +08:00
|
|
|
sc->start();
|
2013-08-23 15:55:25 +08:00
|
|
|
|
2013-10-10 16:06:05 +08:00
|
|
|
#if defined(COCOS2D_DEBUG) && (COCOS2D_DEBUG > 0)
|
|
|
|
sc->enableDebugger();
|
|
|
|
#endif
|
|
|
|
|
2013-08-16 16:05:27 +08:00
|
|
|
auto pEngine = ScriptingCore::getInstance();
|
2013-07-22 17:24:54 +08:00
|
|
|
ScriptEngineManager::getInstance()->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
|
2013-08-16 16:05:27 +08:00
|
|
|
auto director = Director::getInstance();
|
2012-08-28 12:04:51 +08:00
|
|
|
if (director->getRunningScene()) {
|
|
|
|
director->popToRootScene();
|
|
|
|
} else {
|
2013-06-20 14:17:10 +08:00
|
|
|
PoolManager::sharedPoolManager()->finalize();
|
2012-08-28 12:04:51 +08:00
|
|
|
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()
|
|
|
|
{
|
2013-07-12 06:24:23 +08:00
|
|
|
Director::getInstance()->stopAnimation();
|
2013-07-19 07:30:19 +08:00
|
|
|
SimpleAudioEngine::getInstance()->pauseBackgroundMusic();
|
|
|
|
SimpleAudioEngine::getInstance()->pauseAllEffects();
|
2012-05-29 16:21:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// this function will be called when the app is active again
|
|
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
|
|
{
|
2013-07-12 06:24:23 +08:00
|
|
|
Director::getInstance()->startAnimation();
|
2013-07-19 07:30:19 +08:00
|
|
|
SimpleAudioEngine::getInstance()->resumeBackgroundMusic();
|
|
|
|
SimpleAudioEngine::getInstance()->resumeAllEffects();
|
2012-05-29 16:21:23 +08:00
|
|
|
}
|