2019-05-18 12:39:39 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CVehicle;
|
|
|
|
|
|
|
|
class CCarCtrl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void SwitchVehicleToRealPhysics(CVehicle*);
|
2019-06-28 12:34:02 +02:00
|
|
|
static void AddToCarArray(int32 id, int32 vehclass);
|
2019-06-25 01:42:23 +03:00
|
|
|
static void UpdateCarCount(CVehicle*, bool);
|
2019-06-28 12:34:02 +02:00
|
|
|
static int32 ChooseCarModel(int32 vehclass);
|
2019-07-14 14:49:27 +03:00
|
|
|
static bool JoinCarWithRoadSystemGotoCoors(CVehicle*, CVector, bool);
|
|
|
|
static void JoinCarWithRoadSystem(CVehicle*);
|
2019-07-17 13:19:20 +02:00
|
|
|
static void SteerAICarWithPhysics(CVehicle*);
|
|
|
|
static void UpdateCarOnRails(CVehicle*);
|
2019-07-17 23:58:06 +02:00
|
|
|
static bool MapCouldMoveInThisArea(float x, float y);
|
2019-06-24 17:57:54 +03:00
|
|
|
|
|
|
|
static int32 &NumLawEnforcerCars;
|
2019-06-30 13:59:55 +03:00
|
|
|
static int32 &NumAmbulancesOnDuty;
|
|
|
|
static int32 &NumFiretrucksOnDuty;
|
2019-06-29 11:09:33 +02:00
|
|
|
static bool &bCarsGeneratedAroundCamera;
|
2019-07-04 01:16:24 +03:00
|
|
|
static float &CarDensityMultiplier;
|
2019-05-18 12:39:39 +02:00
|
|
|
};
|