Jolt Physics
A multi core friendly Game Physics Engine
|
#include <WheeledVehicleController.h>
Public Member Functions | |
virtual VehicleController * | ConstructController (VehicleConstraint &inConstraint) const override |
Create an instance of the vehicle controller class. More... | |
virtual void | SaveBinaryState (StreamOut &inStream) const override |
Saves the contents of the controller settings in binary form to inStream. More... | |
virtual void | RestoreBinaryState (StreamIn &inStream) override |
Restore the contents of the controller settings in binary form from inStream. More... | |
virtual void | SaveBinaryState (StreamOut &inStream) const =0 |
Saves the contents of the controller settings in binary form to inStream. More... | |
virtual void | RestoreBinaryState (StreamIn &inStream)=0 |
Restore the contents of the controller settings in binary form from inStream. More... | |
virtual VehicleController * | ConstructController (VehicleConstraint &inConstraint) const =0 |
Create an instance of the vehicle controller class. More... | |
Public Member Functions inherited from SerializableObject | |
virtual | ~SerializableObject ()=default |
Constructor. More... | |
Public Member Functions inherited from NonCopyable | |
NonCopyable ()=default | |
NonCopyable (const NonCopyable &)=delete | |
void | operator= (const NonCopyable &)=delete |
Public Member Functions inherited from RefTarget< VehicleControllerSettings > | |
RefTarget ()=default | |
Constructor. More... | |
RefTarget (const RefTarget &) | |
~RefTarget () | |
assert no one is referencing us More... | |
void | SetEmbedded () const |
RefTarget & | operator= (const RefTarget &) |
Assignment operator. More... | |
uint32 | GetRefCount () const |
Get current refcount of this object. More... | |
void | AddRef () const |
Add or release a reference to this object. More... | |
void | Release () const |
Public Attributes | |
VehicleEngineSettings | mEngine |
The properties of the engine. More... | |
VehicleTransmissionSettings | mTransmission |
The properties of the transmission (aka gear box) More... | |
Array< VehicleDifferentialSettings > | mDifferentials |
List of differentials and their properties. More... | |
float | mDifferentialLimitedSlipRatio = 1.4f |
Ratio max / min average wheel speed of each differential (measured at the clutch). When the ratio is exceeded all torque gets distributed to the differential with the minimal average velocity. This allows implementing a limited slip differential between differentials. Set to FLT_MAX for an open differential. Value should be > 1. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from RefTarget< VehicleControllerSettings > | |
static int | sInternalGetRefCountOffset () |
INTERNAL HELPER FUNCTION USED BY SERIALIZATION. More... | |
Protected Attributes inherited from RefTarget< VehicleControllerSettings > | |
atomic< uint32 > | mRefCount |
Current reference count. More... | |
Static Protected Attributes inherited from RefTarget< VehicleControllerSettings > | |
static constexpr uint32 | cEmbedded |
A large value that gets added to the refcount to mark the object as embedded. More... | |
Settings of a vehicle with regular wheels
The properties in this controller are largely based on "Car Physics for Games" by Marco Monster. See: https://www.asawicki.info/Mirror/Car%20Physics%20for%20Games/Car%20Physics%20for%20Games.html
|
overridevirtual |
Create an instance of the vehicle controller class.
Implements VehicleControllerSettings.
Reimplemented in MotorcycleControllerSettings.
|
overridevirtual |
Restore the contents of the controller settings in binary form from inStream.
Implements VehicleControllerSettings.
Reimplemented in MotorcycleControllerSettings.
|
overridevirtual |
Saves the contents of the controller settings in binary form to inStream.
Implements VehicleControllerSettings.
Reimplemented in MotorcycleControllerSettings.
float WheeledVehicleControllerSettings::mDifferentialLimitedSlipRatio = 1.4f |
Ratio max / min average wheel speed of each differential (measured at the clutch). When the ratio is exceeded all torque gets distributed to the differential with the minimal average velocity. This allows implementing a limited slip differential between differentials. Set to FLT_MAX for an open differential. Value should be > 1.
Array<VehicleDifferentialSettings> WheeledVehicleControllerSettings::mDifferentials |
List of differentials and their properties.
VehicleEngineSettings WheeledVehicleControllerSettings::mEngine |
The properties of the engine.
VehicleTransmissionSettings WheeledVehicleControllerSettings::mTransmission |
The properties of the transmission (aka gear box)