2010-08-05 17:22:47 +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 "CCInstantAction.h"
|
|
|
|
#include "Cocos2dDefine.h"
|
|
|
|
#include "CCNode.h"
|
|
|
|
#include "CCSprite.h"
|
|
|
|
namespace cocos2d {
|
|
|
|
//
|
|
|
|
// InstantAction
|
|
|
|
//
|
|
|
|
CCInstantAction::CCInstantAction()
|
|
|
|
{
|
|
|
|
m_fDuration = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSObject * CCInstantAction::copyWithZone(cocos2d::NSZone *pZone)
|
|
|
|
{
|
|
|
|
NSZone *pNewZone = NULL;
|
|
|
|
CCInstantAction *pRet = NULL;
|
|
|
|
if (pZone && pZone->m_pCopyObject)
|
|
|
|
{
|
|
|
|
pRet = dynamic_cast<CCInstantAction*>(pZone->m_pCopyObject);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pRet = new CCInstantAction();
|
|
|
|
pZone = pNewZone = new NSZone(pRet);
|
|
|
|
}
|
|
|
|
__super::copyWithZone(pZone);
|
|
|
|
CCX_SAFE_DELETE(pNewZone);
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
bool CCInstantAction::isDone()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
void CCInstantAction::step(ccTime dt)
|
|
|
|
{
|
|
|
|
update(1);
|
|
|
|
}
|
|
|
|
void CCInstantAction::update(ccTime time)
|
|
|
|
{
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
CCFiniteTimeAction * CCInstantAction::reverse()
|
|
|
|
{
|
|
|
|
return dynamic_cast<CCFiniteTimeAction*>(copy()->autorelease());
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Show
|
|
|
|
//
|
2010-08-12 16:19:09 +08:00
|
|
|
CCShow* CCShow::action()
|
|
|
|
{
|
|
|
|
CCShow* pRet = new CCShow();
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
2010-08-05 17:22:47 +08:00
|
|
|
void CCShow::startWithTarget(NSObject *pTarget)
|
|
|
|
{
|
|
|
|
__super::startWithTarget(pTarget);
|
|
|
|
dynamic_cast<CCNode*>(pTarget)->setIsVisible(true);
|
|
|
|
}
|
|
|
|
CCFiniteTimeAction *CCShow::reverse()
|
|
|
|
{
|
|
|
|
return dynamic_cast<CCFiniteTimeAction*>(CCHide::action());
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Hide
|
|
|
|
//
|
2010-08-12 16:19:09 +08:00
|
|
|
CCHide * CCHide::action()
|
|
|
|
{
|
|
|
|
CCHide *pRet = new CCHide();
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
2010-08-05 17:22:47 +08:00
|
|
|
void CCHide::startWithTarget(NSObject *pTarget)
|
|
|
|
{
|
|
|
|
__super::startWithTarget(pTarget);
|
|
|
|
dynamic_cast<CCNode*>(pTarget)->setIsVisible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCFiniteTimeAction *CCHide::reverse()
|
|
|
|
{
|
|
|
|
return dynamic_cast<CCFiniteTimeAction*>(CCShow::action());
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// ToggleVisibility
|
|
|
|
//
|
2010-08-12 16:19:09 +08:00
|
|
|
CCToggleVisibility * CCToggleVisibility::action()
|
|
|
|
{
|
|
|
|
CCToggleVisibility *pRet = new CCToggleVisibility();
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
2010-08-05 17:22:47 +08:00
|
|
|
void CCToggleVisibility::startWithTarget(NSObject *pTarget)
|
|
|
|
{
|
|
|
|
__super::startWithTarget(pTarget);
|
|
|
|
dynamic_cast<CCNode*>(pTarget)->setIsVisible(!dynamic_cast<CCNode*>(pTarget)->getIsVisible());
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// FlipX
|
|
|
|
//
|
|
|
|
CCFlipX *CCFlipX::actionWithFlipX(bool x)
|
|
|
|
{
|
|
|
|
CCFlipX *pRet = new CCFlipX();
|
|
|
|
pRet->initWithFlipX(x);
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
CCFlipX *CCFlipX::initWithFlipX(bool x)
|
|
|
|
{
|
|
|
|
m_bFlipX = x;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
void CCFlipX::startWithTarget(NSObject *pTarget)
|
|
|
|
{
|
|
|
|
__super::startWithTarget(pTarget);
|
|
|
|
dynamic_cast<CCSprite*>(pTarget)->setFlipX(m_bFlipX);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCFiniteTimeAction* CCFlipX::reverse()
|
|
|
|
{
|
|
|
|
return CCFlipX::actionWithFlipX(!m_bFlipX);
|
|
|
|
}
|
|
|
|
|
|
|
|
NSObject * CCFlipX::copyWithZone(NSZone *pZone)
|
|
|
|
{
|
|
|
|
NSZone *pNewZone = NULL;
|
|
|
|
CCFlipX *pRet = NULL;
|
|
|
|
if (pZone && pZone->m_pCopyObject)
|
|
|
|
{
|
|
|
|
pRet = dynamic_cast<CCFlipX*>(pZone->m_pCopyObject);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pRet = new CCFlipX();
|
|
|
|
pZone = pNewZone = new NSZone(pRet);
|
|
|
|
}
|
|
|
|
__super::copyWithZone(pZone);
|
|
|
|
pRet->initWithFlipX(m_bFlipX);
|
|
|
|
CCX_SAFE_DELETE(pNewZone);
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// FlipY
|
|
|
|
//
|
|
|
|
CCFlipY * CCFlipY::actionWithFlipY(bool y)
|
|
|
|
{
|
|
|
|
CCFlipY *pRet = new CCFlipY();
|
|
|
|
pRet->initWithFlipY(y);
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
CCFlipY * CCFlipY::initWithFlipY(bool y)
|
|
|
|
{
|
|
|
|
m_bFlipY = y;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCFlipY::startWithTarget(NSObject *pTarget)
|
|
|
|
{
|
|
|
|
__super::startWithTarget(pTarget);
|
|
|
|
dynamic_cast<CCSprite*>(pTarget)->setFlipY(m_bFlipY);
|
|
|
|
}
|
|
|
|
|
|
|
|
CCFiniteTimeAction* CCFlipY::reverse()
|
|
|
|
{
|
|
|
|
return CCFlipY::actionWithFlipY(!m_bFlipY);
|
|
|
|
}
|
|
|
|
|
|
|
|
NSObject * CCFlipY::copyWithZone(NSZone *pZone)
|
|
|
|
{
|
|
|
|
NSZone *pNewZone = NULL;
|
|
|
|
CCFlipY *pRet = NULL;
|
|
|
|
if (pZone && pZone->m_pCopyObject)
|
|
|
|
{
|
|
|
|
pRet = dynamic_cast<CCFlipY*>(pZone->m_pCopyObject);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pRet = new CCFlipY();
|
|
|
|
pZone = pNewZone = new NSZone(pRet);
|
|
|
|
}
|
|
|
|
__super::copyWithZone(pZone);
|
|
|
|
pRet->initWithFlipY(m_bFlipY);
|
|
|
|
CCX_SAFE_DELETE(pNewZone);
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Place
|
|
|
|
//
|
|
|
|
CCPlace * CCPlace::actionWithPosition(CGPoint pos)
|
|
|
|
{
|
|
|
|
CCPlace *pRet = new CCPlace();
|
|
|
|
pRet->initWithPosition(pos);
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
CCPlace * CCPlace::initWithPosition(CGPoint pos)
|
|
|
|
{
|
|
|
|
m_tPosition = pos;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSObject * CCPlace::copyWithZone(NSZone *pZone)
|
|
|
|
{
|
|
|
|
NSZone *pNewZone = NULL;
|
|
|
|
CCPlace *pRet = NULL;
|
|
|
|
if (pZone && pZone->m_pCopyObject)
|
|
|
|
{
|
|
|
|
pRet = dynamic_cast<CCPlace*>(pZone->m_pCopyObject);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pRet = new CCPlace();
|
|
|
|
pZone = pNewZone = new NSZone(pRet);
|
|
|
|
}
|
|
|
|
__super::copyWithZone(pZone);
|
|
|
|
pRet->initWithPosition(m_tPosition);
|
|
|
|
CCX_SAFE_DELETE(pNewZone);
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCPlace::startWithTarget(NSObject *pTarget)
|
|
|
|
{
|
|
|
|
__super::startWithTarget(pTarget);
|
|
|
|
dynamic_cast<CCNode*>(m_pTarget)->setPosition(m_tPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// CallFunc
|
|
|
|
//
|
|
|
|
|
|
|
|
CCCallFunc * CCCallFunc::actionWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFunc selector)
|
|
|
|
{
|
|
|
|
CCCallFunc* pCallFunc = new CCCallFunc();
|
|
|
|
pCallFunc->autorelease();
|
|
|
|
|
|
|
|
pCallFunc->initWithTarget(pSelectorTarget);
|
|
|
|
pCallFunc->m_pCallFunc = selector;
|
|
|
|
|
|
|
|
return pCallFunc;
|
|
|
|
}
|
|
|
|
CCCallFunc * CCCallFunc::initWithTarget(SelectorProtocol* pSelectorTarget)
|
|
|
|
{
|
|
|
|
m_pSelectorTarget = pSelectorTarget;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSObject * CCCallFunc::copyWithZone(cocos2d::NSZone *pZone)
|
|
|
|
{
|
|
|
|
NSZone* pNewZone = NULL;
|
|
|
|
CCCallFunc* pRet = NULL;
|
|
|
|
if(pZone && pZone->m_pCopyObject) //in case of being called at sub class
|
|
|
|
pRet = dynamic_cast<CCCallFunc*>(pZone->m_pCopyObject);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pRet = new CCCallFunc();
|
|
|
|
pZone = pNewZone = new NSZone(pRet);
|
|
|
|
}
|
|
|
|
__super::copyWithZone(pZone);
|
|
|
|
pRet->initWithTarget(m_pSelectorTarget);
|
|
|
|
pRet->m_pCallFunc = m_pCallFunc;
|
|
|
|
CCX_SAFE_DELETE(pNewZone);
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
void CCCallFunc::startWithTarget(NSObject *pTarget)
|
|
|
|
{
|
|
|
|
__super::startWithTarget(pTarget);
|
|
|
|
this->execute();
|
|
|
|
}
|
|
|
|
void CCCallFunc::execute()
|
|
|
|
{
|
|
|
|
if(m_pCallFunc)
|
|
|
|
{
|
|
|
|
(m_pSelectorTarget->*m_pCallFunc)();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// CallFuncN
|
|
|
|
//
|
|
|
|
void CCCallFuncN::execute()
|
|
|
|
{
|
|
|
|
if(m_pCallFuncN)
|
|
|
|
{
|
|
|
|
(m_pSelectorTarget->*m_pCallFuncN)(dynamic_cast<CCNode*>(m_pTarget));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CCCallFuncN * CCCallFuncN::actionWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncN selector)
|
|
|
|
{
|
|
|
|
CCCallFuncN *pRet = new CCCallFuncN();
|
|
|
|
pRet->autorelease();
|
|
|
|
pRet->initWithTarget(pSelectorTarget);
|
|
|
|
pRet->m_pCallFuncN = selector;
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// CallFuncND
|
|
|
|
//
|
|
|
|
CCCallFuncND * CCCallFuncND::actionWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncND selector, void* d)
|
|
|
|
{
|
|
|
|
CCCallFuncND* pRet = new CCCallFuncND();
|
|
|
|
pRet->initWithTarget(pSelectorTarget, selector, d);
|
|
|
|
pRet->autorelease();
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCCallFuncND * CCCallFuncND::initWithTarget(SelectorProtocol* pSelectorTarget, SEL_CallFuncND selector, void* d)
|
|
|
|
{
|
|
|
|
if( __super::initWithTarget(pSelectorTarget) )
|
|
|
|
{
|
|
|
|
m_pData = d;
|
|
|
|
m_pCallFuncND = selector;
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSObject * CCCallFuncND::copyWithZone(NSZone* zone)
|
|
|
|
{
|
|
|
|
NSZone* pNewZone = NULL;
|
|
|
|
CCCallFuncND* pRet = NULL;
|
|
|
|
if(zone && zone->m_pCopyObject) //in case of being called at sub class
|
|
|
|
pRet = dynamic_cast<CCCallFuncND*>(zone->m_pCopyObject);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pRet = new CCCallFuncND();
|
|
|
|
zone = pNewZone = new NSZone(pRet);
|
|
|
|
}
|
|
|
|
__super::copyWithZone(zone);
|
|
|
|
pRet->initWithTarget(m_pSelectorTarget, m_pCallFuncND, m_pData);
|
|
|
|
CCX_SAFE_DELETE(pNewZone);
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCCallFuncND::execute()
|
|
|
|
{
|
|
|
|
if(m_pCallFuncND)
|
|
|
|
{
|
|
|
|
(m_pSelectorTarget->*m_pCallFuncND)(dynamic_cast<CCNode*>(m_pTarget), m_pData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if NS_BLOCKS_AVAILABLE
|
|
|
|
|
|
|
|
#pragma mark CCCallBlock
|
|
|
|
|
|
|
|
@implementation CCCallBlock
|
|
|
|
|
|
|
|
+(id) actionWithBlock:(void(^)())block {
|
|
|
|
return [[[self alloc] initWithBlock:block] autorelease];
|
|
|
|
}
|
|
|
|
|
|
|
|
-(id) initWithBlock:(void(^)())block {
|
|
|
|
if ((self = [super init])) {
|
|
|
|
|
|
|
|
block_ = [block retain];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(id) copyWithZone: (NSZone*) zone {
|
|
|
|
CCInstantAction *copy = [[[self class] allocWithZone: zone] initWithBlock:block_];
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) startWithTarget:(id)aTarget {
|
|
|
|
[super startWithTarget:aTarget];
|
|
|
|
[self execute];
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) execute {
|
|
|
|
block_();
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) dealloc {
|
|
|
|
[block_ release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
#pragma mark CCCallBlockN
|
|
|
|
|
|
|
|
@implementation CCCallBlockN
|
|
|
|
|
|
|
|
+(id) actionWithBlock:(void(^)(CCNode *node))block {
|
|
|
|
return [[[self alloc] initWithBlock:block] autorelease];
|
|
|
|
}
|
|
|
|
|
|
|
|
-(id) initWithBlock:(void(^)(CCNode *node))block {
|
|
|
|
if ((self = [super init])) {
|
|
|
|
|
|
|
|
block_ = [block retain];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(id) copyWithZone: (NSZone*) zone {
|
|
|
|
CCInstantAction *copy = [[[self class] allocWithZone: zone] initWithBlock:block_];
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) startWithTarget:(id)aTarget {
|
|
|
|
[super startWithTarget:aTarget];
|
|
|
|
[self execute];
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) execute {
|
|
|
|
block_(target);
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) dealloc {
|
|
|
|
[block_ release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
#endif // NS_BLOCKS_AVAILABLE
|
|
|
|
|
|
|
|
}
|