2012-04-19 14:35:52 +08:00
|
|
|
#include "AppDelegate.h"
|
|
|
|
#include "HelloWorldScene.h"
|
2012-10-11 18:33:43 +08:00
|
|
|
#include "AppMacros.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
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);
|
2012-10-11 18:33:43 +08:00
|
|
|
CCSize screenSize = CCEGLView::sharedOpenGLView()->getFrameSize();
|
|
|
|
|
|
|
|
if (screenSize.height > 768)
|
2012-09-24 18:22:02 +08:00
|
|
|
{
|
2012-10-11 18:33:43 +08:00
|
|
|
CCFileUtils::sharedFileUtils()->setResourceDirectory("ipadhd");
|
|
|
|
pDirector->setContentScaleFactor(2048.0f/kDesignResolutionSize_width);
|
2012-09-24 18:22:02 +08:00
|
|
|
}
|
2012-10-11 18:33:43 +08:00
|
|
|
else if (screenSize.height >= 640)
|
|
|
|
{
|
|
|
|
CCFileUtils::sharedFileUtils()->setResourceDirectory("ipad");
|
|
|
|
pDirector->setContentScaleFactor(1024.0f/kDesignResolutionSize_width);
|
|
|
|
}
|
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 18:33:43 +08:00
|
|
|
pDirector->setContentScaleFactor(480.0f/kDesignResolutionSize_width);
|
2012-10-11 17:02:27 +08:00
|
|
|
}
|
2012-09-24 18:22:02 +08:00
|
|
|
|
2012-10-11 18:33:43 +08:00
|
|
|
CCEGLView::sharedOpenGLView()->setDesignResolutionSize(kDesignResolutionSize_width, kDesignResolutionSize_height, kResolutionNoBorder);
|
2012-10-11 17:02:27 +08:00
|
|
|
|
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();
|
|
|
|
}
|