2021-12-26 23:26:34 +08:00
|
|
|
/****************************************************************************
|
2019-11-24 23:15:56 +08:00
|
|
|
Copyright (c) 2013-2017 Chukong Technologies Inc.
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
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-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
#ifndef __CCBATCHNODE_H__
|
|
|
|
#define __CCBATCHNODE_H__
|
|
|
|
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "2d/CCNode.h"
|
2020-10-21 10:12:00 +08:00
|
|
|
#include "CCArmatureDefine.h"
|
|
|
|
#include "CocosStudioExport.h"
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace cocos2d
|
|
|
|
{
|
|
|
|
class GroupCommand;
|
2013-12-26 18:11:23 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace cocostudio
|
|
|
|
{
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
class CCS_DLL BatchNode : public cocos2d::Node
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
public:
|
2021-12-25 10:04:45 +08:00
|
|
|
static BatchNode* create();
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
public:
|
2015-06-17 13:16:06 +08:00
|
|
|
/**
|
2013-09-16 14:13:55 +08:00
|
|
|
* @js ctor
|
|
|
|
*/
|
2013-09-15 19:08:45 +08:00
|
|
|
BatchNode();
|
2013-11-20 12:04:47 +08:00
|
|
|
/**
|
|
|
|
* @ js NA
|
|
|
|
* @ lua NA
|
|
|
|
*/
|
2013-10-30 09:41:40 +08:00
|
|
|
~BatchNode();
|
2013-11-20 12:04:47 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
*/
|
2013-11-05 19:53:38 +08:00
|
|
|
virtual bool init() override;
|
2014-06-25 11:27:48 +08:00
|
|
|
using Node::addChild;
|
2021-12-25 10:04:45 +08:00
|
|
|
virtual void addChild(cocos2d::Node* pChild, int zOrder, int tag) override;
|
2021-12-26 23:26:34 +08:00
|
|
|
virtual void addChild(cocos2d::Node* pChild, int zOrder, std::string_view name) override;
|
2013-11-05 19:53:38 +08:00
|
|
|
virtual void removeChild(cocos2d::Node* child, bool cleanup) override;
|
2021-12-25 10:04:45 +08:00
|
|
|
virtual void visit(cocos2d::Renderer* renderer,
|
|
|
|
const cocos2d::Mat4& parentTransform,
|
|
|
|
uint32_t parentFlags) override;
|
|
|
|
virtual void draw(cocos2d::Renderer* renderer, const cocos2d::Mat4& transform, uint32_t flags) override;
|
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
protected:
|
2013-12-17 17:00:01 +08:00
|
|
|
void generateGroupCommand();
|
|
|
|
|
2013-12-26 18:11:23 +08:00
|
|
|
cocos2d::GroupCommand* _groupCommand;
|
2013-06-06 12:02:54 +08:00
|
|
|
};
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
} // namespace cocostudio
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
#endif /*__CCBATCHNODE_H__*/
|