2019-05-18 06:39:39 -04:00
|
|
|
#pragma once
|
2019-08-11 13:11:54 -04:00
|
|
|
#include "PathFind.h"
|
2019-09-14 13:53:04 -04:00
|
|
|
#include "Boat.h"
|
2019-08-11 13:11:54 -04:00
|
|
|
#include "Vehicle.h"
|
2019-05-18 06:39:39 -04:00
|
|
|
|
2019-10-10 17:02:55 -04:00
|
|
|
#define GAME_SPEED_TO_METERS_PER_SECOND 50.0f
|
2020-01-03 11:48:13 -05:00
|
|
|
#define METERS_PER_SECOND_TO_GAME_SPEED (1.0f / GAME_SPEED_TO_METERS_PER_SECOND)
|
2019-10-10 17:02:55 -04:00
|
|
|
#define GAME_SPEED_TO_CARAI_SPEED 60.0f
|
|
|
|
#define TIME_COPS_WAIT_TO_EXIT_AFTER_STOPPING 2500
|
|
|
|
|
2019-08-06 17:32:19 -04:00
|
|
|
class CZoneInfo;
|
2019-05-18 06:39:39 -04:00
|
|
|
|
2019-08-11 13:11:54 -04:00
|
|
|
enum{
|
|
|
|
MAX_CARS_TO_KEEP = 2,
|
|
|
|
MAX_CAR_MODELS_IN_ARRAY = 256,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define LANE_WIDTH 5.0f
|
|
|
|
|
2019-09-02 12:04:09 -04:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
#define FIX_PATHFIND_BUG
|
|
|
|
#endif
|
|
|
|
|
2019-05-18 06:39:39 -04:00
|
|
|
class CCarCtrl
|
|
|
|
{
|
2020-05-07 06:48:57 -04:00
|
|
|
public:
|
2019-08-06 17:32:19 -04:00
|
|
|
enum eCarClass {
|
|
|
|
POOR = 0,
|
|
|
|
RICH,
|
|
|
|
EXEC,
|
|
|
|
WORKER,
|
|
|
|
SPECIAL,
|
|
|
|
BIG,
|
|
|
|
TAXI,
|
2019-09-12 06:11:13 -04:00
|
|
|
TOTAL_CUSTOM_CLASSES,
|
2019-08-06 17:32:19 -04:00
|
|
|
MAFIA,
|
|
|
|
TRIAD,
|
|
|
|
DIABLO,
|
|
|
|
YAKUZA,
|
|
|
|
YARDIE,
|
|
|
|
COLOMB,
|
|
|
|
NINES,
|
|
|
|
GANG8,
|
|
|
|
GANG9,
|
|
|
|
COPS
|
|
|
|
};
|
2020-05-07 06:48:57 -04:00
|
|
|
|
2019-05-18 06:39:39 -04:00
|
|
|
static void SwitchVehicleToRealPhysics(CVehicle*);
|
2019-06-28 06:34:02 -04:00
|
|
|
static void AddToCarArray(int32 id, int32 vehclass);
|
2019-06-24 18:42:23 -04:00
|
|
|
static void UpdateCarCount(CVehicle*, bool);
|
2019-06-28 06:34:02 -04:00
|
|
|
static int32 ChooseCarModel(int32 vehclass);
|
2019-07-14 07:49:27 -04:00
|
|
|
static bool JoinCarWithRoadSystemGotoCoors(CVehicle*, CVector, bool);
|
|
|
|
static void JoinCarWithRoadSystem(CVehicle*);
|
2019-07-17 07:19:20 -04:00
|
|
|
static void UpdateCarOnRails(CVehicle*);
|
2019-07-17 17:58:06 -04:00
|
|
|
static bool MapCouldMoveInThisArea(float x, float y);
|
2019-07-18 09:41:09 -04:00
|
|
|
static void ScanForPedDanger(CVehicle *veh);
|
2019-07-25 16:34:29 -04:00
|
|
|
static void RemoveFromInterestingVehicleList(CVehicle*);
|
2019-08-06 17:32:19 -04:00
|
|
|
static void GenerateRandomCars(void);
|
|
|
|
static void GenerateOneRandomCar(void);
|
|
|
|
static void GenerateEmergencyServicesCar(void);
|
|
|
|
static int32 ChooseModel(CZoneInfo*, CVector*, int*);
|
|
|
|
static int32 ChoosePoliceCarModel(void);
|
2019-08-10 03:44:19 -04:00
|
|
|
static int32 ChooseGangCarModel(int32 gang);
|
2019-08-11 13:11:54 -04:00
|
|
|
static void RemoveDistantCars(void);
|
|
|
|
static void PossiblyRemoveVehicle(CVehicle*);
|
|
|
|
static bool IsThisVehicleInteresting(CVehicle*);
|
2019-09-13 15:04:55 -04:00
|
|
|
static void RegisterVehicleOfInterest(CVehicle*);
|
2019-08-11 13:11:54 -04:00
|
|
|
static int32 CountCarsOfType(int32 mi);
|
|
|
|
static void SlowCarOnRailsDownForTrafficAndLights(CVehicle*);
|
2019-09-02 12:04:09 -04:00
|
|
|
static bool PickNextNodeAccordingStrategy(CVehicle*);
|
2019-08-11 13:11:54 -04:00
|
|
|
static void DragCarToPoint(CVehicle*, CVector*);
|
|
|
|
static float FindMaximumSpeedForThisCarInTraffic(CVehicle*);
|
|
|
|
static void SlowCarDownForCarsSectorList(CPtrList&, CVehicle*, float, float, float, float, float*, float);
|
|
|
|
static void SlowCarDownForPedsSectorList(CPtrList&, CVehicle*, float, float, float, float, float*, float);
|
2019-08-25 09:47:22 -04:00
|
|
|
static void SlowCarDownForOtherCar(CEntity*, CVehicle*, float*, float);
|
|
|
|
static float TestCollisionBetween2MovingRects(CVehicle*, CVehicle*, float, float, CVector*, CVector*, uint8);
|
2019-09-01 10:02:23 -04:00
|
|
|
static float FindAngleToWeaveThroughTraffic(CVehicle*, CPhysical*, float, float);
|
|
|
|
static void WeaveThroughCarsSectorList(CPtrList&, CVehicle*, CPhysical*, float, float, float, float, float*, float*);
|
|
|
|
static void WeaveForOtherCar(CEntity*, CVehicle*, float*, float*);
|
|
|
|
static void WeaveThroughPedsSectorList(CPtrList&, CVehicle*, CPhysical*, float, float, float, float, float*, float*);
|
|
|
|
static void WeaveForPed(CEntity*, CVehicle*, float*, float*);
|
|
|
|
static void WeaveThroughObjectsSectorList(CPtrList&, CVehicle*, float, float, float, float, float*, float*);
|
|
|
|
static void WeaveForObject(CEntity*, CVehicle*, float*, float*);
|
2019-09-02 12:04:09 -04:00
|
|
|
#ifdef FIX_PATHFIND_BUG
|
|
|
|
static void PickNextNodeToChaseCar(CVehicle*, float, float, float, CVehicle*);
|
|
|
|
#else
|
|
|
|
static void PickNextNodeToChaseCar(CVehicle*, float, float, CVehicle*);
|
|
|
|
#endif
|
|
|
|
static bool PickNextNodeToFollowPath(CVehicle*);
|
|
|
|
static void PickNextNodeRandomly(CVehicle*);
|
|
|
|
static uint8 FindPathDirection(int32, int32, int32);
|
2019-09-12 06:11:13 -04:00
|
|
|
static void Init(void);
|
|
|
|
static void ReInit(void);
|
2019-09-14 13:53:04 -04:00
|
|
|
static float FindSpeedMultiplier(float, float, float, float);
|
|
|
|
static void SteerAICarWithPhysics(CVehicle*);
|
|
|
|
static void SteerAICarWithPhysics_OnlyMission(CVehicle*, float*, float*, float*, bool*);
|
|
|
|
static void SteerAIBoatWithPhysics(CBoat*);
|
|
|
|
static float FindMaxSteerAngle(CVehicle*);
|
|
|
|
static void SteerAICarWithPhysicsFollowPath(CVehicle*, float*, float*, float*, bool*);
|
|
|
|
static void SteerAICarWithPhysicsHeadingForTarget(CVehicle*, CPhysical*, float, float, float*, float*, float*, bool*);
|
|
|
|
static void SteerAICarWithPhysicsTryingToBlockTarget(CVehicle*, float, float, float, float, float*, float*, float*, bool*);
|
|
|
|
static void SteerAICarWithPhysicsTryingToBlockTarget_Stop(CVehicle*, float, float, float, float, float*, float*, float*, bool*);
|
|
|
|
static void SteerAIBoatWithPhysicsHeadingForTarget(CBoat*, float, float, float*, float*, float*);
|
2019-09-12 06:11:13 -04:00
|
|
|
static bool ThisRoadObjectCouldMove(int16);
|
2019-09-14 19:28:07 -04:00
|
|
|
static void ClearInterestingVehicleList();
|
|
|
|
static void FindLinksToGoWithTheseNodes(CVehicle*);
|
|
|
|
static bool GenerateOneEmergencyServicesCar(uint32, CVector);
|
2019-08-11 13:11:54 -04:00
|
|
|
|
|
|
|
static float GetPositionAlongCurrentCurve(CVehicle* pVehicle)
|
|
|
|
{
|
|
|
|
uint32 timeInCurve = CTimer::GetTimeInMilliseconds() - pVehicle->AutoPilot.m_nTimeEnteredCurve;
|
|
|
|
return (float)timeInCurve / pVehicle->AutoPilot.m_nTimeToSpendOnCurrentCurve;
|
|
|
|
}
|
2019-06-24 10:57:54 -04:00
|
|
|
|
2019-09-01 10:02:23 -04:00
|
|
|
static float LimitRadianAngle(float angle)
|
|
|
|
{
|
|
|
|
while (angle < -PI)
|
|
|
|
angle += TWOPI;
|
|
|
|
while (angle > PI)
|
|
|
|
angle -= TWOPI;
|
|
|
|
return angle;
|
|
|
|
}
|
|
|
|
|
2020-04-17 01:54:14 -04:00
|
|
|
static int32 NumLawEnforcerCars;
|
|
|
|
static int32 NumAmbulancesOnDuty;
|
|
|
|
static int32 NumFiretrucksOnDuty;
|
|
|
|
static int32 NumRandomCars;
|
|
|
|
static int32 NumMissionCars;
|
|
|
|
static int32 NumParkedCars;
|
|
|
|
static int32 NumPermanentCars;
|
|
|
|
static bool bCarsGeneratedAroundCamera;
|
|
|
|
static float CarDensityMultiplier;
|
|
|
|
static int8 CountDownToCarsAtStart;
|
|
|
|
static int32 MaxNumberOfCarsInUse;
|
|
|
|
static uint32 LastTimeLawEnforcerCreated;
|
|
|
|
static uint32 LastTimeFireTruckCreated;
|
|
|
|
static uint32 LastTimeAmbulanceCreated;
|
|
|
|
static int32 TotalNumOfCarsOfRating[TOTAL_CUSTOM_CLASSES];
|
|
|
|
static int32 NextCarOfRating[TOTAL_CUSTOM_CLASSES];
|
|
|
|
static int32 CarArrays[TOTAL_CUSTOM_CLASSES][MAX_CAR_MODELS_IN_ARRAY];
|
2019-05-18 06:39:39 -04:00
|
|
|
};
|
2019-08-11 13:11:54 -04:00
|
|
|
|
2020-04-17 01:54:14 -04:00
|
|
|
extern CVehicle* apCarsToKeep[MAX_CARS_TO_KEEP];
|