NcEngine
Vehicle.h
Go to the documentation of this file.
1
5#pragma once
6
9
10#include <initializer_list>
11#include <span>
12#include <vector>
13
14namespace nc
15{
17using VehicleId = uint32_t;
18using VehicleHandle = void*;
19
22{
23 Vector3 up = Vector3::Up();
24 Vector3 forward = Vector3::Front();
25 float maxRollAngle = std::numbers::pi_v<float>;
26};
27
30{
31 float maxTorque = 500.0f;
32 float minRPM = 1000.0f;
33 float maxRPM = 6000.0f;
34 float inertia = 0.5f;
35 float damping = 0.2f;
36};
37
40{
41 std::vector<float> gears{defaultGears};
42 std::vector<float> reverseGears{-2.90f};
43 float shiftTime = 0.5f;
44 float shiftLatency = 0.5f;
45 float shiftUpRPM = 4000.0f;
46 float shiftDownRPM = 2000.0f;
47 float clutchRelease = 0.3f;
48 float clutchStrength = 10.0f;
49
50 static constexpr auto defaultGears = std::initializer_list<float>{ 2.66f, 1.78f, 1.3f, 1.0f, 0.74f };
51};
52
55{
56 float radius = 0.3f;
57 float width = 0.1f;
58 float inertia = 0.9f;
59 float damping = 0.2f;
60 float maxSteerAngle = 0.523599f;
61 float maxBrakeTorque = 1500.0f;
62 float maxHandBrakeTorque = 4000.0f;
63};
64
79{
80 int id = 0;
81 Vector3 position = Vector3::Zero();
82 Vector3 up = Vector3::Up();
83 Vector3 forward = Vector3::Front();
84 Vector3 steeringAxis = Vector3::Up();
85 Vector3 suspensionAxis = Vector3::Down();
87
88 static auto MakeDisabled() -> WheelMount { return WheelMount{.id = -1}; }
89 auto IsEnabled() const -> bool { return id != -1; }
90};
91
94{
95 float minLength = 0.01f;
96 float maxLength = 0.7f;
97 SpringSettings spring{1.5f, 0.5f};
98 float antiRollBarStiffness = 0.0f;
99
100 static auto MakeDisabled() -> Suspension
101 {
102 return Suspension{0.0f, 0.0001f, SpringSettings{0.0f, 0.0f}, 0.0f};
103 }
104
105 auto HasRollBar() const -> bool { return antiRollBarStiffness > 0.0f; }
106};
107
113{
114 float ratio = 3.42f;
115 float limitedSlipRatio = 1.4f;
116
117 static auto MakeDisabled() -> Differential { return Differential{.ratio = 0.0f}; }
118 auto IsEnabled() const -> bool { return ratio != 0.0f; }
119};
120
126{
132
133 auto WheelCount() const -> size_t
134 {
135 return static_cast<size_t>(leftWheel.IsEnabled()) +
136 static_cast<size_t>(rightWheel.IsEnabled());
137 }
138
139 auto IsPowered() const -> bool
140 {
141 return differential.IsEnabled();
142 }
143};
144
147{
151 std::vector<WheelAssembly> wheelAssemblies{WheelAssembly{}};
152};
153
156{
157 public:
158 explicit Vehicle(VehicleInfo&& info,
159 VehicleHandle handle,
160 VehicleId id)
161 : m_info{std::move(info)},
162 m_handle{handle},
163 m_id{id}
164 {
165 }
166
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(); // zero out input, engine, and transmission state.
186
191 auto GetVehicleInfo() const -> const VehicleInfo& { return m_info; }
192 auto GetOrientation() const -> const VehicleOrientation& { return m_info.orientation; }
193 auto GetEngine() -> VehicleEngine& { return m_info.engine; }
194 auto GetEngine() const -> const VehicleEngine& { return m_info.engine; }
195 auto GetTransmission() -> VehicleTransmission& { return m_info.transmission; }
196 auto GetTransmission() const -> const VehicleTransmission& { return m_info.transmission; }
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;
202
213 void SetMaxRollAngle(float angle);
214 void NotifyModifyEngine();
215 void NotifyModifyTransmission();
216 void NotifyModifyWheelAssembly(size_t assemblyIndex);
217 void AddWheelAssembly(const WheelAssembly& info);
218 void RemoveWheelAssembly(size_t assemblyIndex);
219
221 void Enable(bool enabled);
222 auto IsEnabled() const -> bool;
223
225 auto GetId() const -> VehicleId { return m_id; }
226 auto GetHandle() const -> VehicleHandle { return m_handle; }
227
228 private:
229 VehicleInfo m_info;
230 VehicleHandle m_handle;
231 VehicleId m_id;
232};
233} // namespace nc
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