2019-05-18 10:39:39 +00:00
|
|
|
#pragma once
|
2019-08-11 17:11:54 +00:00
|
|
|
#include "PathFind.h"
|
2019-09-14 17:53:04 +00:00
|
|
|
#include "Boat.h"
|
2019-08-11 17:11:54 +00:00
|
|
|
#include "Vehicle.h"
|
2019-05-18 10:39:39 +00:00
|
|
|
|
2019-10-10 21:02:55 +00:00
|
|
|
#define GAME_SPEED_TO_METERS_PER_SECOND 50.0f
|
|
|
|
#define GAME_SPEED_TO_CARAI_SPEED 60.0f
|
|
|
|
#define TIME_COPS_WAIT_TO_EXIT_AFTER_STOPPING 2500
|
|
|
|
|
2019-08-06 21:32:19 +00:00
|
|
|
class CZoneInfo;
|
2019-05-18 10:39:39 +00:00
|
|
|
|
2019-08-11 17:11:54 +00:00
|
|
|
enum{
|
|
|
|
MAX_CARS_TO_KEEP = 2,
|
|
|
|
MAX_CAR_MODELS_IN_ARRAY = 256,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define LANE_WIDTH 5.0f
|
|
|
|
|
2019-09-02 16:04:09 +00:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
#define FIX_PATHFIND_BUG
|
|
|
|
#endif
|
|
|
|
|
2019-05-18 10:39:39 +00:00
|
|
|
class CCarCtrl
|
|
|
|
{
|
2019-08-06 21:32:19 +00:00
|
|
|
enum eCarClass {
|
|
|
|
POOR = 0,
|
|
|
|
RICH,
|
|
|
|
EXEC,
|
|
|
|
WORKER,
|
|
|
|
SPECIAL,
|
|
|
|
BIG,
|
|
|
|
TAXI,
|
2019-09-12 10:11:13 +00:00
|
|
|
TOTAL_CUSTOM_CLASSES,
|
2019-08-06 21:32:19 +00:00
|
|
|
MAFIA,
|
|
|
|
TRIAD,
|
|
|
|
DIABLO,
|
|
|
|
YAKUZA,
|
|
|
|
YARDIE,
|
|
|
|
COLOMB,
|
|
|
|
NINES,
|
|
|
|
GANG8,
|
|
|
|
GANG9,
|
|
|
|
COPS
|
|
|
|
};
|
2019-05-18 10:39:39 +00:00
|
|
|
public:
|
|
|
|
static void SwitchVehicleToRealPhysics(CVehicle*);
|
2019-06-28 10:34:02 +00:00
|
|
|
static void AddToCarArray(int32 id, int32 vehclass);
|
2019-06-24 22:42:23 +00:00
|
|
|
static void UpdateCarCount(CVehicle*, bool);
|
2019-06-28 10:34:02 +00:00
|
|
|
static int32 ChooseCarModel(int32 vehclass);
|
2019-07-14 11:49:27 +00:00
|
|
|
static bool JoinCarWithRoadSystemGotoCoors(CVehicle*, CVector, bool);
|
|
|
|
static void JoinCarWithRoadSystem(CVehicle*);
|
2019-07-17 11:19:20 +00:00
|
|
|
static void UpdateCarOnRails(CVehicle*);
|
2019-07-17 21:58:06 +00:00
|
|
|
static bool MapCouldMoveInThisArea(float x, float y);
|
2019-07-18 13:41:09 +00:00
|
|
|
static void ScanForPedDanger(CVehicle *veh);
|
2019-07-25 20:34:29 +00:00
|
|
|
static void RemoveFromInterestingVehicleList(CVehicle*);
|
2019-08-06 21:32:19 +00: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 07:44:19 +00:00
|
|
|
static int32 ChooseGangCarModel(int32 gang);
|
2019-08-11 17:11:54 +00:00
|
|
|
static void RemoveDistantCars(void);
|
|
|
|
static void PossiblyRemoveVehicle(CVehicle*);
|
|
|
|
static bool IsThisVehicleInteresting(CVehicle*);
|
2019-09-13 19:04:55 +00:00
|
|
|
static void RegisterVehicleOfInterest(CVehicle*);
|
2019-08-11 17:11:54 +00:00
|
|
|
static int32 CountCarsOfType(int32 mi);
|
|
|
|
static void SlowCarOnRailsDownForTrafficAndLights(CVehicle*);
|
2019-09-02 16:04:09 +00:00
|
|
|
static bool PickNextNodeAccordingStrategy(CVehicle*);
|
2019-08-11 17:11:54 +00: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 13:47:22 +00:00
|
|
|
static void SlowCarDownForOtherCar(CEntity*, CVehicle*, float*, float);
|
|
|
|
static float TestCollisionBetween2MovingRects(CVehicle*, CVehicle*, float, float, CVector*, CVector*, uint8);
|
2019-09-01 14:02:23 +00: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 16:04:09 +00: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 10:11:13 +00:00
|
|
|
static void Init(void);
|
|
|
|
static void ReInit(void);
|
2019-09-14 17:53:04 +00: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 10:11:13 +00:00
|
|
|
static bool ThisRoadObjectCouldMove(int16);
|
2019-09-14 23:28:07 +00:00
|
|
|
static void ClearInterestingVehicleList();
|
|
|
|
static void FindLinksToGoWithTheseNodes(CVehicle*);
|
|
|
|
static bool GenerateOneEmergencyServicesCar(uint32, CVector);
|
2019-08-11 17:11:54 +00:00
|
|
|
|
|
|
|
static float GetPositionAlongCurrentCurve(CVehicle* pVehicle)
|
|
|
|
{
|
|
|
|
uint32 timeInCurve = CTimer::GetTimeInMilliseconds() - pVehicle->AutoPilot.m_nTimeEnteredCurve;
|
|
|
|
return (float)timeInCurve / pVehicle->AutoPilot.m_nTimeToSpendOnCurrentCurve;
|
|
|
|
}
|
2019-06-24 14:57:54 +00:00
|
|
|
|
2019-09-01 14:02:23 +00:00
|
|
|
static float LimitRadianAngle(float angle)
|
|
|
|
{
|
|
|
|
while (angle < -PI)
|
|
|
|
angle += TWOPI;
|
|
|
|
while (angle > PI)
|
|
|
|
angle -= TWOPI;
|
|
|
|
return angle;
|
|
|
|
}
|
|
|
|
|
2019-06-24 14:57:54 +00:00
|
|
|
static int32 &NumLawEnforcerCars;
|
2019-06-30 10:59:55 +00:00
|
|
|
static int32 &NumAmbulancesOnDuty;
|
|
|
|
static int32 &NumFiretrucksOnDuty;
|
2019-07-25 20:34:29 +00:00
|
|
|
static int32 &NumRandomCars;
|
|
|
|
static int32 &NumMissionCars;
|
|
|
|
static int32 &NumParkedCars;
|
2019-09-12 10:11:13 +00:00
|
|
|
static int32 &NumPermanentCars;
|
2019-06-29 09:09:33 +00:00
|
|
|
static bool &bCarsGeneratedAroundCamera;
|
2019-07-03 22:16:24 +00:00
|
|
|
static float &CarDensityMultiplier;
|
2019-08-06 21:32:19 +00:00
|
|
|
static int8 &CountDownToCarsAtStart;
|
|
|
|
static int32 &MaxNumberOfCarsInUse;
|
|
|
|
static uint32 &LastTimeLawEnforcerCreated;
|
2019-09-12 10:11:13 +00:00
|
|
|
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 10:39:39 +00:00
|
|
|
};
|
2019-08-11 17:11:54 +00:00
|
|
|
|
|
|
|
extern CVehicle* (&apCarsToKeep)[MAX_CARS_TO_KEEP];
|