1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-10 02:48:30 +00:00
re3/src/vehicles/Transmission.h

29 lines
597 B
C
Raw Normal View History

2019-06-19 21:41:43 +00:00
#pragma once
struct tGear
{
float fMaxVelocity;
float fShiftUpVelocity;
float fShiftDownVelocity;
};
class cTransmission
{
public:
// Gear 0 is reverse, 1-5 are forward
tGear Gears[6];
char nDriveType;
char nEngineType;
int8 nNumberOfGears;
uint8 Flags;
float fEngineAcceleration;
float fMaxVelocity;
float fUnkMaxVelocity;
float fMaxReverseVelocity;
float fCurVelocity;
2019-06-19 21:41:43 +00:00
void InitGearRatios(void);
void CalculateGearForSimpleCar(float speed, uint8 &gear);
2019-07-17 21:58:06 +00:00
float CalculateDriveAcceleration(const float &gasPedal, uint8 &gear, float &time, const float &velocity, bool cheat);
2019-06-19 21:41:43 +00:00
};