本文整理汇总了C++中SpellItem::spellId方法的典型用法代码示例。如果您正苦于以下问题:C++ SpellItem::spellId方法的具体用法?C++ SpellItem::spellId怎么用?C++ SpellItem::spellId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SpellItem
的用法示例。
在下文中一共展示了SpellItem::spellId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: FindSpell
SpellItem* SpellShell::FindSpell(int spell_id, int caster_id, int target_id)
{
bool target = true;
const Spell* spell = m_spells->spell(spell_id);
if (spell)
target = (spell->targetType() != 6);
for(QValueList<SpellItem*>::Iterator it = m_spellList.begin();
it != m_spellList.end(); it++) {
SpellItem *i = *it;
//loop to trap a spell being added that is already cast on self.
if ((i->spellId() == spell_id) && (i->casterId() == i->targetId()))
if (caster_id == target_id)
return i;
if ((i->spellId() == spell_id) && (i->targetId() == target_id))
{
if ( (target) && (target_id) )
{
if (i->targetId() == target_id)
return i;
}
else return i;
}
}
return NULL;
}
示例2: findSpell
SpellItem* SpellShell::findSpell(int spell_id)
{
for(QValueList<SpellItem*>::Iterator it = m_spellList.begin();
it != m_spellList.end();
it++)
{
SpellItem *si = *it;
if (si->spellId() == spell_id)
return si;
}
return NULL;
}
示例3: FindSpell
SpellItem* SpellShell::FindSpell(int spell_id, int caster_id, int target_id)
{
for(QValueList<SpellItem*>::Iterator it = m_spellList.begin();
it != m_spellList.end(); it++) {
SpellItem *i = *it;
if ((i->spellId() == spell_id) && (i->casterId() == caster_id)) {
struct spellInfoStruct *info;
info = spell_info(spell_id);
if ( (info->target) && (target_id) ) {
if (i->targetId() == target_id)
return i;
} else return i;
}
}
return NULL;
}