2011-01-07 09:35:27 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __CC_PLATFORM_MACROS_H__
|
|
|
|
#define __CC_PLATFORM_MACROS_H__
|
|
|
|
|
|
|
|
/**
|
|
|
|
* define some platform specific macros
|
|
|
|
*/
|
2011-01-15 18:05:35 +08:00
|
|
|
#include "ccConfig.h"
|
2011-03-07 17:11:57 +08:00
|
|
|
#include "CCPlatformConfig.h"
|
2011-01-07 09:35:27 +08:00
|
|
|
|
2011-04-11 11:24:10 +08:00
|
|
|
#define MacGLView void
|
|
|
|
#define NSWindow void
|
2011-01-07 09:35:27 +08:00
|
|
|
|
2011-03-09 11:38:36 +08:00
|
|
|
/** @def CC_ENABLE_CACHE_TEXTTURE_DATA
|
|
|
|
Enable it if you want to cache the texture data.
|
|
|
|
Basically,it's only enabled in android
|
|
|
|
|
|
|
|
It's new in cocos2d-x since v0.99.5
|
|
|
|
*/
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
|
|
|
#define CC_ENABLE_CACHE_TEXTTURE_DATA 1
|
|
|
|
#else
|
|
|
|
#define CC_ENABLE_CACHE_TEXTTURE_DATA 0
|
2011-01-10 17:54:44 +08:00
|
|
|
#endif
|
|
|
|
|
2011-03-09 11:38:36 +08:00
|
|
|
|
|
|
|
// generic macros
|
|
|
|
|
|
|
|
// namespace cocos2d {}
|
|
|
|
#define NS_CC_BEGIN namespace cocos2d {
|
|
|
|
#define NS_CC_END }
|
|
|
|
#define USING_NS_CC using namespace cocos2d
|
|
|
|
|
|
|
|
/** CC_PROPERTY_READONLY is used to declare a protected variable.
|
|
|
|
We can use getter to read the variable.
|
|
|
|
@param varType : the type of variable.
|
|
|
|
@param varName : variable name.
|
|
|
|
@param funName : "get + funName" is the name of the getter.
|
|
|
|
@warning : The getter is a public virtual function, you should rewrite it first.
|
|
|
|
The variables and methods declared after CC_PROPERTY_READONLY are all public.
|
|
|
|
If you need protected or private, please declare.
|
|
|
|
*/
|
|
|
|
#define CC_PROPERTY_READONLY(varType, varName, funName)\
|
|
|
|
protected: varType varName;\
|
|
|
|
public: virtual varType get##funName(void);
|
|
|
|
|
|
|
|
/** CC_PROPERTY is used to declare a protected variable.
|
|
|
|
We can use getter to read the variable, and use the setter to change the variable.
|
|
|
|
@param varType : the type of variable.
|
|
|
|
@param varName : variable name.
|
|
|
|
@param funName : "get + funName" is the name of the getter.
|
|
|
|
"set + funName" is the name of the setter.
|
|
|
|
@warning : The getter and setter are public virtual functions, you should rewrite them first.
|
|
|
|
The variables and methods declared after CC_PROPERTY are all public.
|
|
|
|
If you need protected or private, please declare.
|
|
|
|
*/
|
|
|
|
#define CC_PROPERTY(varType, varName, funName)\
|
|
|
|
protected: varType varName;\
|
|
|
|
public: virtual varType get##funName(void);\
|
|
|
|
public: virtual void set##funName(varType var);
|
|
|
|
|
|
|
|
/** CC_SYNTHESIZE_READONLY is used to declare a protected variable.
|
|
|
|
We can use getter to read the variable.
|
|
|
|
@param varType : the type of variable.
|
|
|
|
@param varName : variable name.
|
|
|
|
@param funName : "get + funName" is the name of the getter.
|
|
|
|
@warning : The getter is a public inline function.
|
|
|
|
The variables and methods declared after CC_SYNTHESIZE_READONLY are all public.
|
|
|
|
If you need protected or private, please declare.
|
|
|
|
*/
|
|
|
|
#define CC_SYNTHESIZE_READONLY(varType, varName, funName)\
|
|
|
|
protected: varType varName;\
|
|
|
|
public: inline varType get##funName(void) const { return varName; }
|
|
|
|
|
|
|
|
/** CC_SYNTHESIZE is used to declare a protected variable.
|
|
|
|
We can use getter to read the variable, and use the setter to change the variable.
|
|
|
|
@param varType : the type of variable.
|
|
|
|
@param varName : variable name.
|
|
|
|
@param funName : "get + funName" is the name of the getter.
|
|
|
|
"set + funName" is the name of the setter.
|
|
|
|
@warning : The getter and setter are public inline functions.
|
|
|
|
The variables and methods declared after CC_SYNTHESIZE are all public.
|
|
|
|
If you need protected or private, please declare.
|
|
|
|
*/
|
|
|
|
#define CC_SYNTHESIZE(varType, varName, funName)\
|
|
|
|
protected: varType varName;\
|
|
|
|
public: inline varType get##funName(void) const { return varName; }\
|
|
|
|
public: inline void set##funName(varType var){ varName = var; }
|
|
|
|
|
|
|
|
#define CC_SAFE_DELETE(p) if(p) { delete p; p = 0; }
|
|
|
|
#define CC_SAFE_DELETE_ARRAY(p) if(p) { delete[] p; p = 0; }
|
|
|
|
#define CC_SAFE_FREE(p) if(p) { free(p); p = 0; }
|
|
|
|
#define CC_SAFE_RELEASE(p) if(p) { p->release(); }
|
|
|
|
#define CC_SAFE_RELEASE_NULL(p) if(p) { p->release(); p = 0; }
|
|
|
|
#define CC_SAFE_RETAIN(p) if(p) { p->retain(); }
|
|
|
|
#define CC_BREAK_IF(cond) if(cond) break;
|
|
|
|
|
|
|
|
|
|
|
|
// cocos2d debug
|
|
|
|
#if !defined(COCOS2D_DEBUG) || COCOS2D_DEBUG == 0
|
2011-06-10 17:51:37 +08:00
|
|
|
#define CCLOG(...)
|
|
|
|
#define CCLOGINFO(...)
|
|
|
|
#define CCLOGERROR(...)
|
2011-03-09 11:38:36 +08:00
|
|
|
|
|
|
|
#elif COCOS2D_DEBUG == 1
|
|
|
|
#define CCLOG(format, ...) cocos2d::CCLog(format, ##__VA_ARGS__)
|
|
|
|
#define CCLOGERROR(format,...) cocos2d::CCLog(format, ##__VA_ARGS__)
|
|
|
|
#define CCLOGINFO(format,...) do {} while (0)
|
|
|
|
|
|
|
|
#elif COCOS2D_DEBUG > 1
|
|
|
|
#define CCLOG(format, ...) cocos2d::CCLog(format, ##__VA_ARGS__)
|
|
|
|
#define CCLOGERROR(format,...) cocos2d::CCLog(format, ##__VA_ARGS__)
|
|
|
|
#define CCLOGINFO(format,...) cocos2d::CCLog(format, ##__VA_ARGS__)
|
|
|
|
#endif // COCOS2D_DEBUG
|
|
|
|
|
|
|
|
// shared library declartor
|
|
|
|
#define CC_DLL
|
|
|
|
|
|
|
|
// assertion
|
|
|
|
#include <assert.h>
|
|
|
|
#define CC_ASSERT(cond) assert(cond)
|
2011-06-10 17:51:37 +08:00
|
|
|
#define CC_UNUSED_PARAM(unusedparam) unusedparam
|
|
|
|
|
|
|
|
|
2011-03-09 11:38:36 +08:00
|
|
|
|
|
|
|
// platform depended macros
|
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
|
|
|
|
#undef CC_DLL
|
|
|
|
#if defined(_USRDLL)
|
|
|
|
#define CC_DLL __declspec(dllexport)
|
|
|
|
#else /* use a DLL library */
|
|
|
|
#define CC_DLL __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // CC_PLATFORM_WIN32
|
|
|
|
|
2011-03-09 17:28:35 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE && defined(_TRANZDA_VM_))
|
2011-03-09 11:38:36 +08:00
|
|
|
|
|
|
|
#undef CC_DLL
|
|
|
|
#if defined(SS_MAKEDLL)
|
|
|
|
#define CC_DLL __declspec(dllexport)
|
|
|
|
#else /* use a DLL library */
|
|
|
|
#define CC_DLL __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
|
2011-03-09 17:28:35 +08:00
|
|
|
#endif // wophone VM
|
2011-03-09 11:38:36 +08:00
|
|
|
|
2011-01-07 09:35:27 +08:00
|
|
|
#endif // __CC_PLATFORM_MACROS_H__
|