2013-06-06 12:02:54 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "cocostudio/CCBatchNode.h"
|
|
|
|
#include "cocostudio/CCArmatureDefine.h"
|
|
|
|
#include "cocostudio/CCArmature.h"
|
2013-10-30 09:41:40 +08:00
|
|
|
#include "cocostudio/CCSkin.h"
|
2013-12-18 10:41:09 +08:00
|
|
|
#include "CCRenderer.h"
|
|
|
|
#include "CCGroupCommand.h"
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
using namespace cocos2d;
|
|
|
|
|
|
|
|
namespace cocostudio {
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
BatchNode *BatchNode::create()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
BatchNode *batchNode = new BatchNode();
|
2013-06-07 10:52:32 +08:00
|
|
|
if (batchNode && batchNode->init())
|
|
|
|
{
|
|
|
|
batchNode->autorelease();
|
|
|
|
return batchNode;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(batchNode);
|
2013-11-05 15:32:13 +08:00
|
|
|
return nullptr;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
BatchNode::BatchNode()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-10-30 09:41:40 +08:00
|
|
|
BatchNode::~BatchNode()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
bool BatchNode::init()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
bool ret = Node::init();
|
2013-09-16 12:02:57 +08:00
|
|
|
setShaderProgram(ShaderCache::getInstance()->getProgram(GLProgram::SHADER_NAME_POSITION_TEXTURE_COLOR));
|
2013-10-30 09:41:40 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
return ret;
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-10-30 09:41:40 +08:00
|
|
|
void BatchNode::addChild(Node *pChild)
|
|
|
|
{
|
|
|
|
Node::addChild(pChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BatchNode::addChild(Node *child, int zOrder)
|
|
|
|
{
|
|
|
|
Node::addChild(child, zOrder);
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void BatchNode::addChild(Node *child, int zOrder, int tag)
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
Node::addChild(child, zOrder, tag);
|
|
|
|
Armature *armature = dynamic_cast<Armature *>(child);
|
2013-11-05 15:32:13 +08:00
|
|
|
if (armature != nullptr)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
|
|
|
armature->setBatchNode(this);
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-10-30 09:41:40 +08:00
|
|
|
void BatchNode::removeChild(Node* child, bool cleanup)
|
|
|
|
{
|
|
|
|
Armature *armature = dynamic_cast<Armature *>(child);
|
2013-11-05 15:32:13 +08:00
|
|
|
if (armature != nullptr)
|
2013-10-30 09:41:40 +08:00
|
|
|
{
|
2013-11-05 15:32:13 +08:00
|
|
|
armature->setBatchNode(nullptr);
|
2013-10-30 09:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Node::removeChild(child, cleanup);
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void BatchNode::visit()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-06-07 10:52:32 +08:00
|
|
|
// quick return if not visible. children won't be drawn.
|
2013-06-15 14:03:30 +08:00
|
|
|
if (!_visible)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
kmGLPushMatrix();
|
|
|
|
|
|
|
|
transform();
|
|
|
|
sortAllChildren();
|
|
|
|
draw();
|
|
|
|
|
|
|
|
// reset for next frame
|
2013-06-15 14:03:30 +08:00
|
|
|
_orderOfArrival = 0;
|
2013-06-07 10:52:32 +08:00
|
|
|
|
|
|
|
kmGLPopMatrix();
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void BatchNode::draw()
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
2013-11-28 18:23:06 +08:00
|
|
|
if (_children.empty())
|
2013-11-18 13:23:38 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
CC_NODE_DRAW_SETUP();
|
2013-12-17 17:00:01 +08:00
|
|
|
|
|
|
|
generateGroupCommand();
|
2013-11-06 15:25:44 +08:00
|
|
|
|
2013-11-28 16:02:03 +08:00
|
|
|
for(auto object : _children)
|
2013-06-07 10:52:32 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
Armature *armature = dynamic_cast<Armature *>(object);
|
2013-06-07 10:52:32 +08:00
|
|
|
if (armature)
|
|
|
|
{
|
2013-12-17 17:00:01 +08:00
|
|
|
if (_popGroupCommand)
|
|
|
|
{
|
|
|
|
generateGroupCommand();
|
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
armature->visit();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-18 09:50:17 +08:00
|
|
|
Director::getInstance()->getRenderer()->popGroup();
|
2013-12-17 17:00:01 +08:00
|
|
|
_popGroupCommand = true;
|
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
((Node *)object)->visit();
|
2013-06-07 10:52:32 +08:00
|
|
|
}
|
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
}
|
|
|
|
|
2013-12-17 17:00:01 +08:00
|
|
|
void BatchNode::generateGroupCommand()
|
2013-10-30 09:41:40 +08:00
|
|
|
{
|
2013-12-18 09:50:17 +08:00
|
|
|
Renderer* renderer = Director::getInstance()->getRenderer();
|
2013-12-26 15:41:47 +08:00
|
|
|
GroupCommand* groupCommand = new GroupCommand();
|
2013-12-17 17:00:01 +08:00
|
|
|
groupCommand->init(0,_vertexZ);
|
|
|
|
renderer->addCommand(groupCommand);
|
|
|
|
|
|
|
|
renderer->pushGroup(groupCommand->getRenderQueueID());
|
2013-10-30 09:41:40 +08:00
|
|
|
|
2013-12-17 17:00:01 +08:00
|
|
|
_popGroupCommand = false;
|
2013-10-30 09:41:40 +08:00
|
|
|
}
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|