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