2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2011 cocos2d-x.org
|
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
|
|
|
Copyright (c) 2011 Zynga Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __SPITE_NODE_CCSPRITE_H__
|
|
|
|
#define __SPITE_NODE_CCSPRITE_H__
|
|
|
|
|
2012-06-19 13:50:11 +08:00
|
|
|
#include "base_nodes/CCNode.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#include "CCProtocols.h"
|
2012-06-19 13:50:11 +08:00
|
|
|
#include "textures/CCTextureAtlas.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#include "ccTypes.h"
|
2012-06-19 13:50:11 +08:00
|
|
|
#include "cocoa/CCDictionary.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
class CCSpriteBatchNode;
|
|
|
|
class CCSpriteFrame;
|
|
|
|
class CCAnimation;
|
|
|
|
class CCRect;
|
|
|
|
class CCPoint;
|
|
|
|
class CCSize;
|
|
|
|
class CCTexture2D;
|
|
|
|
struct transformValues_;
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup sprite_nodes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
#define CCSpriteIndexNotInitialized 0xffffffff /// CCSprite invalid index on the CCSpriteBatchode
|
|
|
|
|
|
|
|
|
|
|
|
/** CCSprite is a 2d image ( http://en.wikipedia.org/wiki/Sprite_(computer_graphics) )
|
|
|
|
*
|
|
|
|
* CCSprite can be created with an image, or with a sub-rectangle of an image.
|
|
|
|
*
|
|
|
|
* If the parent or any of its ancestors is a CCSpriteBatchNode then the following features/limitations are valid
|
|
|
|
* - Features when the parent is a CCBatchNode:
|
|
|
|
* - MUCH faster rendering, specially if the CCSpriteBatchNode has many children. All the children will be drawn in a single batch.
|
|
|
|
*
|
|
|
|
* - Limitations
|
|
|
|
* - Camera is not supported yet (eg: CCOrbitCamera action doesn't work)
|
|
|
|
* - GridBase actions are not supported (eg: CCLens, CCRipple, CCTwirl)
|
|
|
|
* - The Alias/Antialias property belongs to CCSpriteBatchNode, so you can't individually set the aliased property.
|
|
|
|
* - The Blending function property belongs to CCSpriteBatchNode, so you can't individually set the blending function property.
|
|
|
|
* - Parallax scroller is not supported, but can be simulated with a "proxy" sprite.
|
|
|
|
*
|
|
|
|
* If the parent is an standard CCNode, then CCSprite behaves like any other CCNode:
|
|
|
|
* - It supports blending functions
|
|
|
|
* - It supports aliasing / antialiasing
|
|
|
|
* - But the rendering will be slower: 1 draw per children.
|
|
|
|
*
|
|
|
|
* The default anchorPoint in CCSprite is (0.5, 0.5).
|
|
|
|
*/
|
|
|
|
class CC_DLL CCSprite : public CCNode, public CCTextureProtocol, public CCRGBAProtocol
|
|
|
|
{
|
|
|
|
/** Opacity: conforms to CCRGBAProtocol protocol */
|
|
|
|
CC_PROPERTY(GLubyte, m_nOpacity, Opacity)
|
|
|
|
/** Color: conforms with CCRGBAProtocol protocol */
|
|
|
|
CC_PROPERTY_PASS_BY_REF(ccColor3B, m_sColor, Color);
|
|
|
|
public:
|
|
|
|
virtual void draw(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
// attributes
|
|
|
|
|
|
|
|
/** whether or not the Sprite needs to be updated in the Atlas */
|
|
|
|
inline virtual bool isDirty(void) { return m_bDirty; }
|
|
|
|
/** make the Sprite to be updated in the Atlas. */
|
|
|
|
inline virtual void setDirty(bool bDirty) { m_bDirty = bDirty; }
|
|
|
|
|
|
|
|
/** get the quad (tex coords, vertex coords and color) information */
|
|
|
|
inline ccV3F_C4B_T2F_Quad getQuad(void) { return m_sQuad; }
|
|
|
|
|
|
|
|
/** returns whether or not the texture rectangle is rotated */
|
|
|
|
inline bool isTextureRectRotated(void) { return m_bRectRotated; }
|
|
|
|
|
|
|
|
/** Set the index used on the TextureAtlas. */
|
|
|
|
inline unsigned int getAtlasIndex(void) { return m_uAtlasIndex; }
|
|
|
|
/** Set the index used on the TextureAtlas.
|
|
|
|
@warning Don't modify this value unless you know what you are doing
|
|
|
|
*/
|
|
|
|
inline void setAtlasIndex(unsigned int uAtlasIndex) { m_uAtlasIndex = uAtlasIndex; }
|
|
|
|
|
|
|
|
/** returns the rect of the CCSprite in points */
|
|
|
|
inline const CCRect& getTextureRect(void) { return m_obRect; }
|
|
|
|
|
|
|
|
inline CCTextureAtlas* getTextureAtlas(void) { return m_pobTextureAtlas; }
|
|
|
|
inline void setTextureAtlas(CCTextureAtlas *pobTextureAtlas) { m_pobTextureAtlas = pobTextureAtlas; }
|
|
|
|
|
|
|
|
CCSpriteBatchNode* getSpriteBatchNode(void);
|
|
|
|
void setSpriteBatchNode(CCSpriteBatchNode *pobSpriteBatchNode);
|
|
|
|
|
|
|
|
/** Get offset position of the sprite. Calculated automatically by editors like Zwoptex.
|
|
|
|
@since v0.99.0
|
|
|
|
*/
|
|
|
|
inline const CCPoint& getOffsetPosition(void) { return m_obOffsetPosition; }
|
|
|
|
|
|
|
|
/** conforms to CCTextureProtocol protocol */
|
|
|
|
inline ccBlendFunc getBlendFunc(void) { return m_sBlendFunc; }
|
|
|
|
/** conforms to CCTextureProtocol protocol */
|
|
|
|
inline void setBlendFunc(ccBlendFunc blendFunc) { m_sBlendFunc = blendFunc; }
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Creates an sprite with a texture.
|
|
|
|
The rect used will be the size of the texture.
|
|
|
|
The offset will be (0,0).
|
2012-08-10 13:58:34 +08:00
|
|
|
@deprecated: Please use createWithTexture(CCTexture2D*) instead. This interface will be deprecated sooner or later.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCSprite* spriteWithTexture(CCTexture2D *pTexture);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/** Creates an sprite with a texture and a rect.
|
|
|
|
The offset will be (0,0).
|
2012-08-10 13:58:34 +08:00
|
|
|
@deprecated: Please use createWithTexture(CCTexture2D*, const CCRect&) instead, This interface will be deprecated sooner or later.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCSprite* spriteWithTexture(CCTexture2D *pTexture, const CCRect& rect);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-08-10 13:58:34 +08:00
|
|
|
/** Creates an sprite with a texture.
|
2012-06-14 15:13:16 +08:00
|
|
|
The rect used will be the size of the texture.
|
|
|
|
The offset will be (0,0).
|
|
|
|
*/
|
2012-07-23 22:49:11 +08:00
|
|
|
static CCSprite* createWithTexture(CCTexture2D *pTexture);
|
2012-06-14 15:13:16 +08:00
|
|
|
|
|
|
|
/** Creates an sprite with a texture and a rect.
|
|
|
|
The offset will be (0,0).
|
|
|
|
*/
|
2012-07-23 22:49:11 +08:00
|
|
|
static CCSprite* createWithTexture(CCTexture2D *pTexture, const CCRect& rect);
|
2012-06-14 15:13:16 +08:00
|
|
|
|
|
|
|
/** Creates an sprite with an sprite frame.
|
2012-08-10 13:58:34 +08:00
|
|
|
@deprecated: Please use createWithSpriteFrame(CCSpriteFrame*) instead. This interface will be deprecated sooner or later.
|
2012-06-14 15:13:16 +08:00
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCSprite* spriteWithSpriteFrame(CCSpriteFrame *pSpriteFrame);
|
2012-06-14 15:13:16 +08:00
|
|
|
|
|
|
|
/** Creates an sprite with an sprite frame name.
|
|
|
|
An CCSpriteFrame will be fetched from the CCSpriteFrameCache by name.
|
|
|
|
If the CCSpriteFrame doesn't exist it will raise an exception.
|
2012-08-10 13:58:34 +08:00
|
|
|
@deprecated: Please use createWithSpriteFrameName(const char*) instead. This interface will be deprecated sooner or later.
|
2012-06-14 15:13:16 +08:00
|
|
|
@since v0.9
|
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCSprite* spriteWithSpriteFrameName(const char *pszSpriteFrameName);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/** Creates an sprite with an sprite frame. */
|
2012-07-23 22:49:11 +08:00
|
|
|
static CCSprite* createWithSpriteFrame(CCSpriteFrame *pSpriteFrame);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/** Creates an sprite with an sprite frame name.
|
|
|
|
An CCSpriteFrame will be fetched from the CCSpriteFrameCache by name.
|
|
|
|
If the CCSpriteFrame doesn't exist it will raise an exception.
|
|
|
|
@since v0.9
|
|
|
|
*/
|
2012-06-14 15:13:16 +08:00
|
|
|
static CCSprite* createWithSpriteFrameName(const char *pszSpriteFrameName);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/** Creates an sprite with an image filename.
|
|
|
|
The rect used will be the size of the image.
|
|
|
|
The offset will be (0,0).
|
2012-08-10 13:58:34 +08:00
|
|
|
@deprecated: Please use create(const char*) instead. This interface will be deprecated sooner or later.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCSprite* spriteWithFile(const char *pszFileName);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/** Creates an sprite with an image filename and a rect.
|
|
|
|
The offset will be (0,0).
|
2012-08-10 13:58:34 +08:00
|
|
|
@deprecated: Please use create(const char*, const CCRect&) instead. This interface will be deprecated sooner or later.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCSprite* spriteWithFile(const char *pszFileName, const CCRect& rect);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-14 15:13:16 +08:00
|
|
|
/** Creates an sprite with an image filename.
|
|
|
|
The rect used will be the size of the image.
|
|
|
|
The offset will be (0,0).
|
|
|
|
*/
|
|
|
|
static CCSprite* create(const char *pszFileName);
|
|
|
|
|
|
|
|
/** Creates an sprite with an image filename and a rect.
|
|
|
|
The offset will be (0,0).
|
|
|
|
*/
|
|
|
|
static CCSprite* create(const char *pszFileName, const CCRect& rect);
|
|
|
|
|
|
|
|
/** Creates an sprite.
|
2012-08-10 13:58:34 +08:00
|
|
|
@deprecated: Please use create() instead. This interface will be deprecated sooner or later.
|
2012-06-14 15:13:16 +08:00
|
|
|
*/
|
2012-06-20 11:48:31 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static CCSprite* node();
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Creates an sprite.
|
|
|
|
*/
|
2012-06-14 15:13:16 +08:00
|
|
|
static CCSprite* create();
|
2012-04-19 14:35:52 +08:00
|
|
|
public:
|
|
|
|
CCSprite(void);
|
|
|
|
virtual ~CCSprite(void);
|
|
|
|
virtual bool init(void);
|
|
|
|
|
|
|
|
virtual void removeChild(CCNode* pChild, bool bCleanup);
|
|
|
|
virtual void removeAllChildrenWithCleanup(bool bCleanup);
|
|
|
|
virtual void reorderChild(CCNode *pChild, int zOrder);
|
|
|
|
virtual void addChild(CCNode *pChild);
|
|
|
|
virtual void addChild(CCNode *pChild, int zOrder);
|
|
|
|
virtual void addChild(CCNode *pChild, int zOrder, int tag);
|
|
|
|
virtual void sortAllChildren();
|
|
|
|
|
|
|
|
virtual void setDirtyRecursively(bool bValue);
|
|
|
|
virtual void setPosition(const CCPoint& pos);
|
|
|
|
virtual void setRotation(float fRotation);
|
|
|
|
virtual void setSkewX(float sx);
|
|
|
|
virtual void setSkewY(float sy);
|
|
|
|
virtual void setScaleX(float fScaleX);
|
|
|
|
virtual void setScaleY(float fScaleY);
|
|
|
|
virtual void setScale(float fScale);
|
|
|
|
virtual void setVertexZ(float fVertexZ);
|
|
|
|
virtual void setAnchorPoint(const CCPoint& anchor);
|
2012-06-15 15:10:40 +08:00
|
|
|
virtual void ignoreAnchorPointForPosition(bool value);
|
2012-06-15 16:47:30 +08:00
|
|
|
virtual void setVisible(bool bVisible);
|
2012-04-19 14:35:52 +08:00
|
|
|
void setFlipX(bool bFlipX);
|
|
|
|
void setFlipY(bool bFlipY);
|
|
|
|
/** whether or not the sprite is flipped horizontally.
|
|
|
|
It only flips the texture of the sprite, and not the texture of the sprite's children.
|
|
|
|
Also, flipping the texture doesn't alter the anchorPoint.
|
|
|
|
If you want to flip the anchorPoint too, and/or to flip the children too use:
|
|
|
|
|
|
|
|
sprite->setScaleX(sprite->getScaleX() * -1);
|
|
|
|
*/
|
|
|
|
bool isFlipX(void);
|
|
|
|
/** whether or not the sprite is flipped vertically.
|
|
|
|
It only flips the texture of the sprite, and not the texture of the sprite's children.
|
|
|
|
Also, flipping the texture doesn't alter the anchorPoint.
|
|
|
|
If you want to flip the anchorPoint too, and/or to flip the children too use:
|
|
|
|
|
|
|
|
sprite->setScaleY(sprite->getScaleY() * -1);
|
|
|
|
*/
|
|
|
|
bool isFlipY(void);
|
|
|
|
|
|
|
|
void updateColor(void);
|
|
|
|
// RGBAProtocol
|
|
|
|
/** opacity: conforms to CCRGBAProtocol protocol */
|
2012-06-15 15:10:40 +08:00
|
|
|
virtual void setOpacityModifyRGB(bool bValue);
|
|
|
|
virtual bool isOpacityModifyRGB(void);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// CCTextureProtocol
|
|
|
|
virtual void setTexture(CCTexture2D *texture);
|
|
|
|
virtual CCTexture2D* getTexture(void);
|
|
|
|
|
|
|
|
/** Initializes an sprite with a texture.
|
|
|
|
The rect used will be the size of the texture.
|
|
|
|
The offset will be (0,0).
|
|
|
|
*/
|
|
|
|
virtual bool initWithTexture(CCTexture2D *pTexture);
|
|
|
|
|
|
|
|
/** Initializes an sprite with a texture and a rect.
|
|
|
|
The offset will be (0,0).
|
|
|
|
*/
|
|
|
|
virtual bool initWithTexture(CCTexture2D *pTexture, const CCRect& rect);
|
|
|
|
|
|
|
|
/** Initializes an sprite with a texture and a rect in points, optionally rotated.
|
|
|
|
The offset will be (0,0).
|
|
|
|
IMPORTANT: This is the designated initializer.
|
|
|
|
*/
|
|
|
|
virtual bool initWithTexture(CCTexture2D *pTexture, const CCRect& rect, bool rotated);
|
|
|
|
|
|
|
|
// Initializes an sprite with an sprite frame.
|
|
|
|
virtual bool initWithSpriteFrame(CCSpriteFrame *pSpriteFrame);
|
|
|
|
|
|
|
|
/** Initializes an sprite with an sprite frame name.
|
|
|
|
An CCSpriteFrame will be fetched from the CCSpriteFrameCache by name.
|
|
|
|
If the CCSpriteFrame doesn't exist it will raise an exception.
|
|
|
|
@since v0.9
|
|
|
|
*/
|
|
|
|
virtual bool initWithSpriteFrameName(const char *pszSpriteFrameName);
|
|
|
|
|
|
|
|
/** Initializes an sprite with an image filename.
|
|
|
|
The rect used will be the size of the image.
|
|
|
|
The offset will be (0,0).
|
|
|
|
*/
|
|
|
|
virtual bool initWithFile(const char *pszFilename);
|
|
|
|
|
|
|
|
/** Initializes an sprite with an image filename, and a rect.
|
|
|
|
The offset will be (0,0).
|
|
|
|
*/
|
|
|
|
virtual bool initWithFile(const char *pszFilename, const CCRect& rect);
|
|
|
|
|
|
|
|
// BatchNode methods
|
|
|
|
|
|
|
|
/** updates the quad according the the rotation, position, scale values. */
|
|
|
|
virtual void updateTransform(void);
|
|
|
|
|
|
|
|
/** updates the texture rect of the CCSprite in points.
|
|
|
|
It will call setTextureRect:rotated:untrimmedSize with rotated = NO, and utrimmedSize = rect.size.
|
|
|
|
*/
|
|
|
|
virtual void setTextureRect(const CCRect& rect);
|
|
|
|
|
|
|
|
/** set the texture rect, rectRotated and untrimmed size of the CCSprite in points.
|
|
|
|
It will update the texture coordinates and the vertex rectangle.
|
|
|
|
*/
|
|
|
|
virtual void setTextureRect(const CCRect& rect, bool rotated, const CCSize& untrimmedSize);
|
|
|
|
|
|
|
|
/** set the vertex rect.
|
|
|
|
It will be called internally by setTextureRect. Useful if you want to create 2x images from SD images in Retina Display.
|
|
|
|
Do not call it manually. Use setTextureRect instead.
|
|
|
|
*/
|
|
|
|
virtual void setVertexRect(const CCRect& rect);
|
|
|
|
|
|
|
|
// Frames
|
|
|
|
|
|
|
|
/** sets a new display frame to the CCSprite. */
|
|
|
|
virtual void setDisplayFrame(CCSpriteFrame *pNewFrame);
|
|
|
|
|
|
|
|
/** returns whether or not a CCSpriteFrame is being displayed */
|
|
|
|
virtual bool isFrameDisplayed(CCSpriteFrame *pFrame);
|
|
|
|
|
|
|
|
/** returns the current displayed frame. */
|
|
|
|
virtual CCSpriteFrame* displayFrame(void);
|
|
|
|
|
|
|
|
virtual CCSpriteBatchNode* getBatchNode(void);
|
|
|
|
virtual void setBatchNode(CCSpriteBatchNode *pobSpriteBatchNode);
|
|
|
|
|
|
|
|
// Animation
|
|
|
|
|
|
|
|
/** changes the display frame with animation name and index.
|
|
|
|
The animation name will be get from the CCAnimationCache
|
|
|
|
@since v0.99.5
|
|
|
|
*/
|
|
|
|
virtual void setDisplayFrameWithAnimationName(const char *animationName, int frameIndex);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void setTextureCoords(CCRect rect);
|
|
|
|
virtual void updateBlendFunc(void);
|
|
|
|
virtual void setReorderChildDirtyRecursively(void);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
//
|
|
|
|
// Data used when the sprite is rendered using a CCSpriteSheet
|
|
|
|
//
|
2012-06-27 14:21:29 +08:00
|
|
|
CCTextureAtlas* m_pobTextureAtlas; // Sprite Sheet texture atlas (weak reference)
|
|
|
|
unsigned int m_uAtlasIndex; // Absolute (real) Index on the SpriteSheet
|
|
|
|
CCSpriteBatchNode* m_pobBatchNode; // Used batch node (weak reference)
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-27 14:21:29 +08:00
|
|
|
bool m_bDirty; // Sprite needs to be updated
|
|
|
|
bool m_bRecursiveDirty; // Subchildren needs to be updated
|
|
|
|
bool m_bHasChildren; // optimization to check if it contain children
|
|
|
|
bool m_bShouldBeHidden; // should not be drawn because one of the ancestors is not visible
|
|
|
|
CCAffineTransform m_transformToBatch; //
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// Data used when the sprite is self-rendered
|
|
|
|
//
|
|
|
|
ccBlendFunc m_sBlendFunc; // Needed for the texture protocol
|
2012-06-27 14:21:29 +08:00
|
|
|
CCTexture2D* m_pobTexture;// Texture used to render the sprite
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// Shared data
|
|
|
|
//
|
|
|
|
|
|
|
|
// texture
|
|
|
|
CCRect m_obRect;
|
|
|
|
bool m_bRectRotated;
|
|
|
|
|
|
|
|
// Offset Position (used by Zwoptex)
|
|
|
|
CCPoint m_obOffsetPosition;
|
|
|
|
CCPoint m_obUnflippedOffsetPositionFromCenter;
|
|
|
|
|
|
|
|
// vertex coords, texture coords and color info
|
|
|
|
ccV3F_C4B_T2F_Quad m_sQuad;
|
|
|
|
|
|
|
|
// opacity and RGB protocol
|
|
|
|
ccColor3B m_sColorUnmodified;
|
|
|
|
bool m_bOpacityModifyRGB;
|
|
|
|
|
|
|
|
// image is flipped
|
|
|
|
bool m_bFlipX;
|
|
|
|
bool m_bFlipY;
|
|
|
|
};
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
// end of sprite_nodes group
|
|
|
|
/// @}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __SPITE_NODE_CCSPRITE_H__
|