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-24 17:13:13 +08:00
|
|
|
#ifndef __CC_APPLICATION_PROTOCOL_H__
|
|
|
|
#define __CC_APPLICATION_PROTOCOL_H__
|
|
|
|
|
2014-09-10 08:17:07 +08:00
|
|
|
#include "platform/CCPlatformMacros.h"
|
2014-07-08 18:22:48 +08:00
|
|
|
#include "base/CCScriptSupport.h"
|
|
|
|
#include "base/CCAutoreleasePool.h"
|
2014-02-20 10:53:49 +08:00
|
|
|
|
2012-04-24 17:13:13 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup platform
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class CC_DLL ApplicationProtocol
|
2012-04-24 17:13:13 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-03-19 21:03:28 +08:00
|
|
|
/** Since WINDOWS and ANDROID are defined as macros, we could not just use these keywords in enumeration(Platform).
|
|
|
|
* Therefore, 'OS_' prefix is added to avoid conflicts with the definitions of system macros.
|
|
|
|
*/
|
2013-07-26 17:29:06 +08:00
|
|
|
enum class Platform
|
|
|
|
{
|
2015-03-19 21:03:28 +08:00
|
|
|
OS_WINDOWS,/** Windows */
|
|
|
|
OS_LINUX,/** Linux */
|
|
|
|
OS_MAC,/** Mac*/
|
|
|
|
OS_ANDROID,/** Android */
|
|
|
|
OS_IPHONE,/** Iphone */
|
|
|
|
OS_IPAD,/** Ipad */
|
|
|
|
OS_BLACKBERRY,/** BLACKBERRY */
|
|
|
|
OS_NACL,/** Nacl */
|
|
|
|
OS_EMSCRIPTEN,/** Emscripten */
|
|
|
|
OS_TIZEN,/** Tizen */
|
|
|
|
OS_WINRT,/** Winrt */
|
|
|
|
OS_WP8/** WP8 */
|
2013-07-26 17:29:06 +08:00
|
|
|
};
|
|
|
|
|
2013-09-13 13:52:42 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2014-07-08 18:22:48 +08:00
|
|
|
virtual ~ApplicationProtocol(){
|
2014-07-11 10:27:00 +08:00
|
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
2014-07-08 18:22:48 +08:00
|
|
|
ScriptEngineManager::destroyInstance();
|
2014-07-11 10:27:00 +08:00
|
|
|
#endif
|
2015-03-20 09:49:34 +08:00
|
|
|
/** clean auto release pool. */
|
2014-07-08 18:22:48 +08:00
|
|
|
PoolManager::destroyInstance();
|
|
|
|
}
|
2012-04-24 17:13:13 +08:00
|
|
|
|
|
|
|
/**
|
2015-03-19 21:03:28 +08:00
|
|
|
* @brief Implement Director and Scene init code here.
|
|
|
|
* @return true Initialize success, app continue.
|
|
|
|
* @return false Initialize failed, app terminate.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-04-24 17:13:13 +08:00
|
|
|
*/
|
|
|
|
virtual bool applicationDidFinishLaunching() = 0;
|
|
|
|
|
|
|
|
/**
|
2015-03-19 21:03:28 +08:00
|
|
|
* @brief This function will be called when the application enters background.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-04-24 17:13:13 +08:00
|
|
|
*/
|
|
|
|
virtual void applicationDidEnterBackground() = 0;
|
|
|
|
|
|
|
|
/**
|
2015-03-19 21:03:28 +08:00
|
|
|
* @brief This function will be called when the application enters foreground.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-04-24 17:13:13 +08:00
|
|
|
*/
|
|
|
|
virtual void applicationWillEnterForeground() = 0;
|
|
|
|
|
|
|
|
/**
|
2015-03-19 21:03:28 +08:00
|
|
|
* @brief Callback by Director for limit FPS.
|
|
|
|
* @param interval The time, expressed in seconds, between current frame and next.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-04-24 17:13:13 +08:00
|
|
|
*/
|
|
|
|
virtual void setAnimationInterval(double interval) = 0;
|
|
|
|
|
2015-03-19 21:03:28 +08:00
|
|
|
/** Subclass override the function to set OpenGL context attribution instead of use default value.
|
2015-03-19 21:42:31 +08:00
|
|
|
* And now can only set six attributions:redBits,greenBits,blueBits,alphaBits,depthBits,stencilBits.
|
2015-03-19 21:03:28 +08:00
|
|
|
* Default value are(5,6,5,0,16,0), usually use as follows:
|
|
|
|
* void AppDelegate::initGLContextAttrs(){
|
|
|
|
* GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8};
|
|
|
|
* GLView::setGLContextAttrs(glContextAttrs);
|
|
|
|
* }
|
|
|
|
*/
|
2014-08-22 16:22:16 +08:00
|
|
|
virtual void initGLContextAttrs() {}
|
2014-08-21 09:35:32 +08:00
|
|
|
|
2012-04-24 17:13:13 +08:00
|
|
|
/**
|
2015-03-19 21:03:28 +08:00
|
|
|
@brief Get current language config.
|
|
|
|
@return Current language config.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-04-24 17:13:13 +08:00
|
|
|
*/
|
2013-07-26 17:29:06 +08:00
|
|
|
virtual LanguageType getCurrentLanguage() = 0;
|
2012-06-11 14:36:25 +08:00
|
|
|
|
2014-03-18 02:34:21 +08:00
|
|
|
/**
|
2015-03-19 21:03:28 +08:00
|
|
|
@brief Get current language iso 639-1 code.
|
|
|
|
@return Current language iso 639-1 code.
|
2014-03-18 02:34:21 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual const char * getCurrentLanguageCode() = 0;
|
|
|
|
|
2012-08-16 10:21:15 +08:00
|
|
|
/**
|
2015-03-19 21:03:28 +08:00
|
|
|
@brief Get target platform.
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2012-08-16 10:21:15 +08:00
|
|
|
*/
|
2013-07-26 17:29:06 +08:00
|
|
|
virtual Platform getTargetPlatform() = 0;
|
2014-09-09 16:07:33 +08:00
|
|
|
|
|
|
|
/**
|
2015-03-19 21:03:28 +08:00
|
|
|
@brief Open url in default browser.
|
2014-09-09 16:07:33 +08:00
|
|
|
@param String with url to open.
|
2015-03-19 21:03:28 +08:00
|
|
|
@return True if the resource located by the URL was successfully opened; otherwise false.
|
2014-09-09 16:07:33 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual bool openURL(const std::string &url) = 0;
|
2012-04-24 17:13:13 +08:00
|
|
|
};
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
// end of platform group
|
2015-03-19 21:03:28 +08:00
|
|
|
/** @} */
|
2012-06-20 18:09:11 +08:00
|
|
|
|
2012-04-24 17:13:13 +08:00
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CC_APPLICATION_PROTOCOL_H__
|