2013-06-06 12:02:54 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2013-06-06 12:02:54 +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 __CCSKIN_H__
|
|
|
|
#define __CCSKIN_H__
|
|
|
|
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "2d/CCSprite.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "renderer/CCQuadCommand.h"
|
2014-01-17 13:35:58 +08:00
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "cocostudio/CCArmatureDefine.h"
|
|
|
|
#include "cocostudio/CCBone.h"
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace cocostudio {
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
class Skin : public cocos2d::Sprite
|
2013-06-06 12:02:54 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-09-15 19:08:45 +08:00
|
|
|
static Skin *create();
|
2013-12-23 14:05:46 +08:00
|
|
|
static Skin *createWithSpriteFrameName(const std::string& pszSpriteFrameName);
|
|
|
|
static Skin *create(const std::string& pszFileName);
|
2013-06-06 12:02:54 +08:00
|
|
|
public:
|
2013-11-20 12:04:47 +08:00
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
2013-09-15 19:08:45 +08:00
|
|
|
Skin();
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-11-06 16:37:30 +08:00
|
|
|
virtual bool initWithSpriteFrameName(const std::string& spriteFrameName) override;
|
|
|
|
virtual bool initWithFile(const std::string& filename) override;
|
2013-09-13 18:07:37 +08:00
|
|
|
|
|
|
|
void updateArmatureTransform();
|
2013-11-05 19:53:38 +08:00
|
|
|
void updateTransform() override;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2014-05-13 16:15:21 +08:00
|
|
|
cocos2d::Matrix getNodeToWorldTransform() const override;
|
|
|
|
cocos2d::Matrix getNodeToWorldTransformAR() const;
|
2013-12-19 10:42:06 +08:00
|
|
|
|
2014-05-13 16:15:21 +08:00
|
|
|
virtual void draw(cocos2d::Renderer *renderer, const cocos2d::Matrix &transform, bool transformUpdated) override;
|
2013-12-19 10:42:06 +08:00
|
|
|
|
2013-11-20 12:04:47 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-11-05 19:53:38 +08:00
|
|
|
virtual void setSkinData(const BaseData &data);
|
2013-11-20 12:04:47 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-11-05 19:53:38 +08:00
|
|
|
virtual const BaseData &getSkinData() const;
|
2013-06-06 12:02:54 +08:00
|
|
|
|
2013-11-05 19:53:38 +08:00
|
|
|
virtual void setBone(Bone *bone);
|
|
|
|
virtual Bone *getBone() const;
|
|
|
|
|
|
|
|
virtual const std::string &getDisplayName() const { return _displayName; }
|
2013-06-06 12:02:54 +08:00
|
|
|
protected:
|
2013-11-05 19:53:38 +08:00
|
|
|
BaseData _skinData;
|
|
|
|
Bone *_bone;
|
2013-10-30 09:41:40 +08:00
|
|
|
Armature *_armature;
|
2014-05-13 16:15:21 +08:00
|
|
|
cocos2d::Matrix _skinTransform;
|
2013-11-05 19:53:38 +08:00
|
|
|
std::string _displayName;
|
2013-12-26 16:36:03 +08:00
|
|
|
cocos2d::QuadCommand _quadCommand; // quad command
|
2013-06-06 12:02:54 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-06-06 12:02:54 +08:00
|
|
|
|
|
|
|
#endif /*__CCSKIN_H__*/
|