2011-03-19 10:59:01 +08:00
|
|
|
/****************************************************************************
|
2012-09-24 21:22:20 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2011-03-19 10:59:01 +08:00
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
2011-07-01 15:48:05 +08:00
|
|
|
Copyright (c) 2011 Zynga Inc.
|
2011-03-19 10:59:01 +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.
|
2010-07-07 15:15:30 +08:00
|
|
|
****************************************************************************/
|
2010-07-08 14:00:06 +08:00
|
|
|
|
|
|
|
#ifndef __CCATLAS_NODE_H__
|
|
|
|
#define __CCATLAS_NODE_H__
|
|
|
|
|
2011-03-19 10:59:01 +08:00
|
|
|
#include "CCNode.h"
|
|
|
|
#include "CCProtocols.h"
|
|
|
|
#include "ccTypes.h"
|
2010-07-22 18:39:40 +08:00
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup base_nodes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class TextureAtlas;
|
2010-07-08 14:00:06 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** @brief AtlasNode is a subclass of Node that implements the RGBAProtocol and TextureProtocol protocol
|
2010-07-08 14:00:06 +08:00
|
|
|
|
|
|
|
It knows how to render a TextureAtlas object.
|
2013-06-20 14:13:12 +08:00
|
|
|
If you are going to render a TextureAtlas consider subclassing AtlasNode (or a subclass of AtlasNode)
|
2010-07-08 14:00:06 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
All features from Node are valid, plus the following features:
|
2010-07-08 14:00:06 +08:00
|
|
|
- opacity and RGB colors
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
class CC_DLL AtlasNode : public NodeRGBA, public TextureProtocol
|
2010-07-08 14:00:06 +08:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
//! chars per row
|
2013-06-15 14:03:30 +08:00
|
|
|
unsigned int _itemsPerRow;
|
2012-04-19 14:35:52 +08:00
|
|
|
//! chars per column
|
2013-06-15 14:03:30 +08:00
|
|
|
unsigned int _itemsPerColumn;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//! width of each char
|
2013-06-15 14:03:30 +08:00
|
|
|
unsigned int _itemWidth;
|
2012-04-19 14:35:52 +08:00
|
|
|
//! height of each char
|
2013-06-15 14:03:30 +08:00
|
|
|
unsigned int _itemHeight;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
ccColor3B _colorUnmodified;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
CC_PROPERTY(TextureAtlas*, _textureAtlas, TextureAtlas);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// protocol variables
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _isOpacityModifyRGB;
|
2012-06-15 15:10:40 +08:00
|
|
|
|
2013-07-04 08:22:15 +08:00
|
|
|
CC_PROPERTY_PASS_BY_REF(ccBlendFunc, _blendFunc, BlendFunc);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// quads to draw
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_PROPERTY(unsigned int, _quadsToDraw, QuadsToDraw);
|
2012-04-19 14:35:52 +08:00
|
|
|
// color uniform
|
2013-06-15 14:03:30 +08:00
|
|
|
GLint _uniformColor;
|
2013-06-20 14:13:12 +08:00
|
|
|
// This varible is only used for LabelAtlas FPS display. So plz don't modify its value.
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _ignoreContentScaleFactor;
|
2013-05-23 15:06:57 +08:00
|
|
|
|
2010-07-08 14:00:06 +08:00
|
|
|
public:
|
2013-06-20 14:13:12 +08:00
|
|
|
AtlasNode();
|
|
|
|
virtual ~AtlasNode();
|
2010-07-08 14:00:06 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** creates a AtlasNode with an Atlas file the width and height of each item and the quantity of items to render*/
|
|
|
|
static AtlasNode * create(const char* tile,unsigned int tileWidth, unsigned int tileHeight,
|
2012-06-14 15:13:16 +08:00
|
|
|
unsigned int itemsToRender);
|
2010-07-08 14:00:06 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** initializes an AtlasNode with an Atlas file the width and height of each item and the quantity of items to render*/
|
2012-04-19 14:35:52 +08:00
|
|
|
bool initWithTileFile(const char* tile, unsigned int tileWidth, unsigned int tileHeight, unsigned int itemsToRender);
|
2010-07-08 14:00:06 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** initializes an AtlasNode with a texture the width and height of each item measured in points and the quantity of items to render*/
|
|
|
|
bool initWithTexture(Texture2D* texture, unsigned int tileWidth, unsigned int tileHeight, unsigned int itemsToRender);
|
2013-02-27 09:38:30 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** updates the Atlas (indexed vertex array).
|
2012-09-17 15:02:24 +08:00
|
|
|
* Shall be overridden in subclasses
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
|
|
|
virtual void updateAtlasValues();
|
2010-07-08 14:00:06 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
virtual void draw(void);
|
2010-07-08 14:00:06 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
// CC Texture protocol
|
2011-03-19 10:59:01 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** returns the used texture*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual Texture2D* getTexture(void);
|
2011-03-19 10:59:01 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** sets a new texture. it will be retained*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setTexture(Texture2D *texture);
|
2013-02-28 11:55:36 +08:00
|
|
|
|
|
|
|
virtual bool isOpacityModifyRGB();
|
|
|
|
virtual void setOpacityModifyRGB(bool isOpacityModifyRGB);
|
|
|
|
virtual const ccColor3B& getColor(void);
|
|
|
|
virtual void setColor(const ccColor3B& color);
|
|
|
|
virtual void setOpacity(GLubyte opacity);
|
2010-07-19 16:45:53 +08:00
|
|
|
|
|
|
|
private :
|
2012-04-19 14:35:52 +08:00
|
|
|
void calculateMaxItems();
|
|
|
|
void updateBlendFunc();
|
|
|
|
void updateOpacityModifyRGB();
|
2013-05-23 15:06:57 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
friend class Director;
|
2013-05-23 15:06:57 +08:00
|
|
|
void setIgnoreContentScaleFactor(bool bIgnoreContentScaleFactor);
|
2010-07-08 14:00:06 +08:00
|
|
|
};
|
2012-04-18 18:43:45 +08:00
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
// end of base_node group
|
|
|
|
/// @}
|
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_END
|
2010-07-08 14:00:06 +08:00
|
|
|
|
|
|
|
#endif // __CCATLAS_NODE_H__
|
|
|
|
|
|
|
|
|