CCEaseBackInOut* CCEaseBackInOut::create ( CCActionInterval* pAction ) { CCEaseBackInOut* pRet = new CCEaseBackInOut ( ); if ( pRet && pRet->initWithAction ( pAction ) ) { pRet->autorelease ( ); } else { CC_SAFE_DELETE ( pRet ); } return pRet; }
// // EaseBackInOut // CCEaseBackInOut* CCEaseBackInOut::actionWithAction(CCIntervalAction* pAction) { CCEaseBackInOut *pRet = new CCEaseBackInOut(); if (pRet) { if (pRet->initWithAction(pAction)) { pRet->autorelease(); } else { CCX_SAFE_RELEASE_NULL(pRet); } } return pRet; }
NSObject* CCEaseBackInOut::copyWithZone(cocos2d::NSZone *pZone) { NSZone* pNewZone = NULL; CCEaseBackInOut* pCopy = NULL; if(pZone && pZone->m_pCopyObject) { //in case of being called at sub class pCopy = (CCEaseBackInOut*)(pZone->m_pCopyObject); } else { pCopy = new CCEaseBackInOut(); pZone = pNewZone = new NSZone(pCopy); } pCopy->initWithAction((CCIntervalAction *)(m_pOther->copy()->autorelease())); CCX_SAFE_DELETE(pNewZone); return pCopy; }
CCObject* CCEaseBackInOut::copyWithZone(CCZone *pZone) { CCZone* pNewZone = NULL; CCEaseBackInOut* pCopy = NULL; if(pZone && pZone->m_pCopyObject) { //in case of being called at sub class pCopy = (CCEaseBackInOut*)(pZone->m_pCopyObject); } else { pCopy = new CCEaseBackInOut(); pNewZone = new CCZone(pCopy); } pCopy->initWithAction((CCActionInterval *)(m_pInner->copy()->autorelease())); CC_SAFE_DELETE(pNewZone); return pCopy; }