本文整理汇总了C++中GenericModule::SetAttribute方法的典型用法代码示例。如果您正苦于以下问题:C++ GenericModule::SetAttribute方法的具体用法?C++ GenericModule::SetAttribute怎么用?C++ GenericModule::SetAttribute使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GenericModule
的用法示例。
在下文中一共展示了GenericModule::SetAttribute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: DamageModule
void ModuleManager::DamageModule(uint32 itemID, EvilNumber val)
{
GenericModule * mod = m_Modules->GetModule(itemID);
if( mod != NULL)
{
mod->SetAttribute(AttrHp, val);
}
}
示例2: _processExternalEffect
void ModuleManager::_processExternalEffect(SubEffect * s)
{
//50-50 it's targeting a specific module ( i'm assuming here )
GenericModule * mod = m_Modules->GetModule(s->TargetItemID());
if( mod != NULL )
{
//calculate new attribute
mod->SetAttribute(s->AttributeID(),
CalculateNewAttributeValue(mod->GetAttribute(s->AttributeID()),
s->AppliedValue(), s->CalculationType()));
}
else if( s->TargetItemID() == m_Ship->itemID() ) //guess it's not, but that means it should be targeting our ship itself
{
//calculate new attribute
m_Ship->SetAttribute(s->AttributeID(),
CalculateNewAttributeValue(m_Ship->GetAttribute(s->AttributeID()),
s->AppliedValue(), s->CalculationType()));
}
else //i have no idea what their targeting X_X
sLog.Error("ModuleManager", "Process external effect inconsistency. This shouldn't happen");
}