2012-08-18 05:45:21 +08:00
|
|
|
#ifndef __CC_APPLICATION_BLACKBERRY_H__
|
|
|
|
#define __CC_APPLICATION_BLACKBERRY_H__
|
|
|
|
|
|
|
|
#include "platform/CCCommon.h"
|
|
|
|
#include "platform/CCApplicationProtocol.h"
|
2013-01-28 21:16:01 +08:00
|
|
|
#include <string>
|
2012-08-18 05:45:21 +08:00
|
|
|
NS_CC_BEGIN;
|
|
|
|
|
|
|
|
class CCRect;
|
|
|
|
|
|
|
|
class CC_DLL 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 Run the message loop.
|
|
|
|
*/
|
|
|
|
int run();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get current applicaiton instance.
|
|
|
|
@return Current application instance pointer.
|
|
|
|
*/
|
2012-08-21 15:28:43 +08:00
|
|
|
static CCApplication* sharedApplication();
|
2012-08-18 05:45:21 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get current language config
|
|
|
|
@return Current language config
|
|
|
|
*/
|
|
|
|
virtual ccLanguageType getCurrentLanguage();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get target platform
|
|
|
|
*/
|
|
|
|
virtual TargetPlatform getTargetPlatform();
|
|
|
|
|
|
|
|
|
2013-01-28 21:16:01 +08:00
|
|
|
/**
|
|
|
|
* Sets the Resource root path.
|
2013-01-29 09:56:38 +08:00
|
|
|
* @deprecated Please use CCFileUtils::sharedFileUtils()->setSearchPaths() instead.
|
2013-01-28 21:16:01 +08:00
|
|
|
*/
|
|
|
|
CC_DEPRECATED_ATTRIBUTE void setResourceRootPath(const std::string& rootResDir);
|
2012-08-18 05:45:21 +08:00
|
|
|
|
2013-01-28 21:16:01 +08:00
|
|
|
/**
|
|
|
|
* Gets the Resource root path.
|
2013-01-29 09:56:38 +08:00
|
|
|
* @deprecated Please use CCFileUtils::sharedFileUtils()->getSearchPaths() instead.
|
2013-01-28 21:16:01 +08:00
|
|
|
*/
|
|
|
|
CC_DEPRECATED_ATTRIBUTE const std::string& getResourceRootPath(void);
|
2012-08-18 05:45:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static CCApplication * sm_pSharedApplication;
|
2013-01-28 10:48:47 +08:00
|
|
|
std::string m_resourceRootPath;
|
2012-08-18 05:45:21 +08:00
|
|
|
static long m_animationInterval;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CC_APPLICATION_BLACKBERRY_H__
|