2012-04-19 14:35:52 +08:00
|
|
|
#ifndef __CC_APPLICATION_WIN32_H__
|
|
|
|
#define __CC_APPLICATION_WIN32_H__
|
|
|
|
|
|
|
|
#include <Windows.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
|
|
|
|
|
|
|
|
class CCRect;
|
|
|
|
|
2012-04-24 17:13:13 +08:00
|
|
|
class CC_DLL CCApplication : public CCApplicationProtocol
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CCApplication();
|
|
|
|
virtual ~CCApplication();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Run the message loop.
|
|
|
|
*/
|
|
|
|
int run();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get current applicaiton instance.
|
|
|
|
@return Current application instance pointer.
|
|
|
|
*/
|
2012-08-21 17:25:03 +08:00
|
|
|
static CCApplication* sharedApplication();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-04-24 17:13:13 +08:00
|
|
|
/* override functions */
|
|
|
|
virtual void setAnimationInterval(double interval);
|
|
|
|
virtual ccLanguageType getCurrentLanguage();
|
2012-08-16 10:21:15 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get target platform
|
|
|
|
*/
|
2012-08-16 11:30:25 +08:00
|
|
|
virtual TargetPlatform getTargetPlatform();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-09-05 14:38:39 +08:00
|
|
|
/* set the Resource root path */
|
|
|
|
void setResourceRootPath(const std::string& rootResDir);
|
|
|
|
|
|
|
|
/* get the Resource root path */
|
|
|
|
const std::string& getResourceRootPath(void)
|
|
|
|
{
|
|
|
|
return m_resourceRootPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setStartupScriptFilename(const std::string& startupScriptFile);
|
|
|
|
|
|
|
|
const std::string& getStartupScriptFilename(void)
|
|
|
|
{
|
|
|
|
return m_startupScriptFilename;
|
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
protected:
|
|
|
|
HINSTANCE m_hInstance;
|
|
|
|
HACCEL m_hAccelTable;
|
|
|
|
LARGE_INTEGER m_nAnimationInterval;
|
2012-09-05 14:38:39 +08:00
|
|
|
std::string m_resourceRootPath;
|
|
|
|
std::string m_startupScriptFilename;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
static CCApplication * sm_pSharedApplication;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CC_APPLICATION_WIN32_H__
|