#ifndef __CCMACROS_H__

#define __CCMACROS_H__

#ifndef _USE_MATH_DEFINES

#define _USE_MATH_DEFINES

#endif

#include "platform/CCCommon.h"

#include "CCStdC.h"

#ifndef CCAssert

#if COCOS2D_DEBUG > 0

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::CCLog("Assert failed: %s", msg);           \

CC_ASSERT(cond);                                      \

} \

} while (0)

#else

#define CCAssert(cond, msg)

#endif

#endif  // CCAssert

#include "ccConfig.h"

/** @def CC_SWAP

simple macro that swaps 2 variables

*/

#define CC_SWAP(x, y, type)    \

{    type temp = (x);        \

x = y; y = temp;        \

}

/** @def CCRANDOM_MINUS1_1

returns a random float between -1 and 1

*/

#define CCRANDOM_MINUS1_1() ((2.0f*((float)rand()/RAND_MAX))-1.0f)

/** @def CCRANDOM_0_1

returns a random float between 0 and 1

*/

#define CCRANDOM_0_1() ((float)rand()/RAND_MAX)

/** @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

#define kCCRepeatForever (UINT_MAX -1)

/** @def CC_BLEND_SRC

default gl blend src function. Compatible with premultiplied alpha images.

*/

#define CC_BLEND_SRC GL_ONE

#define CC_BLEND_DST GL_ONE_MINUS_SRC_ALPHA

/** @def CC_NODE_DRAW_SETUP

Helpful macro that setups the GL server state, the correct GL program and sets the Model View Projection matrix

@since v2.0

*/

#define CC_NODE_DRAW_SETUP() \

do { \

ccGLEnable(m_eGLServerState); \

CCAssert(getShaderProgram(), "No shader program set for this node"); \

{ \

getShaderProgram()->use(); \

getShaderProgram()->setUniformsForBuiltins(); \

} \

} while(0)

/** @def CC_DIRECTOR_END

Stops and removes the director from memory.

Removes the CCGLView from its parent

@since v0.99.4

*/

#define CC_DIRECTOR_END()                                        \

do {                                                            \

CCDirector *__director = CCDirector::sharedDirector();        \

__director->end();                                            \

} while(0)

/** @def CC_CONTENT_SCALE_FACTOR

On Mac it returns 1;

On iPhone it returns 2 if RetinaDisplay is On. Otherwise it returns 1

*/

#define CC_CONTENT_SCALE_FACTOR() CCDirector::sharedDirector()->getContentScaleFactor()

/****************************/

/** RETINA DISPLAY ENABLED **/

/****************************/

/** @def CC_RECT_PIXELS_TO_POINTS

Converts a rect in pixels to points

*/

#define CC_RECT_PIXELS_TO_POINTS(__rect_in_pixels__)                                                                        \

CCRectMake( (__rect_in_pixels__).origin.x / CC_CONTENT_SCALE_FACTOR(), (__rect_in_pixels__).origin.y / CC_CONTENT_SCALE_FACTOR(),    \

(__rect_in_pixels__).size.width / CC_CONTENT_SCALE_FACTOR(), (__rect_in_pixels__).size.height / CC_CONTENT_SCALE_FACTOR() )

/** @def CC_RECT_POINTS_TO_PIXELS

Converts a rect in points to pixels

*/

#define CC_RECT_POINTS_TO_PIXELS(__rect_in_points_points__)                                                                        \

CCRectMake( (__rect_in_points_points__).origin.x * CC_CONTENT_SCALE_FACTOR(), (__rect_in_points_points__).origin.y * CC_CONTENT_SCALE_FACTOR(), 
  \

(__rect_in_points_points__).size.width * CC_CONTENT_SCALE_FACTOR(), (__rect_in_points_points__).size.height * CC_CONTENT_SCALE_FACTOR() )

/** @def CC_POINT_PIXELS_TO_POINTS

Converts a rect in pixels to points

*/

#define CC_POINT_PIXELS_TO_POINTS(__pixels__)                                                                        \

CCPointMake( (__pixels__).x / CC_CONTENT_SCALE_FACTOR(), (__pixels__).y / CC_CONTENT_SCALE_FACTOR())

/** @def CC_POINT_POINTS_TO_PIXELS

Converts a rect in points to pixels

*/

#define CC_POINT_POINTS_TO_PIXELS(__points__)                                                                        \

CCPointMake( (__points__).x * CC_CONTENT_SCALE_FACTOR(), (__points__).y * CC_CONTENT_SCALE_FACTOR())

/** @def CC_POINT_PIXELS_TO_POINTS

Converts a rect in pixels to points

*/

#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())

/** @def CC_POINT_POINTS_TO_PIXELS

Converts a rect in points to pixels

*/

#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())

#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&)

/**

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) )

/**********************/

/** Profiling Macros **/

/**********************/

#if CC_ENABLE_PROFILERS

#define CC_PROFILER_DISPLAY_TIMERS() CCProfiler::sharedProfiler()->displayTimers()

#define CC_PROFILER_PURGE_ALL() CCProfiler::sharedProfiler()->releaseAllTimers()

#define CC_PROFILER_START(__name__) CCProfilingBeginTimingBlock(__name__)

#define CC_PROFILER_STOP(__name__) CCProfilingEndTimingBlock(__name__)

#define CC_PROFILER_RESET(__name__) CCProfilingResetTimingBlock(__name__)

#define CC_PROFILER_START_CATEGORY(__cat__, __name__) do{ if(__cat__) CCProfilingBeginTimingBlock(__name__); } while(0)

#define CC_PROFILER_STOP_CATEGORY(__cat__, __name__) do{ if(__cat__) CCProfilingEndTimingBlock(__name__); } while(0)

#define CC_PROFILER_RESET_CATEGORY(__cat__, __name__) do{ if(__cat__) CCProfilingResetTimingBlock(__name__); } while(0)

#define CC_PROFILER_START_INSTANCE(__id__, __name__) do{ CCProfilingBeginTimingBlock( CCString::createWithFormat("%08X - %s", __id__, __name__)->getCString()
); } while(0)

#define CC_PROFILER_STOP_INSTANCE(__id__, __name__) do{ CCProfilingEndTimingBlock(    CCString::createWithFormat("%08X - %s", __id__, __name__)->getCString()
); } while(0)

#define CC_PROFILER_RESET_INSTANCE(__id__, __name__) do{ CCProfilingResetTimingBlock( CCString::createWithFormat("%08X - %s", __id__, __name__)->getCString()
); } while(0)

#else

#define CC_PROFILER_DISPLAY_TIMERS() do {} while (0)

#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)

#endif

#if !defined(COCOS2D_DEBUG) || COCOS2D_DEBUG == 0

#define CHECK_GL_ERROR_DEBUG()

#else

#define CHECK_GL_ERROR_DEBUG() \

do { \

GLenum __error = glGetError(); \

if(__error) { \

CCLog("OpenGL error 0x%04X in %s %s %d\n", __error, __FILE__, __FUNCTION__, __LINE__); \

} \

} while (false)

#endif

/** @def CC_INCREMENT_GL_DRAWS_BY_ONE

Increments the GL Draws counts by one.

The number of calls per frame are displayed on the screen when the CCDirector's stats are enabled.

*/

extern unsigned int CC_DLL g_uNumberOfDraws;

#define CC_INCREMENT_GL_DRAWS(__n__) g_uNumberOfDraws += __n__

/*******************/

/** Notifications **/

/*******************/

/** @def CCAnimationFrameDisplayedNotification

Notification name when a CCSpriteFrame is displayed

*/

#define CCAnimationFrameDisplayedNotification "CCAnimationFrameDisplayedNotification"

#endif // __CCMACROS_H__


ccMacros的更多相关文章

  1. Cocos2d-X3.0 刨根问底(五)----- Node类及显示对象列表源码分析

    上一章 我们分析了Cocos2d-x的内存管理,主要解剖了 Ref.PoolManager.AutoreleasePool这三个类,了解了对象是如何自动释放的机制.之前有一个类 Node经常出现在各种 ...

  2. cocos2d-x 2.0 序列帧动画 深入分析

    转自:http://blog.csdn.net/honghaier/article/details/8222401 序列帧动画主要有几个类: CCSpriteFrame:精灵帧信息,序列帧动画是依靠多 ...

  3. cocos2d-x 纹理源码分析

    转自:http://blog.csdn.net/honghaier/article/details/8068895 当一张图片被加载到内存后,它是以纹理的形式存在的.纹理是什么东西呢?纹理就是一块内存 ...

  4. cocos2d-x 的CCObject与autorelease 之深入分析

    转自: http://blog.csdn.net/honghaier/article/details/8160519 CCObject.h: #ifndef __CCOBJECT_H__ #defin ...

  5. cocos2d-x 2.0 拖尾效果分析

    转自:http://game.dapps.net/gamedev/game-engine/7281.html 在Cocos2d-x中,拖尾效果有一个专门的类CCMotionStreak来实现.下面我们 ...

  6. cocos2d-x学习笔记

    转自:http://blog.csdn.net/we000636/article/details/8263503 接受触屏事件的优先级是值越小,响应触屏事件的优先级越高 Z值越大,越外面 JNI:允许 ...

  7. [置顶] COcos2d-X 中文API

    本文来自http://blog.csdn.net/runaying ,引用必须注明出处! COcos2d-X 中文API 温馨提醒:使用二维码扫描软件,就可以在手机上访问我的博客啦!另外大家可以访问另 ...

  8. cocos2d-x-3.1 经常使用宏 (coco2d-x 学习笔记五)

    在代码中使用这些宏,能够降低敲键盘的次数,从而提高编写效率. 与节点属性(property)相关的 CC_PROPERTY_READONLY CC_PROPERTY_READONLY_PASS_BY_ ...

  9. cocos 自动内存管理分析

    #include "CCAutoreleasePool.h" #include "ccMacros.h" NS_CC_BEGIN static CCPoolMa ...

随机推荐

  1. JavaEE学习之设计模式

    转自:http://mp.weixin.qq.com/s?__biz=MjM5OTMxMzA4NQ==&mid=221913387&idx=2&sn=d5d006300722f ...

  2. Android 应用接入广点通统计API 方案

    官方给你参考文档,很扯淡,是c++和python脚本: 安卓java代码接入如下: package com.edaixi.util; import java.io.UnsupportedEncodin ...

  3. 电脑硬件扫盲--CPU 显卡

    CPU: 主要2个厂商 Inter:core(酷睿) > pentinum(奔腾) > celeron(赛扬) AMD:athlon(速龙) > semporn(闪龙) 主频(GHz ...

  4. C#进程管理程序实现

    运行效果图 部分代码如下: #region 打开应用程序按钮事件处理程序 /// <summary> /// 打开应用程序按钮事件处理程序 /// </summary> /// ...

  5. 如何实现win7和VirtualBox中Ubuntu系统共享文件夹

    设备: 1.win7 旗舰版    2.VirtualBox虚拟机    3.Ubuntu12.04 以前在VM虚拟机中可以直接进行复制就可以将win7系统的文件复制到虚拟机中,然后现在安装了Virt ...

  6. ThinkPHP 3 的输出

    一.ThinkPHP 3 的输出 (重点) a.通过 echo 等PHP原生的输出方式在页面中输出 b.通过display方法输出 想分配变量可以使用assign方法 c.修改左右定界符 休要修改配置 ...

  7. Linux常用的系统监控shell脚本

    http://www.linuxqd.com下面是我常用的几个Linux系统监控的脚本,大家可以根据自己的情况在进行修改,希望能给大家一点帮助.1.查看主机网卡流量 #!/bin/bash #netw ...

  8. move.js

    function startMove(obj,json,fn){ var flag=true;//标志所有运动是否到达目标值 clearInterval(obj.timer); obj.timer=s ...

  9. 为客户打造RAC-DG一些遇到的问题汇总

    昨日有建立一个客户RAC-DG物理备用数据库,这里的一般过程中再次列举一下,为了不涉及泄露隐私.的主要参数已被替换名称.详细路径也不一致.因为环境的客户端不与本机连接的网络同意,当故障不能削减各种报警 ...

  10. Android 手势锁的实现 为了让自己的应用程序的安全,现在

    转载请注明出处:http://blog.csdn.net/lmj623565791/article/details/36236113 今天偶遇以github上gesturelock关于手势锁的一个样例 ...