axmol/cocos/editor-support/cocostudio/CCDisplayManager.h

152 lines
4.9 KiB
C++

/****************************************************************************
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 __CCDISPLAYMANAGER_H__
#define __CCDISPLAYMANAGER_H__
#include "cocostudio/CCArmatureDefine.h"
#include "cocostudio/CCDecorativeDisplay.h"
#include "cocostudio/CCDatas.h"
namespace cocostudio {
class Bone;
//! DisplayManager manages Bone's display
class DisplayManager : public cocos2d::Object
{
public:
static DisplayManager *create(Bone *bone);
public:
/**
* @js ctor
*/
DisplayManager();
/**
* @js NA
* @lua NA
*/
~DisplayManager();
bool init(Bone *bone);
/**
* Use BoneData to init the display list.
* If display is a sprite, and it have texture info in the TexutreData, then use TexutreData to init the display's anchor point
* If the display is a Armature, then create a new Armature
*/
virtual void initDisplayList(BoneData *boneData);
/**
* Add display and use _DisplayData init the display.
* If index already have a display, then replace it.
* If index is current display index, then also change display to _index
*
* @param displayData it include the display information, like DisplayType.
* If you want to create a sprite display, then create a SpriteDisplayData param
*
* @param index the index of the display you want to replace or add to
* -1 : append display from back
*/
void addDisplay(DisplayData *displayData, int index);
void addDisplay(cocos2d::Node *display, int index);
void removeDisplay(int index);
cocos2d::Array *getDecorativeDisplayList();
/**
* Change display by index. You can just use this method to change display in the display list.
* The display list is just used for this bone, and it is the displays you may use in every frame.
*
* Note : if index is the same with prev index, the method will not effect
*
* @param index The index of the display you want to change
* @param force If true, then force change display to specified display, or current display will set to display index edit in the flash every key frame.
*/
void changeDisplayByIndex(int index, bool force);
cocos2d::Node *getDisplayRenderNode();
int getCurrentDisplayIndex();
virtual void setCurrentDecorativeDisplay(DecorativeDisplay *decoDisplay);
virtual DecorativeDisplay *getCurrentDecorativeDisplay();
virtual DecorativeDisplay *getDecorativeDisplayByIndex( int index);
/**
* Sets whether the display is visible
* The default value is true, a node is default to visible
*
* @param visible true if the node is visible, false if the node is hidden.
*/
virtual void setVisible(bool visible);
/**
* Determines if the display is visible
*
* @see setVisible(bool)
* @return true if the node is visible, false if the node is hidden.
*/
virtual bool isVisible();
cocos2d::Size getContentSize();
cocos2d::Rect getBoundingBox();
cocos2d::Point getAnchorPoint();
cocos2d::Point getAnchorPointInPoints();
/**
* Check if the position is inside the bone.
*/
virtual bool containPoint(cocos2d::Point &_point);
/**
* Check if the position is inside the bone.
*/
virtual bool containPoint(float x, float y);
protected:
cocos2d::Array *_decoDisplayList;
//! Display render node.
cocos2d::Node *_displayRenderNode;
//! Include current display information, like contour sprite, etc.
DecorativeDisplay *_currentDecoDisplay;
//! Current display index
int _displayIndex;
CC_SYNTHESIZE(bool, _forceChangeDisplay, ForceChangeDisplay)
//! Whether of not the bone is visible. Default is true
bool _visible;
Bone *_bone;
};
}
#endif /*__CCDISPLAYMANAGER_H__*/