summaryrefslogtreecommitdiffstats
path: root/src/vehicles/Vehicle.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2021-08-16 00:19:09 +0200
committeraap <aap@papnet.eu>2021-08-16 00:19:09 +0200
commit2f92ccecb1b7200d5284986dd584f34493e005ec (patch)
tree459f650376818da5a24f7913dc50ac2be26cc049 /src/vehicles/Vehicle.h
parentmerge miami (diff)
downloadre3-2f92ccecb1b7200d5284986dd584f34493e005ec.tar
re3-2f92ccecb1b7200d5284986dd584f34493e005ec.tar.gz
re3-2f92ccecb1b7200d5284986dd584f34493e005ec.tar.bz2
re3-2f92ccecb1b7200d5284986dd584f34493e005ec.tar.lz
re3-2f92ccecb1b7200d5284986dd584f34493e005ec.tar.xz
re3-2f92ccecb1b7200d5284986dd584f34493e005ec.tar.zst
re3-2f92ccecb1b7200d5284986dd584f34493e005ec.zip
Diffstat (limited to '')
-rw-r--r--src/vehicles/Vehicle.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/vehicles/Vehicle.h b/src/vehicles/Vehicle.h
index b89c8158..535d6536 100644
--- a/src/vehicles/Vehicle.h
+++ b/src/vehicles/Vehicle.h
@@ -256,7 +256,7 @@ public:
int8 m_nPacManPickupsCarried;
uint8 m_nRoadblockType;
uint8 m_bGarageTurnedLightsOff;
- int32 m_vehLCS_264;
+ float m_fWheelSpin;
float m_fHealth; // 1000.0f = full health. 250.0f = fire. 0 -> explode
float m_fEngineEnergy; // TODO(LCS): better name. it adds up acceleration force, so possibly kinetic energy??
uint8 m_nCurrentGear;
@@ -280,8 +280,8 @@ public:
uint8 m_nRadioStation;
uint8 m_bRainAudioCounter;
uint8 m_bRainSamplesCounter;
- int8 m_vehLCS_2A3;
- int32 m_vehLCS_2A4; // haven't seen this used yet
+ int8 m_vehLCS_2A3; // enables 2A4
+ uint8 m_vehLCS_2A4; // some timer
uint32 m_nCarHornTimer;
uint8 m_nCarHornPattern;
uint8 m_bSirenOrAlarm;
@@ -292,7 +292,7 @@ public:
CStoredCollPoly m_aCollPolys[2]; // poly which is under front/rear part of car
float m_fSteerInput;
eVehicleType m_vehType;
- bool m_vehLCS_348;
+ bool m_bSuperBrake;
static void *operator new(size_t) throw();
static void *operator new(size_t sz, int slot) throw();
@@ -429,7 +429,6 @@ public:
static bool m_bDisplayHandlingInfo;
#endif
static float rcHeliHeightLimit;
- // unused from SA:
static float WHEELSPIN_FALL_RATE;
static float WHEELSPIN_RISE_RATE;
static float WHEELSPIN_INAIR_TARGET_RATE;