2012-09-09 20:20:29 +08:00
|
|
|
#include "AppDelegate.h"
|
|
|
|
#include "HelloWorldScene.h"
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
2012-09-24 10:46:15 +08:00
|
|
|
|
2012-09-09 20:20:29 +08:00
|
|
|
AppDelegate::AppDelegate() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
AppDelegate::~AppDelegate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching() {
|
|
|
|
// initialize director
|
2013-06-20 14:17:10 +08:00
|
|
|
Director *pDirector = Director::sharedDirector();
|
2012-09-24 10:46:15 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
pDirector->setOpenGLView(EGLView::sharedOpenGLView());
|
2012-09-09 20:20:29 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
Size screenSize = EGLView::sharedOpenGLView()->getFrameSize();
|
|
|
|
Size designSize = CCSizeMake(480, 320);
|
2013-02-03 15:38:44 +08:00
|
|
|
std::vector<std::string> searchPaths;
|
2012-09-09 20:20:29 +08:00
|
|
|
|
2012-10-15 18:50:46 +08:00
|
|
|
if (screenSize.height > 320)
|
2012-09-09 20:20:29 +08:00
|
|
|
{
|
2013-02-03 15:38:44 +08:00
|
|
|
searchPaths.push_back("hd");
|
|
|
|
searchPaths.push_back("sd");
|
2012-10-15 18:50:46 +08:00
|
|
|
pDirector->setContentScaleFactor(640.0f/designSize.height);
|
2012-09-09 20:20:29 +08:00
|
|
|
}
|
2012-10-15 18:50:46 +08:00
|
|
|
else
|
2012-09-09 20:20:29 +08:00
|
|
|
{
|
2013-02-03 15:38:44 +08:00
|
|
|
searchPaths.push_back("sd");
|
2012-10-15 18:50:46 +08:00
|
|
|
pDirector->setContentScaleFactor(320.0f/designSize.height);
|
2012-09-09 20:20:29 +08:00
|
|
|
}
|
2013-02-03 15:38:44 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
FileUtils::sharedFileUtils()->setSearchPaths(searchPaths);
|
2013-02-03 15:38:44 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
EGLView::sharedOpenGLView()->setDesignResolutionSize(designSize.width, designSize.height, kResolutionNoBorder);
|
2012-09-09 20:20:29 +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);
|
|
|
|
|
|
|
|
// create a scene. it's an autorelease object
|
2013-06-20 14:17:10 +08:00
|
|
|
Scene *pScene = HelloWorld::scene();
|
2012-09-09 20:20:29 +08:00
|
|
|
|
|
|
|
// run
|
|
|
|
pDirector->runWithScene(pScene);
|
|
|
|
|
|
|
|
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-06-20 14:17:10 +08:00
|
|
|
Director::sharedDirector()->stopAnimation();
|
2012-09-09 20:20:29 +08:00
|
|
|
|
|
|
|
// if you use SimpleAudioEngine, it must be pause
|
2013-05-21 21:48:51 +08:00
|
|
|
// CocosDenshion::SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
|
2012-09-09 20:20:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// this function will be called when the app is active again
|
|
|
|
void AppDelegate::applicationWillEnterForeground() {
|
2013-06-20 14:17:10 +08:00
|
|
|
Director::sharedDirector()->startAnimation();
|
2012-09-09 20:20:29 +08:00
|
|
|
|
|
|
|
// if you use SimpleAudioEngine, it must resume here
|
2013-05-21 21:48:51 +08:00
|
|
|
// CocosDenshion::SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
|
2012-09-09 20:20:29 +08:00
|
|
|
}
|