本文整理汇总了C++中CCAction::getTag方法的典型用法代码示例。如果您正苦于以下问题:C++ CCAction::getTag方法的具体用法?C++ CCAction::getTag怎么用?C++ CCAction::getTag使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CCAction
的用法示例。
在下文中一共展示了CCAction::getTag方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getActionByTag
CCAction* CCActionManager::getActionByTag(unsigned int tag, CAObject *pTarget)
{
CCAssert((int)tag != kCCActionTagInvalid, "");
tHashElement *pElement = NULL;
HASH_FIND_INT(m_pTargets, &pTarget, pElement);
if (pElement)
{
if (pElement->actions != NULL)
{
unsigned int limit = pElement->actions->num;
for (unsigned int i = 0; i < limit; ++i)
{
CCAction *pAction = (CCAction*)pElement->actions->arr[i];
if (pAction->getTag() == (int)tag)
{
return pAction;
}
}
}
CCLOG("CrossApp : getActionByTag(tag = %d): Action not found", tag);
}
else
{
// CCLOG("CrossApp : getActionByTag: Target not found");
}
return NULL;
}
示例2: getActionByTag
CCAction* CCActionManager::getActionByTag(int tag, NSObject *pTarget)
{
assert(tag != kCCActionTagInvalid);
tHashElement *pElement = NULL;
HASH_FIND_INT(m_pTargets, &pTarget, pElement);
if (pElement)
{
if (pElement->actions != NULL)
{
unsigned int limit = pElement->actions->num;
for (unsigned int i = 0; i < limit; ++i)
{
CCAction *pAction = (CCAction*)pElement->actions->arr[i];
if (pAction->getTag() == tag)
{
return pAction;
}
}
}
CCLOG("cocos2d : getActionByTag: Action not found");
}
else
{
CCLOG("cocos2d : getActionByTag: Target not found");
}
return NULL;
}
示例3: removeActionByTag
void CCActionManager::removeActionByTag(unsigned int tag, CAObject *pTarget)
{
CCAssert((int)tag != kCCActionTagInvalid, "");
CCAssert(pTarget != NULL, "");
tHashElement *pElement = NULL;
HASH_FIND_INT(m_pTargets, &pTarget, pElement);
if (pElement)
{
unsigned int limit = pElement->actions->num;
for (unsigned int i = 0; i < limit; ++i)
{
CCAction *pAction = (CCAction*)pElement->actions->arr[i];
if (pAction->getTag() == (int)tag && pAction->getOriginalTarget() == pTarget)
{
removeActionAtIndex(i, pElement);
break;
}
}
}
}