2012-04-19 14:35:52 +08:00
|
|
|
#ifndef __CC_APPLICATION_WIN32_H__
|
|
|
|
#define __CC_APPLICATION_WIN32_H__
|
|
|
|
|
2013-01-17 17:07:18 +08:00
|
|
|
#include "CCStdC.h"
|
2012-06-19 17:22:55 +08:00
|
|
|
#include "platform/CCCommon.h"
|
|
|
|
#include "platform/CCApplicationProtocol.h"
|
2012-09-05 14:38:39 +08:00
|
|
|
#include <string>
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class Rect;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class CC_DLL Application : public ApplicationProtocol
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-06-20 14:13:12 +08:00
|
|
|
Application();
|
|
|
|
virtual ~Application();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@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-04-19 14:35:52 +08:00
|
|
|
|
2013-07-15 16:37:38 +08:00
|
|
|
/** @deprecated Use getInstance() instead */
|
|
|
|
CC_DEPRECATED_ATTRIBUTE static Application* sharedApplication();
|
|
|
|
|
2012-04-24 17:13:13 +08:00
|
|
|
/* override functions */
|
|
|
|
virtual void setAnimationInterval(double interval);
|
2013-07-26 17:29:06 +08:00
|
|
|
virtual LanguageType getCurrentLanguage();
|
2012-08-16 10:21:15 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get target platform
|
|
|
|
*/
|
2013-07-26 17:29:06 +08:00
|
|
|
virtual Platform getTargetPlatform();
|
2012-04-19 14:35:52 +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
|
|
|
*/
|
|
|
|
CC_DEPRECATED_ATTRIBUTE void setResourceRootPath(const std::string& rootResDir);
|
2012-09-05 14:38:39 +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
|
|
|
*/
|
|
|
|
CC_DEPRECATED_ATTRIBUTE const std::string& getResourceRootPath(void);
|
2012-09-05 14:38:39 +08:00
|
|
|
|
|
|
|
void setStartupScriptFilename(const std::string& startupScriptFile);
|
|
|
|
|
|
|
|
const std::string& getStartupScriptFilename(void)
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _startupScriptFilename;
|
2012-09-05 14:38:39 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
protected:
|
2013-06-15 14:03:30 +08:00
|
|
|
HINSTANCE _instance;
|
|
|
|
HACCEL _accelTable;
|
|
|
|
LARGE_INTEGER _animationInterval;
|
|
|
|
std::string _resourceRootPath;
|
|
|
|
std::string _startupScriptFilename;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
static Application * sm_pSharedApplication;
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CC_APPLICATION_WIN32_H__
|