mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2024-12-26 11:48:29 +00:00
301 lines
11 KiB
C++
301 lines
11 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
Copyright (c) 2011 Zynga Inc.
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
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.
|
|
****************************************************************************/
|
|
#pragma once
|
|
|
|
/*
|
|
#ifndef _USE_MATH_DEFINES
|
|
#define _USE_MATH_DEFINES
|
|
#endif
|
|
*/
|
|
|
|
#include "base/CCLog.h"
|
|
#include "base/ccConfig.h"
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
#include <BaseTsd.h>
|
|
#ifndef __SSIZE_T
|
|
#define __SSIZE_T
|
|
typedef SSIZE_T ssize_t;
|
|
#endif // __SSIZE_T
|
|
#endif
|
|
|
|
#ifndef CCASSERT
|
|
#if COCOS2D_DEBUG > 0
|
|
// todo: minggo
|
|
// #if CC_ENABLE_SCRIPT_BINDING
|
|
// extern bool CC_DLL cc_assert_script_compatible(const char *msg);
|
|
// #define CCASSERT(cond, msg) do { \
|
|
// if (!(cond)) { \
|
|
// if (!cc_assert_script_compatible(msg) && strlen(msg)) \
|
|
// cocos2d::log("Assert failed: %s", msg); \
|
|
// CC_ASSERT(cond); \
|
|
// } \
|
|
// } while (0)
|
|
// #else
|
|
#define CCASSERT(cond, msg) CC_ASSERT(cond)
|
|
// #endif
|
|
#else
|
|
#define CCASSERT(cond, msg)
|
|
#endif
|
|
|
|
#define GP_ASSERT(cond) CCASSERT(cond, "")
|
|
#endif // CCASSERT
|
|
|
|
/** @def CC_DEGREES_TO_RADIANS
|
|
converts degrees to radians
|
|
*/
|
|
#define CC_DEGREES_TO_RADIANS(__ANGLE__) ((__ANGLE__) * 0.01745329252f) // PI / 180
|
|
|
|
/** @def CC_RADIANS_TO_DEGREES
|
|
converts radians to degrees
|
|
*/
|
|
#define CC_RADIANS_TO_DEGREES(__ANGLE__) ((__ANGLE__) * 57.29577951f) // PI * 180
|
|
|
|
/** @def CC_SIGN
|
|
gets sign of value
|
|
*/
|
|
#define CC_SIGN(__VALUE__) ((__VALUE__) > 0 ? 1 : ((__VALUE__) < 0 ? -1 : 0))
|
|
|
|
#ifndef FLT_EPSILON
|
|
#define FLT_EPSILON 1.192092896e-07F
|
|
#endif // FLT_EPSILON
|
|
|
|
#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
|
TypeName(const TypeName&);\
|
|
void operator=(const TypeName&)
|
|
|
|
|
|
/** @def CC_SWAP
|
|
simple macro that swaps 2 variables
|
|
@deprecated use std::swap() instead
|
|
*/
|
|
#define CC_SWAP(x, y, type) \
|
|
{ type temp = (x); \
|
|
x = y; y = temp; \
|
|
}
|
|
|
|
|
|
/**
|
|
Helper macros which converts 4-byte little/big endian
|
|
integral number to the machine native number representation
|
|
|
|
It should work same as apples CFSwapInt32LittleToHost(..)
|
|
*/
|
|
|
|
/// when define returns true it means that our architecture uses big endian
|
|
#define CC_HOST_IS_BIG_ENDIAN (bool)(*(unsigned short *)"\0\xff" < 0x100)
|
|
#define CC_SWAP32(i) ((i & 0x000000ff) << 24 | (i & 0x0000ff00) << 8 | (i & 0x00ff0000) >> 8 | (i & 0xff000000) >> 24)
|
|
#define CC_SWAP16(i) ((i & 0x00ff) << 8 | (i &0xff00) >> 8)
|
|
#define CC_SWAP_INT32_LITTLE_TO_HOST(i) ((CC_HOST_IS_BIG_ENDIAN == true)? CC_SWAP32(i) : (i) )
|
|
#define CC_SWAP_INT16_LITTLE_TO_HOST(i) ((CC_HOST_IS_BIG_ENDIAN == true)? CC_SWAP16(i) : (i) )
|
|
#define CC_SWAP_INT32_BIG_TO_HOST(i) ((CC_HOST_IS_BIG_ENDIAN == true)? (i) : CC_SWAP32(i) )
|
|
#define CC_SWAP_INT16_BIG_TO_HOST(i) ((CC_HOST_IS_BIG_ENDIAN == true)? (i): CC_SWAP16(i) )
|
|
|
|
#if !defined(COCOS2D_DEBUG) || COCOS2D_DEBUG == 0
|
|
#define CHECK_GL_ERROR_DEBUG()
|
|
#else
|
|
#define CHECK_GL_ERROR_DEBUG() \
|
|
do { \
|
|
GLenum __error = glGetError(); \
|
|
if(__error) { \
|
|
cocos2d::log("OpenGL error 0x%04X in %s %s %d\n", __error, __FILE__, __FUNCTION__, __LINE__); \
|
|
} \
|
|
} while (false)
|
|
#endif // !defined(COCOS2D_DEBUG) || COCOS2D_DEBUG == 0
|
|
|
|
/**
|
|
* GL assertion that can be used for any OpenGL function call.
|
|
*
|
|
* This macro will assert if an error is detected when executing
|
|
* the specified GL code. This macro will do nothing in release
|
|
* mode and is therefore safe to use for realtime/per-frame GL
|
|
* function calls.
|
|
*/
|
|
#if defined(NDEBUG) || (defined(__APPLE__) && !defined(DEBUG))
|
|
#define CC_GL_ASSERT( gl_code ) gl_code
|
|
#else
|
|
#define CC_GL_ASSERT( gl_code ) do \
|
|
{ \
|
|
gl_code; \
|
|
__gl_error_code = glGetError(); \
|
|
CC_ASSERT(__gl_error_code == GL_NO_ERROR, "Error"); \
|
|
} while(0)
|
|
#endif // defined(NDEBUG) || (defined(__APPLE__) && !defined(DEBUG))
|
|
|
|
/*********************************/
|
|
/** 64bits Program Sense Macros **/
|
|
/*********************************/
|
|
#if defined(_M_X64) || defined(_WIN64) || defined(__LP64__) || defined(_LP64) || defined(__x86_64)
|
|
#define CC_64BITS 1
|
|
#else
|
|
#define CC_64BITS 0
|
|
#endif
|
|
|
|
// new callbacks based on C++11
|
|
#define CC_CALLBACK_0(__selector__,__target__, ...) std::bind(&__selector__,__target__, ##__VA_ARGS__)
|
|
#define CC_CALLBACK_1(__selector__,__target__, ...) std::bind(&__selector__,__target__, std::placeholders::_1, ##__VA_ARGS__)
|
|
#define CC_CALLBACK_2(__selector__,__target__, ...) std::bind(&__selector__,__target__, std::placeholders::_1, std::placeholders::_2, ##__VA_ARGS__)
|
|
#define CC_CALLBACK_3(__selector__,__target__, ...) std::bind(&__selector__,__target__, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, ##__VA_ARGS__)
|
|
|
|
// Generic macros
|
|
|
|
/// @name namespace cocos2d
|
|
/// @{
|
|
#ifdef __cplusplus
|
|
#define NS_CC_BEGIN namespace cocos2d {
|
|
#define NS_CC_END }
|
|
#define USING_NS_CC using namespace cocos2d
|
|
#define NS_CC ::cocos2d
|
|
#else
|
|
#define NS_CC_BEGIN
|
|
#define NS_CC_END
|
|
#define USING_NS_CC
|
|
#define NS_CC
|
|
#endif
|
|
// end of namespace group
|
|
/// @}
|
|
|
|
#define CC_SAFE_DELETE(p) do { delete (p); (p) = nullptr; } while(0)
|
|
#define CC_SAFE_DELETE_ARRAY(p) do { if(p) { delete[] (p); (p) = nullptr; } } while(0)
|
|
#define CC_SAFE_FREE(p) do { if(p) { free(p); (p) = nullptr; } } while(0)
|
|
#define CC_SAFE_RELEASE(p) do { if(p) { (p)->release(); } } while(0)
|
|
#define CC_SAFE_RELEASE_NULL(p) do { if(p) { (p)->release(); (p) = nullptr; } } while(0)
|
|
#define CC_SAFE_RETAIN(p) do { if(p) { (p)->retain(); } } while(0)
|
|
#define CC_BREAK_IF(cond) if(cond) break
|
|
|
|
#define __CCLOGWITHFUNCTION(s, ...) \
|
|
cocos2d::log("%s : %s",__FUNCTION__, cocos2d::StringUtils::format(s, ##__VA_ARGS__).c_str())
|
|
|
|
/// @name Cocos2d debug
|
|
/// @{
|
|
#if !defined(COCOS2D_DEBUG) || COCOS2D_DEBUG == 0
|
|
#define CCLOG(...) do {} while (0)
|
|
#define CCLOGINFO(...) do {} while (0)
|
|
#define CCLOGERROR(...) do {} while (0)
|
|
#define CCLOGWARN(...) do {} while (0)
|
|
|
|
#elif COCOS2D_DEBUG == 1
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
|
#define COCOS_LOG_TAG "cocos2d-x"
|
|
#define CCLOG(...) __android_log_print(ANDROID_LOG_DEBUG, COCOS_LOG_TAG, __VA_ARGS__)
|
|
#define CCLOGINFO(format,...) do {} while (0)
|
|
#define CCLOGWARN(...) __android_log_print(ANDROID_LOG_WARN, COCOS_LOG_TAG, __VA_ARGS__)
|
|
#define CCLOGERROR(...) __android_log_print(ANDROID_LOG_ERROR, COCOS_LOG_TAG, __VA_ARGS__)
|
|
#else
|
|
#define CCLOG(format, ...) cocos2d::log(format, ##__VA_ARGS__)
|
|
#define CCLOGERROR(format,...) cocos2d::log(format, ##__VA_ARGS__)
|
|
#define CCLOGINFO(format,...) do {} while (0)
|
|
#define CCLOGWARN(...) __CCLOGWITHFUNCTION(__VA_ARGS__)
|
|
#endif
|
|
|
|
|
|
#elif COCOS2D_DEBUG > 1
|
|
#define CCLOG(format, ...) cocos2d::log(format, ##__VA_ARGS__)
|
|
#define CCLOGERROR(format,...) cocos2d::log(format, ##__VA_ARGS__)
|
|
#define CCLOGINFO(format,...) cocos2d::log(format, ##__VA_ARGS__)
|
|
#define CCLOGWARN(...) __CCLOGWITHFUNCTION(__VA_ARGS__)
|
|
#endif // COCOS2D_DEBUG
|
|
|
|
// end of debug group
|
|
/// @}
|
|
|
|
/** @def CC_DISALLOW_COPY_AND_ASSIGN(TypeName)
|
|
* A macro to disallow the copy constructor and operator= functions.
|
|
* This should be used in the private: declarations for a class
|
|
*/
|
|
#if defined(__GNUC__) && ((__GNUC__ >= 5) || ((__GNUG__ == 4) && (__GNUC_MINOR__ >= 4))) \
|
|
|| (defined(__clang__) && (__clang_major__ >= 3)) || (_MSC_VER >= 1800)
|
|
#define CC_DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
|
TypeName(const TypeName &) = delete; \
|
|
TypeName &operator =(const TypeName &) = delete;
|
|
#else
|
|
#define CC_DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
|
TypeName(const TypeName &); \
|
|
TypeName &operator =(const TypeName &);
|
|
#endif
|
|
|
|
/** @def CC_DEPRECATED_ATTRIBUTE
|
|
* Only certain compilers support __attribute__((deprecated)).
|
|
*/
|
|
#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
|
|
#define CC_DEPRECATED_ATTRIBUTE __attribute__((deprecated))
|
|
#elif _MSC_VER >= 1400 //vs 2005 or higher
|
|
#define CC_DEPRECATED_ATTRIBUTE __declspec(deprecated)
|
|
#else
|
|
#define CC_DEPRECATED_ATTRIBUTE
|
|
#endif
|
|
|
|
/** @def CC_DEPRECATED(...)
|
|
* Macro to mark things deprecated as of a particular version
|
|
* can be used with arbitrary parameters which are thrown away.
|
|
* e.g. CC_DEPRECATED(4.0) or CC_DEPRECATED(4.0, "not going to need this anymore") etc.
|
|
*/
|
|
#define CC_DEPRECATED(...) CC_DEPRECATED_ATTRIBUTE
|
|
|
|
/** @def CC_FORMAT_PRINTF(formatPos, argPos)
|
|
* Only certain compiler support __attribute__((format))
|
|
*
|
|
* @param formatPos 1-based position of format string argument.
|
|
* @param argPos 1-based position of first format-dependent argument.
|
|
*/
|
|
#if defined(__GNUC__) && (__GNUC__ >= 4)
|
|
#define CC_FORMAT_PRINTF(formatPos, argPos) __attribute__((__format__(printf, formatPos, argPos)))
|
|
#elif defined(__has_attribute)
|
|
#if __has_attribute(format)
|
|
#define CC_FORMAT_PRINTF(formatPos, argPos) __attribute__((__format__(printf, formatPos, argPos)))
|
|
#endif // __has_attribute(format)
|
|
#else
|
|
#define CC_FORMAT_PRINTF(formatPos, argPos)
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
#define CC_FORMAT_PRINTF_SIZE_T "%08lX"
|
|
#else
|
|
#define CC_FORMAT_PRINTF_SIZE_T "%08zX"
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
#define CC_UNUSED __attribute__ ((unused))
|
|
#else
|
|
#define CC_UNUSED
|
|
#endif
|
|
|
|
/** @def CC_REQUIRES_NULL_TERMINATION
|
|
*
|
|
*/
|
|
#if !defined(CC_REQUIRES_NULL_TERMINATION)
|
|
#if defined(__APPLE_CC__) && (__APPLE_CC__ >= 5549)
|
|
#define CC_REQUIRES_NULL_TERMINATION __attribute__((sentinel(0,1)))
|
|
#elif defined(__GNUC__)
|
|
#define CC_REQUIRES_NULL_TERMINATION __attribute__((sentinel))
|
|
#else
|
|
#define CC_REQUIRES_NULL_TERMINATION
|
|
#endif
|
|
#endif
|