Macros | |
| #define | _USE_MATH_DEFINES |
| #define | CCAssert(cond, msg) ((void)(cond)) |
| #define | CC_SWAP(x, y, type) |
| simple macro that swaps 2 variables More... | |
| #define | CCRANDOM_MINUS1_1() ((2.0f*((float)rand()/RAND_MAX))-1.0f) |
| returns a random float between -1 and 1 More... | |
| #define | CCRANDOM_0_1() ((float)rand()/RAND_MAX) |
| returns a random float between 0 and 1 More... | |
| #define | CC_DEGREES_TO_RADIANS(__ANGLE__) ((__ANGLE__) * 0.01745329252f) |
| converts degrees to radians More... | |
| #define | CC_RADIANS_TO_DEGREES(__ANGLE__) ((__ANGLE__) * 57.29577951f) |
| converts radians to degrees More... | |
| #define | kCCRepeatForever (UINT_MAX -1) |
| #define | CC_BLEND_SRC GL_ONE |
| default gl blend src function. More... | |
| #define | CC_BLEND_DST GL_ONE_MINUS_SRC_ALPHA |
| #define | CC_NODE_DRAW_SETUP() |
| Helpful macro that setups the GL server state, the correct GL program and sets the Model View Projection matrix. More... | |
| #define | CC_DIRECTOR_END() |
| Stops and removes the director from memory. More... | |
| #define | CC_CONTENT_SCALE_FACTOR() CCDirector::sharedDirector()->getContentScaleFactor() |
| On Mac it returns 1; On iPhone it returns 2 if RetinaDisplay is On. More... | |
| #define | CC_RECT_PIXELS_TO_POINTS(__rect_in_pixels__) |
| RETINA DISPLAY ENABLED. More... | |
| #define | CC_RECT_POINTS_TO_PIXELS(__rect_in_points_points__) |
| Converts a rect in points to pixels. More... | |
| #define | CC_POINT_PIXELS_TO_POINTS(__pixels__) CCPointMake( (__pixels__).x / CC_CONTENT_SCALE_FACTOR(), (__pixels__).y / CC_CONTENT_SCALE_FACTOR()) |
| Converts a rect in pixels to points. More... | |
| #define | CC_POINT_POINTS_TO_PIXELS(__points__) CCPointMake( (__points__).x * CC_CONTENT_SCALE_FACTOR(), (__points__).y * CC_CONTENT_SCALE_FACTOR()) |
| Converts a rect in points to pixels. More... | |
| #define | CC_SIZE_PIXELS_TO_POINTS(__size_in_pixels__) CCSizeMake( (__size_in_pixels__).width / CC_CONTENT_SCALE_FACTOR(), (__size_in_pixels__).height / CC_CONTENT_SCALE_FACTOR()) |
| #define | CC_SIZE_POINTS_TO_PIXELS(__size_in_points__) CCSizeMake( (__size_in_points__).width * CC_CONTENT_SCALE_FACTOR(), (__size_in_points__).height * CC_CONTENT_SCALE_FACTOR()) |
| #define | FLT_EPSILON 1.192092896e-07F |
| #define | DISALLOW_COPY_AND_ASSIGN(TypeName) |
| #define | CC_HOST_IS_BIG_ENDIAN (bool)(*(unsigned short *)"\0\xff" < 0x100) |
| Helper macros which converts 4-byte little/big endian integral number to the machine native number representation. More... | |
| #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) ) |
| #define | CC_PROFILER_DISPLAY_TIMERS() do {} while (0) |
| Profiling Macros. More... | |
| #define | CC_PROFILER_PURGE_ALL() do {} while (0) |
| #define | CC_PROFILER_START(__name__) do {} while (0) |
| #define | CC_PROFILER_STOP(__name__) do {} while (0) |
| #define | CC_PROFILER_RESET(__name__) do {} while (0) |
| #define | CC_PROFILER_START_CATEGORY(__cat__, __name__) do {} while(0) |
| #define | CC_PROFILER_STOP_CATEGORY(__cat__, __name__) do {} while(0) |
| #define | CC_PROFILER_RESET_CATEGORY(__cat__, __name__) do {} while(0) |
| #define | CC_PROFILER_START_INSTANCE(__id__, __name__) do {} while(0) |
| #define | CC_PROFILER_STOP_INSTANCE(__id__, __name__) do {} while(0) |
| #define | CC_PROFILER_RESET_INSTANCE(__id__, __name__) do {} while(0) |
| #define | CHECK_GL_ERROR_DEBUG() |
| #define | CC_INCREMENT_GL_DRAWS(__n__) g_uNumberOfDraws += __n__ |
| #define | CCAnimationFrameDisplayedNotification "CCAnimationFrameDisplayedNotification" |
| Notifications. More... | |
Variables | |
| unsigned int CC_DLL | g_uNumberOfDraws |
| #define _USE_MATH_DEFINES |
| #define CC_BLEND_DST GL_ONE_MINUS_SRC_ALPHA |
| var CC_BLEND_DST GL_ONE_MINUS_SRC_ALPHA |
| local CC_BLEND_DST GL_ONE_MINUS_SRC_ALPHA |
| #define CC_BLEND_SRC GL_ONE |
default gl blend src function.
Compatible with premultiplied alpha images.
| var CC_BLEND_SRC GL_ONE |
default gl blend src function.
Compatible with premultiplied alpha images.
| local CC_BLEND_SRC GL_ONE |
default gl blend src function.
Compatible with premultiplied alpha images.
| #define CC_CONTENT_SCALE_FACTOR | ( | ) | CCDirector::sharedDirector()->getContentScaleFactor() |
On Mac it returns 1; On iPhone it returns 2 if RetinaDisplay is On.
Otherwise it returns 1
| var CC_CONTENT_SCALE_FACTOR | ( | ) | CCDirector::sharedDirector()->getContentScaleFactor() |
On Mac it returns 1; On iPhone it returns 2 if RetinaDisplay is On.
Otherwise it returns 1
| local CC_CONTENT_SCALE_FACTOR | ( | ) | CCDirector::sharedDirector()->getContentScaleFactor() |
On Mac it returns 1; On iPhone it returns 2 if RetinaDisplay is On.
Otherwise it returns 1
| #define CC_DEGREES_TO_RADIANS | ( | __ANGLE__) | ((__ANGLE__) * 0.01745329252f) |
converts degrees to radians
| var CC_DEGREES_TO_RADIANS | ( | var) | ((__ANGLE__) * 0.01745329252f) |
converts degrees to radians
| local CC_DEGREES_TO_RADIANS | ( | local) | ((__ANGLE__) * 0.01745329252f) |
converts degrees to radians
| #define CC_DIRECTOR_END | ( | ) |
Stops and removes the director from memory.
Removes the CCGLView from its parent
| var CC_DIRECTOR_END | ( | ) |
Stops and removes the director from memory.
Removes the CCGLView from its parent
| local CC_DIRECTOR_END | ( | ) |
Stops and removes the director from memory.
Removes the CCGLView from its parent
| #define CC_HOST_IS_BIG_ENDIAN (bool)(*(unsigned short *)"\0\xff" < 0x100) |
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
| var CC_HOST_IS_BIG_ENDIAN (bool)(*(unsigned short *)"\0\xff" < 0x100) |
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
| local CC_HOST_IS_BIG_ENDIAN (bool)(*(unsigned short *)"\0\xff" < 0x100) |
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_INCREMENT_GL_DRAWS | ( | __n__) | g_uNumberOfDraws += __n__ |
| var CC_INCREMENT_GL_DRAWS | ( | var) | g_uNumberOfDraws += __n__ |
| local CC_INCREMENT_GL_DRAWS | ( | local) | g_uNumberOfDraws += __n__ |
| #define CC_NODE_DRAW_SETUP | ( | ) |
Helpful macro that setups the GL server state, the correct GL program and sets the Model View Projection matrix.
| #define CC_POINT_PIXELS_TO_POINTS | ( | __pixels__) | CCPointMake( (__pixels__).x / CC_CONTENT_SCALE_FACTOR(), (__pixels__).y / CC_CONTENT_SCALE_FACTOR()) |
Converts a rect in pixels to points.
| var CC_POINT_PIXELS_TO_POINTS | ( | var) | CCPointMake( (__pixels__).x / CC_CONTENT_SCALE_FACTOR(), (__pixels__).y / CC_CONTENT_SCALE_FACTOR()) |
Converts a rect in pixels to points.
| local CC_POINT_PIXELS_TO_POINTS | ( | local) | CCPointMake( (__pixels__).x / CC_CONTENT_SCALE_FACTOR(), (__pixels__).y / CC_CONTENT_SCALE_FACTOR()) |
Converts a rect in pixels to points.
| #define CC_POINT_POINTS_TO_PIXELS | ( | __points__) | CCPointMake( (__points__).x * CC_CONTENT_SCALE_FACTOR(), (__points__).y * CC_CONTENT_SCALE_FACTOR()) |
Converts a rect in points to pixels.
| var CC_POINT_POINTS_TO_PIXELS | ( | var) | CCPointMake( (__points__).x * CC_CONTENT_SCALE_FACTOR(), (__points__).y * CC_CONTENT_SCALE_FACTOR()) |
Converts a rect in points to pixels.
| local CC_POINT_POINTS_TO_PIXELS | ( | local) | CCPointMake( (__points__).x * CC_CONTENT_SCALE_FACTOR(), (__points__).y * CC_CONTENT_SCALE_FACTOR()) |
Converts a rect in points to pixels.
| #define CC_PROFILER_DISPLAY_TIMERS | ( | ) | do {} while (0) |
Profiling Macros.
| var CC_PROFILER_DISPLAY_TIMERS | ( | ) | do {} while (0) |
Profiling Macros.
| local CC_PROFILER_DISPLAY_TIMERS | ( | ) | do {} while (0) |
Profiling Macros.
| #define CC_PROFILER_PURGE_ALL | ( | ) | do {} while (0) |
| var CC_PROFILER_PURGE_ALL | ( | ) | do {} while (0) |
| local CC_PROFILER_PURGE_ALL | ( | ) | do {} while (0) |
| #define CC_PROFILER_RESET | ( | __name__) | do {} while (0) |
| var CC_PROFILER_RESET | ( | var) | do {} while (0) |
| local CC_PROFILER_RESET | ( | local) | do {} while (0) |
| #define CC_PROFILER_RESET_CATEGORY | ( | __cat__, | |
| __name__ | |||
| ) | do {} while(0) |
| var CC_PROFILER_RESET_CATEGORY | ( | var, | |
| var | |||
| ) | do {} while(0) |
| local CC_PROFILER_RESET_CATEGORY | ( | local, | |
| local | |||
| ) | do {} while(0) |
| #define CC_PROFILER_RESET_INSTANCE | ( | __id__, | |
| __name__ | |||
| ) | do {} while(0) |
| var CC_PROFILER_RESET_INSTANCE | ( | var, | |
| var | |||
| ) | do {} while(0) |
| local CC_PROFILER_RESET_INSTANCE | ( | local, | |
| local | |||
| ) | do {} while(0) |
| #define CC_PROFILER_START | ( | __name__) | do {} while (0) |
| var CC_PROFILER_START | ( | var) | do {} while (0) |
| local CC_PROFILER_START | ( | local) | do {} while (0) |
| #define CC_PROFILER_START_CATEGORY | ( | __cat__, | |
| __name__ | |||
| ) | do {} while(0) |
| var CC_PROFILER_START_CATEGORY | ( | var, | |
| var | |||
| ) | do {} while(0) |
| local CC_PROFILER_START_CATEGORY | ( | local, | |
| local | |||
| ) | do {} while(0) |
| #define CC_PROFILER_START_INSTANCE | ( | __id__, | |
| __name__ | |||
| ) | do {} while(0) |
| var CC_PROFILER_START_INSTANCE | ( | var, | |
| var | |||
| ) | do {} while(0) |
| local CC_PROFILER_START_INSTANCE | ( | local, | |
| local | |||
| ) | do {} while(0) |
| #define CC_PROFILER_STOP | ( | __name__) | do {} while (0) |
| var CC_PROFILER_STOP | ( | var) | do {} while (0) |
| local CC_PROFILER_STOP | ( | local) | do {} while (0) |
| #define CC_PROFILER_STOP_CATEGORY | ( | __cat__, | |
| __name__ | |||
| ) | do {} while(0) |
| var CC_PROFILER_STOP_CATEGORY | ( | var, | |
| var | |||
| ) | do {} while(0) |
| local CC_PROFILER_STOP_CATEGORY | ( | local, | |
| local | |||
| ) | do {} while(0) |
| #define CC_PROFILER_STOP_INSTANCE | ( | __id__, | |
| __name__ | |||
| ) | do {} while(0) |
| var CC_PROFILER_STOP_INSTANCE | ( | var, | |
| var | |||
| ) | do {} while(0) |
| local CC_PROFILER_STOP_INSTANCE | ( | local, | |
| local | |||
| ) | do {} while(0) |
| #define CC_RADIANS_TO_DEGREES | ( | __ANGLE__) | ((__ANGLE__) * 57.29577951f) |
converts radians to degrees
| var CC_RADIANS_TO_DEGREES | ( | var) | ((__ANGLE__) * 57.29577951f) |
converts radians to degrees
| local CC_RADIANS_TO_DEGREES | ( | local) | ((__ANGLE__) * 57.29577951f) |
converts radians to degrees
| #define CC_RECT_PIXELS_TO_POINTS | ( | __rect_in_pixels__) |
RETINA DISPLAY ENABLED.
Converts a rect in pixels to points
| var CC_RECT_PIXELS_TO_POINTS | ( | var) |
RETINA DISPLAY ENABLED.
Converts a rect in pixels to points
| local CC_RECT_PIXELS_TO_POINTS | ( | local) |
RETINA DISPLAY ENABLED.
Converts a rect in pixels to points
| #define CC_RECT_POINTS_TO_PIXELS | ( | __rect_in_points_points__) |
Converts a rect in points to pixels.
| var CC_RECT_POINTS_TO_PIXELS | ( | var) |
Converts a rect in points to pixels.
| local CC_RECT_POINTS_TO_PIXELS | ( | local) |
Converts a rect in points to pixels.
| #define CC_SIZE_PIXELS_TO_POINTS | ( | __size_in_pixels__) | CCSizeMake( (__size_in_pixels__).width / CC_CONTENT_SCALE_FACTOR(), (__size_in_pixels__).height / CC_CONTENT_SCALE_FACTOR()) |
| var CC_SIZE_PIXELS_TO_POINTS | ( | var) | CCSizeMake( (__size_in_pixels__).width / CC_CONTENT_SCALE_FACTOR(), (__size_in_pixels__).height / CC_CONTENT_SCALE_FACTOR()) |
| local CC_SIZE_PIXELS_TO_POINTS | ( | local) | CCSizeMake( (__size_in_pixels__).width / CC_CONTENT_SCALE_FACTOR(), (__size_in_pixels__).height / CC_CONTENT_SCALE_FACTOR()) |
| #define CC_SIZE_POINTS_TO_PIXELS | ( | __size_in_points__) | CCSizeMake( (__size_in_points__).width * CC_CONTENT_SCALE_FACTOR(), (__size_in_points__).height * CC_CONTENT_SCALE_FACTOR()) |
| var CC_SIZE_POINTS_TO_PIXELS | ( | var) | CCSizeMake( (__size_in_points__).width * CC_CONTENT_SCALE_FACTOR(), (__size_in_points__).height * CC_CONTENT_SCALE_FACTOR()) |
| local CC_SIZE_POINTS_TO_PIXELS | ( | local) | CCSizeMake( (__size_in_points__).width * CC_CONTENT_SCALE_FACTOR(), (__size_in_points__).height * CC_CONTENT_SCALE_FACTOR()) |
| #define CC_SWAP | ( | x, | |
| y, | |||
| type | |||
| ) |
simple macro that swaps 2 variables
| var CC_SWAP | ( | var, | |
| var, | |||
| var | |||
| ) |
simple macro that swaps 2 variables
| #define CC_SWAP16 | ( | i) | ((i & 0x00ff) << 8 | (i &0xff00) >> 8) |
| var CC_SWAP16 | ( | var) | ((i & 0x00ff) << 8 | (i &0xff00) >> 8) |
| local CC_SWAP16 | ( | local) | ((i & 0x00ff) << 8 | (i &0xff00) >> 8) |
| #define CC_SWAP32 | ( | i) | ((i & 0x000000ff) << 24 | (i & 0x0000ff00) << 8 | (i & 0x00ff0000) >> 8 | (i & 0xff000000) >> 24) |
| var CC_SWAP32 | ( | var) | ((i & 0x000000ff) << 24 | (i & 0x0000ff00) << 8 | (i & 0x00ff0000) >> 8 | (i & 0xff000000) >> 24) |
| local CC_SWAP32 | ( | local) | ((i & 0x000000ff) << 24 | (i & 0x0000ff00) << 8 | (i & 0x00ff0000) >> 8 | (i & 0xff000000) >> 24) |
| #define CC_SWAP_INT16_BIG_TO_HOST | ( | i) | ((CC_HOST_IS_BIG_ENDIAN == true)? (i): CC_SWAP16(i) ) |
| var CC_SWAP_INT16_BIG_TO_HOST | ( | var) | ((CC_HOST_IS_BIG_ENDIAN == true)? (i): CC_SWAP16(i) ) |
| local CC_SWAP_INT16_BIG_TO_HOST | ( | local) | ((CC_HOST_IS_BIG_ENDIAN == true)? (i): CC_SWAP16(i) ) |
| #define CC_SWAP_INT16_LITTLE_TO_HOST |
( | i) | ((CC_HOST_IS_BIG_ENDIAN == true)? CC_SWAP16(i) : (i) ) |
| var CC_SWAP_INT16_LITTLE_TO_HOST | ( | var) | ((CC_HOST_IS_BIG_ENDIAN == true)? CC_SWAP16(i) : (i) ) |
| local CC_SWAP_INT16_LITTLE_TO_HOST | ( | local) | ((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) ) |
| var CC_SWAP_INT32_BIG_TO_HOST | ( | var) | ((CC_HOST_IS_BIG_ENDIAN == true)? (i) : CC_SWAP32(i) ) |
| local CC_SWAP_INT32_BIG_TO_HOST | ( | local) | ((CC_HOST_IS_BIG_ENDIAN == true)? (i) : CC_SWAP32(i) ) |
| #define CC_SWAP_INT32_LITTLE_TO_HOST |
( | i) | ((CC_HOST_IS_BIG_ENDIAN == true)? CC_SWAP32(i) : (i) ) |
| var CC_SWAP_INT32_LITTLE_TO_HOST | ( | var) | ((CC_HOST_IS_BIG_ENDIAN == true)? CC_SWAP32(i) : (i) ) |
| local CC_SWAP_INT32_LITTLE_TO_HOST | ( | local) | ((CC_HOST_IS_BIG_ENDIAN == true)? CC_SWAP32(i) : (i) ) |
| #define CCAnimationFrameDisplayedNotification "CCAnimationFrameDisplayedNotification" |
Notifications.
Notification name when a CCSpriteFrame is displayed
| var CCAnimationFrameDisplayedNotification "CCAnimationFrameDisplayedNotification" |
Notifications.
Notification name when a CCSpriteFrame is displayed
| local CCAnimationFrameDisplayedNotification "CCAnimationFrameDisplayedNotification" |
Notifications.
Notification name when a CCSpriteFrame is displayed
| #define CCAssert | ( | cond, | |
| msg | |||
| ) | ((void)(cond)) |
| #define CCRANDOM_0_1 | ( | ) | ((float)rand()/RAND_MAX) |
returns a random float between 0 and 1
| #define CCRANDOM_MINUS1_1 | ( | ) | ((2.0f*((float)rand()/RAND_MAX))-1.0f) |
returns a random float between -1 and 1
| var CCRANDOM_MINUS1_1 | ( | ) | ((2.0f*((float)rand()/RAND_MAX))-1.0f) |
returns a random float between -1 and 1
| local CCRANDOM_MINUS1_1 | ( | ) | ((2.0f*((float)rand()/RAND_MAX))-1.0f) |
returns a random float between -1 and 1
| #define CHECK_GL_ERROR_DEBUG | ( | ) |
| var CHECK_GL_ERROR_DEBUG | ( | ) |
| local CHECK_GL_ERROR_DEBUG | ( | ) |
| #define DISALLOW_COPY_AND_ASSIGN | ( | TypeName) |
| var DISALLOW_COPY_AND_ASSIGN | ( | var) |
| local DISALLOW_COPY_AND_ASSIGN | ( | local) |
| #define FLT_EPSILON 1.192092896e-07F |
| var FLT_EPSILON 1.192092896e-07F |
| local FLT_EPSILON 1.192092896e-07F |
| #define kCCRepeatForever (UINT_MAX -1) |
| unsigned int CC_DLL g_uNumberOfDraws |
| var g_uNumberOfDraws |
| local g_uNumberOfDraws |