本文整理汇总了PHP中Vehicle::setClass方法的典型用法代码示例。如果您正苦于以下问题:PHP Vehicle::setClass方法的具体用法?PHP Vehicle::setClass怎么用?PHP Vehicle::setClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Vehicle
的用法示例。
在下文中一共展示了Vehicle::setClass方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getParticipant
/**
* Helper to get new participant instance
*
* @param array $part_data
* @return Participant
*/
protected function getParticipant($part_data)
{
// Create driver
$driver = new Driver();
$driver->setName($part_data['name'])->setHuman(false);
// Has steam id
if (isset($part_data['steamid'])) {
$driver->setDriverId($part_data['steamid']);
$driver->setHuman(true);
}
// Create participant and add driver
$participant = Participant::createInstance();
$participant->setDrivers(array($driver))->setFinishStatus(Participant::FINISH_NORMAL);
// Create vehicle and add to participant
$vehicle = new Vehicle();
// TODO: Parse livery too?
// $vehicle->setType( (string) $part_data['setup']['LiveryId']);
// Has vehicle in root
$vehicle_id = null;
if (isset($part_data['VehicleId'])) {
$vehicle_id = $part_data['VehicleId'];
} elseif (isset($part_data['setup']) and isset($part_data['setup']['VehicleId'])) {
$vehicle_id = $part_data['setup']['VehicleId'];
}
// Have friendly vehicle name
if (isset($this->attribute_names['vehicles'][$vehicle_id])) {
$vehicle->setName($this->attribute_names['vehicles'][$part_data['setup']['VehicleId']]['name']);
$vehicle->setClass($this->attribute_names['vehicles'][$part_data['setup']['VehicleId']]['class']);
} else {
$vehicle->setName((string) $vehicle_id);
}
$participant->setVehicle($vehicle);
return $participant;
}