mirror of https://github.com/axmolengine/axmol.git
56 lines
1.0 KiB
C
56 lines
1.0 KiB
C
|
/*
|
||
|
* CCAplication.h
|
||
|
*
|
||
|
* Created on: Aug 8, 2011
|
||
|
* Author: laschweinski
|
||
|
*/
|
||
|
|
||
|
#ifndef CCAPLICATION_H_
|
||
|
#define CCAPLICATION_H_
|
||
|
|
||
|
#include "CCCommon.h"
|
||
|
#include "platform/CCApplicationProtocol.h"
|
||
|
|
||
|
NS_CC_BEGIN
|
||
|
class CCRect;
|
||
|
|
||
|
class CCApplication : public CCApplicationProtocol
|
||
|
{
|
||
|
public:
|
||
|
CCApplication();
|
||
|
virtual ~CCApplication();
|
||
|
|
||
|
/**
|
||
|
@brief Callback by CCDirector for limit FPS.
|
||
|
@interval The time, which expressed in second in second, between current frame and next.
|
||
|
*/
|
||
|
void setAnimationInterval(double interval);
|
||
|
|
||
|
/**
|
||
|
@brief Get status bar rectangle in EGLView window.
|
||
|
*/
|
||
|
void statusBarFrame(CCRect * rect);
|
||
|
|
||
|
/**
|
||
|
@brief Run the message loop.
|
||
|
*/
|
||
|
int run();
|
||
|
|
||
|
/**
|
||
|
@brief Get current applicaiton instance.
|
||
|
@return Current application instance pointer.
|
||
|
*/
|
||
|
static CCApplication& sharedApplication();
|
||
|
|
||
|
/* override functions */
|
||
|
virtual ccLanguageType getCurrentLanguage();
|
||
|
protected:
|
||
|
long m_nAnimationInterval; //micro second
|
||
|
|
||
|
static CCApplication * sm_pSharedApplication;
|
||
|
};
|
||
|
|
||
|
NS_CC_END
|
||
|
|
||
|
#endif /* CCAPLICATION_H_ */
|