axmol/cocos2dx/include/CCAtlasNode.h

110 lines
3.4 KiB
C
Raw Normal View History

2010-07-07 15:15:30 +08:00
/****************************************************************************
Copyright (c) 2010 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.
****************************************************************************/
2010-07-08 14:00:06 +08:00
#ifndef __CCATLAS_NODE_H__
#define __CCATLAS_NODE_H__
#include "CCNode.h"
#include "CCProtocols.h"
#include "ccTypes.h"
2010-08-04 15:46:12 +08:00
namespace cocos2d {
class CCTextureAtlas;
2010-07-08 14:00:06 +08:00
2010-07-08 15:31:35 +08:00
/** CCAtlasNode is a subclass of CCNode that implements the CCRGBAProtocol and
2010-07-08 14:00:06 +08:00
CCTextureProtocol protocol
It knows how to render a TextureAtlas object.
If you are going to render a TextureAtlas consider subclassing CCAtlasNode (or a subclass of CCAtlasNode)
All features from CCNode are valid, plus the following features:
- opacity and RGB colors
*/
class CCAtlasNode : public CCNode, public CCRGBAProtocol, public CCTextureProtocol
{
protected:
// chars per row
2010-07-14 11:18:05 +08:00
int m_nItemsPerRow;
2010-07-08 14:00:06 +08:00
// chars per column
2010-07-14 11:18:05 +08:00
int m_nItemsPerColumn;
2010-07-08 14:00:06 +08:00
// texture coordinate x increment
float m_fTexStepX;
// texture coordinate y increment
float m_fTexStepY;
// width of each char
2010-07-14 11:18:05 +08:00
int m_nItemWidth;
2010-07-08 14:00:06 +08:00
// height of each char
2010-07-14 11:18:05 +08:00
int m_nItemHeight;
2010-07-08 14:00:06 +08:00
ccColor3B m_tColorUnmodified;
CCTextureAtlas * m_pTextureAtlas;
2010-07-08 14:00:06 +08:00
// protocol variables
CCX_PROPERTY(bool, m_bIsOpacityModifyRGB, IsOpacityModifyRGB)
CCX_PROPERTY(ccBlendFunc, m_tBlendFunc, BlendFunc);
CCX_PROPERTY(GLubyte, m_cOpacity, Opacity);
CCX_PROPERTY(ccColor3B, m_tColor, Color);
2010-07-08 14:00:06 +08:00
public:
CCAtlasNode();
~CCAtlasNode();
2010-07-08 14:00:06 +08:00
/** creates a CCAtlasNode with an Atlas file the width and height of each item and the quantity of items to render*/
2010-07-22 11:15:25 +08:00
static CCAtlasNode * atlasWithTileFile(const char* tile,int tileWidth, int tileHeight, int itemsToRender);
2010-07-08 14:00:06 +08:00
/** initializes an CCAtlasNode with an Atlas file the width and height of each item and the quantity of items to render*/
2010-07-22 11:15:25 +08:00
CCAtlasNode * initWithTileFile(const char* tile, int tileWidth, int tileHeight, int itemsToRender);
2010-07-08 14:00:06 +08:00
/** updates the Atlas (indexed vertex array).
* Shall be overriden in subclasses
*/
void updateAtlasValues();
2010-07-08 14:00:06 +08:00
virtual void draw();
2010-07-08 14:00:06 +08:00
// CC Texture protocol
2010-07-08 14:00:06 +08:00
// returns the used texture
virtual CCTexture2D* getTexture(void);
2010-07-08 14:00:06 +08:00
// sets a new texture. it will be retained
virtual void setTexture(CCTexture2D *texture);
private :
void calculateMaxItems();
void calculateTexCoordsSteps();
void updateBlendFunc();
void updateOpacityModifyRGB();
2010-07-08 14:00:06 +08:00
};
2010-08-04 15:46:12 +08:00
}//namespace cocos2d
2010-07-08 14:00:06 +08:00
#endif // __CCATLAS_NODE_H__