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

421 lines
11 KiB
C++
Raw Normal View History

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.
****************************************************************************/
#include "cocostudio/CCDisplayManager.h"
#include "cocostudio/CCBone.h"
#include "cocostudio/CCArmature.h"
#include "cocostudio/CCUtilMath.h"
#include "cocostudio/CCSkin.h"
2013-06-06 12:02:54 +08:00
using namespace cocos2d;
namespace cocostudio {
2013-06-06 12:02:54 +08:00
DisplayManager *DisplayManager::create(Bone *bone)
2013-06-06 12:02:54 +08:00
{
DisplayManager *pDisplayManager = new DisplayManager();
2013-06-06 12:02:54 +08:00
if (pDisplayManager && pDisplayManager->init(bone))
{
pDisplayManager->autorelease();
return pDisplayManager;
}
CC_SAFE_DELETE(pDisplayManager);
return nullptr;
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
DisplayManager::DisplayManager()
: _decoDisplayList(nullptr)
, _displayRenderNode(nullptr)
2013-10-30 09:41:40 +08:00
, _displayType(CS_DISPLAY_MAX)
, _currentDecoDisplay(nullptr)
2013-09-15 20:24:25 +08:00
, _displayIndex(-1)
, _forceChangeDisplay(false)
, _visible(true)
, _bone(nullptr)
2013-06-06 12:02:54 +08:00
{
}
2013-06-07 10:52:32 +08:00
DisplayManager::~DisplayManager()
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
CC_SAFE_DELETE(_decoDisplayList);
2013-06-07 10:52:32 +08:00
2013-09-15 20:24:25 +08:00
if( _displayRenderNode )
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
_displayRenderNode->removeFromParentAndCleanup(true);
if(_displayRenderNode->retainCount() > 0)
CC_SAFE_RELEASE_NULL(_displayRenderNode);
2013-06-06 12:02:54 +08:00
}
}
2013-06-07 10:52:32 +08:00
bool DisplayManager::init(Bone *bone)
2013-06-06 12:02:54 +08:00
{
bool ret = false;
2013-06-07 10:52:32 +08:00
do
{
2013-09-15 20:24:25 +08:00
_bone = bone;
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
initDisplayList(bone->getBoneData());
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
ret = true;
2013-06-07 10:52:32 +08:00
}
while (0);
2013-06-06 12:02:54 +08:00
return ret;
}
2013-06-07 10:52:32 +08:00
void DisplayManager::addDisplay(DisplayData *displayData, int index)
2013-06-06 12:02:54 +08:00
{
DecorativeDisplay *decoDisplay = nullptr;
2013-06-07 10:52:32 +08:00
if( (index >= 0) && (index < _decoDisplayList->count()) )
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
decoDisplay = (DecorativeDisplay *)_decoDisplayList->getObjectAtIndex(index);
2013-06-06 12:02:54 +08:00
}
else
{
decoDisplay = DecorativeDisplay::create();
2013-09-15 20:24:25 +08:00
_decoDisplayList->addObject(decoDisplay);
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
2013-09-15 20:24:25 +08:00
DisplayFactory::addDisplay(_bone, decoDisplay, displayData);
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
//! if changed display index is current display index, then change current display to the new display
2013-09-15 20:24:25 +08:00
if(index == _displayIndex)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
_displayIndex = -1;
2013-06-07 10:52:32 +08:00
changeDisplayByIndex(index, false);
2013-06-06 12:02:54 +08:00
}
}
void DisplayManager::addDisplay(Node *display, int index)
2013-06-06 12:02:54 +08:00
{
DecorativeDisplay *decoDisplay = nullptr;
2013-06-07 10:52:32 +08:00
if( (index >= 0) && (index < _decoDisplayList->count()) )
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
decoDisplay = (DecorativeDisplay *)_decoDisplayList->getObjectAtIndex(index);
2013-09-13 18:07:37 +08:00
}
else
{
decoDisplay = DecorativeDisplay::create();
2013-09-15 20:24:25 +08:00
_decoDisplayList->addObject(decoDisplay);
2013-09-13 18:07:37 +08:00
}
DisplayData *displayData = nullptr;
if (Skin *skin = dynamic_cast<Skin *>(display))
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
skin->setBone(_bone);
displayData = SpriteDisplayData::create();
2013-09-13 18:07:37 +08:00
2013-09-15 20:24:25 +08:00
DisplayFactory::initSpriteDisplay(_bone, decoDisplay, skin->getDisplayName().c_str(), skin);
2013-09-13 18:07:37 +08:00
if (SpriteDisplayData *spriteDisplayData = (SpriteDisplayData *)decoDisplay->getDisplayData())
2013-09-13 18:07:37 +08:00
{
skin->setSkinData(spriteDisplayData->skinData);
2013-10-30 09:41:40 +08:00
((SpriteDisplayData *)displayData)->skinData = spriteDisplayData->skinData;
2013-09-13 18:07:37 +08:00
}
else
{
BaseData baseData;
2013-09-13 18:07:37 +08:00
skin->setSkinData(baseData);
}
}
else if (dynamic_cast<ParticleSystemQuad *>(display))
{
displayData = ParticleDisplayData::create();
display->removeFromParent();
Armature *armature = _bone->getArmature();
if (armature)
{
display->setParent(armature);
}
2013-09-13 18:07:37 +08:00
}
else if(Armature *armature = dynamic_cast<Armature *>(display))
2013-09-13 18:07:37 +08:00
{
displayData = ArmatureDisplayData::create();
2013-09-15 20:24:25 +08:00
armature->setParentBone(_bone);
2013-09-13 18:07:37 +08:00
}
else
{
displayData = DisplayData::create();
2013-09-13 18:07:37 +08:00
}
decoDisplay->setDisplay(display);
decoDisplay->setDisplayData(displayData);
//! if changed display index is current display index, then change current display to the new display
2013-09-15 20:24:25 +08:00
if(index == _displayIndex)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_displayIndex = -1;
2013-09-13 18:07:37 +08:00
changeDisplayByIndex(index, false);
}
}
void DisplayManager::removeDisplay(int index)
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
if(index == _displayIndex)
2013-06-06 12:02:54 +08:00
{
setCurrentDecorativeDisplay(nullptr);
2013-10-30 09:41:40 +08:00
_displayIndex = -1;
2013-06-06 12:02:54 +08:00
}
2013-10-30 09:41:40 +08:00
_decoDisplayList->removeObjectAtIndex(index);
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
2013-11-05 19:53:38 +08:00
Array *DisplayManager::getDecorativeDisplayList() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
return _decoDisplayList;
2013-09-13 18:07:37 +08:00
}
void DisplayManager::changeDisplayByIndex(int index, bool force)
2013-09-13 18:07:37 +08:00
{
2013-09-16 12:02:57 +08:00
CCASSERT( (_decoDisplayList ? index < (int)_decoDisplayList->count() : true), "the _index value is out of range");
2013-06-07 10:52:32 +08:00
2013-09-15 20:24:25 +08:00
_forceChangeDisplay = force;
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
//! If index is equal to current display index,then do nothing
2013-09-15 20:24:25 +08:00
if ( _displayIndex == index)
2013-06-07 10:52:32 +08:00
return;
2013-09-15 20:24:25 +08:00
_displayIndex = index;
2013-06-07 10:52:32 +08:00
2013-06-06 12:02:54 +08:00
//! If displayIndex < 0, it means you want to hide you display
2013-09-15 20:24:25 +08:00
if (_displayIndex < 0)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
if(_displayRenderNode)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
_displayRenderNode->removeFromParentAndCleanup(true);
setCurrentDecorativeDisplay(nullptr);
2013-06-06 12:02:54 +08:00
}
return;
}
2013-09-15 20:24:25 +08:00
DecorativeDisplay *decoDisplay = (DecorativeDisplay *)_decoDisplayList->getObjectAtIndex(_displayIndex);
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
setCurrentDecorativeDisplay(decoDisplay);
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
void DisplayManager::setCurrentDecorativeDisplay(DecorativeDisplay *decoDisplay)
2013-06-06 12:02:54 +08:00
{
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-09-15 20:24:25 +08:00
if (_currentDecoDisplay && _currentDecoDisplay->getColliderDetector())
2013-06-07 10:52:32 +08:00
{
2013-09-15 20:24:25 +08:00
_currentDecoDisplay->getColliderDetector()->setActive(false);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
#endif
2013-09-15 20:24:25 +08:00
_currentDecoDisplay = decoDisplay;
2013-06-06 12:02:54 +08:00
2013-09-13 18:07:37 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT
2013-09-15 20:24:25 +08:00
if (_currentDecoDisplay && _currentDecoDisplay->getColliderDetector())
2013-06-07 10:52:32 +08:00
{
2013-09-15 20:24:25 +08:00
_currentDecoDisplay->getColliderDetector()->setActive(true);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
#endif
Node *displayRenderNode = _currentDecoDisplay == nullptr ? nullptr : _currentDecoDisplay->getDisplay();
2013-09-15 20:24:25 +08:00
if (_displayRenderNode)
2013-06-06 12:02:54 +08:00
{
if (dynamic_cast<Armature *>(_displayRenderNode) != nullptr)
2013-06-07 10:52:32 +08:00
{
_bone->setChildArmature(nullptr);
2013-06-07 10:52:32 +08:00
}
2013-09-15 20:24:25 +08:00
_displayRenderNode->removeFromParentAndCleanup(true);
_displayRenderNode->release();
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
2013-09-15 20:24:25 +08:00
_displayRenderNode = displayRenderNode;
2013-06-06 12:02:54 +08:00
2013-09-15 20:24:25 +08:00
if(_displayRenderNode)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
if (Armature *armature = dynamic_cast<Armature *>(_displayRenderNode))
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
_bone->setChildArmature(armature);
2013-09-13 18:07:37 +08:00
}
2013-09-15 20:24:25 +08:00
else if (ParticleSystemQuad *particle = dynamic_cast<ParticleSystemQuad *>(_displayRenderNode))
2013-06-07 10:52:32 +08:00
{
2013-09-13 18:07:37 +08:00
particle->resetSystem();
2013-06-07 10:52:32 +08:00
}
2013-09-13 18:07:37 +08:00
2013-09-15 20:24:25 +08:00
if (RGBAProtocol *rgbaProtocaol = dynamic_cast<RGBAProtocol *>(_displayRenderNode))
2013-09-13 18:07:37 +08:00
{
2013-09-15 20:24:25 +08:00
rgbaProtocaol->setColor(_bone->getDisplayedColor());
rgbaProtocaol->setOpacity(_bone->getDisplayedOpacity());
2013-09-13 18:07:37 +08:00
}
2013-09-15 20:24:25 +08:00
_displayRenderNode->retain();
_displayRenderNode->setVisible(_visible);
2013-10-30 09:41:40 +08:00
_displayType = _currentDecoDisplay->getDisplayData()->displayType;
}
else
{
_displayType = CS_DISPLAY_MAX;
2013-06-06 12:02:54 +08:00
}
}
2013-06-07 10:52:32 +08:00
2013-11-05 19:53:38 +08:00
Node *DisplayManager::getDisplayRenderNode() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
return _displayRenderNode;
2013-06-06 12:02:54 +08:00
}
2013-06-07 10:52:32 +08:00
2013-10-30 09:41:40 +08:00
2013-11-05 19:53:38 +08:00
DisplayType DisplayManager::getDisplayRenderNodeType() const
2013-10-30 09:41:40 +08:00
{
return _displayType;
}
2013-11-05 19:53:38 +08:00
int DisplayManager::getCurrentDisplayIndex() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
return _displayIndex;
2013-06-06 12:02:54 +08:00
}
2013-11-05 19:53:38 +08:00
DecorativeDisplay *DisplayManager::getCurrentDecorativeDisplay() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
return _currentDecoDisplay;
2013-06-06 12:02:54 +08:00
}
2013-11-05 19:53:38 +08:00
DecorativeDisplay *DisplayManager::getDecorativeDisplayByIndex( int index) const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
return (DecorativeDisplay *)_decoDisplayList->getObjectAtIndex(index);
2013-06-07 10:52:32 +08:00
}
2013-06-06 12:02:54 +08:00
void DisplayManager::initDisplayList(BoneData *boneData)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
CC_SAFE_DELETE(_decoDisplayList);
_decoDisplayList = Array::create();
_decoDisplayList->retain();
2013-06-07 10:52:32 +08:00
CS_RETURN_IF(!boneData);
Object *object = nullptr;
2013-09-13 18:07:37 +08:00
Array *displayDataList = &boneData->displayDataList;
2013-06-06 12:02:54 +08:00
CCARRAY_FOREACH(displayDataList, object)
{
DisplayData *displayData = (DisplayData *)object;
2013-06-07 10:52:32 +08:00
DecorativeDisplay *decoDisplay = DecorativeDisplay::create();
2013-06-06 12:02:54 +08:00
decoDisplay->setDisplayData(displayData);
2013-06-07 10:52:32 +08:00
2013-09-15 20:24:25 +08:00
DisplayFactory::createDisplay(_bone, decoDisplay);
2013-06-06 12:02:54 +08:00
2013-09-15 20:24:25 +08:00
_decoDisplayList->addObject(decoDisplay);
2013-06-06 12:02:54 +08:00
}
}
2013-06-07 10:52:32 +08:00
bool DisplayManager::containPoint(Point &point)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
if(!_visible || _displayIndex < 0)
2013-06-07 10:52:32 +08:00
{
return false;
}
2013-06-06 12:02:54 +08:00
bool ret = false;
2013-06-07 10:52:32 +08:00
2013-09-15 20:24:25 +08:00
switch (_currentDecoDisplay->getDisplayData()->displayType)
2013-06-06 12:02:54 +08:00
{
2013-06-07 10:52:32 +08:00
case CS_DISPLAY_SPRITE:
{
/*
* First we first check if the point is in the sprite content rect. If false, then we continue to check
* the contour point. If this step is also false, then we can say the bone not contain this point.
*
*/
2013-07-12 14:11:55 +08:00
Point outPoint = Point(0, 0);
2013-06-07 10:52:32 +08:00
2013-09-15 20:24:25 +08:00
Sprite *sprite = (Sprite *)_currentDecoDisplay->getDisplay();
sprite = (Sprite *)sprite->getChildByTag(0);
2013-06-07 10:52:32 +08:00
ret = CC_SPRITE_CONTAIN_POINT_WITH_RETURN(sprite, point, outPoint);
}
break;
default:
break;
2013-06-06 12:02:54 +08:00
}
return ret;
}
bool DisplayManager::containPoint(float x, float y)
2013-06-06 12:02:54 +08:00
{
2013-07-12 14:11:55 +08:00
Point p = Point(x, y);
2013-06-06 12:02:54 +08:00
return containPoint(p);
}
void DisplayManager::setVisible(bool visible)
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
if(!_displayRenderNode)
2013-06-07 10:52:32 +08:00
return;
2013-06-06 12:02:54 +08:00
2013-09-15 20:24:25 +08:00
_visible = visible;
_displayRenderNode->setVisible(visible);
2013-06-06 12:02:54 +08:00
}
2013-11-05 19:53:38 +08:00
bool DisplayManager::isVisible() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
return _visible;
2013-06-06 12:02:54 +08:00
}
2013-11-05 19:53:38 +08:00
Size DisplayManager::getContentSize() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
CS_RETURN_IF(!_displayRenderNode) Size(0, 0);
return _displayRenderNode->getContentSize();
2013-06-06 12:02:54 +08:00
}
2013-11-05 19:53:38 +08:00
Rect DisplayManager::getBoundingBox() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
CS_RETURN_IF(!_displayRenderNode) Rect(0, 0, 0, 0);
return _displayRenderNode->getBoundingBox();
2013-06-06 12:02:54 +08:00
}
2013-11-05 19:53:38 +08:00
Point DisplayManager::getAnchorPoint() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
CS_RETURN_IF(!_displayRenderNode) Point(0, 0);
return _displayRenderNode->getAnchorPoint();
2013-06-06 12:02:54 +08:00
}
2013-11-05 19:53:38 +08:00
Point DisplayManager::getAnchorPointInPoints() const
2013-06-06 12:02:54 +08:00
{
2013-09-15 20:24:25 +08:00
CS_RETURN_IF(!_displayRenderNode) Point(0, 0);
return _displayRenderNode->getAnchorPointInPoints();
2013-06-06 12:02:54 +08:00
}
}