2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
2012-09-24 21:22:20 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2012-04-19 14:35:52 +08:00
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-11-11 11:00:50 +08:00
|
|
|
#ifndef __SPRITE_NODE_CCSPRITE_H__
|
|
|
|
#define __SPRITE_NODE_CCSPRITE_H__
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "CCNode.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#include "CCProtocols.h"
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "CCTextureAtlas.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#include "ccTypes.h"
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "CCDictionary.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#include <string>
|
2013-04-13 05:51:29 +08:00
|
|
|
#ifdef EMSCRIPTEN
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "CCGLBufferedNode.h"
|
2013-04-13 05:51:29 +08:00
|
|
|
#endif // EMSCRIPTEN
|
2013-10-14 14:01:00 +08:00
|
|
|
#include "CCPhysicsBody.h"
|
2013-12-10 09:32:51 +08:00
|
|
|
#include "kazmath/kazmath.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class SpriteBatchNode;
|
|
|
|
class SpriteFrame;
|
|
|
|
class Animation;
|
|
|
|
class Rect;
|
|
|
|
class Point;
|
|
|
|
class Size;
|
|
|
|
class Texture2D;
|
2012-04-19 14:35:52 +08:00
|
|
|
struct transformValues_;
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup sprite_nodes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-11-11 11:00:50 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Sprite is a 2d image ( http://en.wikipedia.org/wiki/Sprite_(computer_graphics) )
|
2013-01-14 16:54:20 +08:00
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* Sprite can be created with an image, or with a sub-rectangle of an image.
|
2013-01-14 16:54:20 +08:00
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* If the parent or any of its ancestors is a SpriteBatchNode then the following features/limitations are valid
|
|
|
|
* - Features when the parent is a BatchNode:
|
|
|
|
* - MUCH faster rendering, specially if the SpriteBatchNode has many children. All the children will be drawn in a single batch.
|
2013-01-14 16:54:20 +08:00
|
|
|
*
|
|
|
|
* - Limitations
|
2013-06-20 14:13:12 +08:00
|
|
|
* - Camera is not supported yet (eg: OrbitCamera action doesn't work)
|
|
|
|
* - GridBase actions are not supported (eg: Lens, Ripple, Twirl)
|
|
|
|
* - The Alias/Antialias property belongs to SpriteBatchNode, so you can't individually set the aliased property.
|
|
|
|
* - The Blending function property belongs to SpriteBatchNode, so you can't individually set the blending function property.
|
2013-01-14 16:54:20 +08:00
|
|
|
* - Parallax scroller is not supported, but can be simulated with a "proxy" sprite.
|
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* If the parent is an standard Node, then Sprite behaves like any other Node:
|
2013-01-14 16:54:20 +08:00
|
|
|
* - It supports blending functions
|
|
|
|
* - It supports aliasing / antialiasing
|
|
|
|
* - But the rendering will be slower: 1 draw per children.
|
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* The default anchorPoint in Sprite is (0.5, 0.5).
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-12-06 18:07:16 +08:00
|
|
|
class CC_DLL Sprite : public Node, public TextureProtocol
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-07-20 13:01:27 +08:00
|
|
|
|
2013-09-01 01:38:10 +08:00
|
|
|
static const int INDEX_NOT_INITIALIZED = -1; /// Sprite invalid index on the SpriteBatchNode
|
2013-07-20 13:01:27 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Creators
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Creates an empty sprite without texture. You can call setTexture method subsequently.
|
|
|
|
*
|
|
|
|
* @return An empty sprite object that is marked as autoreleased.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
static Sprite* create();
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Creates a sprite with an image filename.
|
|
|
|
*
|
|
|
|
* After creation, the rect of sprite will be the size of the image,
|
|
|
|
* and the offset will be (0,0).
|
|
|
|
*
|
2013-07-26 06:53:24 +08:00
|
|
|
* @param filename The string which indicates a path to image file, e.g., "scene1/monster.png".
|
2013-01-14 16:54:20 +08:00
|
|
|
* @return A valid sprite object that is marked as autoreleased.
|
|
|
|
*/
|
2013-11-06 11:02:03 +08:00
|
|
|
static Sprite* create(const std::string& filename);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Creates a sprite with an image filename and a rect.
|
|
|
|
*
|
2013-07-26 06:53:24 +08:00
|
|
|
* @param filename The string wich indicates a path to image file, e.g., "scene1/monster.png"
|
|
|
|
* @param rect Only the contents inside rect of filename's texture will be applied for this sprite.
|
2013-01-14 16:54:20 +08:00
|
|
|
* @return A valid sprite object that is marked as autoreleased.
|
|
|
|
*/
|
2013-11-06 11:02:03 +08:00
|
|
|
static Sprite* create(const std::string& filename, const Rect& rect);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Creates a sprite with an exsiting texture contained in a Texture2D object
|
2013-01-14 21:51:47 +08:00
|
|
|
* After creation, the rect will be the size of the texture, and the offset will be (0,0).
|
2013-01-14 16:54:20 +08:00
|
|
|
*
|
2013-07-26 06:53:24 +08:00
|
|
|
* @param texture A pointer to a Texture2D object.
|
2013-01-14 16:54:20 +08:00
|
|
|
* @return A valid sprite object that is marked as autoreleased.
|
2012-06-14 15:13:16 +08:00
|
|
|
*/
|
2013-07-26 06:53:24 +08:00
|
|
|
static Sprite* createWithTexture(Texture2D *texture);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Creates a sprite with a texture and a rect.
|
|
|
|
*
|
|
|
|
* After creation, the offset will be (0,0).
|
|
|
|
*
|
2013-07-26 06:53:24 +08:00
|
|
|
* @param texture A pointer to an existing Texture2D object.
|
2013-06-20 14:13:12 +08:00
|
|
|
* You can use a Texture2D object for many sprites.
|
2013-01-14 21:51:47 +08:00
|
|
|
* @param rect Only the contents inside the rect of this texture will be applied for this sprite.
|
2013-11-14 07:55:36 +08:00
|
|
|
* @param rotated Whether or not the rect is rotated
|
2013-01-14 16:54:20 +08:00
|
|
|
* @return A valid sprite object that is marked as autoreleased.
|
2012-06-14 15:13:16 +08:00
|
|
|
*/
|
2013-11-14 07:55:36 +08:00
|
|
|
static Sprite* createWithTexture(Texture2D *texture, const Rect& rect, bool rotated=false);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Creates a sprite with an sprite frame.
|
|
|
|
*
|
|
|
|
* @param pSpriteFrame A sprite frame which involves a texture and a rect
|
|
|
|
* @return A valid sprite object that is marked as autoreleased.
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
static Sprite* createWithSpriteFrame(SpriteFrame *pSpriteFrame);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Creates a sprite with an sprite frame name.
|
|
|
|
*
|
2013-07-26 06:53:24 +08:00
|
|
|
* A SpriteFrame will be fetched from the SpriteFrameCache by spriteFrameName param.
|
2013-06-20 14:13:12 +08:00
|
|
|
* If the SpriteFrame doesn't exist it will raise an exception.
|
2013-01-14 16:54:20 +08:00
|
|
|
*
|
2013-07-26 06:53:24 +08:00
|
|
|
* @param spriteFrameName A null terminated string which indicates the sprite frame name.
|
2013-01-14 16:54:20 +08:00
|
|
|
* @return A valid sprite object that is marked as autoreleased.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-11-06 11:02:03 +08:00
|
|
|
static Sprite* createWithSpriteFrameName(const std::string& spriteFrameName);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @} end of creators group
|
2013-11-11 11:00:50 +08:00
|
|
|
|
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @{
|
|
|
|
/// @name BatchNode methods
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-11-11 11:00:50 +08:00
|
|
|
* Updates the quad according the rotation, position, scale values.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-01-14 16:54:20 +08:00
|
|
|
virtual void updateTransform(void);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Returns the batch node object if this sprite is rendered by SpriteBatchNode
|
2013-01-14 16:54:20 +08:00
|
|
|
*
|
2013-06-20 14:13:12 +08:00
|
|
|
* @return The SpriteBatchNode object if this sprite is rendered by SpriteBatchNode,
|
2013-12-18 17:47:20 +08:00
|
|
|
* nullptr if the sprite isn't used batch node.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual SpriteBatchNode* getBatchNode(void);
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Sets the batch node to sprite
|
|
|
|
* @warning This method is not recommended for game developers. Sample code for using batch node
|
|
|
|
* @code
|
2013-06-20 14:13:12 +08:00
|
|
|
* SpriteBatchNode *batch = SpriteBatchNode::create("Images/grossini_dance_atlas.png", 15);
|
2013-07-12 14:30:26 +08:00
|
|
|
* Sprite *sprite = Sprite::createWithTexture(batch->getTexture(), Rect(0, 0, 57, 57));
|
2013-01-14 16:54:20 +08:00
|
|
|
* batch->addChild(sprite);
|
|
|
|
* layer->addChild(batch);
|
|
|
|
* @endcode
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-07-26 06:53:24 +08:00
|
|
|
virtual void setBatchNode(SpriteBatchNode *spriteBatchNode);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @} end of BatchNode methods
|
2013-11-11 11:00:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @{
|
2013-11-14 07:55:36 +08:00
|
|
|
/// @name Texture / Frame methods
|
|
|
|
|
2013-11-15 07:37:43 +08:00
|
|
|
/** Sets a new texture (from a filename) to the sprite.
|
|
|
|
It will call `setTextureRect()` with the texture's content size.
|
2013-11-15 08:21:49 +08:00
|
|
|
TODO: The whole Sprite API needs to be reviewed.
|
2013-11-15 07:37:43 +08:00
|
|
|
*/
|
2013-11-14 07:55:36 +08:00
|
|
|
virtual void setTexture(const std::string &filename );
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-11-15 07:37:43 +08:00
|
|
|
/** Sets a new texture to the sprite.
|
|
|
|
The Texture's rect is not changed.
|
|
|
|
*/
|
|
|
|
virtual void setTexture(Texture2D *texture) override;
|
|
|
|
|
|
|
|
/** returns the Texture2D object used by the sprite */
|
|
|
|
virtual Texture2D* getTexture() const override;
|
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Updates the texture rect of the Sprite in points.
|
2013-08-01 16:39:42 +08:00
|
|
|
* It will call setTextureRect(const Rect& rect, bool rotated, const Size& untrimmedSize) with \p rotated = false, and \p utrimmedSize = rect.size.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setTextureRect(const Rect& rect);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Sets the texture rect, rectRotated and untrimmed size of the Sprite in points.
|
2013-01-14 16:54:20 +08:00
|
|
|
* It will update the texture coordinates and the vertex rectangle.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setTextureRect(const Rect& rect, bool rotated, const Size& untrimmedSize);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Sets 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.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setVertexRect(const Rect& rect);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-11-14 07:55:36 +08:00
|
|
|
* Sets a new SpriteFrame to the Sprite.
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-11-14 07:55:36 +08:00
|
|
|
virtual void setSpriteFrame(SpriteFrame* newFrame);
|
|
|
|
virtual void setSpriteFrame(const std::string &spriteFrameName);
|
|
|
|
|
|
|
|
/** @deprecated Use `setSpriteFrame()` instead. */
|
2013-11-15 07:37:43 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual void setDisplayFrame(SpriteFrame *newFrame) { setSpriteFrame(newFrame); }
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Returns whether or not a SpriteFrame is being displayed
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-07-04 08:44:41 +08:00
|
|
|
virtual bool isFrameDisplayed(SpriteFrame *pFrame) const;
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Returns the current displayed frame.
|
|
|
|
*/
|
2013-11-15 07:37:43 +08:00
|
|
|
virtual SpriteFrame* getSpriteFrame() const;
|
|
|
|
/** @deprecated Use `getSpriteFrame()` instead */
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual SpriteFrame* getDisplayFrame() const { return getSpriteFrame(); }
|
|
|
|
/** @deprecated Use `getSpriteFrame()` instead */
|
|
|
|
CC_DEPRECATED_ATTRIBUTE virtual SpriteFrame* displayFrame() const { return getSpriteFrame(); };
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @} End of frames methods
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Animation methods
|
|
|
|
/**
|
|
|
|
* Changes the display frame with animation name and index.
|
2013-06-20 14:13:12 +08:00
|
|
|
* The animation name will be get from the AnimationCache
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-12-12 12:07:20 +08:00
|
|
|
virtual void setDisplayFrameWithAnimationName(const std::string& animationName, ssize_t frameIndex);
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @}
|
2013-11-11 11:00:50 +08:00
|
|
|
|
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Sprite Properties' setter/getters
|
2013-11-11 11:00:50 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-14 16:54:20 +08:00
|
|
|
* Whether or not the Sprite needs to be updated in the Atlas.
|
|
|
|
*
|
|
|
|
* @return true if the sprite needs to be updated in the Atlas, false otherwise.
|
|
|
|
*/
|
2013-07-05 13:58:59 +08:00
|
|
|
virtual bool isDirty(void) const { return _dirty; }
|
2013-11-11 11:00:50 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-14 16:54:20 +08:00
|
|
|
* Makes the Sprite to be updated in the Atlas.
|
|
|
|
*/
|
2013-07-05 13:58:59 +08:00
|
|
|
virtual void setDirty(bool bDirty) { _dirty = bDirty; }
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-09-13 11:41:20 +08:00
|
|
|
* Returns the quad (tex coords, vertex coords and color) information.
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-07-05 17:32:50 +08:00
|
|
|
inline V3F_C4B_T2F_Quad getQuad(void) const { return _quad; }
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-11-11 11:00:50 +08:00
|
|
|
/**
|
2013-01-14 16:54:20 +08:00
|
|
|
* Returns whether or not the texture rectangle is rotated.
|
|
|
|
*/
|
2013-07-04 08:44:41 +08:00
|
|
|
inline bool isTextureRectRotated(void) const { return _rectRotated; }
|
2013-11-11 11:00:50 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the index used on the TextureAtlas.
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-12-12 12:07:20 +08:00
|
|
|
inline ssize_t getAtlasIndex(void) const { return _atlasIndex; }
|
2013-11-11 11:00:50 +08:00
|
|
|
|
|
|
|
/**
|
2013-01-14 16:54:20 +08:00
|
|
|
* Sets the index used on the TextureAtlas.
|
|
|
|
* @warning Don't modify this value unless you know what you are doing
|
|
|
|
*/
|
2013-12-12 12:07:20 +08:00
|
|
|
inline void setAtlasIndex(ssize_t atlasIndex) { _atlasIndex = atlasIndex; }
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-11-11 11:00:50 +08:00
|
|
|
/**
|
|
|
|
* Returns the rect of the Sprite in points
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
inline const Rect& getTextureRect(void) { return _rect; }
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Gets the weak reference of the TextureAtlas when the sprite is rendered using via SpriteBatchNode
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
inline TextureAtlas* getTextureAtlas(void) { return _textureAtlas; }
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
* Sets the weak reference of the TextureAtlas when the sprite is rendered using via SpriteBatchNode
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
inline void setTextureAtlas(TextureAtlas *pobTextureAtlas) { _textureAtlas = pobTextureAtlas; }
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-11-11 11:00:50 +08:00
|
|
|
/**
|
2013-01-14 16:54:20 +08:00
|
|
|
* Gets the offset position of the sprite. Calculated automatically by editors like Zwoptex.
|
|
|
|
*/
|
2013-07-04 08:44:41 +08:00
|
|
|
inline const Point& getOffsetPosition(void) const { return _offsetPosition; }
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
|
2013-11-11 11:00:50 +08:00
|
|
|
/**
|
2013-01-14 16:54:20 +08:00
|
|
|
* Returns the flag which indicates whether the sprite is flipped horizontally or not.
|
|
|
|
*
|
|
|
|
* 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);
|
|
|
|
*
|
2013-11-11 11:00:50 +08:00
|
|
|
* @return true if the sprite is flipped horizontally, false otherwise.
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-09-13 11:41:20 +08:00
|
|
|
bool isFlippedX(void) const;
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Sets whether the sprite should be flipped horizontally or not.
|
|
|
|
*
|
2013-11-11 11:00:50 +08:00
|
|
|
* @param flippedX true if the sprite should be flipped horizontally, false otherwise.
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-09-13 11:41:20 +08:00
|
|
|
void setFlippedX(bool flippedX);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
|
|
|
/** @deprecated Use isFlippedX() instead
|
2013-09-13 11:41:20 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
CC_DEPRECATED_ATTRIBUTE bool isFlipX() { return isFlippedX(); };
|
|
|
|
/** @deprecated Use setFlippedX() instead */
|
2013-11-11 11:00:50 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void setFlipX(bool flippedX) { setFlippedX(flippedX); };
|
|
|
|
|
|
|
|
/**
|
2013-01-14 16:54:20 +08:00
|
|
|
* Return the flag which indicates whether the sprite is flipped vertically or not.
|
2013-11-11 11:00:50 +08:00
|
|
|
*
|
2013-01-14 16:54:20 +08:00
|
|
|
* 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);
|
2013-11-11 11:00:50 +08:00
|
|
|
*
|
|
|
|
* @return true if the sprite is flipped vertically, false otherwise.
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-09-13 11:41:20 +08:00
|
|
|
bool isFlippedY(void) const;
|
2013-01-14 16:54:20 +08:00
|
|
|
/**
|
|
|
|
* Sets whether the sprite should be flipped vertically or not.
|
|
|
|
*
|
2013-11-11 11:00:50 +08:00
|
|
|
* @param flippedY true if the sprite should be flipped vertically, false otherwise.
|
2013-01-14 16:54:20 +08:00
|
|
|
*/
|
2013-09-13 11:41:20 +08:00
|
|
|
void setFlippedY(bool flippedY);
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
/// @} End of Sprite properties getter/setters
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-09-13 11:41:20 +08:00
|
|
|
/** @deprecated Use isFlippedY() instead */
|
|
|
|
CC_DEPRECATED_ATTRIBUTE bool isFlipY() { return isFlippedY(); };
|
|
|
|
/** @deprecated Use setFlippedY() instead */
|
2013-11-11 11:00:50 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void setFlipY(bool flippedY) { setFlippedY(flippedY); };
|
2013-07-16 03:43:22 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// Overrides
|
|
|
|
//
|
|
|
|
/// @{
|
|
|
|
/// @name Functions inherited from TextureProtocol
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
*@code
|
|
|
|
*When this function bound into js or lua,the parameter will be changed
|
|
|
|
*In js: var setBlendFunc(var src, var dst)
|
|
|
|
*In lua: local setBlendFunc(local src, local dst)
|
|
|
|
*@endcode
|
|
|
|
*/
|
2013-07-16 03:43:22 +08:00
|
|
|
inline void setBlendFunc(const BlendFunc &blendFunc) override { _blendFunc = blendFunc; }
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-23 18:26:26 +08:00
|
|
|
inline const BlendFunc& getBlendFunc() const override { return _blendFunc; }
|
2013-07-16 03:43:22 +08:00
|
|
|
/// @}
|
|
|
|
|
2013-12-13 06:30:22 +08:00
|
|
|
virtual std::string getDescription() const override;
|
|
|
|
|
2013-07-16 03:43:22 +08:00
|
|
|
/// @{
|
|
|
|
/// @name Functions inherited from Node
|
2013-07-27 21:44:49 +08:00
|
|
|
virtual void setScaleX(float scaleX) override;
|
|
|
|
virtual void setScaleY(float scaleY) override;
|
2013-11-06 21:42:31 +08:00
|
|
|
virtual void setScale(float scaleX, float scaleY) override;
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-07-16 03:43:22 +08:00
|
|
|
virtual void setPosition(const Point& pos) override;
|
2013-11-05 01:14:22 +08:00
|
|
|
virtual void setPosition(float x, float y) override;
|
2013-08-01 17:47:37 +08:00
|
|
|
virtual void setRotation(float rotation) override;
|
|
|
|
virtual void setRotationX(float rotationX) override;
|
|
|
|
virtual void setRotationY(float rotationY) override;
|
2013-07-16 03:43:22 +08:00
|
|
|
virtual void setSkewX(float sx) override;
|
|
|
|
virtual void setSkewY(float sy) override;
|
2013-08-01 17:47:37 +08:00
|
|
|
virtual void removeChild(Node* child, bool cleanup) override;
|
|
|
|
virtual void removeAllChildrenWithCleanup(bool cleanup) override;
|
2013-07-26 07:27:24 +08:00
|
|
|
virtual void reorderChild(Node *child, int zOrder) override;
|
2013-12-23 16:58:26 +08:00
|
|
|
using Node::addChild;
|
2013-07-26 07:27:24 +08:00
|
|
|
virtual void addChild(Node *child, int zOrder, int tag) override;
|
2013-07-16 03:43:22 +08:00
|
|
|
virtual void sortAllChildren() override;
|
2013-08-01 17:47:37 +08:00
|
|
|
virtual void setScale(float scale) override;
|
|
|
|
virtual void setVertexZ(float vertexZ) override;
|
2013-07-16 03:43:22 +08:00
|
|
|
virtual void setAnchorPoint(const Point& anchor) override;
|
|
|
|
virtual void ignoreAnchorPointForPosition(bool value) override;
|
|
|
|
virtual void setVisible(bool bVisible) override;
|
2013-11-27 09:13:04 +08:00
|
|
|
virtual void updateQuadVertices();
|
2013-07-16 03:43:22 +08:00
|
|
|
virtual void draw(void) override;
|
|
|
|
virtual void setOpacityModifyRGB(bool modify) override;
|
|
|
|
virtual bool isOpacityModifyRGB(void) const override;
|
|
|
|
/// @}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
protected:
|
2013-11-14 07:55:36 +08:00
|
|
|
|
|
|
|
Sprite(void);
|
|
|
|
virtual ~Sprite(void);
|
|
|
|
|
|
|
|
/* Initializes an empty sprite with nothing init. */
|
|
|
|
virtual bool init(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a sprite with a texture.
|
|
|
|
*
|
|
|
|
* After initialization, the rect used will be the size of the texture, and the offset will be (0,0).
|
|
|
|
*
|
|
|
|
* @param texture A pointer to an existing Texture2D object.
|
|
|
|
* You can use a Texture2D object for many sprites.
|
|
|
|
* @return true if the sprite is initialized properly, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool initWithTexture(Texture2D *texture);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a sprite with a texture and a rect.
|
|
|
|
*
|
|
|
|
* After initialization, the offset will be (0,0).
|
|
|
|
*
|
|
|
|
* @param texture A pointer to an exisiting Texture2D object.
|
|
|
|
* You can use a Texture2D object for many sprites.
|
|
|
|
* @param rect Only the contents inside rect of this texture will be applied for this sprite.
|
|
|
|
* @return true if the sprite is initialized properly, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool initWithTexture(Texture2D *texture, const Rect& rect);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a sprite with a texture and a rect in points, optionally rotated.
|
|
|
|
*
|
|
|
|
* After initialization, the offset will be (0,0).
|
|
|
|
* @note This is the designated initializer.
|
|
|
|
*
|
|
|
|
* @param texture A Texture2D object whose texture will be applied to this sprite.
|
|
|
|
* @param rect A rectangle assigned the contents of texture.
|
|
|
|
* @param rotated Whether or not the texture rectangle is rotated.
|
|
|
|
* @return true if the sprite is initialized properly, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool initWithTexture(Texture2D *texture, const Rect& rect, bool rotated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a sprite with an SpriteFrame. The texture and rect in SpriteFrame will be applied on this sprite
|
|
|
|
*
|
|
|
|
* @param pSpriteFrame A SpriteFrame object. It should includes a valid texture and a rect
|
|
|
|
* @return true if the sprite is initialized properly, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool initWithSpriteFrame(SpriteFrame *pSpriteFrame);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a sprite with an sprite frame name.
|
|
|
|
*
|
|
|
|
* A SpriteFrame will be fetched from the SpriteFrameCache by name.
|
|
|
|
* If the SpriteFrame doesn't exist it will raise an exception.
|
|
|
|
*
|
|
|
|
* @param spriteFrameName A key string that can fected a volid SpriteFrame from SpriteFrameCache
|
|
|
|
* @return true if the sprite is initialized properly, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool initWithSpriteFrameName(const std::string& spriteFrameName);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a sprite with an image filename.
|
|
|
|
*
|
|
|
|
* This method will find filename from local file system, load its content to Texture2D,
|
|
|
|
* then use Texture2D to create a sprite.
|
|
|
|
* After initialization, the rect used will be the size of the image. The offset will be (0,0).
|
|
|
|
*
|
|
|
|
* @param filename The path to an image file in local file system
|
|
|
|
* @return true if the sprite is initialized properly, false otherwise.
|
|
|
|
* @js init
|
|
|
|
* @lua init
|
|
|
|
*/
|
|
|
|
virtual bool initWithFile(const std::string& filename);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a sprite with an image filename, and a rect.
|
|
|
|
*
|
|
|
|
* This method will find filename from local file system, load its content to Texture2D,
|
|
|
|
* then use Texture2D to create a sprite.
|
|
|
|
* After initialization, the offset will be (0,0).
|
|
|
|
*
|
|
|
|
* @param filename The path to an image file in local file system.
|
|
|
|
* @param rect The rectangle assigned the content area from texture.
|
|
|
|
* @return true if the sprite is initialized properly, false otherwise.
|
|
|
|
* @js init
|
|
|
|
* @lua init
|
|
|
|
*/
|
|
|
|
virtual bool initWithFile(const std::string& filename, const Rect& rect);
|
|
|
|
|
2013-01-14 16:54:20 +08:00
|
|
|
void updateColor(void);
|
2013-06-20 14:13:12 +08:00
|
|
|
virtual void setTextureCoords(Rect rect);
|
2012-04-19 14:35:52 +08:00
|
|
|
virtual void updateBlendFunc(void);
|
|
|
|
virtual void setReorderChildDirtyRecursively(void);
|
2013-01-14 16:54:20 +08:00
|
|
|
virtual void setDirtyRecursively(bool bValue);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
bool culling() const;
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
//
|
2013-06-20 14:13:12 +08:00
|
|
|
// Data used when the sprite is rendered using a SpriteSheet
|
2012-04-19 14:35:52 +08:00
|
|
|
//
|
2013-07-20 13:01:27 +08:00
|
|
|
TextureAtlas* _textureAtlas; /// SpriteBatchNode texture atlas (weak reference)
|
2013-12-12 12:07:20 +08:00
|
|
|
ssize_t _atlasIndex; /// Absolute (real) Index on the SpriteSheet
|
2013-07-20 13:01:27 +08:00
|
|
|
SpriteBatchNode* _batchNode; /// Used batch node (weak reference)
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2013-07-20 13:01:27 +08:00
|
|
|
bool _dirty; /// Whether the sprite needs to be updated
|
|
|
|
bool _recursiveDirty; /// Whether all of the sprite's children needs to be updated
|
|
|
|
bool _hasChildren; /// Whether the sprite contains children
|
|
|
|
bool _shouldBeHidden; /// should not be drawn because one of the ancestors is not visible
|
2013-12-10 09:32:51 +08:00
|
|
|
kmMat4 _transformToBatch;
|
2013-11-11 11:00:50 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
//
|
|
|
|
// Data used when the sprite is self-rendered
|
|
|
|
//
|
2013-07-05 16:49:22 +08:00
|
|
|
BlendFunc _blendFunc; /// It's required for TextureProtocol inheritance
|
2013-07-20 13:01:27 +08:00
|
|
|
Texture2D* _texture; /// Texture2D object that is used to render the sprite
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// Shared data
|
|
|
|
//
|
|
|
|
|
|
|
|
// texture
|
2013-07-20 13:01:27 +08:00
|
|
|
Rect _rect; /// Retangle of Texture2D
|
|
|
|
bool _rectRotated; /// Whether the texture is rotated
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// Offset Position (used by Zwoptex)
|
2013-06-20 14:13:12 +08:00
|
|
|
Point _offsetPosition;
|
|
|
|
Point _unflippedOffsetPositionFromCenter;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// vertex coords, texture coords and color info
|
2013-07-05 16:49:22 +08:00
|
|
|
V3F_C4B_T2F_Quad _quad;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// opacity and RGB protocol
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _opacityModifyRGB;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
// image is flipped
|
2013-11-14 07:55:36 +08:00
|
|
|
bool _flippedX; /// Whether the sprite is flipped horizontally or not
|
|
|
|
bool _flippedY; /// Whether the sprite is flipped vertically or not
|
|
|
|
|
|
|
|
private:
|
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(Sprite);
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
2012-07-13 09:53:38 +08:00
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
// end of sprite_nodes group
|
|
|
|
/// @}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|
|
|
|
|
2013-11-11 11:00:50 +08:00
|
|
|
#endif // __SPRITE_NODE_CCSPRITE_H__
|