2012-04-19 14:35:52 +08:00
|
|
|
#ifndef __CC_APPLICATION_ANDROID_H__
|
|
|
|
#define __CC_APPLICATION_ANDROID_H__
|
|
|
|
|
2012-06-19 16:20:46 +08:00
|
|
|
#include "platform/CCCommon.h"
|
|
|
|
#include "platform/CCApplicationProtocol.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
class CCRect;
|
|
|
|
|
2012-04-24 17:35:36 +08:00
|
|
|
class CC_DLL CCApplication : public CCApplicationProtocol
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2011-03-01 19:53:39 +08:00
|
|
|
/// Device oriented vertically, home button on the bottom
|
|
|
|
kOrientationPortrait = 0,
|
|
|
|
/// Device oriented vertically, home button on the top
|
|
|
|
kOrientationPortraitUpsideDown = 1,
|
|
|
|
/// Device oriented horizontally, home button on the right
|
|
|
|
kOrientationLandscapeLeft = 2,
|
|
|
|
/// Device oriented horizontally, home button on the left
|
|
|
|
kOrientationLandscapeRight = 3,
|
2012-04-19 14:35:52 +08:00
|
|
|
} Orientation;
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Callback by CCDirector for change device orientation.
|
|
|
|
@orientation The defination of orientation which CCDirector want change to.
|
|
|
|
@return The actual orientation of the application.
|
|
|
|
*/
|
|
|
|
Orientation setOrientation(Orientation orientation);
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Run the message loop.
|
|
|
|
*/
|
|
|
|
int run();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get current applicaiton instance.
|
|
|
|
@return Current application instance pointer.
|
|
|
|
*/
|
|
|
|
static CCApplication& sharedApplication();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get current language config
|
|
|
|
@return Current language config
|
|
|
|
*/
|
2012-04-24 17:35:36 +08:00
|
|
|
virtual ccLanguageType getCurrentLanguage();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static CCApplication * sm_pSharedApplication;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
2012-04-24 17:35:36 +08:00
|
|
|
#endif // __CC_APPLICATION_ANDROID_H__
|