2019-07-27 14:28:18 -04:00
|
|
|
#include "common.h"
|
2020-04-17 09:31:11 -04:00
|
|
|
|
2019-07-27 14:28:18 -04:00
|
|
|
#include "CarGen.h"
|
|
|
|
|
|
|
|
#include "Automobile.h"
|
|
|
|
#include "Boat.h"
|
|
|
|
#include "Camera.h"
|
|
|
|
#include "CarCtrl.h"
|
|
|
|
#include "CutsceneMgr.h"
|
|
|
|
#include "General.h"
|
|
|
|
#include "Pools.h"
|
|
|
|
#include "Streaming.h"
|
|
|
|
#include "Timer.h"
|
|
|
|
#include "Vehicle.h"
|
|
|
|
#include "World.h"
|
|
|
|
|
2020-04-14 06:08:03 -04:00
|
|
|
uint8 CTheCarGenerators::ProcessCounter;
|
|
|
|
uint32 CTheCarGenerators::NumOfCarGenerators;
|
|
|
|
CCarGenerator CTheCarGenerators::CarGeneratorArray[NUM_CARGENS];
|
|
|
|
uint8 CTheCarGenerators::GenerateEvenIfPlayerIsCloseCounter;
|
|
|
|
uint32 CTheCarGenerators::CurrentActiveCount;
|
2019-07-27 14:28:18 -04:00
|
|
|
|
|
|
|
void CCarGenerator::SwitchOff()
|
|
|
|
{
|
2020-10-04 15:39:54 -04:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
if (m_nUsesRemaining != 0)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
m_nUsesRemaining = 0;
|
|
|
|
--CTheCarGenerators::CurrentActiveCount;
|
|
|
|
}
|
2019-07-27 14:28:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCarGenerator::SwitchOn()
|
|
|
|
{
|
2020-09-28 14:25:14 -04:00
|
|
|
m_nUsesRemaining = UINT16_MAX;
|
2019-07-27 14:28:18 -04:00
|
|
|
m_nTimer = CalcNextGen();
|
|
|
|
++CTheCarGenerators::CurrentActiveCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 CCarGenerator::CalcNextGen()
|
|
|
|
{
|
|
|
|
return CTimer::GetTimeInMilliseconds() + 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCarGenerator::DoInternalProcessing()
|
|
|
|
{
|
|
|
|
if (CheckForBlockage()) {
|
|
|
|
m_nTimer += 4;
|
|
|
|
if (m_nUsesRemaining == 0)
|
|
|
|
--CTheCarGenerators::CurrentActiveCount;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (CCarCtrl::NumParkedCars >= 10)
|
|
|
|
return;
|
|
|
|
CStreaming::RequestModel(m_nModelIndex, STREAMFLAGS_DEPENDENCY);
|
|
|
|
if (!CStreaming::HasModelLoaded(m_nModelIndex))
|
|
|
|
return;
|
|
|
|
if (CModelInfo::IsBoatModel(m_nModelIndex)){
|
|
|
|
CBoat* pBoat = new CBoat(m_nModelIndex, PARKED_VEHICLE);
|
2020-10-18 09:40:06 -04:00
|
|
|
pBoat->SetIsStatic(false);
|
2019-07-27 14:28:18 -04:00
|
|
|
pBoat->bEngineOn = false;
|
|
|
|
CVector pos = m_vecPos;
|
|
|
|
if (pos.z <= -100.0f)
|
|
|
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
|
|
|
pos.z += pBoat->GetDistanceFromCentreOfMassToBaseOfModel();
|
2020-05-02 08:28:19 -04:00
|
|
|
pBoat->SetPosition(pos);
|
2019-07-27 14:28:18 -04:00
|
|
|
pBoat->SetOrientation(0.0f, 0.0f, DEGTORAD(m_fAngle));
|
2020-04-30 09:45:45 -04:00
|
|
|
pBoat->SetStatus(STATUS_ABANDONED);
|
2019-07-27 14:28:18 -04:00
|
|
|
pBoat->m_nDoorLock = CARLOCK_UNLOCKED;
|
|
|
|
CWorld::Add(pBoat);
|
|
|
|
if (CGeneral::GetRandomNumberInRange(0, 100) < m_nAlarm)
|
|
|
|
pBoat->m_nAlarmState = -1;
|
|
|
|
if (CGeneral::GetRandomNumberInRange(0, 100) < m_nDoorlock)
|
|
|
|
pBoat->m_nDoorLock = CARLOCK_LOCKED;
|
|
|
|
if (m_nColor1 != -1 && m_nColor2){
|
|
|
|
pBoat->m_currentColour1 = m_nColor1;
|
|
|
|
pBoat->m_currentColour2 = m_nColor2;
|
|
|
|
}
|
|
|
|
m_nVehicleHandle = CPools::GetVehiclePool()->GetIndex(pBoat);
|
|
|
|
}else{
|
2020-09-30 13:02:47 -04:00
|
|
|
bool groundFound;
|
2019-07-27 14:28:18 -04:00
|
|
|
CVector pos = m_vecPos;
|
|
|
|
if (pos.z > -100.0f){
|
|
|
|
pos.z = CWorld::FindGroundZFor3DCoord(pos.x, pos.y, pos.z, &groundFound);
|
|
|
|
}else{
|
2020-09-30 13:02:47 -04:00
|
|
|
groundFound = false;
|
2019-07-27 14:28:18 -04:00
|
|
|
CColPoint cp;
|
|
|
|
CEntity* pEntity;
|
|
|
|
groundFound = CWorld::ProcessVerticalLine(CVector(pos.x, pos.y, 1000.0f), -1000.0f,
|
|
|
|
cp, pEntity, true, false, false, false, false, false, nil);
|
|
|
|
if (groundFound)
|
|
|
|
pos.z = cp.point.z;
|
|
|
|
}
|
|
|
|
if (!groundFound) {
|
|
|
|
debug("CCarGenerator::DoInternalProcessing - can't find ground z for new car x = %f y = %f \n", m_vecPos.x, m_vecPos.y);
|
|
|
|
}else{
|
2020-09-30 13:02:47 -04:00
|
|
|
CAutomobile* pCar;
|
|
|
|
|
|
|
|
// So game crashes if it's bike :D
|
|
|
|
if (((CVehicleModelInfo*)CModelInfo::GetModelInfo(m_nModelIndex))->m_vehicleType != VEHICLE_TYPE_BIKE)
|
|
|
|
pCar = new CAutomobile(m_nModelIndex, PARKED_VEHICLE);
|
2021-01-31 15:06:38 -05:00
|
|
|
|
2020-10-18 09:40:06 -04:00
|
|
|
pCar->SetIsStatic(false);
|
2019-07-27 14:28:18 -04:00
|
|
|
pCar->bEngineOn = false;
|
|
|
|
pos.z += pCar->GetDistanceFromCentreOfMassToBaseOfModel();
|
2020-05-02 08:28:19 -04:00
|
|
|
pCar->SetPosition(pos);
|
2019-07-27 14:28:18 -04:00
|
|
|
pCar->SetOrientation(0.0f, 0.0f, DEGTORAD(m_fAngle));
|
2020-04-30 09:45:45 -04:00
|
|
|
pCar->SetStatus(STATUS_ABANDONED);
|
2019-07-27 14:28:18 -04:00
|
|
|
pCar->bLightsOn = false;
|
|
|
|
pCar->m_nDoorLock = CARLOCK_UNLOCKED;
|
|
|
|
CWorld::Add(pCar);
|
|
|
|
if (CGeneral::GetRandomNumberInRange(0, 100) < m_nAlarm)
|
|
|
|
pCar->m_nAlarmState = -1;
|
|
|
|
if (CGeneral::GetRandomNumberInRange(0, 100) < m_nDoorlock)
|
|
|
|
pCar->m_nDoorLock = CARLOCK_LOCKED;
|
|
|
|
if (m_nColor1 != -1 && m_nColor2) {
|
|
|
|
pCar->m_currentColour1 = m_nColor1;
|
|
|
|
pCar->m_currentColour2 = m_nColor2;
|
|
|
|
}
|
|
|
|
m_nVehicleHandle = CPools::GetVehiclePool()->GetIndex(pCar);
|
|
|
|
}
|
|
|
|
}
|
2020-07-24 13:43:51 -04:00
|
|
|
#ifdef FIX_BUGS
|
2020-09-28 14:25:14 -04:00
|
|
|
if (m_nUsesRemaining < UINT16_MAX)
|
2019-07-27 14:28:18 -04:00
|
|
|
--m_nUsesRemaining;
|
2020-07-24 13:43:51 -04:00
|
|
|
#else
|
2020-09-28 14:25:14 -04:00
|
|
|
if (m_nUsesRemaining < ~0)
|
2020-07-24 13:43:51 -04:00
|
|
|
--m_nUsesRemaining;
|
|
|
|
#endif
|
2019-07-27 14:28:18 -04:00
|
|
|
m_nTimer = CalcNextGen();
|
|
|
|
if (m_nUsesRemaining == 0)
|
|
|
|
--CTheCarGenerators::CurrentActiveCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCarGenerator::Process()
|
|
|
|
{
|
|
|
|
if (m_nVehicleHandle == -1 &&
|
|
|
|
(CTheCarGenerators::GenerateEvenIfPlayerIsCloseCounter || CTimer::GetTimeInMilliseconds() >= m_nTimer) &&
|
|
|
|
m_nUsesRemaining != 0 && CheckIfWithinRangeOfAnyPlayer())
|
|
|
|
DoInternalProcessing();
|
|
|
|
if (m_nVehicleHandle == -1)
|
|
|
|
return;
|
|
|
|
CVehicle* pVehicle = CPools::GetVehiclePool()->GetAt(m_nVehicleHandle);
|
|
|
|
if (!pVehicle){
|
|
|
|
m_nVehicleHandle = -1;
|
|
|
|
return;
|
|
|
|
}
|
2020-04-30 09:45:45 -04:00
|
|
|
if (pVehicle->GetStatus() != STATUS_PLAYER)
|
2019-07-27 14:28:18 -04:00
|
|
|
return;
|
|
|
|
m_nTimer += 60000;
|
|
|
|
m_nVehicleHandle = -1;
|
|
|
|
m_bIsBlocking = true;
|
|
|
|
pVehicle->bExtendedRange = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCarGenerator::Setup(float x, float y, float z, float angle, int32 mi, int16 color1, int16 color2, uint8 force, uint8 alarm, uint8 lock, uint16 min_delay, uint16 max_delay)
|
|
|
|
{
|
|
|
|
CMatrix m1, m2, m3; /* Unused but present on stack, so I'll leave them. */
|
|
|
|
m_vecPos = CVector(x, y, z);
|
|
|
|
m_fAngle = angle;
|
|
|
|
m_nModelIndex = mi;
|
|
|
|
m_nColor1 = color1;
|
|
|
|
m_nColor2 = color2;
|
|
|
|
m_bForceSpawn = force;
|
|
|
|
m_nAlarm = alarm;
|
|
|
|
m_nDoorlock = lock;
|
|
|
|
m_nMinDelay = min_delay;
|
|
|
|
m_nMaxDelay = max_delay;
|
|
|
|
m_nVehicleHandle = -1;
|
|
|
|
m_nTimer = CTimer::GetTimeInMilliseconds() + 1;
|
|
|
|
m_nUsesRemaining = 0;
|
|
|
|
m_bIsBlocking = false;
|
|
|
|
m_vecInf = CModelInfo::GetModelInfo(m_nModelIndex)->GetColModel()->boundingBox.min;
|
|
|
|
m_vecSup = CModelInfo::GetModelInfo(m_nModelIndex)->GetColModel()->boundingBox.max;
|
2020-04-19 12:34:08 -04:00
|
|
|
m_fSize = Max(m_vecInf.Magnitude(), m_vecSup.Magnitude());
|
2019-07-27 14:28:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CCarGenerator::CheckForBlockage()
|
|
|
|
{
|
|
|
|
int16 entities;
|
|
|
|
CWorld::FindObjectsKindaColliding(CVector(m_vecPos), m_fSize, 1, &entities, 2, nil, false, true, true, false, false);
|
|
|
|
return entities > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCarGenerator::CheckIfWithinRangeOfAnyPlayer()
|
|
|
|
{
|
|
|
|
CVector2D direction = FindPlayerCentreOfWorld(CWorld::PlayerInFocus) - m_vecPos;
|
|
|
|
float distance = direction.Magnitude();
|
|
|
|
float farclip = 120.0f * TheCamera.GenerationDistMultiplier;
|
|
|
|
float nearclip = farclip - 20.0f;
|
|
|
|
if (distance >= farclip){
|
|
|
|
if (m_bIsBlocking)
|
|
|
|
m_bIsBlocking = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (CTheCarGenerators::GenerateEvenIfPlayerIsCloseCounter)
|
|
|
|
return true;
|
|
|
|
if (m_bIsBlocking)
|
|
|
|
return false;
|
|
|
|
if (distance < nearclip)
|
|
|
|
return false;
|
|
|
|
return DotProduct2D(direction, FindPlayerSpeed()) <= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTheCarGenerators::Process()
|
|
|
|
{
|
2020-04-10 04:23:35 -04:00
|
|
|
if (FindPlayerTrain() || CCutsceneMgr::IsCutsceneProcessing())
|
2019-07-27 14:28:18 -04:00
|
|
|
return;
|
|
|
|
if (++CTheCarGenerators::ProcessCounter == 4)
|
|
|
|
CTheCarGenerators::ProcessCounter = 0;
|
|
|
|
for (uint32 i = ProcessCounter; i < NumOfCarGenerators; i += 4)
|
|
|
|
CTheCarGenerators::CarGeneratorArray[i].Process();
|
|
|
|
if (GenerateEvenIfPlayerIsCloseCounter)
|
|
|
|
GenerateEvenIfPlayerIsCloseCounter--;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32 CTheCarGenerators::CreateCarGenerator(float x, float y, float z, float angle, int32 mi, int16 color1, int16 color2, uint8 force, uint8 alarm, uint8 lock, uint16 min_delay, uint16 max_delay)
|
|
|
|
{
|
|
|
|
CarGeneratorArray[NumOfCarGenerators].Setup(x, y, z, angle, mi, color1, color2, force, alarm, lock, min_delay, max_delay);
|
|
|
|
return NumOfCarGenerators++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTheCarGenerators::Init()
|
|
|
|
{
|
|
|
|
GenerateEvenIfPlayerIsCloseCounter = 0;
|
|
|
|
NumOfCarGenerators = 0;
|
|
|
|
ProcessCounter = 0;
|
|
|
|
CurrentActiveCount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTheCarGenerators::SaveAllCarGenerators(uint8 *buffer, uint32 *size)
|
|
|
|
{
|
2020-04-14 06:08:03 -04:00
|
|
|
const uint32 nGeneralDataSize = sizeof(NumOfCarGenerators) + sizeof(CurrentActiveCount) + sizeof(ProcessCounter) + sizeof(GenerateEvenIfPlayerIsCloseCounter) + sizeof(int16);
|
2020-04-14 10:24:31 -04:00
|
|
|
*size = sizeof(int) + nGeneralDataSize + sizeof(uint32) + sizeof(CarGeneratorArray) + SAVE_HEADER_SIZE;
|
2019-10-08 16:07:11 -04:00
|
|
|
INITSAVEBUF
|
|
|
|
WriteSaveHeader(buffer, 'C','G','N','\0', *size - SAVE_HEADER_SIZE);
|
|
|
|
|
2020-04-14 06:08:03 -04:00
|
|
|
WriteSaveBuf(buffer, nGeneralDataSize);
|
2019-10-08 16:07:11 -04:00
|
|
|
WriteSaveBuf(buffer, NumOfCarGenerators);
|
|
|
|
WriteSaveBuf(buffer, CurrentActiveCount);
|
|
|
|
WriteSaveBuf(buffer, ProcessCounter);
|
|
|
|
WriteSaveBuf(buffer, GenerateEvenIfPlayerIsCloseCounter);
|
2020-04-14 06:08:03 -04:00
|
|
|
WriteSaveBuf(buffer, (int16)0); // alignment
|
2020-06-06 05:58:10 -04:00
|
|
|
WriteSaveBuf(buffer, (uint32)sizeof(CarGeneratorArray));
|
2020-04-14 06:08:03 -04:00
|
|
|
for (int i = 0; i < NUM_CARGENS; i++)
|
|
|
|
WriteSaveBuf(buffer, CarGeneratorArray[i]);
|
2019-10-08 16:07:11 -04:00
|
|
|
VALIDATESAVEBUF(*size)
|
2019-07-27 14:28:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CTheCarGenerators::LoadAllCarGenerators(uint8* buffer, uint32 size)
|
|
|
|
{
|
2020-04-14 06:08:03 -04:00
|
|
|
const int32 nGeneralDataSize = sizeof(NumOfCarGenerators) + sizeof(CurrentActiveCount) + sizeof(ProcessCounter) + sizeof(GenerateEvenIfPlayerIsCloseCounter) + sizeof(int16);
|
2019-07-27 14:28:18 -04:00
|
|
|
Init();
|
2019-10-08 16:07:11 -04:00
|
|
|
INITSAVEBUF
|
|
|
|
CheckSaveHeader(buffer, 'C','G','N','\0', size - SAVE_HEADER_SIZE);
|
2020-04-14 06:08:03 -04:00
|
|
|
assert(ReadSaveBuf<uint32>(buffer) == nGeneralDataSize);
|
2019-10-08 16:07:11 -04:00
|
|
|
NumOfCarGenerators = ReadSaveBuf<uint32>(buffer);
|
|
|
|
CurrentActiveCount = ReadSaveBuf<uint32>(buffer);
|
|
|
|
ProcessCounter = ReadSaveBuf<uint8>(buffer);
|
|
|
|
GenerateEvenIfPlayerIsCloseCounter = ReadSaveBuf<uint8>(buffer);
|
2020-04-14 06:08:03 -04:00
|
|
|
ReadSaveBuf<int16>(buffer); // alignment
|
2019-10-08 16:07:11 -04:00
|
|
|
assert(ReadSaveBuf<uint32>(buffer) == sizeof(CarGeneratorArray));
|
2020-04-14 06:08:03 -04:00
|
|
|
for (int i = 0; i < NUM_CARGENS; i++)
|
|
|
|
CarGeneratorArray[i] = ReadSaveBuf<CCarGenerator>(buffer);
|
2019-10-08 16:07:11 -04:00
|
|
|
VALIDATESAVEBUF(size)
|
2019-07-27 14:28:18 -04:00
|
|
|
}
|