mirror of https://github.com/axmolengine/axmol.git
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
//
|
|
// ___PROJECTNAMEASIDENTIFIER___AppDelegate.cpp
|
|
// ___PROJECTNAME___
|
|
//
|
|
// Created by ___FULLUSERNAME___ on ___DATE___.
|
|
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
|
|
//
|
|
|
|
#include "AppDelegate.h"
|
|
|
|
#include "cocos2d.h"
|
|
#include "HelloWorldScene.h"
|
|
|
|
USING_NS_CC;
|
|
|
|
AppDelegate::AppDelegate()
|
|
{
|
|
|
|
}
|
|
|
|
AppDelegate::~AppDelegate()
|
|
{
|
|
}
|
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
{
|
|
// initialize director
|
|
CCDirector *pDirector = CCDirector::sharedDirector();
|
|
pDirector->setOpenGLView(&CCEGLView::sharedOpenGLView());
|
|
|
|
// enable High Resource Mode(2x, such as iphone4) and maintains low resource on other devices.
|
|
// pDirector->enableRetinaDisplay(true);
|
|
|
|
// 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()
|
|
{
|
|
CCDirector::sharedDirector()->pause();
|
|
|
|
// 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()
|
|
{
|
|
CCDirector::sharedDirector()->resume();
|
|
|
|
// if you use SimpleAudioEngine, it must resume here
|
|
// SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
|
|
}
|