cocos2d中CCSprite的使用总结

来源:互联网 发布:2017网络诈骗事件 编辑:程序博客网 时间:2024/05/22 13:25

精灵是游戏中十分重要的组成部分,随处可见,如:游戏背景、NPC、人物、道具等。在cocos2d-x引擎中,只要是用图片展示的,基本上需要使用精灵类。
1. 首先来了解一下跟精灵相关的几个类:
(1) CCTexture2D
可以把它看成一个纹理,它是cocos2d-x渲染图形的重要参数,用来贴图,因为cocos2d-x使用opengl es绘制2d图形的,它的尺寸是2的n次方。一般通过以下方式获得:

1
CCTexture2D* cache = CCTextureCache::sharedTextureCache()->addImage("hero.png");

(2) CCSprite
这个就是精灵类,是CCNode的子类,它的内部封装了CCTexture2D(纹理),可以通过下面几种方式初始化精灵对象。

1
2
3
4
5
6
7
8
9
10
11
12
//CCTexture2D表示精灵包含的图片,范围是整张图片
staticCCSprite* spriteWithTexture(CCTexture2D *pTexture);
//CCRect表示图片的指定范围,即从图片的指定矩形区域裁剪
staticCCSprite* spriteWithTexture(CCTexture2D *pTexture, constCCRect& rect);
//CCSpriteFrame表示精灵的某一帧,大多数情况下精灵本身的图片有多帧。它内部封装了CCTexture2D和CCRect,可以从一个大图片取出一部分作为一帧。
staticCCSprite* spriteWithSpriteFrame(CCSpriteFrame *pSpriteFrame);
//pszSpriteFrameName表示帧的名字,根据帧名从内存中取出CCSpriteFrame
staticCCSprite* spriteWithSpriteFrameName(constchar *pszSpriteFrameName);
//pszFileName表示本地图片文件名
staticCCSprite* spriteWithFile(constchar *pszFileName);
staticCCSprite* spriteWithFile(constchar *pszFileName, constCCRect& rect);
staticCCSprite* spriteWithBatchNode(CCSpriteBatchNode *batchNode, constCCRect& rect);

下面是两种比较常用的初始化精灵的方式:

1
2
3
4
CCSprite* sprite = CCSprite::spriteWithFile("hero.png");
/** 或者 **/
CCTexture2D* cache = CCTextureCache::sharedTextureCache()->addImage("hero.png");
CCSprite* sprite = CCSprite::spriteWithTexture(cache);

(3) CCTextureCache
它相当于CCTexture2D的容器,是内存池,用来缓存CCTexture2D对象的,它内部有一个字典CCMutableDictionary m_pTextures,key为图片的名称,值是CCTexture2D。当调用它的addImage函数添加图片时,会先根据图片名称去内存中查找是否已存在,是则直接取出返回。下面是addImage部分源码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CCTexture2D * CCTextureCache::addImage(constchar * path)
{
    CCTexture2D * texture = NULL;
    std::string pathKey = path;
    CCFileUtils::ccRemoveHDSuffixFromFile(pathKey);
 
    pathKey = CCFileUtils::fullPathFromRelativePath(pathKey.c_str());
    texture = m_pTextures->objectForKey(pathKey);
 
    std::string fullpath = pathKey; // (CCFileUtils::fullPathFromRelativePath(path));
    if( ! texture )
    {
        /** .... */
    }
 
    returntexture;
}

如果需要一次加载多张图片的时候,可以先把图片加载到CCTextureCache中,这样使用图片的时候速度就会很快了。
(4) CCSpriteBatchNode
它是批处理绘制精灵,主要是用来提高精灵的绘制效率的,需要绘制的精灵数量越多,效果越明显。因为cocos2d-x采用opengl es绘制图片的,opengl es绘制每个精灵都会执行:open-draw-close流程。而CCSpriteBatchNode是把多个精灵放到一个纹理上,绘制的时候直接统一绘制该texture,不需要单独绘制子节点,这样opengl es绘制的时候变成了:open-draw()-draw()…-draw()-close(),节省了多次open-close的时间。CCSpriteBatchNode内部封装了一个CCTextureAtlas(纹理图集,它内部封装了一个CCTexture2D)和一个CCArray(用来存储CCSpriteBatchNode的子节点:单个精灵)。注意:因为绘制的时候只open-close一次,所以CCSpriteBatchNode对象的所有子节点都必须和它是用同一个texture(同一张图片),类似下面这样的图片,4个贝壳都在同一纹理上:


在addChild的时候会检查子节点纹理的名称跟CCSpriteBatchNode的是不是一样,如果不一样就会出错,源码:

1
2
3
4
5
6
7
8
voidCCSpriteBatchNode::addChild(CCNode *child, intzOrder, inttag)
    {
        /** ... */
        // check CCSprite is using the same texture id
        CCAssert(pSprite->getTexture()->getName() == m_pobTextureAtlas->getTexture()->getName(), "");
 
        /** ... */
    }

下面是使用CCSpriteBatchNode的使用代码示例:

1
2
3
4
5
6
7
8
9
10
11
12
CCSpriteBatchNode* BatchNode1 = CCSpriteBatchNode::batchNodeWithFile("Images/grossini_dance_atlas.png", 50);
   addChild(BatchNode1, 0, kTagSpriteBatchNode);
 
CCSpriteBatchNode* BatchNode = (CCSpriteBatchNode*) getChildByTag( kTagSpriteBatchNode );
   intidx = CCRANDOM_0_1() * 1400 / 100;
   intx = (idx%5) * 85;
   inty = (idx/5) * 121;
 
   CCSprite* sprite = CCSprite::spriteWithTexture(BatchNode->getTexture(), CCRectMake(x,y,85,121));
   BatchNode->addChild(sprite);
 
   sprite->setPosition( ccp( p.x, p.y) );

(5) CCSpriteFrameCache
它是管理CCSpriteFrame的内存池,跟CCTextureCache功能一样,不过跟CCTextureCache不同的是,如果内存池中不存在要查找的帧,它会提示找不到,而不会去本地加载图片。它的内部封装了一个字典:CCDictionary *m_pSpriteFrames,key为帧的名称。CCSpriteFrameCache一般用来处理plist文件(这个文件指定了每个独立的精灵在这张“大图”里面的位置和大小),该文件对应一张包含多个精灵的大图,plist文件可以使用TexturePacker制作。如下图所示:

下面是使用CCSpriteFrameCache的使用代码示例:

1
2
3
4
CCSpriteFrameCache* cache = CCSpriteFrameCache::sharedSpriteFrameCache();
cache->addSpriteFramesWithFile("animations/grossini.plist","animations/grossini.png");
m_pSprite1 = CCSprite::spriteWithSpriteFrameName("grossini_dance_01.png");
m_pSprite1->setPosition( ccp( s.width/2-80, s.height/2) );

只要plist文件跟对应的png图片在同一目录下,且名字相同,则addSpriteFramesWithFile(“animations/grossini.plist”, “animations/grossini.png”)可以改成addSpriteFramesWithFile(“animations/grossini.plist”);

2. CCSpriteBatchNode和CCSpriteFrameCache结合使用
必须保证CCSpriteFrameCache和CCSpriteBatchNode加载的是同一纹理贴图。

1
2
3
4
5
6
7
8
CCSpriteFrameCache::sharedSpriteFrameCache()->addSpriteFramesWithFile("animations/ghosts.plist","animations/ghosts.png");
 
   CCSpriteBatchNode *aParent = CCSpriteBatchNode::batchNodeWithFile("animations/ghosts.png");
   addChild(aParent, 0, kTagSprite1);
 
   CCSprite *pFather = CCSprite::spriteWithSpriteFrameName("father.gif");
   pFather->setPosition(ccp( s.width/2, s.height/2));
   aParent->addChild(pFather, 0, kTagSprite2);


一、精灵创建及初始化

1、从图片文件创建:

  1. CCSprite *sprite = [CCSprite spriteWithFile:@"Icon.png"];  

2、从帧缓存创建:

  1. [[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"MineSweeping.plist"];  
  2. CCSprite *sprite = [CCSprite spriteWithSpriteFrameName:@"Icon.png"];  

3、初始化及自定义大小

  1. CCSprite *sprite = [CCSprite spriteWithFile:@"Icon.png" rect:CGRectMake(x,y,w,h)];  

备注:默认锚点ccp(0.5,0.5),默认位置 ccp(0,0),contentSize为精灵图片尺寸

二、精灵常用属性及方法:

  1. [self addChild:sprite]; //添加入层中,self为CCLayer     
  2. sprite.scale=2;//放大2倍,参数为比例,1保持不变,0.5代表50%,2代表200%     
  3. sprite.rotation=90;//旋转90度      
  4. sprite.opacity=255;//设置透明度为完全不透明(范围0~255)   
  5. sprite.anchorPoint=ccp(0,0);//设置锚点为左下角,默认为ccp(0.5,0.5)中心点   
  6. sprite.position=ccp(100,100);//设置精灵左下角坐标是x=100,y=100,本地GL坐标系     
  7. [sprite setFlipX:YES];//X轴镜像反转      
  8. [sprite setFlipY:YES];//Y轴镜像反转    
  9. [sprite setVisible:NO];//设置隐藏,默认为可见    
  10. [sprite setColor:ccc3(255, 0, 0)];//设置颜色为红色,三原色   
  11. [sprite zOrder]; //精灵层叠次序即Z轴(小的在下面,大的在上面),注意这是只读属性,不能通过sprite.zOrder=2实现Z轴重设     
  12. [sprite setTextureRect:CGRectMake(10, 10, 30, 30)];//起始点坐标(做上角坐标系),宽高    

三、添加其他精灵

CCSprite继承自CCNode,所以你可以对它进行addChild的操作:

  1. CCSprite *s1 = [CCSprite spriteWithFile:@"Icon.png"];  
  2. CCSprite *s2 = [CCSprite spriteWithFile:@"Icon.png"];  
  3. [s1 addChild:s2];  

四、精灵Z轴重设

  1. [self reorderChild:sprite z:10];//self为CCLayer  

五、精灵换图

1、直接利用新建贴图进行更换

  1. //更换贴图      
  2. CCTexture2D * texture =[[CCTextureCache sharedTextureCache] addImage: @"Default.png"];//新建贴图      
  3. [sprite setTexture:texture];   

2、利用帧替换

  1. //加载帧缓存    
  2. [[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"MineSweeping.plist"];      
  3. //从帧缓存中取出Default.png   
  4. CCSpriteFrame* frame2 = [[CCSpriteFrameCache sharedSpriteFrameCache] spriteFrameByName:@"Default.png"];     
  5. [sprite setDisplayFrame:frame2];