mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 04:39:00 +00:00
147 lines
4.2 KiB
C++
147 lines
4.2 KiB
C++
#pragma once
|
|
|
|
#include "Vehicle.h"
|
|
#include "DamageManager.h"
|
|
#include "Door.h"
|
|
|
|
class CObject;
|
|
|
|
// These are used for all the wheel arrays
|
|
// DON'T confuse with VEHWHEEL, which are vehicle components
|
|
enum {
|
|
CARWHEEL_FRONT_LEFT,
|
|
CARWHEEL_REAR_LEFT,
|
|
CARWHEEL_FRONT_RIGHT,
|
|
CARWHEEL_REAR_RIGHT
|
|
};
|
|
|
|
enum eBombType
|
|
{
|
|
CARBOMB_NONE,
|
|
CARBOMB_TIMED,
|
|
CARBOMB_ONIGNITION,
|
|
CARBOMB_REMOTE,
|
|
CARBOMB_TIMEDACTIVE,
|
|
CARBOMB_ONIGNITIONACTIVE,
|
|
};
|
|
|
|
class CAutomobile : public CVehicle
|
|
{
|
|
public:
|
|
// 0x288
|
|
CDamageManager Damage;
|
|
CDoor Doors[6];
|
|
RwFrame *m_aCarNodes[NUM_CAR_NODES];
|
|
CColPoint m_aWheelColPoints[4];
|
|
float m_aSuspensionSpringRatio[4];
|
|
float m_aSuspensionSpringRatioPrev[4];
|
|
float m_aWheelTimer[4]; // set to 4.0 when wheel is touching ground, then decremented
|
|
float field_49C;
|
|
bool m_aWheelSkidmarkMuddy[4];
|
|
bool m_aWheelSkidmarkBloody[4];
|
|
float m_aWheelRotation[4];
|
|
float m_aWheelPosition[4];
|
|
float m_aWheelSpeed[4];
|
|
uint8 field_4D8;
|
|
uint8 m_bombType : 3;
|
|
uint8 bTaxiLight : 1;
|
|
uint8 bHadDriver : 1; // for bombs
|
|
uint8 m_auto_flagA20 : 1;
|
|
uint8 m_auto_flagA40 : 1;
|
|
uint8 m_auto_flagA80 : 1;
|
|
uint8 field_4DA[2];
|
|
CEntity *field_4DC; // blow up entity
|
|
uint8 field_4E0[4];
|
|
uint32 m_nBusDoorTimerEnd;
|
|
uint32 m_nBusDoorTimerStart;
|
|
float m_aSuspensionSpringLength[4];
|
|
float m_aSuspensionLineLength[4];
|
|
float m_fHeightAboveRoad;
|
|
float m_fTraction;
|
|
uint8 stuff6[28];
|
|
float m_fFireBlowUpTimer;
|
|
CPhysical *m_aGroundPhysical[4]; // physicals touching wheels
|
|
CVector m_aGroundOffset[4]; // from ground object to colpoint
|
|
CEntity *m_pSetOnFireEntity;
|
|
float m_weaponThingA; // TODO
|
|
float m_weaponThingB; // TODO
|
|
float m_fCarGunLR;
|
|
float m_fCarGunUD;
|
|
float m_fWindScreenRotation;
|
|
uint8 stuff4[4];
|
|
uint8 m_nWheelsOnGround;
|
|
uint8 m_nDriveWheelsOnGround;
|
|
uint8 m_nDriveWheelsOnGroundPrev;
|
|
uint8 stuff5[5];
|
|
tWheelState m_aWheelState[4];
|
|
|
|
static bool &m_sAllTaxiLights;
|
|
|
|
CAutomobile(int, uint8);
|
|
|
|
// from CEntity
|
|
void SetModelIndex(uint32 id);
|
|
void ProcessControl(void);
|
|
void Teleport(CVector v);
|
|
void PreRender(void);
|
|
void Render(void);
|
|
|
|
// from CPhysical
|
|
int32 ProcessEntityCollision(CEntity *ent, CColPoint *colpoints);
|
|
|
|
// from CVehicle
|
|
void ProcessControlInputs(uint8);
|
|
void GetComponentWorldPosition(int32 component, CVector &pos);
|
|
bool IsComponentPresent(int32 component);
|
|
void SetComponentRotation(int32 component, CVector rotation);
|
|
void OpenDoor(int32 component, eDoors door, float openRatio);
|
|
void ProcessOpenDoor(uint32, uint32, float);
|
|
bool IsDoorReady(eDoors door);
|
|
bool IsDoorFullyOpen(eDoors door);
|
|
bool IsDoorClosed(eDoors door);
|
|
bool IsDoorMissing(eDoors door);
|
|
void RemoveRefsToVehicle(CEntity *ent);
|
|
void BlowUpCar(CEntity *ent);
|
|
bool SetUpWheelColModel(CColModel *colModel);
|
|
void BurstTyre(uint8 tyre);
|
|
bool IsRoomForPedToLeaveCar(uint32, CVector *);
|
|
float GetHeightAboveRoad(void);
|
|
void PlayCarHorn(void);
|
|
|
|
void FireTruckControl(void);
|
|
void TankControl(void);
|
|
void HydraulicControl(void);
|
|
void VehicleDamage(float impulse, uint16 damagedPiece);
|
|
void ProcessBuoyancy(void);
|
|
void DoDriveByShootings(void);
|
|
int32 RcbanditCheckHitWheels(void);
|
|
void PlayHornIfNecessary(void);
|
|
void ResetSuspension(void);
|
|
void SetupSuspensionLines(void);
|
|
void ScanForCrimes(void);
|
|
void BlowUpCarsInPath(void);
|
|
bool HasCarStoppedBecauseOfLight(void);
|
|
void SetBusDoorTimer(uint32 timer, uint8 type);
|
|
void ProcessAutoBusDoors(void);
|
|
void ProcessSwingingDoor(int32 component, eDoors door);
|
|
void SetupDamageAfterLoad(void);
|
|
CObject *SpawnFlyingComponent(int32 component, uint32 type);
|
|
CObject *RemoveBonnetInPedCollision(void);
|
|
void SetPanelDamage(int32 component, ePanels panel, bool noFlyingComponents = false);
|
|
void SetBumperDamage(int32 component, ePanels panel, bool noFlyingComponents = false);
|
|
void SetDoorDamage(int32 component, eDoors door, bool noFlyingComponents = false);
|
|
|
|
void Fix(void);
|
|
void SetComponentVisibility(RwFrame *frame, uint32 flags);
|
|
void SetupModelNodes(void);
|
|
void SetTaxiLight(bool light);
|
|
bool GetAllWheelsOffGround(void);
|
|
void HideAllComps(void);
|
|
void ShowAllComps(void);
|
|
void ReduceHornCounter(void);
|
|
|
|
static void SetAllTaxiLights(bool set);
|
|
|
|
CAutomobile* ctor(int, uint8);
|
|
};
|
|
static_assert(sizeof(CAutomobile) == 0x5A8, "CAutomobile: error");
|