2012-04-19 14:35:52 +08:00
|
|
|
#include "AppDelegate.h"
|
|
|
|
#include "HelloWorldScene.h"
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
|
|
|
AppDelegate::AppDelegate() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-05-02 17:50:26 +08:00
|
|
|
AppDelegate::~AppDelegate()
|
|
|
|
{
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching() {
|
|
|
|
// initialize director
|
|
|
|
CCDirector *pDirector = CCDirector::sharedDirector();
|
|
|
|
|
2012-08-21 14:58:31 +08:00
|
|
|
pDirector->setOpenGLView(CCEGLView::sharedOpenGLView());
|
2012-09-24 18:22:02 +08:00
|
|
|
//pDirector->setProjection(kCCDirectorProjection2D);
|
|
|
|
|
|
|
|
if (pDirector->getWinSize().height > 320)
|
|
|
|
{
|
|
|
|
CCFileUtils::sharedFileUtils()->setResourceDirectory("iphonehd");
|
2012-10-11 17:02:27 +08:00
|
|
|
pDirector->setContentScaleFactor(2.0f);
|
|
|
|
|
2012-09-24 18:22:02 +08:00
|
|
|
}
|
|
|
|
else
|
2012-10-11 17:02:27 +08:00
|
|
|
{
|
2012-09-24 18:22:02 +08:00
|
|
|
CCFileUtils::sharedFileUtils()->setResourceDirectory("iphone");
|
2012-10-11 17:02:27 +08:00
|
|
|
//pDirector->setContentScaleFactor(0.5f);
|
|
|
|
}
|
2012-09-24 18:22:02 +08:00
|
|
|
|
2012-10-11 17:02:27 +08:00
|
|
|
//CCEGLView::sharedOpenGLView()->setDesignResolutionSize(960, 640, kResolutionShowAll);
|
|
|
|
CCEGLView::sharedOpenGLView()->setDesignResolutionSize(480, 320, kResolutionShowAll);
|
|
|
|
|
2012-04-19 14:35:52 +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
|
|
|
|
CCScene *pScene = HelloWorld::scene();
|
|
|
|
|
|
|
|
// 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() {
|
2012-06-21 11:42:49 +08:00
|
|
|
CCDirector::sharedDirector()->stopAnimation();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// if you use SimpleAudioEngine, it must be pause
|
|
|
|
// SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function will be called when the app is active again
|
|
|
|
void AppDelegate::applicationWillEnterForeground() {
|
2012-06-21 11:42:49 +08:00
|
|
|
CCDirector::sharedDirector()->startAnimation();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// if you use SimpleAudioEngine, it must resume here
|
|
|
|
// SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
|
|
|
|
}
|