2013-06-06 12:02:54 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CCSKIN_H__
|
|
|
|
#define __CCSKIN_H__
|
|
|
|
|
|
|
|
#include "../utils/CCArmatureDefine.h"
|
|
|
|
#include "../CCBone.h"
|
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
NS_CC_EXT_ARMATURE_BEGIN
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
class CCSkin : public Sprite
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-09-13 18:07:37 +08:00
|
|
|
static CCSkin *create();
|
|
|
|
static CCSkin *createWithSpriteFrameName(const char *pszSpriteFrameName);
|
|
|
|
static CCSkin *create(const char *pszFileName);
|
2013-06-06 12:02:54 +08:00
|
|
|
public:
|
2013-09-13 18:07:37 +08:00
|
|
|
CCSkin();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
bool initWithSpriteFrameName(const char *pszSpriteFrameName);
|
|
|
|
bool initWithFile(const char *pszFilename);
|
|
|
|
|
|
|
|
void updateArmatureTransform();
|
2013-06-07 10:52:32 +08:00
|
|
|
void updateTransform();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-09-14 19:54:49 +08:00
|
|
|
AffineTransform getNodeToWorldTransform() const;
|
|
|
|
AffineTransform getNodeToWorldTransformAR() const;
|
2013-09-13 18:07:37 +08:00
|
|
|
|
|
|
|
CC_PROPERTY_PASS_BY_REF(CCBaseData, m_sSkinData, SkinData);
|
|
|
|
CC_SYNTHESIZE(CCBone *, m_pBone, Bone);
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
protected:
|
2013-09-13 18:07:37 +08:00
|
|
|
AffineTransform m_tSkinTransform;
|
|
|
|
CC_SYNTHESIZE_READONLY(std::string, m_strDisplayName, DisplayName)
|
2013-06-06 12:02:54 +08:00
|
|
|
};
|
|
|
|
|
2013-09-13 18:07:37 +08:00
|
|
|
NS_CC_EXT_ARMATURE_END
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
#endif /*__CCSKIN_H__*/
|