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-06-07 10:52:32 +08:00
|
|
|
|
2013-06-06 12:02:54 +08:00
|
|
|
#ifndef __CCBATCHNODE_H__
|
|
|
|
#define __CCBATCHNODE_H__
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "cocostudio/CCArmatureDefine.h"
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace cocostudio {
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
class BatchNode : public cocos2d::Node
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-09-15 19:08:45 +08:00
|
|
|
static BatchNode *create();
|
2013-06-06 12:02:54 +08:00
|
|
|
public:
|
2013-09-16 14:13:55 +08:00
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
2013-09-15 19:08:45 +08:00
|
|
|
BatchNode();
|
2013-10-30 09:41:40 +08:00
|
|
|
~BatchNode();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
virtual bool init();
|
2013-10-30 09:41:40 +08:00
|
|
|
virtual void addChild(cocos2d::Node *pChild);
|
|
|
|
virtual void addChild(cocos2d::Node *pChild, int zOrder);
|
|
|
|
virtual void addChild(cocos2d::Node *pChild, int zOrder, int tag);
|
|
|
|
virtual void removeChild(cocos2d::Node* child, bool cleanup);
|
2013-06-07 10:52:32 +08:00
|
|
|
virtual void visit();
|
|
|
|
void draw();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-30 09:41:40 +08:00
|
|
|
virtual cocos2d::TextureAtlas *getTexureAtlasWithTexture(cocos2d::Texture2D *texture);
|
2013-06-06 12:02:54 +08:00
|
|
|
protected:
|
2013-10-15 18:00:03 +08:00
|
|
|
cocos2d::TextureAtlas *_atlas;
|
2013-10-30 09:41:40 +08:00
|
|
|
cocos2d::Dictionary *_textureAtlasDic;
|
2013-06-06 12:02:54 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-06-07 10:52:32 +08:00
|
|
|
#endif /*__CCBATCHNODE_H__*/
|