axmol/cocos2dx/sprite_nodes/CCSpriteBatchNode.cpp

780 lines
21 KiB
C++
Raw Normal View History

/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2009-2010 Ricardo Quesada
Copyright (c) 2009 Matt Oswald
Copyright (c) 2011 Zynga Inc.
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.
****************************************************************************/
#include "CCSpriteBatchNode.h"
#include "ccConfig.h"
#include "CCSprite.h"
#include "effects/CCGrid.h"
2012-11-16 14:23:14 +08:00
#include "draw_nodes/CCDrawingPrimitives.h"
#include "textures/CCTextureCache.h"
#include "shaders/CCShaderCache.h"
#include "shaders/CCGLProgram.h"
#include "shaders/ccGLStateCache.h"
#include "CCDirector.h"
#include "support/TransformUtils.h"
#include "support/CCProfiling.h"
// external
#include "kazmath/GL/matrix.h"
NS_CC_BEGIN
/*
* creation with Texture2D
*/
SpriteBatchNode* SpriteBatchNode::createWithTexture(Texture2D* tex, unsigned int capacity/* = kDefaultSpriteBatchCapacity*/)
{
SpriteBatchNode *batchNode = new SpriteBatchNode();
batchNode->initWithTexture(tex, capacity);
batchNode->autorelease();
return batchNode;
}
/*
* creation with File Image
*/
SpriteBatchNode* SpriteBatchNode::create(const char *fileImage, unsigned int capacity/* = kDefaultSpriteBatchCapacity*/)
{
SpriteBatchNode *batchNode = new SpriteBatchNode();
batchNode->initWithFile(fileImage, capacity);
batchNode->autorelease();
return batchNode;
}
/*
* init with Texture2D
*/
bool SpriteBatchNode::initWithTexture(Texture2D *tex, unsigned int capacity)
{
_blendFunc.src = CC_BLEND_SRC;
_blendFunc.dst = CC_BLEND_DST;
_textureAtlas = new TextureAtlas();
if (0 == capacity)
{
capacity = kDefaultSpriteBatchCapacity;
}
_textureAtlas->initWithTexture(tex, capacity);
updateBlendFunc();
// no lazy alloc in this node
_children = new Array();
_children->initWithCapacity(capacity);
_descendants = new Array();
_descendants->initWithCapacity(capacity);
setShaderProgram(ShaderCache::getInstance()->programForKey(kShader_PositionTextureColor));
return true;
}
bool SpriteBatchNode::init()
{
Texture2D * texture = new Texture2D();
texture->autorelease();
return this->initWithTexture(texture, 0);
}
/*
* init with FileImage
*/
bool SpriteBatchNode::initWithFile(const char* fileImage, unsigned int capacity)
{
Texture2D *pTexture2D = TextureCache::getInstance()->addImage(fileImage);
return initWithTexture(pTexture2D, capacity);
}
SpriteBatchNode::SpriteBatchNode()
: _textureAtlas(NULL)
, _descendants(NULL)
{
}
SpriteBatchNode::~SpriteBatchNode()
{
CC_SAFE_RELEASE(_textureAtlas);
CC_SAFE_RELEASE(_descendants);
}
// override visit
// don't call visit on it's children
void SpriteBatchNode::visit(void)
{
CC_PROFILER_START_CATEGORY(kProfilerCategoryBatchSprite, "CCSpriteBatchNode - visit");
// CAREFUL:
// This visit is almost identical to CocosNode#visit
// with the exception that it doesn't call visit on it's children
//
// The alternative is to have a void Sprite#visit, but
// although this is less maintainable, is faster
//
if (! _visible)
{
return;
}
kmGLPushMatrix();
if (_grid && _grid->isActive())
{
_grid->beforeDraw();
transformAncestors();
}
sortAllChildren();
transform();
draw();
if (_grid && _grid->isActive())
{
_grid->afterDraw(this);
}
kmGLPopMatrix();
setOrderOfArrival(0);
CC_PROFILER_STOP_CATEGORY(kProfilerCategoryBatchSprite, "CCSpriteBatchNode - visit");
}
void SpriteBatchNode::addChild(Node *child, int zOrder, int tag)
{
CCAssert(child != NULL, "child should not be null");
CCAssert(dynamic_cast<Sprite*>(child) != NULL, "CCSpriteBatchNode only supports Sprites as children");
Sprite *pSprite = (Sprite*)(child);
// check Sprite is using the same texture id
CCAssert(pSprite->getTexture()->getName() == _textureAtlas->getTexture()->getName(), "CCSprite is not using the same texture id");
Node::addChild(child, zOrder, tag);
appendChild(pSprite);
}
void SpriteBatchNode::addChild(Node *child)
{
Node::addChild(child);
}
void SpriteBatchNode::addChild(Node *child, int zOrder)
{
Node::addChild(child, zOrder);
}
// override reorderChild
void SpriteBatchNode::reorderChild(Node *child, int zOrder)
{
CCAssert(child != NULL, "the child should not be null");
CCAssert(_children->containsObject(child), "Child doesn't belong to Sprite");
if (zOrder == child->getZOrder())
{
return;
}
//set the z-order and sort later
Node::reorderChild(child, zOrder);
}
// override remove child
void SpriteBatchNode::removeChild(Node *child, bool cleanup)
{
Sprite *pSprite = (Sprite*)(child);
// explicit null handling
if (pSprite == NULL)
{
return;
}
CCAssert(_children->containsObject(pSprite), "sprite batch node should contain the child");
// cleanup before removing
removeSpriteFromAtlas(pSprite);
Node::removeChild(pSprite, cleanup);
}
void SpriteBatchNode::removeChildAtIndex(unsigned int uIndex, bool bDoCleanup)
{
removeChild((Sprite*)(_children->objectAtIndex(uIndex)), bDoCleanup);
}
void SpriteBatchNode::removeAllChildrenWithCleanup(bool bCleanup)
{
// Invalidate atlas index. issue #569
// useSelfRender should be performed on all descendants. issue #1216
arrayMakeObjectsPerformSelectorWithObject(_descendants, setBatchNode, NULL, Sprite*);
Node::removeAllChildrenWithCleanup(bCleanup);
_descendants->removeAllObjects();
_textureAtlas->removeAllQuads();
}
//override sortAllChildren
void SpriteBatchNode::sortAllChildren()
{
if (_reorderChildDirty)
{
int i = 0,j = 0,length = _children->data->num;
Node ** x = (Node**)_children->data->arr;
Node *tempItem = NULL;
//insertion sort
for(i=1; i<length; i++)
{
tempItem = x[i];
j = i-1;
//continue moving element downwards while zOrder is smaller or when zOrder is the same but orderOfArrival is smaller
while(j>=0 && ( tempItem->getZOrder() < x[j]->getZOrder() || ( tempItem->getZOrder() == x[j]->getZOrder() && tempItem->getOrderOfArrival() < x[j]->getOrderOfArrival() ) ) )
{
x[j+1] = x[j];
j--;
}
x[j+1] = tempItem;
}
//sorted now check all children
if (_children->count() > 0)
{
//first sort all children recursively based on zOrder
arrayMakeObjectsPerformSelector(_children, sortAllChildren, Sprite*);
int index=0;
Object* pObj = NULL;
//fast dispatch, give every child a new atlasIndex based on their relative zOrder (keep parent -> child relations intact)
// and at the same time reorder descendants and the quads to the right index
CCARRAY_FOREACH(_children, pObj)
{
Sprite* pChild = static_cast<Sprite*>(pObj);
updateAtlasIndex(pChild, &index);
}
}
_reorderChildDirty=false;
}
}
void SpriteBatchNode::updateAtlasIndex(Sprite* sprite, int* curIndex)
{
unsigned int count = 0;
Array* pArray = sprite->getChildren();
if (pArray != NULL)
{
count = pArray->count();
}
int oldIndex = 0;
if( count == 0 )
{
oldIndex = sprite->getAtlasIndex();
sprite->setAtlasIndex(*curIndex);
sprite->setOrderOfArrival(0);
if (oldIndex != *curIndex){
swap(oldIndex, *curIndex);
}
(*curIndex)++;
}
else
{
bool needNewIndex=true;
if (static_cast<Sprite*>(pArray->data->arr[0])->getZOrder() >= 0)
{
//all children are in front of the parent
oldIndex = sprite->getAtlasIndex();
sprite->setAtlasIndex(*curIndex);
sprite->setOrderOfArrival(0);
if (oldIndex != *curIndex)
{
swap(oldIndex, *curIndex);
}
(*curIndex)++;
needNewIndex = false;
}
Object* pObj = NULL;
CCARRAY_FOREACH(pArray,pObj)
{
Sprite* child = static_cast<Sprite*>(pObj);
if (needNewIndex && child->getZOrder() >= 0)
{
oldIndex = sprite->getAtlasIndex();
sprite->setAtlasIndex(*curIndex);
sprite->setOrderOfArrival(0);
if (oldIndex != *curIndex) {
this->swap(oldIndex, *curIndex);
}
(*curIndex)++;
needNewIndex = false;
}
updateAtlasIndex(child, curIndex);
}
if (needNewIndex)
{//all children have a zOrder < 0)
oldIndex=sprite->getAtlasIndex();
sprite->setAtlasIndex(*curIndex);
sprite->setOrderOfArrival(0);
if (oldIndex!=*curIndex) {
swap(oldIndex, *curIndex);
}
(*curIndex)++;
}
}
}
void SpriteBatchNode::swap(int oldIndex, int newIndex)
{
Object** x = _descendants->data->arr;
V3F_C4B_T2F_Quad* quads = _textureAtlas->getQuads();
Object* tempItem = x[oldIndex];
V3F_C4B_T2F_Quad tempItemQuad=quads[oldIndex];
//update the index of other swapped item
((Sprite*) x[newIndex])->setAtlasIndex(oldIndex);
x[oldIndex]=x[newIndex];
quads[oldIndex]=quads[newIndex];
x[newIndex]=tempItem;
quads[newIndex]=tempItemQuad;
}
void SpriteBatchNode::reorderBatch(bool reorder)
{
_reorderChildDirty=reorder;
}
// draw
void SpriteBatchNode::draw(void)
{
CC_PROFILER_START("CCSpriteBatchNode - draw");
// Optimization: Fast Dispatch
if( _textureAtlas->getTotalQuads() == 0 )
{
return;
}
CC_NODE_DRAW_SETUP();
arrayMakeObjectsPerformSelector(_children, updateTransform, Sprite*);
ccGLBlendFunc( _blendFunc.src, _blendFunc.dst );
_textureAtlas->drawQuads();
CC_PROFILER_STOP("CCSpriteBatchNode - draw");
}
void SpriteBatchNode::increaseAtlasCapacity(void)
{
// if we're going beyond the current TextureAtlas's capacity,
// all the previously initialized sprites will need to redo their texture coords
// this is likely computationally expensive
unsigned int quantity = (_textureAtlas->getCapacity() + 1) * 4 / 3;
CCLOG("cocos2d: SpriteBatchNode: resizing TextureAtlas capacity from [%lu] to [%lu].",
(long)_textureAtlas->getCapacity(),
(long)quantity);
if (! _textureAtlas->resizeCapacity(quantity))
{
// serious problems
CCLOGWARN("cocos2d: WARNING: Not enough memory to resize the atlas");
CCAssert(false, "Not enough memory to resize the atlas");
}
}
unsigned int SpriteBatchNode::rebuildIndexInOrder(Sprite *pobParent, unsigned int uIndex)
{
Array *pChildren = pobParent->getChildren();
if (pChildren && pChildren->count() > 0)
{
Object* pObject = NULL;
CCARRAY_FOREACH(pChildren, pObject)
{
Sprite* pChild = static_cast<Sprite*>(pObject);
if (pChild && (pChild->getZOrder() < 0))
{
uIndex = rebuildIndexInOrder(pChild, uIndex);
}
}
}
// ignore self (batch node)
if (! pobParent->isEqual(this))
{
pobParent->setAtlasIndex(uIndex);
uIndex++;
}
if (pChildren && pChildren->count() > 0)
{
Object* pObject = NULL;
CCARRAY_FOREACH(pChildren, pObject)
{
Sprite* pChild = static_cast<Sprite*>(pObject);
if (pChild && (pChild->getZOrder() >= 0))
{
uIndex = rebuildIndexInOrder(pChild, uIndex);
}
}
}
return uIndex;
}
unsigned int SpriteBatchNode::highestAtlasIndexInChild(Sprite *pSprite)
{
Array *pChildren = pSprite->getChildren();
if (! pChildren || pChildren->count() == 0)
{
return pSprite->getAtlasIndex();
}
else
{
return highestAtlasIndexInChild((Sprite*)(pChildren->lastObject()));
}
}
unsigned int SpriteBatchNode::lowestAtlasIndexInChild(Sprite *pSprite)
{
Array *pChildren = pSprite->getChildren();
if (! pChildren || pChildren->count() == 0)
{
return pSprite->getAtlasIndex();
}
else
{
return lowestAtlasIndexInChild((Sprite*)(pChildren->objectAtIndex(0)));
}
}
unsigned int SpriteBatchNode::atlasIndexForChild(Sprite *pobSprite, int nZ)
{
Array *pBrothers = pobSprite->getParent()->getChildren();
unsigned int uChildIndex = pBrothers->indexOfObject(pobSprite);
// ignore parent Z if parent is spriteSheet
bool bIgnoreParent = (SpriteBatchNode*)(pobSprite->getParent()) == this;
Sprite *pPrevious = NULL;
if (uChildIndex > 0 &&
uChildIndex < UINT_MAX)
{
pPrevious = (Sprite*)(pBrothers->objectAtIndex(uChildIndex - 1));
}
// first child of the sprite sheet
if (bIgnoreParent)
{
if (uChildIndex == 0)
{
return 0;
}
return highestAtlasIndexInChild(pPrevious) + 1;
}
// parent is a Sprite, so, it must be taken into account
// first child of an Sprite ?
if (uChildIndex == 0)
{
Sprite *p = (Sprite*)(pobSprite->getParent());
// less than parent and brothers
if (nZ < 0)
{
return p->getAtlasIndex();
}
else
{
return p->getAtlasIndex() + 1;
}
}
else
{
// previous & sprite belong to the same branch
if ((pPrevious->getZOrder() < 0 && nZ < 0) || (pPrevious->getZOrder() >= 0 && nZ >= 0))
{
return highestAtlasIndexInChild(pPrevious) + 1;
}
// else (previous < 0 and sprite >= 0 )
Sprite *p = (Sprite*)(pobSprite->getParent());
return p->getAtlasIndex() + 1;
}
// Should not happen. Error calculating Z on SpriteSheet
CCAssert(0, "should not run here");
return 0;
}
// add child helper
void SpriteBatchNode::insertChild(Sprite *pSprite, unsigned int uIndex)
{
pSprite->setBatchNode(this);
pSprite->setAtlasIndex(uIndex);
pSprite->setDirty(true);
if(_textureAtlas->getTotalQuads() == _textureAtlas->getCapacity())
{
increaseAtlasCapacity();
}
V3F_C4B_T2F_Quad quad = pSprite->getQuad();
_textureAtlas->insertQuad(&quad, uIndex);
ccArray *descendantsData = _descendants->data;
ccArrayInsertObjectAtIndex(descendantsData, pSprite, uIndex);
// update indices
unsigned int i = uIndex+1;
Sprite* pChild = nullptr;
for(; i<descendantsData->num; i++){
pChild = static_cast<Sprite*>(descendantsData->arr[i]);
pChild->setAtlasIndex(pChild->getAtlasIndex() + 1);
}
// add children recursively
Object* pObj = nullptr;
CCARRAY_FOREACH(pSprite->getChildren(), pObj)
{
pChild = static_cast<Sprite*>(pObj);
unsigned int idx = atlasIndexForChild(pChild, pChild->getZOrder());
insertChild(pChild, idx);
}
}
// addChild helper, faster than insertChild
void SpriteBatchNode::appendChild(Sprite* sprite)
{
_reorderChildDirty=true;
sprite->setBatchNode(this);
sprite->setDirty(true);
if(_textureAtlas->getTotalQuads() == _textureAtlas->getCapacity()) {
increaseAtlasCapacity();
}
ccArray *descendantsData = _descendants->data;
ccArrayAppendObjectWithResize(descendantsData, sprite);
unsigned int index=descendantsData->num-1;
sprite->setAtlasIndex(index);
V3F_C4B_T2F_Quad quad = sprite->getQuad();
_textureAtlas->insertQuad(&quad, index);
// add children recursively
Object* pObj = nullptr;
CCARRAY_FOREACH(sprite->getChildren(), pObj)
{
Sprite* child = static_cast<Sprite*>(pObj);
appendChild(child);
}
}
void SpriteBatchNode::removeSpriteFromAtlas(Sprite *pobSprite)
{
// remove from TextureAtlas
_textureAtlas->removeQuadAtIndex(pobSprite->getAtlasIndex());
// Cleanup sprite. It might be reused (issue #569)
pobSprite->setBatchNode(NULL);
unsigned int uIndex = _descendants->indexOfObject(pobSprite);
if (uIndex != UINT_MAX)
{
_descendants->removeObjectAtIndex(uIndex);
// update all sprites beyond this one
unsigned int count = _descendants->count();
for(; uIndex < count; ++uIndex)
{
Sprite* s = (Sprite*)(_descendants->objectAtIndex(uIndex));
s->setAtlasIndex( s->getAtlasIndex() - 1 );
}
}
// remove children recursively
Array *pChildren = pobSprite->getChildren();
if (pChildren && pChildren->count() > 0)
{
Object* pObject = NULL;
CCARRAY_FOREACH(pChildren, pObject)
{
Sprite* pChild = static_cast<Sprite*>(pObject);
if (pChild)
{
removeSpriteFromAtlas(pChild);
}
}
}
}
void SpriteBatchNode::updateBlendFunc(void)
{
if (! _textureAtlas->getTexture()->hasPremultipliedAlpha())
{
_blendFunc.src = GL_SRC_ALPHA;
_blendFunc.dst = GL_ONE_MINUS_SRC_ALPHA;
}
}
// CocosNodeTexture protocol
void SpriteBatchNode::setBlendFunc(const BlendFunc &blendFunc)
{
_blendFunc = blendFunc;
}
const BlendFunc& SpriteBatchNode::getBlendFunc(void) const
{
return _blendFunc;
}
Texture2D* SpriteBatchNode::getTexture(void)
{
return _textureAtlas->getTexture();
}
void SpriteBatchNode::setTexture(Texture2D *texture)
{
_textureAtlas->setTexture(texture);
updateBlendFunc();
}
// SpriteSheet Extension
//implementation SpriteSheet (TMXTiledMapExtension)
void SpriteBatchNode::insertQuadFromSprite(Sprite *sprite, unsigned int index)
{
CCAssert( sprite != NULL, "Argument must be non-NULL");
CCAssert( dynamic_cast<Sprite*>(sprite), "CCSpriteBatchNode only supports Sprites as children");
2012-11-14 18:05:15 +08:00
// make needed room
while(index >= _textureAtlas->getCapacity() || _textureAtlas->getCapacity() == _textureAtlas->getTotalQuads())
{
this->increaseAtlasCapacity();
}
//
// update the quad directly. Don't add the sprite to the scene graph
//
sprite->setBatchNode(this);
sprite->setAtlasIndex(index);
V3F_C4B_T2F_Quad quad = sprite->getQuad();
_textureAtlas->insertQuad(&quad, index);
2012-11-14 18:05:15 +08:00
// XXX: updateTransform will update the textureAtlas too, using updateQuad.
// XXX: so, it should be AFTER the insertQuad
sprite->setDirty(true);
sprite->updateTransform();
}
void SpriteBatchNode::updateQuadFromSprite(Sprite *sprite, unsigned int index)
2012-11-14 18:05:15 +08:00
{
CCAssert(sprite != NULL, "Argument must be non-nil");
CCAssert(dynamic_cast<Sprite*>(sprite) != NULL, "CCSpriteBatchNode only supports Sprites as children");
2012-11-14 18:05:15 +08:00
// make needed room
while (index >= _textureAtlas->getCapacity() || _textureAtlas->getCapacity() == _textureAtlas->getTotalQuads())
2012-11-14 18:05:15 +08:00
{
this->increaseAtlasCapacity();
}
//
// update the quad directly. Don't add the sprite to the scene graph
//
sprite->setBatchNode(this);
sprite->setAtlasIndex(index);
sprite->setDirty(true);
// UpdateTransform updates the textureAtlas quad
sprite->updateTransform();
}
SpriteBatchNode * SpriteBatchNode::addSpriteWithoutQuad(Sprite*child, unsigned int z, int aTag)
{
CCAssert( child != NULL, "Argument must be non-NULL");
CCAssert( dynamic_cast<Sprite*>(child), "CCSpriteBatchNode only supports Sprites as children");
// quad index is Z
child->setAtlasIndex(z);
// XXX: optimize with a binary search
int i=0;
Object* pObject = NULL;
CCARRAY_FOREACH(_descendants, pObject)
2012-03-23 17:31:28 +08:00
{
Sprite* pChild = static_cast<Sprite*>(pObject);
if (pChild && (pChild->getAtlasIndex() >= z))
{
++i;
}
}
_descendants->insertObject(child, i);
// IMPORTANT: Call super, and not self. Avoid adding it to the texture atlas array
Node::addChild(child, z, aTag);
//#issue 1262 don't use lazy sorting, tiles are added as quads not as sprites, so sprites need to be added in order
reorderBatch(false);
return this;
}
NS_CC_END