2012-02-09 17:48:15 +08:00
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "AppDelegate.h"
|
|
|
|
#include "SimpleAudioEngine.h"
|
|
|
|
#include "CCScriptSupport.h"
|
|
|
|
#include "CCLuaEngine.h"
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
using namespace CocosDenshion;
|
|
|
|
|
|
|
|
AppDelegate::AppDelegate()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
// fixed me
|
|
|
|
//_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF|_CRTDBG_LEAK_CHECK_DF);
|
2012-02-09 17:48:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AppDelegate::~AppDelegate()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
// end simple audio engine here, or it may crashed on win32
|
|
|
|
SimpleAudioEngine::sharedEngine()->end();
|
2012-02-09 18:12:45 +08:00
|
|
|
//CCScriptEngineManager::purgeSharedManager();
|
2012-02-09 17:48:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
// initialize director
|
|
|
|
CCDirector *pDirector = CCDirector::sharedDirector();
|
2012-02-09 17:48:15 +08:00
|
|
|
pDirector->setOpenGLView(&CCEGLView::sharedOpenGLView());
|
|
|
|
|
|
|
|
// enable High Resource Mode(2x, such as iphone4) and maintains low resource on other devices.
|
|
|
|
// pDirector->enableRetinaDisplay(true);
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// turn on display FPS
|
|
|
|
pDirector->setDisplayStats(true);
|
2012-02-09 17:48:15 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// pDirector->setDeviceOrientation(kCCDeviceOrientationLandscapeLeft);
|
2012-02-09 17:48:15 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// set FPS. the default value is 1.0/60 if you don't call this
|
|
|
|
pDirector->setAnimationInterval(1.0 / 60);
|
2012-02-09 17:48:15 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// register lua engine
|
2012-02-09 17:48:15 +08:00
|
|
|
CCScriptEngineProtocol* pEngine = CCLuaEngine::engine();
|
|
|
|
CCScriptEngineManager::sharedManager()->setScriptEngine(pEngine);
|
|
|
|
|
2012-05-04 14:31:56 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
|
|
|
CCString* pstrFileContent = CCString::stringWithContentsOfFile("hello.lua");
|
|
|
|
if (pstrFileContent)
|
|
|
|
{
|
|
|
|
pEngine->executeString(pstrFileContent->getCString());
|
|
|
|
}
|
|
|
|
#else
|
2012-04-19 14:35:52 +08:00
|
|
|
std::string path = CCFileUtils::fullPathFromRelativePath("hello.lua");
|
2012-02-09 17:48:15 +08:00
|
|
|
pEngine->addSearchPath(path.substr(0, path.find_last_of("/")).c_str());
|
|
|
|
pEngine->executeScriptFile(path.c_str());
|
|
|
|
#endif
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return true;
|
2012-02-09 17:48:15 +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()
|
|
|
|
{
|
|
|
|
CCDirector::sharedDirector()->pause();
|
2012-05-04 14:31:56 +08:00
|
|
|
SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
|
2012-02-09 17:48:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// this function will be called when the app is active again
|
|
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
|
|
{
|
|
|
|
CCDirector::sharedDirector()->resume();
|
2012-05-04 14:31:56 +08:00
|
|
|
SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
|
2012-02-09 17:48:15 +08:00
|
|
|
}
|