This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
6,131 additions
and 407 deletions.
- +1 −2 src/audio/DMAudio.cpp
- +1 −1 src/audio/DMAudio.h
- +5 −0 src/control/AutoPilot.cpp
- +18 −15 src/control/AutoPilot.h
- +16 −0 src/control/CarAI.cpp
- +6 −0 src/control/CarAI.h
- +860 −4 src/control/CarCtrl.cpp
- +67 −1 src/control/CarCtrl.h
- +5 −0 src/control/Cranes.cpp
- +10 −0 src/control/Cranes.h
- +6 −0 src/control/Curves.cpp
- +9 −0 src/control/Curves.h
- +1 −1 src/control/Gangs.cpp
- +2 −1 src/control/Gangs.h
- +1 −0 src/control/Garages.cpp
- +1 −0 src/control/Garages.h
- +932 −80 src/control/PathFind.cpp
- +74 −29 src/control/PathFind.h
- +2 −1 src/control/Pickups.cpp
- +3 −1 src/control/Pickups.h
- +1 −0 src/control/Population.cpp
- +1 −0 src/control/Population.h
- +7 −0 src/control/Restart.cpp
- +9 −0 src/control/Restart.h
- +5 −0 src/control/RoadBlocks.cpp
- +10 −0 src/control/RoadBlocks.h
- +474 −12 src/control/Script.cpp
- +17 −0 src/control/TrafficLights.cpp
- +10 −0 src/control/TrafficLights.h
- +10 −0 src/core/Camera.cpp
- +5 −0 src/core/Camera.h
- +1 −1 src/core/Collision.cpp
- +18 −0 src/core/General.h
- +28 −0 src/core/IniFile.cpp
- +10 −0 src/core/IniFile.h
- +8 −8 src/core/Radar.cpp
- +4 −4 src/core/Radar.h
- +3 −1 src/core/Stats.cpp
- +2 −0 src/core/Stats.h
- +2 −0 src/core/Wanted.h
- +1 −1 src/core/World.cpp
- +2 −2 src/core/World.h
- +1 −1 src/core/common.h
- +6 −0 src/core/config.h
- +27 −27 src/core/re3.cpp
- +14 −13 src/entities/Physical.cpp
- +4 −2 src/entities/Physical.h
- +1 −2 src/entities/Treadable.h
- +50 −1 src/math/Vector2D.h
- +8 −7 src/modelinfo/VehicleModelInfo.cpp
- +2,128 −134 src/peds/Ped.cpp
- +66 −26 src/peds/Ped.h
- +6 −0 src/peds/PedRoutes.cpp
- +7 −0 src/peds/PedRoutes.h
- +2 −2 src/render/Renderer.cpp
- +2 −2 src/vehicles/Automobile.cpp
- +13 −5 src/vehicles/Automobile.h
- +1,038 −4 src/vehicles/Heli.cpp
- +85 −2 src/vehicles/Heli.h
- +6 −5 src/vehicles/Plane.cpp
- +1 −1 src/vehicles/Train.cpp
- +3 −2 src/vehicles/Train.h
- +7 −3 src/vehicles/Vehicle.cpp
- +8 −3 src/vehicles/Vehicle.h
There are no files selected for viewing
| @@ -0,0 +1,5 @@ | ||
| #include "common.h" | ||
| #include "patcher.h" | ||
| #include "AutoPilot.h" | ||
|
|
||
| WRAPPER void CAutoPilot::ModifySpeed(float) { EAXJMP(0x4137B0); } |
| @@ -1,10 +1,16 @@ | ||
| #pragma once | ||
|
|
||
| #include "AutoPilot.h" | ||
|
|
||
| class CVehicle; | ||
|
|
||
| class CCarAI | ||
| { | ||
| public: | ||
| static void UpdateCarAI(CVehicle*); | ||
| static void MakeWayForCarWithSiren(CVehicle *veh); | ||
| static int32 FindPoliceCarSpeedForWantedLevel(CVehicle*); | ||
| static eCarMission FindPoliceCarMissionForWantedLevel(); | ||
| static void AddPoliceOccupants(CVehicle*); | ||
| static void CarHasReasonToStop(CVehicle*); | ||
| }; |
Oops, something went wrong.