2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2008-2011 Ricardo Quesada
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2012-04-19 14:35:52 +08:00
|
|
|
Copyright (c) 2011 Zynga Inc.
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2012-04-19 14:35:52 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __SPRITE_CCSPRITE_FRAME_H__
|
|
|
|
#define __SPRITE_CCSPRITE_FRAME_H__
|
|
|
|
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "2d/CCNode.h"
|
|
|
|
#include "base/CCRef.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "math/CCGeometry.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class Texture2D;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup sprite_nodes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** @brief A SpriteFrame has:
|
|
|
|
- texture: A Texture2D that will be used by the Sprite
|
2012-04-19 14:35:52 +08:00
|
|
|
- rectangle: A rectangle of the texture
|
2010-07-22 09:39:15 +08:00
|
|
|
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
You can modify the frame of a Sprite by doing:
|
2010-07-22 09:39:15 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
SpriteFrame *frame = SpriteFrame::frameWithTexture(texture, rect, offset);
|
2012-04-19 14:35:52 +08:00
|
|
|
sprite->setDisplayFrame(frame);
|
|
|
|
*/
|
2014-02-20 10:53:49 +08:00
|
|
|
class CC_DLL SpriteFrame : public Ref, public Clonable
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-06-19 06:06:53 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** Create a SpriteFrame with a texture filename, rect in points.
|
2012-06-14 15:13:16 +08:00
|
|
|
It is assumed that the frame was not trimmed.
|
|
|
|
*/
|
2013-11-06 11:02:03 +08:00
|
|
|
static SpriteFrame* create(const std::string& filename, const Rect& rect);
|
2012-07-23 22:49:11 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** Create a SpriteFrame with a texture filename, rect, rotated, offset and originalSize in pixels.
|
2012-06-14 15:13:16 +08:00
|
|
|
The originalSize is the size in pixels of the frame before being trimmed.
|
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
static SpriteFrame* create(const std::string& filename, const Rect& rect, bool rotated, const Vec2& offset, const Size& originalSize);
|
2012-07-23 22:49:11 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** Create a SpriteFrame with a texture, rect in points.
|
2012-07-23 22:49:11 +08:00
|
|
|
It is assumed that the frame was not trimmed.
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
static SpriteFrame* createWithTexture(Texture2D* pobTexture, const Rect& rect);
|
2012-07-23 22:49:11 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
/** Create a SpriteFrame with a texture, rect, rotated, offset and originalSize in pixels.
|
2012-07-23 22:49:11 +08:00
|
|
|
The originalSize is the size in points of the frame before being trimmed.
|
|
|
|
*/
|
2014-05-15 01:07:09 +08:00
|
|
|
static SpriteFrame* createWithTexture(Texture2D* pobTexture, const Rect& rect, bool rotated, const Vec2& offset, const Size& originalSize);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-07-18 07:56:19 +08:00
|
|
|
// attributes
|
|
|
|
inline const Rect& getRectInPixels() const { return _rectInPixels; }
|
|
|
|
void setRectInPixels(const Rect& rectInPixels);
|
|
|
|
|
|
|
|
inline bool isRotated(void) const { return _rotated; }
|
2013-12-18 17:47:20 +08:00
|
|
|
inline void setRotated(bool rotated) { _rotated = rotated; }
|
2013-07-18 07:56:19 +08:00
|
|
|
|
|
|
|
/** get rect of the frame */
|
|
|
|
inline const Rect& getRect(void) const { return _rect; }
|
|
|
|
/** set rect of the frame */
|
|
|
|
void setRect(const Rect& rect);
|
|
|
|
|
|
|
|
/** get offset of the frame */
|
2014-05-15 01:07:09 +08:00
|
|
|
const Vec2& getOffsetInPixels(void) const;
|
2013-07-18 07:56:19 +08:00
|
|
|
/** set offset of the frame */
|
2014-05-15 01:07:09 +08:00
|
|
|
void setOffsetInPixels(const Vec2& offsetInPixels);
|
2013-07-18 07:56:19 +08:00
|
|
|
|
|
|
|
/** get original size of the trimmed image */
|
|
|
|
inline const Size& getOriginalSizeInPixels(void) const { return _originalSizeInPixels; }
|
|
|
|
/** set original size of the trimmed image */
|
|
|
|
inline void setOriginalSizeInPixels(const Size& sizeInPixels) { _originalSizeInPixels = sizeInPixels; }
|
|
|
|
|
|
|
|
/** get original size of the trimmed image */
|
|
|
|
inline const Size& getOriginalSize(void) const { return _originalSize; }
|
|
|
|
/** set original size of the trimmed image */
|
|
|
|
inline void setOriginalSize(const Size& sizeInPixels) { _originalSize = sizeInPixels; }
|
|
|
|
|
|
|
|
/** get texture of the frame */
|
|
|
|
Texture2D* getTexture(void);
|
|
|
|
/** set texture of the frame, the texture is retained */
|
|
|
|
void setTexture(Texture2D* pobTexture);
|
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
const Vec2& getOffset(void) const;
|
|
|
|
void setOffset(const Vec2& offsets);
|
2013-07-18 07:56:19 +08:00
|
|
|
|
|
|
|
// Overrides
|
|
|
|
virtual SpriteFrame *clone() const override;
|
2014-06-10 11:28:34 +08:00
|
|
|
|
2014-06-10 12:04:20 +08:00
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
2014-06-10 11:28:34 +08:00
|
|
|
/**
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
SpriteFrame(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual ~SpriteFrame(void);
|
|
|
|
|
|
|
|
/** Initializes a SpriteFrame with a texture, rect in points.
|
|
|
|
It is assumed that the frame was not trimmed.
|
|
|
|
*/
|
|
|
|
bool initWithTexture(Texture2D* pobTexture, const Rect& rect);
|
|
|
|
|
|
|
|
/** Initializes a SpriteFrame with a texture filename, rect in points;
|
|
|
|
It is assumed that the frame was not trimmed.
|
|
|
|
*/
|
|
|
|
bool initWithTextureFilename(const std::string& filename, const Rect& rect);
|
|
|
|
|
|
|
|
/** Initializes a SpriteFrame with a texture, rect, rotated, offset and originalSize in pixels.
|
|
|
|
The originalSize is the size in points of the frame before being trimmed.
|
|
|
|
*/
|
|
|
|
bool initWithTexture(Texture2D* pobTexture, const Rect& rect, bool rotated, const Vec2& offset, const Size& originalSize);
|
|
|
|
|
|
|
|
/** Initializes a SpriteFrame with a texture, rect, rotated, offset and originalSize in pixels.
|
|
|
|
The originalSize is the size in pixels of the frame before being trimmed.
|
|
|
|
|
|
|
|
@since v1.1
|
|
|
|
*/
|
|
|
|
bool initWithTextureFilename(const std::string& filename, const Rect& rect, bool rotated, const Vec2& offset, const Size& originalSize);
|
2013-07-18 07:56:19 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
protected:
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 _offset;
|
2013-06-20 14:13:12 +08:00
|
|
|
Size _originalSize;
|
|
|
|
Rect _rectInPixels;
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _rotated;
|
2013-06-20 14:13:12 +08:00
|
|
|
Rect _rect;
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 _offsetInPixels;
|
2013-06-20 14:13:12 +08:00
|
|
|
Size _originalSizeInPixels;
|
|
|
|
Texture2D *_texture;
|
2013-06-15 14:03:30 +08:00
|
|
|
std::string _textureFilename;
|
2012-04-19 14:35:52 +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
|
|
|
|
|
|
|
|
#endif //__SPRITE_CCSPRITE_FRAME_H__
|