axmol/cocos2dx/platform/emscripten/CCApplication.h

72 lines
1.7 KiB
C
Raw Normal View History

2013-04-09 09:21:53 +08:00
#ifndef __CC_APPLICATION_BLACKBERRY_H__
#define __CC_APPLICATION_BLACKBERRY_H__
#include "platform/CCCommon.h"
#include "platform/CCApplicationProtocol.h"
#include <string>
NS_CC_BEGIN;
class Rect;
2013-04-09 09:21:53 +08:00
class CC_DLL Application : public ApplicationProtocol
2013-04-09 09:21:53 +08:00
{
public:
Application();
virtual ~Application();
2013-04-09 09:21:53 +08:00
/**
@brief Callback by Director for limit FPS.
@param interval The time, which expressed in second in second, between current frame and next.
2013-04-09 09:21:53 +08:00
*/
void setAnimationInterval(double interval);
/**
@brief Run the message loop.
*/
int run();
/**
@brief Get current applicaiton instance.
@return Current application instance pointer.
*/
static Application* getInstance();
2013-04-09 09:21:53 +08:00
/** @deprecated Use getInstance() instead */
CC_DEPRECATED_ATTRIBUTE static Application* sharedApplication();
2013-04-09 09:21:53 +08:00
/**
@brief Get current language config
@return Current language config
*/
virtual LanguageType getCurrentLanguage();
2013-04-09 09:21:53 +08:00
/**
@brief Get target platform
*/
virtual Platform getTargetPlatform();
2013-04-09 09:21:53 +08:00
/**
* Sets the Resource root path.
* @deprecated Please use FileUtils::getInstance()->setSearchPaths() instead.
2013-04-09 09:21:53 +08:00
*/
CC_DEPRECATED_ATTRIBUTE void setResourceRootPath(const std::string& rootResDir);
/**
* Gets the Resource root path.
* @deprecated Please use FileUtils::getInstance()->getSearchPaths() instead.
2013-04-09 09:21:53 +08:00
*/
CC_DEPRECATED_ATTRIBUTE const std::string& getResourceRootPath(void);
protected:
static Application * sm_pSharedApplication;
std::string _resourceRootPath;
static long _animationInterval;
2013-04-09 09:21:53 +08:00
};
NS_CC_END
#endif // __CC_APPLICATION_BLACKBERRY_H__