blob: 8eeef1e8e61629a4a47019fed0811f581d810318 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#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;
void InitGearRatios(void);
void CalculateGearForSimpleCar(float speed, uint8 &gear);
float CalculateDriveAcceleration(const float &gasPedal, uint8 &gear, float &time, const float &velocity, bool cheat);
};
|