mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 21:40:33 +00:00
More CCarCtrl
This commit is contained in:
parent
3c0bbb10f3
commit
b2236d8951
5 changed files with 247 additions and 10 deletions
|
@ -60,9 +60,9 @@ enum eCarDrivingStyle : uint8
|
|||
|
||||
class CAutoPilot {
|
||||
public:
|
||||
uint32 m_nCurrentRouteNode;
|
||||
uint32 m_nNextRouteNode;
|
||||
uint32 m_nPrevRouteNode;
|
||||
int32 m_nCurrentRouteNode;
|
||||
int32 m_nNextRouteNode;
|
||||
int32 m_nPrevRouteNode;
|
||||
uint32 m_nTimeEnteredCurve;
|
||||
uint32 m_nTimeToSpendOnCurrentCurve;
|
||||
uint32 m_nCurrentPathNodeInfo;
|
||||
|
@ -83,8 +83,8 @@ public:
|
|||
uint8 m_nCruiseSpeed;
|
||||
uint8 m_bSlowedDownBecauseOfCars : 1;
|
||||
uint8 m_bSlowedDownBecauseOfPeds : 1;
|
||||
uint8 m_flag4 : 1;
|
||||
uint8 m_flag8 : 1;
|
||||
uint8 m_bStayInCurrentLevel : 1;
|
||||
uint8 m_bStayInFastLane : 1;
|
||||
uint8 m_flag10 : 1;
|
||||
CVector m_vecDestinationCoors;
|
||||
void *m_aPathFindNodesInfo[8];
|
||||
|
@ -114,7 +114,7 @@ public:
|
|||
m_pTargetCar = 0;
|
||||
m_nTimeToStartMission = CTimer::GetTimeInMilliseconds();
|
||||
m_nAntiReverseTimer = m_nTimeToStartMission;
|
||||
m_flag8 = false;
|
||||
m_bStayInFastLane = false;
|
||||
}
|
||||
|
||||
void ModifySpeed(float);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue