2012-08-02 13:02:59 +08:00
|
|
|
/*
|
2013-06-20 14:13:12 +08:00
|
|
|
* Aplication.h
|
2012-08-02 13:02:59 +08:00
|
|
|
*
|
|
|
|
* Created on: Aug 8, 2011
|
|
|
|
* Author: laschweinski
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CCAPLICATION_H_
|
|
|
|
#define CCAPLICATION_H_
|
|
|
|
|
2012-08-16 18:09:01 +08:00
|
|
|
#include "platform/CCCommon.h"
|
2012-08-02 13:02:59 +08:00
|
|
|
#include "platform/CCApplicationProtocol.h"
|
2013-01-28 11:56:56 +08:00
|
|
|
#include <string>
|
2012-08-02 13:02:59 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
2013-06-20 14:13:12 +08:00
|
|
|
class Rect;
|
2012-08-02 13:02:59 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class Application : public ApplicationProtocol
|
2012-08-02 13:02:59 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-06-20 14:13:12 +08:00
|
|
|
Application();
|
2013-09-13 13:52:42 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual ~Application();
|
2012-08-02 13:02:59 +08:00
|
|
|
|
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
@brief Callback by Director for limit FPS.
|
2013-08-01 20:55:43 +08:00
|
|
|
@param interval The time, which expressed in second in second, between current frame and next.
|
2012-08-02 13:02:59 +08:00
|
|
|
*/
|
|
|
|
void setAnimationInterval(double interval);
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Run the message loop.
|
|
|
|
*/
|
|
|
|
int run();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get current applicaiton instance.
|
|
|
|
@return Current application instance pointer.
|
|
|
|
*/
|
2013-07-15 16:24:42 +08:00
|
|
|
static Application* getInstance();
|
2012-08-02 13:02:59 +08:00
|
|
|
|
2013-07-15 16:37:38 +08:00
|
|
|
/** @deprecated Use getInstance() instead */
|
|
|
|
CC_DEPRECATED_ATTRIBUTE static Application* sharedApplication();
|
|
|
|
|
2012-08-03 13:56:18 +08:00
|
|
|
/* override functions */
|
2013-07-26 17:29:06 +08:00
|
|
|
virtual LanguageType getCurrentLanguage();
|
2012-08-03 13:56:18 +08:00
|
|
|
|
2013-01-28 10:36:37 +08:00
|
|
|
/**
|
|
|
|
* Sets the Resource root path.
|
2013-07-12 12:03:39 +08:00
|
|
|
* @deprecated Please use FileUtils::getInstance()->setSearchPaths() instead.
|
2013-01-28 10:36:37 +08:00
|
|
|
*/
|
2013-01-28 11:56:56 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void setResourceRootPath(const std::string& rootResDir);
|
2012-08-16 10:21:15 +08:00
|
|
|
|
2013-01-28 10:36:37 +08:00
|
|
|
/**
|
|
|
|
* Gets the Resource root path.
|
2013-07-12 12:03:39 +08:00
|
|
|
* @deprecated Please use FileUtils::getInstance()->getSearchPaths() instead.
|
2013-01-28 10:36:37 +08:00
|
|
|
*/
|
2013-01-28 11:56:56 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE const std::string& getResourceRootPath(void);
|
2012-08-16 10:21:15 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get target platform
|
|
|
|
*/
|
2013-07-26 17:29:06 +08:00
|
|
|
virtual Platform getTargetPlatform();
|
2012-08-02 13:02:59 +08:00
|
|
|
protected:
|
2013-06-15 14:03:30 +08:00
|
|
|
long _animationInterval; //micro second
|
|
|
|
std::string _resourceRootPath;
|
2013-01-28 10:36:37 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
static Application * sm_pSharedApplication;
|
2012-08-02 13:02:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif /* CCAPLICATION_H_ */
|