2014-01-07 11:25:07 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
2012-04-19 14:35:52 +08:00
|
|
|
#ifndef __CC_APPLICATION_WIN32_H__
|
|
|
|
#define __CC_APPLICATION_WIN32_H__
|
|
|
|
|
2014-04-27 01:35:57 +08:00
|
|
|
#include "base/CCPlatformConfig.h"
|
2014-01-31 08:51:43 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
|
|
|
|
|
2013-01-17 17:07:18 +08:00
|
|
|
#include "CCStdC.h"
|
2014-05-17 05:36:00 +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-09-13 16:46:31 +08:00
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
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-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();
|
2014-03-18 02:34:21 +08:00
|
|
|
|
|
|
|
virtual const char * getCurrentLanguageCode();
|
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
|
|
|
|
|
2014-01-31 08:51:43 +08:00
|
|
|
#endif // CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
#endif // __CC_APPLICATION_WIN32_H__
|