2010-07-07 15:24:44 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 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 "CCNode.h"
|
2010-07-20 14:29:18 +08:00
|
|
|
#include "support/CGPointExtension.h"
|
2010-07-21 17:40:10 +08:00
|
|
|
#include "support/TransformUtils.h"
|
2010-07-22 18:39:40 +08:00
|
|
|
#include "CCCamera.h"
|
|
|
|
#include "effects/CCGrid.h"
|
2010-07-30 16:35:07 +08:00
|
|
|
#include "CCDirector.h"
|
|
|
|
#include "touch_dispatcher/CCTouch.h"
|
2010-07-07 15:24:44 +08:00
|
|
|
|
2010-07-20 14:29:18 +08:00
|
|
|
#if CC_COCOSNODE_RENDER_SUBPIXEL
|
|
|
|
#define RENDER_IN_SUBPIXEL
|
|
|
|
#else
|
|
|
|
#define RENDER_IN_SUBPIXEL (int)
|
|
|
|
#endif
|
|
|
|
|
2010-07-07 15:24:44 +08:00
|
|
|
CCNode::CCNode(void)
|
2010-07-08 16:23:06 +08:00
|
|
|
:m_bIsRunning(false)
|
|
|
|
,m_fRotation(0.0f)
|
|
|
|
,m_fScaleX(1.0f)
|
|
|
|
,m_fScaleY(1.0f)
|
2010-07-16 17:53:59 +08:00
|
|
|
,m_tPosition(CGPointZero)
|
|
|
|
,m_tAnchorPointInPixels(CGPointZero)
|
|
|
|
,m_tAnchorPoint(CGPointZero)
|
|
|
|
,m_tContentSize(CGSizeZero)
|
2010-07-08 16:23:06 +08:00
|
|
|
// "whole screen" objects. like Scenes and Layers, should set isRelativeAnchorPoint to false
|
|
|
|
,m_bIsRelativeAnchorPoint(true)
|
|
|
|
,m_bIsTransformDirty(true)
|
|
|
|
,m_bIsInverseDirty(true)
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-08 16:23:06 +08:00
|
|
|
,m_bIsTransformGLDirty(true)
|
|
|
|
#endif
|
|
|
|
,m_fVertexZ(0.0f)
|
|
|
|
,m_pGrid(NULL)
|
|
|
|
,m_bIsVisible(true)
|
2010-07-14 11:18:05 +08:00
|
|
|
,m_nTag(kCCNodeTagInvalid)
|
|
|
|
,m_nZOrder(0)
|
2010-07-08 16:23:06 +08:00
|
|
|
// lazy alloc
|
|
|
|
,m_pCamera(NULL)
|
|
|
|
// children (lazy allocs)
|
|
|
|
,m_pChildren(NULL)
|
|
|
|
// userData is always inited as nil
|
|
|
|
,m_pUserData(NULL)
|
2010-07-08 14:00:51 +08:00
|
|
|
{
|
2010-07-09 16:22:02 +08:00
|
|
|
// nothing
|
2010-07-08 14:00:51 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
CCNode::~CCNode()
|
|
|
|
{
|
2010-08-02 15:42:07 +08:00
|
|
|
CCLOGINFO( "cocos2d: deallocing" );
|
2010-07-14 10:36:26 +08:00
|
|
|
|
|
|
|
// attributes
|
|
|
|
CCX_SAFE_RELEASE(m_pCamera);
|
|
|
|
|
|
|
|
CCX_SAFE_RELEASE(m_pGrid);
|
|
|
|
|
2010-08-02 15:42:07 +08:00
|
|
|
|
|
|
|
if(m_pChildren && m_pChildren->count() > 0)
|
|
|
|
{
|
|
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
|
|
|
for( it = m_pChildren->begin(); it != m_pChildren->end(); ++it)
|
|
|
|
{
|
|
|
|
(*it)->m_pParent = NULL;
|
|
|
|
}
|
|
|
|
}
|
2010-07-14 10:36:26 +08:00
|
|
|
|
|
|
|
// children
|
2010-08-02 15:42:07 +08:00
|
|
|
CCX_SAFE_RELEASE(m_pChildren);
|
2010-07-14 10:36:26 +08:00
|
|
|
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
2010-07-08 14:00:51 +08:00
|
|
|
|
2010-07-20 13:49:13 +08:00
|
|
|
void CCNode::arrayMakeObjectsPerformSelector(NSMutableArray<CCNode*> * pArray, callbackFunc func)
|
2010-07-14 10:36:26 +08:00
|
|
|
{
|
|
|
|
if(pArray && pArray->count() > 0)
|
|
|
|
{
|
|
|
|
CCNode* pNode;
|
2010-07-20 13:49:13 +08:00
|
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
2010-07-14 10:36:26 +08:00
|
|
|
for( it = pArray->begin(); it != pArray->end(); it++)
|
|
|
|
{
|
2010-07-20 13:49:13 +08:00
|
|
|
pNode = (*it);
|
2010-07-14 10:36:26 +08:00
|
|
|
|
2010-07-15 11:39:05 +08:00
|
|
|
if(pNode && func)
|
2010-07-14 10:36:26 +08:00
|
|
|
{
|
|
|
|
(pNode->*func)();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
|
|
|
|
/// zOrder getter
|
|
|
|
int CCNode::getZOrder()
|
|
|
|
{
|
2010-07-14 11:18:05 +08:00
|
|
|
return m_nZOrder;
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
2010-07-14 10:36:26 +08:00
|
|
|
|
|
|
|
/// zOrder setter : private method
|
|
|
|
/// used internally to alter the zOrder variable. DON'T call this method manually
|
|
|
|
void CCNode::setZOrder(int z)
|
|
|
|
{
|
2010-07-14 11:18:05 +08:00
|
|
|
m_nZOrder = z;
|
2010-07-14 10:36:26 +08:00
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
|
|
|
|
/// ertexZ getter
|
|
|
|
float CCNode::getVertexZ()
|
|
|
|
{
|
|
|
|
return m_fVertexZ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// vertexZ setter
|
|
|
|
void CCNode::setVertexZ(float var)
|
|
|
|
{
|
|
|
|
m_fVertexZ = var;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// rotation getter
|
2010-07-08 10:26:58 +08:00
|
|
|
float CCNode::getRotation()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
|
|
|
return m_fRotation;
|
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// rotation setter
|
|
|
|
void CCNode::setRotation(float newRotation)
|
|
|
|
{
|
|
|
|
m_fRotation = newRotation;
|
|
|
|
m_bIsTransformDirty = m_bIsInverseDirty = true;
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-14 16:30:25 +08:00
|
|
|
m_bIsTransformGLDirty = true;
|
|
|
|
#endif
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// scale getter
|
|
|
|
float CCNode::getScale(void)
|
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
NSAssert( m_fScaleX == m_fScaleY, "CCNode#scale. ScaleX != ScaleY. Don't know which one to return");
|
2010-07-12 17:56:06 +08:00
|
|
|
return m_fScale;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// scale setter
|
|
|
|
void CCNode::setScale(float scale)
|
|
|
|
{
|
|
|
|
m_fScaleX = m_fScaleY = scale;
|
|
|
|
m_bIsTransformDirty = m_bIsInverseDirty = true;
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-14 16:30:25 +08:00
|
|
|
m_bIsTransformGLDirty = true;
|
|
|
|
#endif
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// scaleX getter
|
2010-07-08 10:26:58 +08:00
|
|
|
float CCNode::getScaleX()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
|
|
|
return m_fScaleX;
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// scaleX setter
|
|
|
|
void CCNode::setScaleX(float newScaleX)
|
|
|
|
{
|
|
|
|
m_fScaleX = newScaleX;
|
|
|
|
m_bIsTransformDirty = m_bIsInverseDirty = true;
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-14 16:30:25 +08:00
|
|
|
m_bIsTransformGLDirty = true;
|
|
|
|
#endif
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
|
|
|
|
/// scaleY getter
|
2010-07-08 10:26:58 +08:00
|
|
|
float CCNode::getScaleY()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
|
|
|
return m_fScaleY;
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// scaleY setter
|
|
|
|
void CCNode::setScaleY(float newScaleY)
|
|
|
|
{
|
|
|
|
m_fScaleY = newScaleY;
|
|
|
|
m_bIsTransformDirty = m_bIsInverseDirty = true;
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-14 16:30:25 +08:00
|
|
|
m_bIsTransformGLDirty = true;
|
|
|
|
#endif
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// position getter
|
|
|
|
CGPoint CCNode::getPosition()
|
|
|
|
{
|
|
|
|
return m_tPosition;
|
|
|
|
}
|
2010-07-07 15:24:44 +08:00
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// position setter
|
|
|
|
void CCNode::setPosition(CGPoint newPosition)
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
m_tPosition = newPosition;
|
|
|
|
m_bIsTransformDirty = m_bIsInverseDirty = true;
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-14 16:30:25 +08:00
|
|
|
m_bIsTransformGLDirty = true;
|
|
|
|
#endif
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// children getter
|
2010-07-20 13:49:13 +08:00
|
|
|
NSMutableArray<CCNode*> * CCNode::getChildren()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
return m_pChildren;
|
|
|
|
}
|
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
/// camera getter: lazy alloc
|
|
|
|
CCCamera* CCNode::getCamera()
|
2010-07-12 17:56:06 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
if (!m_pCamera)
|
|
|
|
{
|
|
|
|
m_pCamera = new CCCamera();
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_pCamera;
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
|
|
|
|
/// grid getter
|
|
|
|
CCGridBase* CCNode::getGrid()
|
|
|
|
{
|
|
|
|
return m_pGrid;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
/// grid setter
|
|
|
|
void CCNode::setGrid(CCGridBase* pGrid)
|
|
|
|
{
|
|
|
|
if(m_pGrid)
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
m_pGrid->release();
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
m_pGrid = pGrid;
|
2010-07-12 17:56:06 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
if(m_pGrid)
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
m_pGrid->retain();
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-14 10:36:26 +08:00
|
|
|
}
|
2010-07-07 15:24:44 +08:00
|
|
|
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// isVisible getter
|
|
|
|
bool CCNode::getIsVisible()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
return m_bIsVisible;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// isVisible setter
|
|
|
|
void CCNode::setIsVisible(bool var)
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
m_bIsVisible = var;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
|
|
|
|
/// anchorPoint getter
|
|
|
|
CGPoint CCNode::getAnchorPoint()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
return m_tAnchorPoint;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
2010-07-08 10:26:58 +08:00
|
|
|
void CCNode::setAnchorPoint(CGPoint point)
|
|
|
|
{
|
2010-07-16 17:53:59 +08:00
|
|
|
if( ! CGPoint::CGPointEqualToPoint(point, m_tAnchorPoint) )
|
|
|
|
{
|
|
|
|
m_tAnchorPoint = point;
|
|
|
|
this->m_tAnchorPointInPixels = ccp( m_tContentSize.width * m_tAnchorPoint.x, m_tContentSize.height * m_tAnchorPoint.y );
|
|
|
|
m_bIsTransformDirty = m_bIsInverseDirty = true;
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-16 17:53:59 +08:00
|
|
|
m_bIsTransformGLDirty = true;
|
|
|
|
#endif
|
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// anchorPointInPixels getter
|
|
|
|
CGPoint CCNode::getAnchorPointInPixels()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
return m_tAnchorPointInPixels;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
|
|
|
|
/// contentSize getter
|
|
|
|
CGSize CCNode::getContentSize()
|
|
|
|
{
|
|
|
|
return m_tContentSize;
|
|
|
|
}
|
|
|
|
|
2010-07-07 15:24:44 +08:00
|
|
|
void CCNode::setContentSize(CGSize size)
|
|
|
|
{
|
2010-07-16 17:53:59 +08:00
|
|
|
if( ! CGSize::CGSizeEqualToSize(size, m_tContentSize) )
|
|
|
|
{
|
|
|
|
m_tContentSize = size;
|
|
|
|
m_tAnchorPointInPixels = ccp( m_tContentSize.width * m_tAnchorPoint.x, m_tContentSize.height * m_tAnchorPoint.y );
|
|
|
|
m_bIsTransformDirty = m_bIsInverseDirty = true;
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-16 17:53:59 +08:00
|
|
|
m_bIsTransformGLDirty = true;
|
|
|
|
#endif
|
|
|
|
}
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// isRunning getter
|
|
|
|
bool CCNode::getIsRunning()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
return m_bIsRunning;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// parent getter
|
|
|
|
CCNode * CCNode::getParent()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
|
|
|
return m_pParent;
|
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
/// parent setter
|
|
|
|
void CCNode::setParent(CCNode * var)
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
m_pParent = var;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// isRelativeAnchorPoint getter
|
|
|
|
bool CCNode::getIsRelativeAnchorPoint()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
return m_bIsRelativeAnchorPoint;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
/// isRelativeAnchorPoint setter
|
|
|
|
void CCNode::setIsRelativeAnchorPoint(bool newValue)
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
m_bIsRelativeAnchorPoint = newValue;
|
|
|
|
m_bIsTransformDirty = m_bIsInverseDirty = true;
|
2010-07-20 14:29:18 +08:00
|
|
|
#ifdef CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
2010-07-14 16:30:25 +08:00
|
|
|
m_bIsTransformGLDirty = true;
|
|
|
|
#endif
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// tag getter
|
|
|
|
int CCNode::getTag()
|
|
|
|
{
|
2010-07-14 11:18:05 +08:00
|
|
|
return m_nTag;
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// tag setter
|
|
|
|
void CCNode::setTag(int var)
|
|
|
|
{
|
2010-07-14 11:18:05 +08:00
|
|
|
m_nTag = var;
|
2010-07-12 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// userData getter
|
|
|
|
void * CCNode::getUserData()
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
return m_pUserData;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
/// userData setter
|
|
|
|
void CCNode::setUserData(void *var)
|
2010-07-07 15:24:44 +08:00
|
|
|
{
|
2010-07-12 17:56:06 +08:00
|
|
|
m_pUserData = var;
|
2010-07-07 15:24:44 +08:00
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
|
|
|
|
|
2010-07-20 14:29:18 +08:00
|
|
|
CGRect CCNode::boundingBox()
|
|
|
|
{
|
|
|
|
CGRect rect = CGRectMake(0, 0, m_tContentSize.width, m_tContentSize.height);
|
|
|
|
return CGRectApplyAffineTransform(rect, nodeToParentTransform());
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
|
|
|
|
CCNode * CCNode::node(void)
|
|
|
|
{
|
2010-08-03 11:28:34 +08:00
|
|
|
CCNode * pRet = new CCNode();
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
|
2010-07-09 18:24:08 +08:00
|
|
|
void CCNode::cleanup()
|
|
|
|
{
|
|
|
|
// actions
|
2010-07-14 10:36:26 +08:00
|
|
|
this->stopAllActions();
|
|
|
|
this->unscheduleAllSelectors();
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-08-02 14:46:06 +08:00
|
|
|
// timers
|
2010-07-14 10:36:26 +08:00
|
|
|
arrayMakeObjectsPerformSelector(m_pChildren, &CCNode::cleanup);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
2010-07-14 10:36:26 +08:00
|
|
|
|
2010-07-15 11:39:05 +08:00
|
|
|
|
|
|
|
std::string CCNode::description()
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-22 11:15:25 +08:00
|
|
|
char des[100] ;
|
2010-07-15 18:15:00 +08:00
|
|
|
sprintf_s(des, 100, "<CCNode | Tag = %d>", m_nTag);
|
2010-07-21 17:40:10 +08:00
|
|
|
std::string ret(des);
|
2010-07-15 11:39:05 +08:00
|
|
|
|
|
|
|
return ret;
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// lazy allocs
|
|
|
|
void CCNode::childrenAlloc(void)
|
|
|
|
{
|
2010-07-20 13:49:13 +08:00
|
|
|
m_pChildren = new NSMutableArray<CCNode*>(4);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CCNode* CCNode::getChildByTag(int aTag)
|
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
NSAssert( aTag != kCCNodeTagInvalid, "Invalid tag");
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
if(m_pChildren && m_pChildren->count() > 0)
|
|
|
|
{
|
|
|
|
CCNode* pNode;
|
2010-07-20 13:49:13 +08:00
|
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
2010-07-14 10:36:26 +08:00
|
|
|
for( it = m_pChildren->begin(); it != m_pChildren->end(); it++)
|
|
|
|
{
|
2010-07-20 13:49:13 +08:00
|
|
|
pNode = (*it);
|
2010-07-14 11:18:05 +08:00
|
|
|
if(pNode && pNode->m_nTag == aTag)
|
2010-07-14 10:36:26 +08:00
|
|
|
return pNode;
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* "add" logic MUST only be on this method
|
|
|
|
* If a class want's to extend the 'addChild' behaviour it only needs
|
|
|
|
* to override this method
|
|
|
|
*/
|
2010-07-14 10:36:26 +08:00
|
|
|
CCNode * CCNode::addChild(CCNode *child, int zOrder, int tag)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
NSAssert( child != NULL, "Argument must be non-nil");
|
|
|
|
NSAssert( child->m_pParent == NULL, "child already added. It can't be added again");
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
if( ! m_pChildren )
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
this->childrenAlloc();
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
this->insertChild(child, zOrder);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 11:18:05 +08:00
|
|
|
child->m_nTag = tag;
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
child->setParent(this);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
if( m_bIsRunning )
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
child->onEnter();
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-14 10:36:26 +08:00
|
|
|
return this;
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
CCNode * CCNode::addChild(CCNode *child, int zOrder)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
NSAssert( child != NULL, "Argument must be non-nil");
|
2010-07-14 11:18:05 +08:00
|
|
|
return this->addChild(child, zOrder, child->m_nTag);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
CCNode * CCNode::addChild(CCNode *child)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
NSAssert( child != NULL, "Argument must be non-nil");
|
2010-07-14 11:18:05 +08:00
|
|
|
return this->addChild(child, child->m_nZOrder, child->m_nTag);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::removeFromParentAndCleanup(bool cleanup)
|
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
this->m_pParent->removeChild(this,cleanup);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* "remove" logic MUST only be on this method
|
|
|
|
* If a class want's to extend the 'removeChild' behavior it only needs
|
|
|
|
* to override this method
|
|
|
|
*/
|
2010-07-14 10:36:26 +08:00
|
|
|
void CCNode::removeChild(CCNode* child, bool cleanup)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
|
|
|
// explicit nil handling
|
2010-07-14 10:36:26 +08:00
|
|
|
if (m_pChildren == NULL)
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-09 18:24:08 +08:00
|
|
|
return;
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
if ( m_pChildren->containsObject(child) )
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
this->detachChild(child,cleanup);
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::removeChildByTag(int tag, bool cleanup)
|
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
NSAssert( tag != kCCNodeTagInvalid, "Invalid tag");
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
CCNode *child = this->getChildByTag(tag);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
if (child == NULL)
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
CCLOG("cocos2d: removeChildByTag: child not found!");
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
else
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
this->removeChild(child, cleanup);
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::removeAllChildrenWithCleanup(bool cleanup)
|
|
|
|
{
|
|
|
|
// not using detachChild improves speed here
|
2010-07-14 10:36:26 +08:00
|
|
|
if ( m_pChildren && m_pChildren->count() > 0 )
|
|
|
|
{
|
|
|
|
CCNode * pNode;
|
2010-07-20 13:49:13 +08:00
|
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
2010-07-14 10:36:26 +08:00
|
|
|
for ( it = m_pChildren->begin(); it!= m_pChildren->end(); it++ )
|
|
|
|
{
|
2010-07-21 17:40:10 +08:00
|
|
|
pNode = *it;
|
2010-07-14 10:36:26 +08:00
|
|
|
if (pNode)
|
|
|
|
{
|
|
|
|
// IMPORTANT:
|
|
|
|
// -1st do onExit
|
|
|
|
// -2nd cleanup
|
2010-08-02 15:42:07 +08:00
|
|
|
if(m_bIsRunning)
|
2010-07-14 10:36:26 +08:00
|
|
|
{
|
|
|
|
pNode->onExit();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cleanup)
|
|
|
|
{
|
|
|
|
pNode->cleanup();
|
|
|
|
}
|
|
|
|
// set parent nil at the end
|
|
|
|
pNode->setParent(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_pChildren->removeAllObjects();
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::detachChild(CCNode *child, bool doCleanup)
|
|
|
|
{
|
|
|
|
// IMPORTANT:
|
|
|
|
// -1st do onExit
|
|
|
|
// -2nd cleanup
|
2010-07-14 10:36:26 +08:00
|
|
|
if (m_bIsRunning)
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
child->onExit();
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
// If you don't do cleanup, the child's actions will not get removed and the
|
|
|
|
// its scheduledSelectors_ dict will not get released!
|
|
|
|
if (doCleanup)
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
child->cleanup();
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
// set parent nil at the end
|
|
|
|
child->setParent(NULL);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
m_pChildren->removeObject(child);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// helper used by reorderChild & add
|
|
|
|
void CCNode::insertChild(CCNode* child, int z)
|
|
|
|
{
|
|
|
|
int index=0;
|
2010-07-14 10:36:26 +08:00
|
|
|
bool added = false;
|
|
|
|
|
|
|
|
if(m_pChildren && m_pChildren->count() > 0)
|
|
|
|
{
|
|
|
|
CCNode* pNode;
|
2010-07-20 13:49:13 +08:00
|
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
2010-07-14 10:36:26 +08:00
|
|
|
for( it = m_pChildren->begin(); it != m_pChildren->end(); it++)
|
|
|
|
{
|
2010-07-20 13:49:13 +08:00
|
|
|
pNode = (*it);
|
2010-07-14 10:36:26 +08:00
|
|
|
|
2010-07-14 11:18:05 +08:00
|
|
|
if ( pNode && pNode->m_nZOrder > z )
|
2010-07-14 10:36:26 +08:00
|
|
|
{
|
|
|
|
added = true;
|
|
|
|
m_pChildren->insertObjectAtIndex(child, index);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
index++;
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ! added )
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
m_pChildren->addObject(child);
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
child->setZOrder(z);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::reorderChild(CCNode *child, int zOrder)
|
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
NSAssert( child != NULL, "Child must be non-nil");
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
child->retain();
|
|
|
|
m_pChildren->removeObject(child);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
insertChild(child, zOrder);
|
2010-08-02 15:44:41 +08:00
|
|
|
child->release();
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-22 18:39:40 +08:00
|
|
|
void CCNode::draw()
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
// override me
|
|
|
|
// Only use- this function to draw your staff.
|
|
|
|
// DON'T draw your stuff outside this method
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
void CCNode::visit()
|
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
if (!m_bIsVisible)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
glPushMatrix();
|
2010-07-28 14:10:12 +08:00
|
|
|
/// @todo
|
|
|
|
// if (m_pGrid && m_pGrid->isActive())
|
|
|
|
// {
|
|
|
|
// m_pGrid->beforeDraw();
|
|
|
|
// this->transformAncestors();
|
|
|
|
// }
|
2010-07-19 16:45:53 +08:00
|
|
|
|
|
|
|
this->transform();
|
|
|
|
|
|
|
|
if(m_pChildren && m_pChildren->count() > 0)
|
|
|
|
{
|
|
|
|
CCNode* pNode;
|
2010-07-20 13:49:13 +08:00
|
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
2010-07-19 16:45:53 +08:00
|
|
|
for( it = m_pChildren->begin(); it != m_pChildren->end(); it++)
|
|
|
|
{
|
2010-07-20 13:49:13 +08:00
|
|
|
pNode = (*it);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
if ( pNode && pNode->m_nZOrder < 0 )
|
|
|
|
{
|
|
|
|
pNode->visit();
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
else
|
2010-07-19 16:45:53 +08:00
|
|
|
{
|
2010-07-09 18:24:08 +08:00
|
|
|
break;
|
2010-07-19 16:45:53 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
this->draw();
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
for ( ; it!=m_pChildren->end(); it++ )
|
|
|
|
{
|
2010-07-21 17:40:10 +08:00
|
|
|
pNode = (*it);
|
2010-07-19 16:45:53 +08:00
|
|
|
pNode->visit();
|
|
|
|
}
|
|
|
|
}
|
2010-07-28 14:10:12 +08:00
|
|
|
/// @todo
|
|
|
|
// if (m_pGrid && m_pGrid->isActive())
|
|
|
|
// {
|
|
|
|
// m_pGrid->afterDraw(this);
|
|
|
|
//
|
2010-07-19 16:45:53 +08:00
|
|
|
glPopMatrix();
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::transformAncestors()
|
|
|
|
{
|
|
|
|
if( m_pParent != NULL )
|
|
|
|
{
|
|
|
|
m_pParent->transformAncestors();
|
|
|
|
m_pParent->transform();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::transform()
|
|
|
|
{
|
|
|
|
// transformations
|
|
|
|
|
|
|
|
#if CC_NODE_TRANSFORM_USING_AFFINE_MATRIX
|
|
|
|
// BEGIN alternative -- using cached transform
|
|
|
|
//
|
2010-07-20 14:29:18 +08:00
|
|
|
if( m_bIsTransformGLDirty ) {
|
|
|
|
CGAffineTransform t = this->nodeToParentTransform();
|
|
|
|
CGAffineToGL(&t, m_pTransformGL);
|
|
|
|
m_bIsTransformGLDirty = false;
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-20 14:29:18 +08:00
|
|
|
glMultMatrixf(m_pTransformGL);
|
|
|
|
if( m_fVertexZ )
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-20 14:29:18 +08:00
|
|
|
glTranslatef(0, 0, m_fVertexZ);
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
// XXX: Expensive calls. Camera should be integrated into the cached affine matrix
|
2010-07-28 14:10:12 +08:00
|
|
|
if ( m_pCamera /** @todo&& !(m_pGrid && m_pGrid->isActive())*/ ) {
|
2010-07-20 14:29:18 +08:00
|
|
|
bool translate = (m_tAnchorPointInPixels.x != 0.0f || m_tAnchorPointInPixels.y != 0.0f);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
if( translate )
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-20 14:29:18 +08:00
|
|
|
glTranslatef(RENDER_IN_SUBPIXEL(m_tAnchorPointInPixels.x), RENDER_IN_SUBPIXEL(m_tAnchorPointInPixels.y), 0);
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-20 14:29:18 +08:00
|
|
|
m_pCamera->locate();
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
if( translate )
|
2010-08-02 15:42:07 +08:00
|
|
|
{
|
2010-07-20 14:29:18 +08:00
|
|
|
glTranslatef(RENDER_IN_SUBPIXEL(-m_tAnchorPointInPixels.x), RENDER_IN_SUBPIXEL(-m_tAnchorPointInPixels.y), 0);
|
2010-08-02 15:42:07 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// END alternative
|
|
|
|
|
|
|
|
#else
|
|
|
|
// BEGIN original implementation
|
|
|
|
//
|
|
|
|
// translate
|
2010-07-20 14:29:18 +08:00
|
|
|
if ( m_bIsRelativeAnchorPoint && (m_tAnchorPointInPixels.x != 0 || m_tAnchorPointInPixels.y != 0 ) )
|
|
|
|
glTranslatef( RENDER_IN_SUBPIXEL(-m_tAnchorPointInPixels.x), RENDER_IN_SUBPIXEL(-m_tAnchorPointInPixels.y), 0);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-20 14:29:18 +08:00
|
|
|
if (m_tAnchorPointInPixels.x != 0 || m_tAnchorPointInPixels.y != 0)
|
|
|
|
glTranslatef( RENDER_IN_SUBPIXEL(m_tPosition.x + m_tAnchorPointInPixels.x), RENDER_IN_SUBPIXEL(m_tPosition.y + m_tAnchorPointInPixels.y), m_fVertexZ);
|
|
|
|
else if ( m_tPosition.x !=0 || m_tPosition.y !=0 || m_fVertexZ != 0)
|
|
|
|
glTranslatef( RENDER_IN_SUBPIXEL(m_tPosition.x), RENDER_IN_SUBPIXEL(m_tPosition.y), m_fVertexZ );
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
// rotate
|
2010-07-20 14:29:18 +08:00
|
|
|
if (m_fRotation != 0.0f )
|
|
|
|
glRotatef( -m_fRotation, 0.0f, 0.0f, 1.0f );
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
// scale
|
2010-07-20 14:29:18 +08:00
|
|
|
if (m_fScaleX != 1.0f || m_fScaleY != 1.0f)
|
|
|
|
glScalef( m_fScaleX, m_fScaleY, 1.0f );
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-28 14:10:12 +08:00
|
|
|
if ( m_pCamera /** @todo && !(m_pGrid && m_pGrid->isActive())*/ )
|
2010-07-20 14:29:18 +08:00
|
|
|
m_pCamera->locate();
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
// restore and re-position point
|
2010-07-20 14:29:18 +08:00
|
|
|
if (m_tAnchorPointInPixels.x != 0.0f || m_tAnchorPointInPixels.y != 0.0f)
|
|
|
|
glTranslatef(RENDER_IN_SUBPIXEL(-m_tAnchorPointInPixels.x), RENDER_IN_SUBPIXEL(-m_tAnchorPointInPixels.y), 0);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// END original implementation
|
|
|
|
#endif
|
2010-07-20 14:29:18 +08:00
|
|
|
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CCNode::onEnter()
|
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
arrayMakeObjectsPerformSelector(m_pChildren, &CCNode::onEnter);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
this->resumeSchedulerAndActions();
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 10:36:26 +08:00
|
|
|
m_bIsRunning = true;
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::onEnterTransitionDidFinish()
|
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
arrayMakeObjectsPerformSelector(m_pChildren, &CCNode::onEnterTransitionDidFinish);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::onExit()
|
|
|
|
{
|
2010-07-14 10:36:26 +08:00
|
|
|
this->pauseSchedulerAndActions();
|
|
|
|
|
|
|
|
m_bIsRunning = false;
|
|
|
|
|
|
|
|
arrayMakeObjectsPerformSelector(m_pChildren, &CCNode::onExit);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @todo
|
|
|
|
-(CCAction*) runAction:(CCAction*) action
|
|
|
|
{
|
|
|
|
NSAssert( action != nil, @"Argument must be non-nil");
|
|
|
|
|
|
|
|
[[CCActionManager sharedManager] addAction:action target:self paused:!isRunning_];
|
|
|
|
return action;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CCNode::stopAllActions()
|
|
|
|
{
|
|
|
|
/** @todo
|
|
|
|
[[CCActionManager sharedManager] removeAllActionsFromTarget:self];*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @todo
|
|
|
|
-(void) stopAction: (CCAction*) action
|
|
|
|
{
|
|
|
|
[[CCActionManager sharedManager] removeAction:action];
|
|
|
|
}*/
|
|
|
|
|
|
|
|
void CCNode::stopActionByTag(int tag)
|
|
|
|
{
|
|
|
|
/** @todo
|
|
|
|
NSAssert( aTag != kCCActionTagInvalid, @"Invalid tag");
|
|
|
|
[[CCActionManager sharedManager] removeActionByTag:aTag target:self];*/
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @todo
|
|
|
|
-(CCAction*) getActionByTag:(int) aTag
|
|
|
|
{
|
|
|
|
NSAssert( aTag != kCCActionTagInvalid, @"Invalid tag");
|
|
|
|
|
|
|
|
return [[CCActionManager sharedManager] getActionByTag:aTag target:self];
|
|
|
|
}*/
|
|
|
|
|
|
|
|
int CCNode::numberOfRunningActions()
|
|
|
|
{
|
|
|
|
/// @todo return [[CCActionManager sharedManager] numberOfRunningActionsInTarget:self];
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-14 16:30:25 +08:00
|
|
|
// CCNode - Callbacks
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
void CCNode::scheduleUpdate()
|
|
|
|
{
|
|
|
|
scheduleUpdateWithPriority(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::scheduleUpdateWithPriority(int priority)
|
|
|
|
{
|
2010-07-14 11:52:27 +08:00
|
|
|
CCScheduler::getSharedScheduler()->scheduleUpdateForTarget(this, priority, !m_bIsRunning);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::unscheduleUpdate()
|
|
|
|
{
|
2010-07-14 11:52:27 +08:00
|
|
|
CCScheduler::getSharedScheduler()->unscheduleUpdateForTarget(this);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-14 11:52:27 +08:00
|
|
|
void CCNode::schedule(SEL_SCHEDULE selector)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-14 11:52:27 +08:00
|
|
|
this->schedule(selector, 0);
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 11:52:27 +08:00
|
|
|
void CCNode::schedule(SEL_SCHEDULE selector, ccTime interval)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-14 11:52:27 +08:00
|
|
|
NSAssert( selector != NULL, "Argument must be non-nil");
|
|
|
|
NSAssert( interval >=0, "Argument must be positive");
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 11:52:27 +08:00
|
|
|
CCScheduler::getSharedScheduler()->scheduleSelector(selector, this, interval, !m_bIsRunning);
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-14 11:52:27 +08:00
|
|
|
void CCNode::unschedule(SEL_SCHEDULE selector)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
|
|
|
// explicit nil handling
|
2010-07-14 11:52:27 +08:00
|
|
|
if (selector == NULL)
|
2010-07-09 18:24:08 +08:00
|
|
|
return;
|
|
|
|
|
2010-07-14 11:52:27 +08:00
|
|
|
CCScheduler::getSharedScheduler()->unscheduleSelector(selector, this);
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
void CCNode::unscheduleAllSelectors()
|
|
|
|
{
|
2010-07-14 11:52:27 +08:00
|
|
|
CCScheduler::getSharedScheduler()->unscheduleAllSelectorsForTarget(this);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::resumeSchedulerAndActions()
|
|
|
|
{
|
|
|
|
/** @todo
|
|
|
|
[[CCScheduler sharedScheduler] resumeTarget:self];
|
|
|
|
[[CCActionManager sharedManager] resumeTarget:self];*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCNode::pauseSchedulerAndActions()
|
|
|
|
{
|
|
|
|
/** @todo
|
|
|
|
[[CCScheduler sharedScheduler] pauseTarget:self];
|
|
|
|
[[CCActionManager sharedManager] pauseTarget:self];*/
|
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
CGAffineTransform CCNode::nodeToParentTransform(void)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
if ( m_bIsTransformDirty ) {
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
m_tTransform = CGAffineTransformIdentity;
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
if( ! m_bIsRelativeAnchorPoint && ! CGPoint::CGPointEqualToPoint(m_tAnchorPointInPixels, CGPointZero) )
|
|
|
|
m_tTransform = CGAffineTransformTranslate(m_tTransform, m_tAnchorPointInPixels.x, m_tAnchorPointInPixels.y);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
if( ! CGPoint::CGPointEqualToPoint(m_tPosition, CGPointZero) )
|
|
|
|
m_tTransform = CGAffineTransformTranslate(m_tTransform, m_tPosition.x, m_tPosition.y);
|
|
|
|
if( m_fRotation != 0 )
|
|
|
|
m_tTransform = CGAffineTransformRotate(m_tTransform, -CC_DEGREES_TO_RADIANS(m_fRotation));
|
|
|
|
if( ! (m_fScaleX == 1 && m_fScaleY == 1) )
|
|
|
|
m_tTransform = CGAffineTransformScale(m_tTransform, m_fScaleX, m_fScaleY);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
if( ! CGPoint::CGPointEqualToPoint(m_tAnchorPointInPixels, CGPointZero) )
|
|
|
|
m_tTransform = CGAffineTransformTranslate(m_tTransform, -m_tAnchorPointInPixels.x, -m_tAnchorPointInPixels.y);
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
m_bIsTransformDirty = false;
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
return m_tTransform;
|
|
|
|
}
|
|
|
|
|
|
|
|
CGAffineTransform CCNode::parentToNodeTransform(void)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
if ( m_bIsInverseDirty ) {
|
|
|
|
m_tInverse = CGAffineTransformInvert(this->nodeToParentTransform());
|
|
|
|
m_bIsInverseDirty = false;
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
return m_tInverse;
|
|
|
|
}
|
|
|
|
|
|
|
|
CGAffineTransform CCNode::nodeToWorldTransform()
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
CGAffineTransform t = this->nodeToParentTransform();
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
for (CCNode *p = m_pParent; p != NULL; p = p->getParent())
|
|
|
|
t = CGAffineTransformConcat(t, p->nodeToParentTransform());
|
2010-07-09 18:24:08 +08:00
|
|
|
|
|
|
|
return t;
|
2010-07-19 16:45:53 +08:00
|
|
|
}
|
2010-07-21 17:40:10 +08:00
|
|
|
|
2010-07-19 16:45:53 +08:00
|
|
|
CGAffineTransform CCNode::worldToNodeTransform(void)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
return CGAffineTransformInvert(this->nodeToWorldTransform());
|
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
CGPoint CCNode::convertToNodeSpace(CGPoint worldPoint)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
return CGPointApplyAffineTransform(worldPoint, this->worldToNodeTransform());
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
CGPoint CCNode::convertToWorldSpace(CGPoint nodePoint)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
return CGPointApplyAffineTransform(nodePoint, this->nodeToWorldTransform());
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
CGPoint CCNode::convertToNodeSpaceAR(CGPoint worldPoint)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
CGPoint nodePoint = this->convertToNodeSpace(worldPoint);
|
|
|
|
return ccpSub(nodePoint, m_tAnchorPointInPixels);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
|
|
|
|
2010-07-12 17:56:06 +08:00
|
|
|
CGPoint CCNode::convertToWorldSpaceAR(CGPoint nodePoint)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-19 16:45:53 +08:00
|
|
|
nodePoint = ccpAdd(nodePoint, m_tAnchorPointInPixels);
|
|
|
|
return this->convertToWorldSpace(nodePoint);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
2010-07-12 17:56:06 +08:00
|
|
|
CGPoint CCNode::convertToWindowSpace(CGPoint nodePoint)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-20 13:49:13 +08:00
|
|
|
CGPoint worldPoint = this->convertToWorldSpace(nodePoint);
|
2010-08-02 16:00:01 +08:00
|
|
|
return CCDirector::getSharedDirector()->convertToUI(worldPoint);
|
2010-07-20 13:49:13 +08:00
|
|
|
}
|
2010-07-09 18:24:08 +08:00
|
|
|
|
2010-07-29 12:12:11 +08:00
|
|
|
// convenience methods which take a CCTouch instead of CGPoint
|
2010-07-30 16:35:07 +08:00
|
|
|
CGPoint CCNode::convertTouchToNodeSpace(CCTouch *touch)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-30 16:35:07 +08:00
|
|
|
CGPoint point = touch->locationInView(touch->view());
|
|
|
|
point = CCDirector::getSharedDirector()->convertToGL(point);
|
|
|
|
return this->convertToNodeSpace(point);
|
|
|
|
}
|
|
|
|
CGPoint CCNode::convertTouchToNodeSpaceAR(CCTouch *touch)
|
2010-07-09 18:24:08 +08:00
|
|
|
{
|
2010-07-30 16:35:07 +08:00
|
|
|
CGPoint point = touch->locationInView(touch->view());
|
|
|
|
point = CCDirector::getSharedDirector()->convertToGL(point);
|
|
|
|
return this->convertToNodeSpaceAR(point);
|
2010-07-09 18:24:08 +08:00
|
|
|
}
|
2010-07-30 16:35:07 +08:00
|
|
|
|
2010-07-09 18:24:08 +08:00
|
|
|
|