本文整理汇总了C++中CVehicle::GetSeatById方法的典型用法代码示例。如果您正苦于以下问题:C++ CVehicle::GetSeatById方法的具体用法?C++ CVehicle::GetSeatById怎么用?C++ CVehicle::GetSeatById使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CVehicle
的用法示例。
在下文中一共展示了CVehicle::GetSeatById方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: EnterVehicle
//------------------------------------------------------------------------
int CScriptBind_Vehicle::EnterVehicle(IFunctionHandler* pH, ScriptHandle actorHandle, int seatId, bool isAnimationEnabled)
{
CVehicle* pVehicle = GetVehicle(pH);
if (!pVehicle || !actorHandle.n)
return pH->EndFunction(0);
IVehicleSeat* pSeat = pVehicle->GetSeatById(seatId);
bool ret = false;
if (pSeat)
ret = pSeat->Enter((EntityId)actorHandle.n, isAnimationEnabled);
return pH->EndFunction(ret);
}
开发者ID:NightOwlsEntertainment,项目名称:PetBox_A_Journey_to_Conquer_Elementary_Algebra,代码行数:16,代码来源:ScriptBind_Vehicle.cpp
示例2: ProcessEvent
void CFlowVehicleTurret::ProcessEvent(EFlowEvent event, SActivationInfo* pActInfo)
{
CFlowVehicleBase::ProcessEvent(event, pActInfo); // handles eFE_SetEntityId
if (event == eFE_Activate)
{
if (IsPortActive(pActInfo, eIn_Trigger))
{
bool bSuccess = false;
const string seatName = GetPortString(pActInfo, eIn_Seat);
Vec3 aimPos = GetPortVec3(pActInfo, eIn_AimPos);
CVehicle* pVehicle = static_cast<CVehicle*>(GetVehicle());
if (pVehicle)
{
CVehicleSeat* pSeat = static_cast<CVehicleSeat*>(pVehicle->GetSeatById(pVehicle->GetSeatId(seatName)));
if (pSeat)
{
TVehicleSeatActionVector &seatActions = pSeat->GetSeatActions();
for (TVehicleSeatActionVector::iterator ite = seatActions.begin(); ite != seatActions.end(); ++ite)
{
IVehicleSeatAction* pSeatAction = ite->pSeatAction;
CVehicleSeatActionRotateTurret* pActionRotateTurret = CAST_VEHICLEOBJECT(CVehicleSeatActionRotateTurret, pSeatAction);
if (pActionRotateTurret)
{
if (!aimPos.IsZero())
{
pActionRotateTurret->SetAimGoal(aimPos);
}
bSuccess = true;
break;
}
}
}
}
ActivateOutput( pActInfo, eOut_Success, bSuccess );
}
}
}