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
|
2014-01-24 07:36:55 +08:00
|
|
|
auto director = Director::getInstance();
|
2014-01-28 05:05:58 +08:00
|
|
|
auto glview = director->getOpenGLView();
|
|
|
|
if(!glview) {
|
2014-01-31 12:16:40 +08:00
|
|
|
glview = GLView::createWithRect("Test JavaScript", Rect(0,0,900,640));
|
2014-01-28 05:05:58 +08:00
|
|
|
director->setOpenGLView(glview);
|
|
|
|
}
|
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
|
2014-01-24 07:36:55 +08:00
|
|
|
glview->setDesignResolutionSize(800, 450, ResolutionPolicy::FIXED_HEIGHT);
|
2012-05-29 16:21:23 +08:00
|
|
|
// turn on display FPS
|
2014-01-24 07:36:55 +08:00
|
|
|
director->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
|
2014-01-24 07:36:55 +08:00
|
|
|
director->setAnimationInterval(1.0 / 60);
|
2013-05-15 19:56:58 +08:00
|
|
|
|
2014-01-04 14:24:25 +08:00
|
|
|
auto fileUtils = FileUtils::getInstance();
|
|
|
|
std::vector<std::string> searchPaths;
|
|
|
|
searchPaths.push_back("script");
|
2013-10-07 17:19:00 +08:00
|
|
|
|
2014-01-04 14:24:25 +08:00
|
|
|
const char* paths[] = {
|
|
|
|
"res",
|
|
|
|
"res/scenetest",
|
|
|
|
"res/scenetest/ArmatureComponentTest",
|
|
|
|
"res/scenetest/AttributeComponentTest",
|
|
|
|
"res/scenetest/BackgroundComponentTest",
|
|
|
|
"res/scenetest/EffectComponentTest",
|
2014-01-06 14:49:32 +08:00
|
|
|
"res/scenetest/LoadSceneEdtiorFileTest",
|
2014-01-04 14:24:25 +08:00
|
|
|
"res/scenetest/ParticleComponentTest",
|
|
|
|
"res/scenetest/SpriteComponentTest",
|
|
|
|
"res/scenetest/TmxMapComponentTest",
|
|
|
|
"res/scenetest/UIComponentTest",
|
|
|
|
"res/scenetest/TriggerTest",
|
|
|
|
};
|
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
|
|
|
std::string testFolder = "tests/";
|
|
|
|
searchPaths.push_back(testFolder);
|
|
|
|
|
|
|
|
for (const auto& path : paths)
|
|
|
|
{
|
|
|
|
searchPaths.push_back(testFolder + path);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
for (const auto& path : paths)
|
|
|
|
{
|
|
|
|
searchPaths.push_back(path);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
fileUtils->setSearchPaths(searchPaths);
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|