本文整理汇总了C++中MechWarriorPtr::orderAttackObject方法的典型用法代码示例。如果您正苦于以下问题:C++ MechWarriorPtr::orderAttackObject方法的具体用法?C++ MechWarriorPtr::orderAttackObject怎么用?C++ MechWarriorPtr::orderAttackObject使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MechWarriorPtr
的用法示例。
在下文中一共展示了MechWarriorPtr::orderAttackObject方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: orderAttackObject
long MoverGroup::orderAttackObject (long origin, GameObjectPtr target, long attackType, long attackMethod, long attackRange, long aimLocation, long fromArea, unsigned long params) {
long result = TACORDER_FAILURE;
for (long i = 0; i < numMovers; i++) {
Assert(getMover(i) != NULL, 0, " MoverGroup.orderAttackObject: NULL mover ");
MechWarriorPtr pilot = getMover(i)->getPilot();
if (pilot)
result = pilot->orderAttackObject(true, origin, target, attackType, attackMethod, attackRange, aimLocation, fromArea, params);
}
return(result);
}
示例2: orderAttackObject
int32_t MoverGroup::orderAttackObject(int32_t origin, GameObjectPtr target, int32_t attackType,
int32_t attackMethod, int32_t attackRange, int32_t aimLocation, int32_t fromArea,
uint32_t params)
{
int32_t result = TACORDER_FAILURE;
for (size_t i = 0; i < numMovers; i++)
{
Assert(getMover(i) != nullptr, 0, " MoverGroup.orderAttackObject: nullptr mover ");
MechWarriorPtr pilot = getMover(i)->getPilot();
if (pilot)
result = pilot->orderAttackObject(true, origin, target, attackType, attackMethod,
attackRange, aimLocation, fromArea, params);
}
return (result);
}