2019-07-17 07:19:20 -04:00
|
|
|
#pragma once
|
|
|
|
|
2019-08-06 17:32:19 -04:00
|
|
|
#include "AutoPilot.h"
|
|
|
|
|
2019-07-17 07:19:20 -04:00
|
|
|
class CVehicle;
|
|
|
|
|
|
|
|
class CCarAI
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void UpdateCarAI(CVehicle*);
|
2019-07-18 09:41:09 -04:00
|
|
|
static void MakeWayForCarWithSiren(CVehicle *veh);
|
2019-08-06 17:32:19 -04:00
|
|
|
static int32 FindPoliceCarSpeedForWantedLevel(CVehicle*);
|
|
|
|
static eCarMission FindPoliceCarMissionForWantedLevel();
|
|
|
|
static void AddPoliceOccupants(CVehicle*);
|
2019-09-14 19:28:07 -04:00
|
|
|
static void AddAmbulanceOccupants(CVehicle*);
|
|
|
|
static void AddFiretruckOccupants(CVehicle*);
|
2019-08-11 13:11:54 -04:00
|
|
|
static void CarHasReasonToStop(CVehicle*);
|
2019-09-14 13:53:04 -04:00
|
|
|
static void TellOccupantsToLeaveCar(CVehicle*);
|
2019-09-26 17:01:50 -04:00
|
|
|
static float GetCarToGoToCoors(CVehicle*, CVector*);
|
2019-07-17 07:19:20 -04:00
|
|
|
};
|