/* * CCAplication.h * * Created on: Aug 8, 2011 * Author: laschweinski */ #ifndef CCAPLICATION_H_ #define CCAPLICATION_H_ #include "platform/CCCommon.h" #include "platform/CCApplicationProtocol.h" #include NS_CC_BEGIN class CCRect; class 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. */ static CCApplication* sharedApplication(); /* override functions */ virtual ccLanguageType getCurrentLanguage(); /** * Sets the Resource root path. * @deprecated Please use CCFileUtils::sharedFileUtils()->setSearchPath() instead. */ CC_DEPRECATED_ATTRIBUTE void setResourceRootPath(const std::string& rootResDir); /** * Gets the Resource root path. * @deprecated Please use CCFileUtils::sharedFileUtils()->getSearchPath() instead. */ CC_DEPRECATED_ATTRIBUTE const std::string& getResourceRootPath(void); /** @brief Get target platform */ virtual TargetPlatform getTargetPlatform(); protected: long m_nAnimationInterval; //micro second std::string m_resourceRootPath; static CCApplication * sm_pSharedApplication; }; NS_CC_END #endif /* CCAPLICATION_H_ */