2019-08-11 17:11:54 +00:00
|
|
|
#include "common.h"
|
2020-04-17 13:31:11 +00:00
|
|
|
|
2019-08-11 17:11:54 +00:00
|
|
|
#include "AutoPilot.h"
|
|
|
|
|
2019-09-15 10:29:38 +00:00
|
|
|
#include "CarCtrl.h"
|
|
|
|
#include "Curves.h"
|
|
|
|
#include "PathFind.h"
|
|
|
|
|
|
|
|
void CAutoPilot::ModifySpeed(float speed)
|
|
|
|
{
|
2020-04-19 16:34:08 +00:00
|
|
|
m_fMaxTrafficSpeed = Max(0.01f, speed);
|
2019-09-15 10:29:38 +00:00
|
|
|
float positionBetweenNodes = (float)(CTimer::GetTimeInMilliseconds() - m_nTimeEnteredCurve) / m_nTimeToSpendOnCurrentCurve;
|
|
|
|
CCarPathLink* pCurrentLink = &ThePaths.m_carPathLinks[m_nCurrentPathNodeInfo];
|
|
|
|
CCarPathLink* pNextLink = &ThePaths.m_carPathLinks[m_nNextPathNodeInfo];
|
2020-05-03 13:57:57 +00:00
|
|
|
float currentPathLinkForwardX = m_nCurrentDirection * ThePaths.m_carPathLinks[m_nCurrentPathNodeInfo].GetDirX();
|
|
|
|
float currentPathLinkForwardY = m_nCurrentDirection * ThePaths.m_carPathLinks[m_nCurrentPathNodeInfo].GetDirY();
|
|
|
|
float nextPathLinkForwardX = m_nNextDirection * ThePaths.m_carPathLinks[m_nNextPathNodeInfo].GetDirX();
|
|
|
|
float nextPathLinkForwardY = m_nNextDirection * ThePaths.m_carPathLinks[m_nNextPathNodeInfo].GetDirY();
|
2019-09-15 10:29:38 +00:00
|
|
|
CVector positionOnCurrentLinkIncludingLane(
|
2020-05-03 13:57:57 +00:00
|
|
|
pCurrentLink->GetX() + ((m_nCurrentLane + 0.5f) * LANE_WIDTH) * currentPathLinkForwardY,
|
|
|
|
pCurrentLink->GetY() - ((m_nCurrentLane + 0.5f) * LANE_WIDTH) * currentPathLinkForwardX,
|
2019-09-15 10:29:38 +00:00
|
|
|
0.0f);
|
|
|
|
CVector positionOnNextLinkIncludingLane(
|
2020-05-03 13:57:57 +00:00
|
|
|
pNextLink->GetX() + ((m_nNextLane + 0.5f) * LANE_WIDTH) * nextPathLinkForwardY,
|
|
|
|
pNextLink->GetY() - ((m_nNextLane + 0.5f) * LANE_WIDTH) * nextPathLinkForwardX,
|
2019-09-15 10:29:38 +00:00
|
|
|
0.0f);
|
|
|
|
m_nTimeToSpendOnCurrentCurve = CCurves::CalcSpeedScaleFactor(
|
|
|
|
&positionOnCurrentLinkIncludingLane,
|
|
|
|
&positionOnNextLinkIncludingLane,
|
|
|
|
currentPathLinkForwardX, currentPathLinkForwardY,
|
|
|
|
nextPathLinkForwardX, nextPathLinkForwardY
|
|
|
|
) * (1000.0f / m_fMaxTrafficSpeed);
|
|
|
|
#ifdef FIX_BUGS
|
|
|
|
/* Casting timer to float is very unwanted, and in this case even causes crashes. */
|
|
|
|
m_nTimeEnteredCurve = CTimer::GetTimeInMilliseconds() -
|
|
|
|
(uint32)(positionBetweenNodes * m_nTimeToSpendOnCurrentCurve);
|
|
|
|
#else
|
2020-04-15 05:03:53 +00:00
|
|
|
m_nTimeEnteredCurve = CTimer::GetTimeInMilliseconds() - positionBetweenNodes * m_nTimeToSpendOnCurrentCurve;
|
2019-09-15 10:29:38 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAutoPilot::RemoveOnePathNode()
|
|
|
|
{
|
|
|
|
--m_nPathFindNodesCount;
|
|
|
|
for (int i = 0; i < m_nPathFindNodesCount; i++)
|
|
|
|
m_aPathFindNodesInfo[i] = m_aPathFindNodesInfo[i + 1];
|
2020-05-02 15:02:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef COMPATIBLE_SAVES
|
|
|
|
void CAutoPilot::Save(uint8*& buf)
|
|
|
|
{
|
|
|
|
WriteSaveBuf<int32>(buf, m_nCurrentRouteNode);
|
|
|
|
WriteSaveBuf<int32>(buf, m_nNextRouteNode);
|
|
|
|
WriteSaveBuf<int32>(buf, m_nPrevRouteNode);
|
2021-02-03 12:35:06 +00:00
|
|
|
WriteSaveBuf<int32>(buf, m_nTimeEnteredCurve);
|
|
|
|
WriteSaveBuf<int32>(buf, m_nTimeToSpendOnCurrentCurve);
|
2020-05-02 15:02:17 +00:00
|
|
|
WriteSaveBuf<uint32>(buf, m_nCurrentPathNodeInfo);
|
|
|
|
WriteSaveBuf<uint32>(buf, m_nNextPathNodeInfo);
|
|
|
|
WriteSaveBuf<uint32>(buf, m_nPreviousPathNodeInfo);
|
|
|
|
WriteSaveBuf<uint32>(buf, m_nAntiReverseTimer);
|
|
|
|
WriteSaveBuf<uint32>(buf, m_nTimeToStartMission);
|
|
|
|
WriteSaveBuf<int8>(buf, m_nPreviousDirection);
|
|
|
|
WriteSaveBuf<int8>(buf, m_nCurrentDirection);
|
|
|
|
WriteSaveBuf<int8>(buf, m_nNextDirection);
|
|
|
|
WriteSaveBuf<int8>(buf, m_nCurrentLane);
|
|
|
|
WriteSaveBuf<int8>(buf, m_nNextLane);
|
|
|
|
WriteSaveBuf<uint8>(buf, m_nDrivingStyle);
|
|
|
|
WriteSaveBuf<uint8>(buf, m_nCarMission);
|
|
|
|
WriteSaveBuf<uint8>(buf, m_nTempAction);
|
|
|
|
WriteSaveBuf<uint32>(buf, m_nTimeTempAction);
|
|
|
|
WriteSaveBuf<float>(buf, m_fMaxTrafficSpeed);
|
|
|
|
WriteSaveBuf<uint8>(buf, m_nCruiseSpeed);
|
|
|
|
uint8 flags = 0;
|
|
|
|
if (m_bSlowedDownBecauseOfCars) flags |= BIT(0);
|
|
|
|
if (m_bSlowedDownBecauseOfPeds) flags |= BIT(1);
|
|
|
|
if (m_bStayInCurrentLevel) flags |= BIT(2);
|
|
|
|
if (m_bStayInFastLane) flags |= BIT(3);
|
|
|
|
if (m_bIgnorePathfinding) flags |= BIT(4);
|
|
|
|
WriteSaveBuf<uint8>(buf, flags);
|
|
|
|
SkipSaveBuf(buf, 2);
|
|
|
|
WriteSaveBuf<float>(buf, m_vecDestinationCoors.x);
|
|
|
|
WriteSaveBuf<float>(buf, m_vecDestinationCoors.y);
|
|
|
|
WriteSaveBuf<float>(buf, m_vecDestinationCoors.z);
|
|
|
|
SkipSaveBuf(buf, 32);
|
|
|
|
WriteSaveBuf<int16>(buf, m_nPathFindNodesCount);
|
|
|
|
SkipSaveBuf(buf, 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CAutoPilot::Load(uint8*& buf)
|
|
|
|
{
|
|
|
|
m_nCurrentRouteNode = ReadSaveBuf<int32>(buf);
|
|
|
|
m_nNextRouteNode = ReadSaveBuf<int32>(buf);
|
|
|
|
m_nPrevRouteNode = ReadSaveBuf<int32>(buf);
|
2021-02-03 12:35:06 +00:00
|
|
|
m_nTimeEnteredCurve = ReadSaveBuf<int32>(buf);
|
|
|
|
m_nTimeToSpendOnCurrentCurve = ReadSaveBuf<int32>(buf);
|
2020-05-02 15:02:17 +00:00
|
|
|
m_nCurrentPathNodeInfo = ReadSaveBuf<uint32>(buf);
|
|
|
|
m_nNextPathNodeInfo = ReadSaveBuf<uint32>(buf);
|
|
|
|
m_nPreviousPathNodeInfo = ReadSaveBuf<uint32>(buf);
|
|
|
|
m_nAntiReverseTimer = ReadSaveBuf<uint32>(buf);
|
|
|
|
m_nTimeToStartMission = ReadSaveBuf<uint32>(buf);
|
|
|
|
m_nPreviousDirection = ReadSaveBuf<int8>(buf);
|
|
|
|
m_nCurrentDirection = ReadSaveBuf<int8>(buf);
|
|
|
|
m_nNextDirection = ReadSaveBuf<int8>(buf);
|
|
|
|
m_nCurrentLane = ReadSaveBuf<int8>(buf);
|
|
|
|
m_nNextLane = ReadSaveBuf<int8>(buf);
|
2020-12-06 23:36:40 +00:00
|
|
|
m_nDrivingStyle = ReadSaveBuf<uint8>(buf);
|
|
|
|
m_nCarMission = ReadSaveBuf<uint8>(buf);
|
|
|
|
m_nTempAction = ReadSaveBuf<uint8>(buf);
|
2020-05-02 15:02:17 +00:00
|
|
|
m_nTimeTempAction = ReadSaveBuf<uint32>(buf);
|
|
|
|
m_fMaxTrafficSpeed = ReadSaveBuf<float>(buf);
|
|
|
|
m_nCruiseSpeed = ReadSaveBuf<uint8>(buf);
|
|
|
|
uint8 flags = ReadSaveBuf<uint8>(buf);
|
|
|
|
m_bSlowedDownBecauseOfCars = !!(flags & BIT(0));
|
|
|
|
m_bSlowedDownBecauseOfPeds = !!(flags & BIT(1));
|
|
|
|
m_bStayInCurrentLevel = !!(flags & BIT(2));
|
|
|
|
m_bStayInFastLane = !!(flags & BIT(3));
|
|
|
|
m_bIgnorePathfinding = !!(flags & BIT(4));
|
|
|
|
SkipSaveBuf(buf, 2);
|
|
|
|
m_vecDestinationCoors.x = ReadSaveBuf<float>(buf);
|
|
|
|
m_vecDestinationCoors.y = ReadSaveBuf<float>(buf);
|
|
|
|
m_vecDestinationCoors.z = ReadSaveBuf<float>(buf);
|
|
|
|
SkipSaveBuf(buf, 32);
|
|
|
|
m_nPathFindNodesCount = ReadSaveBuf<int16>(buf);
|
|
|
|
SkipSaveBuf(buf, 6);
|
|
|
|
}
|
|
|
|
#endif
|