10#include <initializer_list>
17using VehicleId = uint32_t;
18using VehicleHandle =
void*;
41 std::vector<float>
gears{defaultGears};
50 static constexpr auto defaultGears = std::initializer_list<float>{ 2.66f, 1.78f, 1.3f, 1.0f, 0.74f };
89 auto IsEnabled() const ->
bool {
return id != -1; }
118 auto IsEnabled() const ->
bool {
return ratio != 0.0f; }
133 auto WheelCount() const ->
size_t
135 return static_cast<size_t>(
leftWheel.IsEnabled()) +
139 auto IsPowered() const ->
bool
159 VehicleHandle handle,
161 : m_info{std::move(info)},
176 auto GetThrottle()
const -> float;
177 auto GetSteering()
const -> float;
178 auto GetBrake()
const -> float;
179 auto GetHandBrake()
const -> float;
180 void SetThrottle(
float throttle);
181 void SetSteering(
float steering);
182 void SetBrake(
float brake);
183 void SetHandBrake(
float brake);
184 void SetInput(
float throttle,
float steering,
float brake,
float handBrake);
185 void HardStopEngine();
191 auto GetVehicleInfo()
const ->
const VehicleInfo& {
return m_info; }
197 auto GetWheelAssemblies() -> std::span<WheelAssembly> {
return m_info.
wheelAssemblies; }
198 auto GetWheelAssemblies()
const -> std::span<const WheelAssembly> {
return m_info.
wheelAssemblies; }
199 auto GetAssemblyCount()
const ->
size_t {
return m_info.
wheelAssemblies.size(); }
200 auto GetWheelCount()
const -> size_t;
201 auto GetDifferentialCount()
const -> size_t;
213 void SetMaxRollAngle(
float angle);
214 void NotifyModifyEngine();
215 void NotifyModifyTransmission();
216 void NotifyModifyWheelAssembly(
size_t assemblyIndex);
218 void RemoveWheelAssembly(
size_t assemblyIndex);
221 void Enable(
bool enabled);
222 auto IsEnabled()
const -> bool;
225 auto GetId()
const -> VehicleId {
return m_id; }
226 auto GetHandle()
const -> VehicleHandle {
return m_handle; }
230 VehicleHandle m_handle;
Identifies an object in the registry.
Definition: Entity.h:18
static constexpr auto Null() noexcept
Construct a null Entity.
Definition: Entity.h:61
A vehicle that can be added to a RigidBody.
Definition: Vehicle.h:156
Differential settings for a wheel assembly.
Definition: Vehicle.h:113
float ratio
ratio between rotation speed of gear box and wheels (set to 0 for unpowered wheels) [range: (0,...
Definition: Vehicle.h:114
float limitedSlipRatio
ratio between max and min wheel speed controlling torque distribution [range: (1, FLT_MAX]]
Definition: Vehicle.h:115
Settings for softening constraints with a spring-damper.
Definition: SpringSettings.h:11
Suspension settings for a wheel assembly.
Definition: Vehicle.h:94
float antiRollBarStiffness
anti-roll bar spring stiffness; ignored for single-wheels; immutable after construction [units: N/m,...
Definition: Vehicle.h:98
float maxLength
maximum offset from wheel position [units: m, range: > minLength]
Definition: Vehicle.h:96
float minLength
minimum offset from wheel position [units: m, range: >= 0]
Definition: Vehicle.h:95
SpringSettings spring
suspension spring settings [range: frequency > 0, damping >= 0]
Definition: Vehicle.h:97
A three component vector.
Definition: Vector.h:29
Settings for a configuring a Vehicle engine.
Definition: Vehicle.h:30
float maxTorque
engine torque limit [units: Nm, range: >= 0]
Definition: Vehicle.h:31
float maxRPM
engine maximum rpm [range: [minRPM, FLT_MAX]]
Definition: Vehicle.h:33
float minRPM
engine minimum rpm [range: [0, maxRPM]]
Definition: Vehicle.h:32
float inertia
moment of inertia [units: kg m^2, range: > 0]
Definition: Vehicle.h:34
float damping
angular damping factor [range: >= 0]
Definition: Vehicle.h:35
Initialization info for a Vehicle.
Definition: Vehicle.h:147
VehicleEngine engine
vehicle engine settings
Definition: Vehicle.h:149
VehicleOrientation orientation
vehicle orientation settings
Definition: Vehicle.h:148
VehicleTransmission transmission
vehicle transmission settings
Definition: Vehicle.h:150
std::vector< WheelAssembly > wheelAssemblies
vehicle wheels (at least one wheel assembly with an enabled differential is required)
Definition: Vehicle.h:151
Settings for configuring a Vehicle orientation.
Definition: Vehicle.h:22
Vector3 forward
local space vehicle forward direction
Definition: Vehicle.h:24
Vector3 up
local space vehicle up direction
Definition: Vehicle.h:23
float maxRollAngle
constrain vehicle pitch/roll [units: radians, range: [0, pi]] (pi to disable)
Definition: Vehicle.h:25
Settings for a configuring a Vehicle transmission.
Definition: Vehicle.h:40
std::vector< float > reverseGears
reverse gear ratios [range: < 0] (at least one gear required)
Definition: Vehicle.h:42
float clutchRelease
time it takes to release clutch [units: s, range >= 0]
Definition: Vehicle.h:47
float shiftTime
time it takes to switch gears [units: s, range: >= 0]
Definition: Vehicle.h:43
float shiftUpRPM
rpm at which upshift occurs [range: (shiftDownRPM, VehicleEninge::maxRPM]]
Definition: Vehicle.h:45
std::vector< float > gears
forward gear ratios [range: > 0] (at least one gear required)
Definition: Vehicle.h:41
float shiftDownRPM
rpm at which downshift occurs [range: (0, shiftUpRPM)]
Definition: Vehicle.h:46
float shiftLatency
delay between gear shifts [units: s, range >= 0]
Definition: Vehicle.h:44
float clutchStrength
strength of clutch when fully engaged (higher values handle more torque but are harder to engage) [un...
Definition: Vehicle.h:48
Settings describing a set of wheels, suspension, and differential attached to a Vehicle.
Definition: Vehicle.h:126
WheelSpec wheelSpec
shared wheel settings
Definition: Vehicle.h:129
Suspension suspension
shared suspension settings
Definition: Vehicle.h:130
WheelMount leftWheel
settings for the left wheel
Definition: Vehicle.h:127
WheelMount rightWheel
settings for the right wheel
Definition: Vehicle.h:128
Differential differential
optional differential settings
Definition: Vehicle.h:131
Unique settings of a wheel in a WheelAssembly.
Definition: Vehicle.h:79
Vector3 up
local space up direction in the neutral position
Definition: Vehicle.h:82
Vector3 steeringAxis
local space steering axis pointing away from ground
Definition: Vehicle.h:84
Entity target
optional Entity to animate (can be (un)assigned freely without issuing an update notification)
Definition: Vehicle.h:86
int id
set to -1 to disable the wheel
Definition: Vehicle.h:80
Vector3 forward
local space forward direction in the neutral position
Definition: Vehicle.h:83
Vector3 position
local space attach position relative to the owning RigidBody
Definition: Vehicle.h:81
Vector3 suspensionAxis
local space suspension direction pointing towards ground
Definition: Vehicle.h:85
Settings shared between all wheels in a WheelAssembly.
Definition: Vehicle.h:55
float maxBrakeTorque
how much torque brake can apply [units: Nm, range: >=0];
Definition: Vehicle.h:61
float inertia
moment of inertia [units: kg m^2, range: > 0] (for a cylinder: 0.5 * mass * radius^2)
Definition: Vehicle.h:58
float maxSteerAngle
how far wheel may turn [units: radians, range: [0, pi/2]]
Definition: Vehicle.h:60
float radius
wheel radius [units: m, range: > 0]
Definition: Vehicle.h:56
float width
wheel width [units: m, range: > 0)
Definition: Vehicle.h:57
float maxHandBrakeTorque
how much torque hand brake can apply [units: Nm, range: >= 0];
Definition: Vehicle.h:62
float damping
angular damping factor [range: >= 0]
Definition: Vehicle.h:59