2022-07-30 12:24:03 -04:00
|
|
|
#ifndef __CC_APPLICATION_ANDROID_H__
|
|
|
|
#define __CC_APPLICATION_ANDROID_H__
|
|
|
|
|
2022-10-17 08:46:36 -04:00
|
|
|
#include "../CCCommon.h"
|
|
|
|
#include "../CCApplicationProtocol.h"
|
2022-07-30 12:24:03 -04:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
class CCRect;
|
|
|
|
|
|
|
|
class CC_DLL CCApplication : public CCApplicationProtocol
|
|
|
|
{
|
|
|
|
GEODE_FRIEND_MODIFY
|
|
|
|
public:
|
|
|
|
CCApplication();
|
|
|
|
virtual ~CCApplication();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Callback by CCDirector to limit FPS.
|
|
|
|
@interval The time, expressed in seconds, between current frame and next.
|
|
|
|
*/
|
|
|
|
void setAnimationInterval(double interval);
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Run the message loop.
|
|
|
|
*/
|
|
|
|
int run();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get current application instance.
|
|
|
|
@return Current application instance pointer.
|
|
|
|
*/
|
|
|
|
static CCApplication* sharedApplication();
|
|
|
|
|
2022-10-06 15:37:54 -04:00
|
|
|
GEODE_ADD(
|
|
|
|
static CCApplication* get();
|
|
|
|
);
|
|
|
|
|
2022-07-30 12:24:03 -04:00
|
|
|
/**
|
|
|
|
@brief Get current language config
|
|
|
|
@return Current language config
|
|
|
|
*/
|
|
|
|
virtual ccLanguageType getCurrentLanguage();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get target platform
|
|
|
|
*/
|
|
|
|
virtual TargetPlatform getTargetPlatform();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static CCApplication * sm_pSharedApplication;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CC_APPLICATION_ANDROID_H__
|