mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-13 18:40:36 +00:00
car AI
This commit is contained in:
parent
7234e6e698
commit
26f7691031
5 changed files with 446 additions and 16 deletions
|
@ -7,13 +7,19 @@ class CVehicle;
|
|||
class CCarAI
|
||||
{
|
||||
public:
|
||||
static float FindSwitchDistanceClose(CVehicle*);
|
||||
static float FindSwitchDistanceFar(CVehicle*);
|
||||
static void UpdateCarAI(CVehicle*);
|
||||
static void MakeWayForCarWithSiren(CVehicle *veh);
|
||||
static int32 FindPoliceCarSpeedForWantedLevel(CVehicle*);
|
||||
static eCarMission FindPoliceCarMissionForWantedLevel();
|
||||
static void CarHasReasonToStop(CVehicle*);
|
||||
static float GetCarToGoToCoors(CVehicle*, CVector*);
|
||||
static void AddPoliceOccupants(CVehicle*);
|
||||
static void AddAmbulanceOccupants(CVehicle*);
|
||||
static void AddFiretruckOccupants(CVehicle*);
|
||||
static void CarHasReasonToStop(CVehicle*);
|
||||
static void TellOccupantsToLeaveCar(CVehicle*);
|
||||
static void TellCarToRamOtherCar(CVehicle*, CVehicle*);
|
||||
static void TellCarToBlockOtherCar(CVehicle*, CVehicle*);
|
||||
static eCarMission FindPoliceCarMissionForWantedLevel();
|
||||
static int32 FindPoliceCarSpeedForWantedLevel(CVehicle*);
|
||||
static void MellowOutChaseSpeed(CVehicle*);
|
||||
static void MakeWayForCarWithSiren(CVehicle *veh);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue