summaryrefslogtreecommitdiffstats
path: root/src/control/Transmission.h
blob: 686e0acaaf8c6fe49255b90d6b3ee0ad910c9f3b (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
#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 field_5C;

	void InitGearRatios(void);
};