2014-08-03 15:38:53 +02:00
|
|
|
#include "StdAfxSA.h"
|
2014-05-30 20:14:47 +02:00
|
|
|
|
2016-11-12 18:28:46 +01:00
|
|
|
#include <algorithm>
|
2014-08-03 15:38:53 +02:00
|
|
|
#include "VehicleSA.h"
|
|
|
|
#include "TimerSA.h"
|
2017-09-24 14:35:10 +02:00
|
|
|
#include "PedSA.h"
|
2019-06-28 23:14:32 +02:00
|
|
|
#include "Utils/DelimStringReader.h"
|
2018-01-11 21:45:59 +01:00
|
|
|
#include "PlayerInfoSA.h"
|
2024-05-18 16:49:03 +02:00
|
|
|
#include "ParseUtils.hpp"
|
2024-05-21 18:34:44 +02:00
|
|
|
#include "Random.h"
|
2014-05-30 20:14:47 +02:00
|
|
|
|
2019-12-25 15:36:30 +01:00
|
|
|
#include "SVF.h"
|
|
|
|
|
2017-09-08 00:16:31 +02:00
|
|
|
static constexpr float PHOENIX_FLUTTER_PERIOD = 70.0f;
|
|
|
|
static constexpr float PHOENIX_FLUTTER_AMP = 0.13f;
|
2017-09-09 20:29:01 +02:00
|
|
|
static constexpr float SWEEPER_BRUSH_SPEED = 0.3f;
|
|
|
|
|
|
|
|
static constexpr float PI = 3.14159265358979323846f;
|
2017-09-08 00:16:31 +02:00
|
|
|
|
2017-06-25 14:09:30 +02:00
|
|
|
float CAutomobile::ms_engineCompSpeed;
|
|
|
|
|
2018-09-02 23:57:29 +02:00
|
|
|
bool ReadDoubleRearWheels(const wchar_t* pPath)
|
|
|
|
{
|
|
|
|
bool listedAny = false;
|
|
|
|
|
|
|
|
constexpr size_t SCRATCH_PAD_SIZE = 32767;
|
|
|
|
WideDelimStringReader reader( SCRATCH_PAD_SIZE );
|
|
|
|
|
|
|
|
GetPrivateProfileSectionW( L"DoubleRearWheels", reader.GetBuffer(), reader.GetSize(), pPath );
|
|
|
|
while ( const wchar_t* str = reader.GetString() )
|
|
|
|
{
|
2024-05-18 16:49:03 +02:00
|
|
|
wchar_t textLine[128];
|
|
|
|
wcscpy_s(textLine, str);
|
2018-09-02 23:57:29 +02:00
|
|
|
|
2024-05-18 16:49:03 +02:00
|
|
|
wchar_t* context = nullptr;
|
|
|
|
wchar_t* model = wcstok_s(textLine, L"=", &context);
|
|
|
|
if (model == nullptr) continue;
|
2018-09-02 23:57:29 +02:00
|
|
|
|
2024-05-18 16:49:03 +02:00
|
|
|
wchar_t* val = wcstok_s(nullptr, L"=", &context);
|
|
|
|
if (val == nullptr) continue;
|
2018-09-02 23:57:29 +02:00
|
|
|
|
2024-05-18 16:49:03 +02:00
|
|
|
auto value = ParseUtils::TryParseInt(val);
|
|
|
|
if (!value) continue;
|
2018-09-02 23:57:29 +02:00
|
|
|
|
2024-05-18 16:49:03 +02:00
|
|
|
auto modelID = ParseUtils::TryParseInt(model);
|
|
|
|
if (modelID)
|
2018-09-02 23:57:29 +02:00
|
|
|
{
|
2024-05-18 16:49:03 +02:00
|
|
|
SVF::RegisterFeature(*modelID, *value ? SVF::Feature::_INTERNAL_FORCE_DOUBLE_RWHEELS_ON : SVF::Feature::_INTERNAL_FORCE_DOUBLE_RWHEELS_OFF);
|
2018-09-02 23:57:29 +02:00
|
|
|
}
|
2024-05-18 16:49:03 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
SVF::RegisterFeature(ParseUtils::ParseString(model), *value ? SVF::Feature::_INTERNAL_FORCE_DOUBLE_RWHEELS_ON : SVF::Feature::_INTERNAL_FORCE_DOUBLE_RWHEELS_OFF);
|
|
|
|
}
|
|
|
|
listedAny = true;
|
2018-09-02 23:57:29 +02:00
|
|
|
}
|
|
|
|
return listedAny;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1.0 ONLY!
|
|
|
|
bool __stdcall CheckDoubleRWheelsList( void* modelInfo, uint8_t* handlingData )
|
|
|
|
{
|
|
|
|
static void* lastModelInfo = nullptr;
|
|
|
|
static bool lastResult = false;
|
|
|
|
|
|
|
|
if ( modelInfo == lastModelInfo ) return lastResult;
|
|
|
|
lastModelInfo = modelInfo;
|
|
|
|
|
|
|
|
const uint32_t numModelInfoPtrs = *(uint32_t*)0x4C5956+2;
|
|
|
|
int32_t modelID = std::distance( ms_modelInfoPtrs, std::find( ms_modelInfoPtrs, ms_modelInfoPtrs+numModelInfoPtrs, modelInfo ) );
|
|
|
|
|
|
|
|
bool foundFeature = false;
|
|
|
|
bool featureStatus = false;
|
|
|
|
SVF::ForAllModelFeatures( modelID, [&]( SVF::Feature f ) {
|
2019-12-25 15:36:30 +01:00
|
|
|
if ( f == SVF::Feature::_INTERNAL_FORCE_DOUBLE_RWHEELS_OFF )
|
2018-09-02 23:57:29 +02:00
|
|
|
{
|
|
|
|
foundFeature = true;
|
|
|
|
featureStatus = false;
|
2024-02-01 19:07:51 +01:00
|
|
|
return false;
|
2018-09-02 23:57:29 +02:00
|
|
|
}
|
2024-02-01 19:07:51 +01:00
|
|
|
if ( f == SVF::Feature::_INTERNAL_FORCE_DOUBLE_RWHEELS_ON )
|
2018-09-02 23:57:29 +02:00
|
|
|
{
|
|
|
|
foundFeature = true;
|
|
|
|
featureStatus = true;
|
2024-02-01 19:07:51 +01:00
|
|
|
return false;
|
2018-09-02 23:57:29 +02:00
|
|
|
}
|
2024-02-01 19:07:51 +01:00
|
|
|
return true;
|
2018-09-02 23:57:29 +02:00
|
|
|
} );
|
|
|
|
if ( !foundFeature )
|
|
|
|
{
|
|
|
|
uint32_t flags = *(uint32_t*)(handlingData+0xCC);
|
|
|
|
lastResult = (flags & 0x20000000) != 0;
|
|
|
|
return lastResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
lastResult = featureStatus;
|
|
|
|
return lastResult;
|
2018-05-07 23:32:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Now left only for "backwards compatibility"
|
2019-02-03 14:09:29 +01:00
|
|
|
bool CVehicle::IgnoresRotorFix() const
|
2016-11-12 18:28:46 +01:00
|
|
|
{
|
2019-02-03 14:09:29 +01:00
|
|
|
if ( ms_rotorFixOverride != 0 )
|
|
|
|
{
|
|
|
|
return ms_rotorFixOverride < 0;
|
|
|
|
}
|
2019-12-25 15:36:30 +01:00
|
|
|
return SVF::ModelHasFeature( m_nModelIndex.Get(), SVF::Feature::_INTERNAL_NO_ROTOR_FADE );
|
2016-11-12 18:28:46 +01:00
|
|
|
}
|
2015-05-05 23:29:15 +02:00
|
|
|
|
2021-07-27 22:17:10 +02:00
|
|
|
bool CVehicle::IsOpenTopCarOrQuadbike() const
|
|
|
|
{
|
|
|
|
return IsOpenTopCar() || m_dwVehicleSubClass == VEHICLE_QUAD;
|
|
|
|
}
|
|
|
|
|
2014-08-22 00:10:23 +02:00
|
|
|
static void* varVehicleRender = AddressByVersion<void*>(0x6D0E60, 0x6D1680, 0x70C0B0);
|
2014-08-04 14:30:16 +02:00
|
|
|
WRAPPER void CVehicle::Render() { VARJMP(varVehicleRender); }
|
2014-08-22 00:10:23 +02:00
|
|
|
static void* varIsLawEnforcementVehicle = AddressByVersion<void*>(0x6D2370, 0x6D2BA0, 0x70D8C0);
|
2014-08-04 14:30:16 +02:00
|
|
|
WRAPPER bool CVehicle::IsLawEnforcementVehicle() { VARJMP(varIsLawEnforcementVehicle); }
|
2017-09-09 23:39:30 +02:00
|
|
|
|
2018-05-29 20:35:39 +02:00
|
|
|
auto GetFrameHierarchyId = AddressByVersion<int32_t(*)(RwFrame*)>(0x732A20, 0x733250, 0x76CC30);
|
|
|
|
|
2017-09-09 23:39:30 +02:00
|
|
|
void (CPlane::*CPlane::orgPlanePreRender)();
|
2014-05-30 20:14:47 +02:00
|
|
|
|
2016-11-12 18:28:46 +01:00
|
|
|
static int32_t random(int32_t from, int32_t to)
|
|
|
|
{
|
2024-05-21 18:34:44 +02:00
|
|
|
return from + ( ConsoleRandomness::rand31() % (to-from) );
|
2016-11-12 18:28:46 +01:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
static RwObject* GetCurrentAtomicObject( RwFrame* frame )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RwObject* obj = nullptr;
|
|
|
|
RwFrameForAllObjects( frame, [&obj]( RwObject* object ) -> RwObject* {
|
|
|
|
if ( RpAtomicGetFlags(object) & rpATOMICRENDER )
|
|
|
|
{
|
|
|
|
obj = object;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return object;
|
|
|
|
} );
|
|
|
|
return obj;
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
2018-06-05 20:01:45 +02:00
|
|
|
RwFrame* GetFrameFromName( RwFrame* topFrame, const char* name )
|
2014-08-12 22:30:37 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
class GetFramePredicate
|
2014-08-12 22:30:37 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
public:
|
|
|
|
RwFrame* foundFrame = nullptr;
|
2014-08-12 22:30:37 +02:00
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
GetFramePredicate( const char* name )
|
|
|
|
: m_name( name )
|
|
|
|
{
|
|
|
|
}
|
2014-08-12 22:30:37 +02:00
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
RwFrame* operator() ( RwFrame* frame )
|
|
|
|
{
|
2017-09-27 00:02:48 +02:00
|
|
|
if ( _stricmp( m_name, GetFrameNodeName(frame) ) == 0 )
|
2017-03-27 21:17:43 +02:00
|
|
|
{
|
|
|
|
foundFrame = frame;
|
|
|
|
return nullptr;
|
|
|
|
}
|
2024-10-14 21:35:03 +02:00
|
|
|
RwFrameForAllChildren(frame, std::ref(*this));
|
2017-03-27 21:17:43 +02:00
|
|
|
return foundFrame != nullptr ? nullptr : frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const char* const m_name;
|
|
|
|
};
|
2018-01-06 15:48:47 +01:00
|
|
|
;
|
|
|
|
return RwFrameForAllChildren( topFrame, GetFramePredicate(name) ).foundFrame;
|
2014-08-18 15:27:40 +02:00
|
|
|
}
|
|
|
|
|
2018-06-05 20:01:45 +02:00
|
|
|
RwFrame* GetFrameFromID( RwFrame* topFrame, int32_t ID )
|
2018-05-29 20:35:39 +02:00
|
|
|
{
|
|
|
|
class GetFramePredicate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RwFrame* foundFrame = nullptr;
|
|
|
|
|
|
|
|
GetFramePredicate( int32_t ID )
|
|
|
|
: ID( ID )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
RwFrame* operator() ( RwFrame* frame )
|
|
|
|
{
|
|
|
|
if ( ID == GetFrameHierarchyId(frame) )
|
|
|
|
{
|
|
|
|
foundFrame = frame;
|
|
|
|
return nullptr;
|
|
|
|
}
|
2024-10-14 21:35:03 +02:00
|
|
|
RwFrameForAllChildren(frame, std::ref(*this));
|
2018-05-29 20:35:39 +02:00
|
|
|
return foundFrame != nullptr ? nullptr : frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const int32_t ID;
|
|
|
|
};
|
|
|
|
return RwFrameForAllChildren( topFrame, GetFramePredicate(ID) ).foundFrame;
|
|
|
|
}
|
|
|
|
|
2015-05-05 23:29:15 +02:00
|
|
|
void ReadRotorFixExceptions(const wchar_t* pPath)
|
|
|
|
{
|
2017-09-12 16:14:07 +02:00
|
|
|
constexpr size_t SCRATCH_PAD_SIZE = 32767;
|
2017-03-23 11:30:06 +01:00
|
|
|
WideDelimStringReader reader( SCRATCH_PAD_SIZE );
|
2015-05-05 23:29:15 +02:00
|
|
|
|
2017-03-23 11:30:06 +01:00
|
|
|
GetPrivateProfileSectionW( L"RotorFixExceptions", reader.GetBuffer(), reader.GetSize(), pPath );
|
|
|
|
while ( const wchar_t* str = reader.GetString() )
|
2016-08-11 01:29:54 +02:00
|
|
|
{
|
2024-05-18 16:49:03 +02:00
|
|
|
auto ID = ParseUtils::TryParseInt(str);
|
|
|
|
if (ID)
|
|
|
|
SVF::RegisterFeature(*ID, SVF::Feature::_INTERNAL_NO_ROTOR_FADE);
|
|
|
|
else
|
|
|
|
SVF::RegisterFeature(ParseUtils::ParseString(str), SVF::Feature::_INTERNAL_NO_ROTOR_FADE);
|
2015-05-05 23:29:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 13:28:24 +01:00
|
|
|
void ReadLightbeamFixExceptions(const wchar_t* pPath)
|
|
|
|
{
|
|
|
|
constexpr size_t SCRATCH_PAD_SIZE = 32767;
|
|
|
|
WideDelimStringReader reader( SCRATCH_PAD_SIZE );
|
|
|
|
|
|
|
|
GetPrivateProfileSectionW( L"LightbeamFixExceptions", reader.GetBuffer(), reader.GetSize(), pPath );
|
|
|
|
while ( const wchar_t* str = reader.GetString() )
|
|
|
|
{
|
2024-05-18 16:49:03 +02:00
|
|
|
auto ID = ParseUtils::TryParseInt(str);
|
|
|
|
if (ID)
|
|
|
|
SVF::RegisterFeature(*ID, SVF::Feature::_INTERNAL_NO_LIGHTBEAM_BFC_FIX);
|
|
|
|
else
|
|
|
|
SVF::RegisterFeature(ParseUtils::ParseString(str), SVF::Feature::_INTERNAL_NO_LIGHTBEAM_BFC_FIX);
|
2019-02-03 13:28:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-27 15:19:30 +02:00
|
|
|
bool CVehicle::HasFirelaLadder() const
|
|
|
|
{
|
|
|
|
return SVF::ModelHasFeature( m_nModelIndex.Get(), SVF::Feature::FIRELA_LADDER );
|
|
|
|
}
|
|
|
|
|
2018-09-22 21:23:40 +02:00
|
|
|
void* CVehicle::PlayPedHitSample_GetColModel()
|
|
|
|
{
|
|
|
|
if ( this == FindPlayerVehicle() )
|
|
|
|
{
|
|
|
|
CPed *pPassenger = PickRandomPassenger();
|
|
|
|
if ( pPassenger != nullptr )
|
|
|
|
{
|
|
|
|
pPassenger->Say( CONTEXT_GLOBAL_CAR_HIT_PED );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetColModel();
|
|
|
|
}
|
|
|
|
|
2014-08-18 15:27:40 +02:00
|
|
|
void CVehicle::SetComponentAtomicAlpha(RpAtomic* pAtomic, int nAlpha)
|
|
|
|
{
|
|
|
|
RpGeometry* pGeometry = RpAtomicGetGeometry(pAtomic);
|
|
|
|
pGeometry->flags |= rpGEOMETRYMODULATEMATERIALCOLOR;
|
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
RpGeometryForAllMaterials( pGeometry, [nAlpha] (RpMaterial* material) {
|
|
|
|
material->color.alpha = RwUInt8(nAlpha);
|
|
|
|
return material;
|
|
|
|
} );
|
2014-08-18 15:27:40 +02:00
|
|
|
}
|
|
|
|
|
2019-02-03 13:28:24 +01:00
|
|
|
bool CVehicle::IgnoresLightbeamFix() const
|
|
|
|
{
|
|
|
|
if ( ms_lightbeamFixOverride != 0 )
|
|
|
|
{
|
|
|
|
return ms_lightbeamFixOverride < 0;
|
|
|
|
}
|
2019-12-25 15:36:30 +01:00
|
|
|
return SVF::ModelHasFeature( m_nModelIndex.Get(), SVF::Feature::_INTERNAL_NO_LIGHTBEAM_BFC_FIX );
|
2019-02-03 13:28:24 +01:00
|
|
|
}
|
|
|
|
|
2014-06-23 02:37:03 +02:00
|
|
|
bool CVehicle::CustomCarPlate_TextureCreate(CVehicleModelInfo* pModelInfo)
|
|
|
|
{
|
2017-04-09 23:17:31 +02:00
|
|
|
char PlateText[CVehicleModelInfo::PLATE_TEXT_LEN+1];
|
2014-06-23 02:37:03 +02:00
|
|
|
const char* pOverrideText = pModelInfo->GetCustomCarPlateText();
|
|
|
|
|
|
|
|
if ( pOverrideText )
|
2017-04-09 23:17:31 +02:00
|
|
|
strncpy_s(PlateText, pOverrideText, CVehicleModelInfo::PLATE_TEXT_LEN);
|
2014-06-23 02:37:03 +02:00
|
|
|
else
|
2017-04-09 23:17:31 +02:00
|
|
|
CCustomCarPlateMgr::GeneratePlateText(PlateText, CVehicleModelInfo::PLATE_TEXT_LEN);
|
2014-06-23 02:37:03 +02:00
|
|
|
|
2017-04-09 23:17:31 +02:00
|
|
|
PlateText[CVehicleModelInfo::PLATE_TEXT_LEN] = '\0';
|
2014-06-23 02:37:03 +02:00
|
|
|
PlateTexture = CCustomCarPlateMgr::CreatePlateTexture(PlateText, pModelInfo->m_nPlateType);
|
2014-06-23 14:54:36 +02:00
|
|
|
if ( pModelInfo->m_nPlateType != -1 )
|
|
|
|
PlateDesign = pModelInfo->m_nPlateType;
|
|
|
|
else if ( IsLawEnforcementVehicle() )
|
|
|
|
PlateDesign = CCustomCarPlateMgr::GetMapRegionPlateDesign();
|
|
|
|
else
|
2017-03-27 21:17:43 +02:00
|
|
|
PlateDesign = random(0, 20) == 0 ? int8_t(random(0, 3)) : CCustomCarPlateMgr::GetMapRegionPlateDesign();
|
2014-06-23 02:37:03 +02:00
|
|
|
|
|
|
|
assert(PlateDesign >= 0 && PlateDesign < 3);
|
|
|
|
|
|
|
|
pModelInfo->m_plateText[0] = '\0';
|
|
|
|
pModelInfo->m_nPlateType = -1;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-01-28 20:49:52 +01:00
|
|
|
static std::vector<std::pair<RpMaterial*, RwTexture*>> originalPlateMaterials;
|
2014-06-23 02:37:03 +02:00
|
|
|
void CVehicle::CustomCarPlate_BeforeRenderingStart(CVehicleModelInfo* pModelInfo)
|
|
|
|
{
|
2024-01-28 20:49:52 +01:00
|
|
|
RpClumpForAllAtomics(reinterpret_cast<RpClump*>(m_pRwObject), [&] (RpAtomic* atomic) -> RpAtomic* {
|
|
|
|
RpGeometryForAllMaterials(RpAtomicGetGeometry(atomic), [&] (RpMaterial* material) -> RpMaterial* {
|
|
|
|
if ( RwTexture* texture = RpMaterialGetTexture(material) )
|
|
|
|
{
|
|
|
|
if ( const char* texName = RwTextureGetName(texture) )
|
|
|
|
{
|
|
|
|
if ( strcmp( texName, "carplate" ) == 0 )
|
|
|
|
{
|
|
|
|
originalPlateMaterials.emplace_back(material, texture);
|
|
|
|
RpMaterialSetTexture(material, PlateTexture);
|
|
|
|
}
|
|
|
|
else if ( strcmp( texName, "carpback" ) == 0 )
|
|
|
|
{
|
|
|
|
originalPlateMaterials.emplace_back(material, texture);
|
|
|
|
CCustomCarPlateMgr::SetupMaterialPlatebackTexture(material, PlateDesign);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-23 02:37:03 +02:00
|
|
|
|
2024-01-28 20:49:52 +01:00
|
|
|
return material;
|
|
|
|
} );
|
|
|
|
return atomic;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
void CVehicle::CustomCarPlate_AfterRenderingStop(CVehicleModelInfo* pModelInfo)
|
|
|
|
{
|
|
|
|
for (const auto& platesToRestore : originalPlateMaterials)
|
2017-04-10 13:18:23 +02:00
|
|
|
{
|
2024-01-28 20:49:52 +01:00
|
|
|
RpMaterialSetTexture(platesToRestore.first, platesToRestore.second);
|
2014-06-23 02:37:03 +02:00
|
|
|
}
|
2024-01-28 20:49:52 +01:00
|
|
|
originalPlateMaterials.clear();
|
2017-03-27 21:17:43 +02:00
|
|
|
}
|
2014-06-23 02:37:03 +02:00
|
|
|
|
2017-09-08 00:16:31 +02:00
|
|
|
void CVehicle::SetComponentRotation( RwFrame* component, eRotAxis axis, float angle, bool absolute )
|
2017-06-25 12:32:22 +02:00
|
|
|
{
|
|
|
|
if ( component == nullptr ) return;
|
|
|
|
|
|
|
|
CMatrix matrix( RwFrameGetMatrix(component) );
|
|
|
|
if ( absolute )
|
|
|
|
{
|
2017-09-08 00:16:31 +02:00
|
|
|
if ( axis == ROT_AXIS_X ) matrix.SetRotateXOnly(angle);
|
|
|
|
else if ( axis == ROT_AXIS_Y ) matrix.SetRotateYOnly(angle);
|
|
|
|
else if ( axis == ROT_AXIS_Z ) matrix.SetRotateZOnly(angle);
|
2017-06-25 12:32:22 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const CVector pos = matrix.GetPos();
|
|
|
|
matrix.SetTranslateOnly(0.0f, 0.0f, 0.0f);
|
|
|
|
|
2017-09-08 00:16:31 +02:00
|
|
|
if ( axis == ROT_AXIS_X ) matrix.RotateX(angle);
|
|
|
|
else if ( axis == ROT_AXIS_Y ) matrix.RotateY(angle);
|
|
|
|
else if ( axis == ROT_AXIS_Z ) matrix.RotateZ(angle);
|
2017-06-25 12:32:22 +02:00
|
|
|
|
|
|
|
matrix.GetPos() += pos;
|
|
|
|
}
|
|
|
|
matrix.UpdateRW();
|
|
|
|
}
|
|
|
|
|
2018-09-22 21:23:40 +02:00
|
|
|
CPed* CVehicle::PickRandomPassenger()
|
|
|
|
{
|
|
|
|
const unsigned int randomNum = static_cast<unsigned int>((static_cast<double>(rand()) / RAND_MAX) * 8.0);
|
|
|
|
for ( size_t i = 0; i < 8; i++ )
|
|
|
|
{
|
|
|
|
const size_t index = (i + randomNum) % 8;
|
|
|
|
if ( m_apPassengers[index] != nullptr ) return m_apPassengers[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2024-02-14 23:57:11 +01:00
|
|
|
bool CVehicle::CanThisVehicleBeImpounded() const
|
|
|
|
{
|
|
|
|
const bool bIsBike = m_dwVehicleClass == VEHICLE_BIKE;
|
|
|
|
const bool bIsCar = m_dwVehicleClass == VEHICLE_AUTOMOBILE && m_dwVehicleSubClass != VEHICLE_HELI && m_dwVehicleSubClass != VEHICLE_PLANE && m_dwVehicleSubClass != VEHICLE_TRAILER;
|
|
|
|
return bIsCar || bIsBike;
|
|
|
|
}
|
|
|
|
|
2019-08-24 13:14:32 +02:00
|
|
|
int32_t CVehicle::GetRemapIndex()
|
|
|
|
{
|
|
|
|
int32_t remapTxd = m_remapTxdSlot.Get();
|
|
|
|
if ( remapTxd == -1 )
|
|
|
|
{
|
|
|
|
// Original code never checked that variable, hence the bug
|
|
|
|
remapTxd = m_remapTxdSlotToLoad.Get();
|
|
|
|
}
|
|
|
|
if ( remapTxd == -1 )
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const CVehicleModelInfo* modelInfo = static_cast<CVehicleModelInfo*>(ms_modelInfoPtrs[ m_nModelIndex.Get() ]);
|
|
|
|
for ( int32_t i = 0, j = modelInfo->GetNumRemaps(); i < j; i++ )
|
|
|
|
{
|
|
|
|
if ( modelInfo->m_awRemapTxds[i].Get() == remapTxd )
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-05-30 20:14:47 +02:00
|
|
|
void CHeli::Render()
|
|
|
|
{
|
|
|
|
double dRotorsSpeed, dMovingRotorSpeed;
|
2019-02-03 14:09:29 +01:00
|
|
|
const bool bDisplayRotors = !IgnoresRotorFix();
|
|
|
|
const bool bHasMovingRotor = m_pCarNode[13] != nullptr && bDisplayRotors;
|
|
|
|
const bool bHasMovingRotor2 = m_pCarNode[15] != nullptr && bDisplayRotors;
|
2014-05-30 20:14:47 +02:00
|
|
|
|
2014-08-03 15:38:53 +02:00
|
|
|
m_nTimeTillWeNeedThisCar = CTimer::m_snTimeInMilliseconds + 3000;
|
2014-05-30 20:14:47 +02:00
|
|
|
|
|
|
|
if ( m_fRotorSpeed > 0.0 )
|
2016-11-12 18:28:46 +01:00
|
|
|
dRotorsSpeed = std::min(1.7 * (1.0/0.22) * m_fRotorSpeed, 1.5);
|
2014-05-30 20:14:47 +02:00
|
|
|
else
|
|
|
|
dRotorsSpeed = 0.0;
|
|
|
|
|
|
|
|
dMovingRotorSpeed = dRotorsSpeed - 0.4;
|
|
|
|
if ( dMovingRotorSpeed < 0.0 )
|
|
|
|
dMovingRotorSpeed = 0.0;
|
|
|
|
|
2016-11-12 18:28:46 +01:00
|
|
|
int nStaticRotorAlpha = static_cast<int>(std::min((1.5-dRotorsSpeed) * 255.0, 255.0));
|
|
|
|
int nMovingRotorAlpha = static_cast<int>(std::min(dMovingRotorSpeed * 175.0, 175.0));
|
2014-05-30 20:14:47 +02:00
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[12] != nullptr )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[12] );
|
|
|
|
if ( pOutAtomic != nullptr )
|
2014-06-03 02:10:03 +02:00
|
|
|
SetComponentAtomicAlpha(pOutAtomic, bHasMovingRotor ? nStaticRotorAlpha : 255);
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[14] != nullptr )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[14] );
|
|
|
|
if ( pOutAtomic != nullptr )
|
2014-06-03 02:10:03 +02:00
|
|
|
SetComponentAtomicAlpha(pOutAtomic, bHasMovingRotor2 ? nStaticRotorAlpha : 255);
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[13] != nullptr )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[13] );
|
|
|
|
if ( pOutAtomic != nullptr )
|
2015-05-05 23:29:15 +02:00
|
|
|
SetComponentAtomicAlpha(pOutAtomic, bHasMovingRotor ? nMovingRotorAlpha : 0);
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[15] != nullptr )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[15] );
|
|
|
|
if ( pOutAtomic != nullptr )
|
2015-05-05 23:29:15 +02:00
|
|
|
SetComponentAtomicAlpha(pOutAtomic, bHasMovingRotor2 ? nMovingRotorAlpha : 0);
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CEntity::Render();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CPlane::Render()
|
|
|
|
{
|
|
|
|
double dRotorsSpeed, dMovingRotorSpeed;
|
2019-02-03 14:09:29 +01:00
|
|
|
const bool bDisplayRotors = !IgnoresRotorFix();
|
|
|
|
const bool bHasMovingProp = m_pCarNode[13] != nullptr && bDisplayRotors;
|
|
|
|
const bool bHasMovingProp2 = m_pCarNode[15] != nullptr && bDisplayRotors;
|
2014-05-30 20:14:47 +02:00
|
|
|
|
2014-08-03 15:38:53 +02:00
|
|
|
m_nTimeTillWeNeedThisCar = CTimer::m_snTimeInMilliseconds + 3000;
|
2014-05-30 20:14:47 +02:00
|
|
|
|
|
|
|
if ( m_fPropellerSpeed > 0.0 )
|
2016-11-12 18:28:46 +01:00
|
|
|
dRotorsSpeed = std::min(1.7 * (1.0/0.31) * m_fPropellerSpeed, 1.5);
|
2014-05-30 20:14:47 +02:00
|
|
|
else
|
|
|
|
dRotorsSpeed = 0.0;
|
|
|
|
|
|
|
|
dMovingRotorSpeed = dRotorsSpeed - 0.4;
|
|
|
|
if ( dMovingRotorSpeed < 0.0 )
|
|
|
|
dMovingRotorSpeed = 0.0;
|
|
|
|
|
2016-11-12 18:28:46 +01:00
|
|
|
int nStaticRotorAlpha = static_cast<int>(std::min((1.5-dRotorsSpeed) * 255.0, 255.0));
|
|
|
|
int nMovingRotorAlpha = static_cast<int>(std::min(dMovingRotorSpeed * 175.0, 175.0));
|
2014-05-30 20:14:47 +02:00
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[12] != nullptr )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[12] );
|
|
|
|
if ( pOutAtomic != nullptr )
|
2014-06-04 16:12:53 +02:00
|
|
|
SetComponentAtomicAlpha(pOutAtomic, bHasMovingProp ? nStaticRotorAlpha : 255);
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[14] != nullptr )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[14] );
|
|
|
|
if ( pOutAtomic != nullptr )
|
2014-06-04 16:12:53 +02:00
|
|
|
SetComponentAtomicAlpha(pOutAtomic, bHasMovingProp2 ? nStaticRotorAlpha : 255);
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[13] != nullptr )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[13] );
|
|
|
|
if ( pOutAtomic != nullptr )
|
2015-05-05 23:29:15 +02:00
|
|
|
SetComponentAtomicAlpha(pOutAtomic, bHasMovingProp ? nMovingRotorAlpha : 0);
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[15] != nullptr )
|
2014-05-30 20:14:47 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[15] );
|
|
|
|
if ( pOutAtomic != nullptr )
|
2015-05-05 23:29:15 +02:00
|
|
|
SetComponentAtomicAlpha(pOutAtomic, bHasMovingProp2 ? nMovingRotorAlpha : 0);
|
2014-05-30 20:14:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CVehicle::Render();
|
2014-08-11 22:44:57 +02:00
|
|
|
}
|
|
|
|
|
2014-08-12 22:43:17 +02:00
|
|
|
void CPlane::Fix_SilentPatch()
|
|
|
|
{
|
|
|
|
// Reset bouncing panels
|
2016-04-22 21:55:15 +02:00
|
|
|
// No reset on Vortex
|
2018-05-08 00:09:13 +02:00
|
|
|
for ( ptrdiff_t i = SVF::ModelHasFeature( m_nModelIndex.Get(), SVF::Feature::VORTEX_EXHAUST ) ? 1 : 0; i < 3; i++ )
|
2014-08-12 22:43:17 +02:00
|
|
|
{
|
|
|
|
m_aBouncingPanel[i].m_nNodeIndex = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 23:39:30 +02:00
|
|
|
void CPlane::PreRender()
|
|
|
|
{
|
|
|
|
(this->*(orgPlanePreRender))();
|
|
|
|
|
|
|
|
const int32_t extID = m_nModelIndex.Get();
|
|
|
|
|
|
|
|
auto copyRotation = [&]( size_t src, size_t dest ) {
|
|
|
|
if ( m_pCarNode[src] != nullptr && m_pCarNode[dest] != nullptr )
|
|
|
|
{
|
|
|
|
RwMatrix* lhs = RwFrameGetMatrix( m_pCarNode[dest] );
|
|
|
|
const RwMatrix* rhs = RwFrameGetMatrix( m_pCarNode[src] );
|
|
|
|
|
|
|
|
lhs->at = rhs->at;
|
|
|
|
lhs->up = rhs->up;
|
|
|
|
lhs->right = rhs->right;
|
|
|
|
RwMatrixUpdate( lhs );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-07 23:32:55 +02:00
|
|
|
if ( SVF::ModelHasFeature( extID, SVF::Feature::EXTRA_AILERONS1 ) )
|
2017-09-10 00:16:16 +02:00
|
|
|
{
|
|
|
|
copyRotation( 18, 21 );
|
|
|
|
}
|
|
|
|
|
2018-05-07 23:32:55 +02:00
|
|
|
if ( SVF::ModelHasFeature( extID, SVF::Feature::EXTRA_AILERONS2 ) )
|
2017-09-10 00:16:16 +02:00
|
|
|
{
|
|
|
|
copyRotation( 19, 23 );
|
|
|
|
copyRotation( 20, 24 );
|
|
|
|
}
|
2017-09-09 23:39:30 +02:00
|
|
|
}
|
|
|
|
|
2018-06-05 21:07:42 +02:00
|
|
|
RwFrame* CAutomobile::GetTowBarFrame() const
|
|
|
|
{
|
|
|
|
RwFrame* towBar = m_pCarNode[20];
|
|
|
|
if ( towBar == nullptr )
|
|
|
|
{
|
|
|
|
towBar = m_pCarNode[21];
|
|
|
|
}
|
|
|
|
return towBar;
|
|
|
|
}
|
|
|
|
|
2024-02-03 20:26:50 +01:00
|
|
|
void CAutomobile::BeforePreRender()
|
2017-06-23 00:11:17 +02:00
|
|
|
{
|
2017-06-25 14:09:30 +02:00
|
|
|
// For rotating engine components
|
|
|
|
ms_engineCompSpeed = m_nVehicleFlags.bEngineOn ? CTimer::m_fTimeStep : 0.0f;
|
2024-02-03 20:26:50 +01:00
|
|
|
}
|
2017-06-25 14:09:30 +02:00
|
|
|
|
2024-02-03 20:26:50 +01:00
|
|
|
void CAutomobile::AfterPreRender()
|
|
|
|
{
|
2017-09-09 20:46:10 +02:00
|
|
|
const int32_t extID = m_nModelIndex.Get();
|
2018-05-07 23:32:55 +02:00
|
|
|
if ( SVF::ModelHasFeature( extID, SVF::Feature::PHOENIX_FLUTTER ) )
|
2017-06-23 00:11:17 +02:00
|
|
|
{
|
2017-09-09 20:46:10 +02:00
|
|
|
ProcessPhoenixBlower( extID );
|
2017-06-25 12:17:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-07 23:32:55 +02:00
|
|
|
if ( SVF::ModelHasFeature( extID, SVF::Feature::SWEEPER_BRUSHES ) )
|
2017-06-25 12:17:09 +02:00
|
|
|
{
|
|
|
|
ProcessSweeper();
|
2017-06-23 00:11:17 +02:00
|
|
|
}
|
2017-09-09 20:29:01 +02:00
|
|
|
|
2018-05-07 23:32:55 +02:00
|
|
|
if ( SVF::ModelHasFeature( extID, SVF::Feature::NEWSVAN_DISH ) )
|
2017-09-09 20:29:01 +02:00
|
|
|
{
|
|
|
|
ProcessNewsvan();
|
|
|
|
}
|
2017-06-23 00:11:17 +02:00
|
|
|
}
|
|
|
|
|
2024-10-30 19:44:13 +01:00
|
|
|
void CAutomobile::HideDestroyedWheels_SilentPatch(void (CAutomobile::*spawnFlyingComponentCB)(int, unsigned int), int, unsigned int modelID)
|
2024-03-06 22:42:35 +01:00
|
|
|
{
|
2024-10-30 19:44:13 +01:00
|
|
|
auto trySpawnAndHideWheel = [this, spawnFlyingComponentCB, modelID](int nodeID)
|
2024-03-06 22:42:35 +01:00
|
|
|
{
|
|
|
|
RwFrame* wheelNode = m_pCarNode[nodeID];
|
|
|
|
if (wheelNode != nullptr)
|
|
|
|
{
|
2024-10-30 19:44:13 +01:00
|
|
|
bool bWheelVisible = false;
|
|
|
|
RwFrameForAllObjects(wheelNode, [&bWheelVisible](RwObject* object) -> RwObject*
|
2024-03-06 22:42:35 +01:00
|
|
|
{
|
|
|
|
if ((rwObjectGetFlags(object) & rpATOMICRENDER) != 0)
|
|
|
|
{
|
2024-10-30 19:44:13 +01:00
|
|
|
bWheelVisible = true;
|
|
|
|
return nullptr;
|
2024-03-06 22:42:35 +01:00
|
|
|
}
|
|
|
|
return object;
|
|
|
|
});
|
2024-10-30 19:44:13 +01:00
|
|
|
|
|
|
|
if (bWheelVisible)
|
|
|
|
{
|
|
|
|
std::invoke(spawnFlyingComponentCB, this, nodeID, modelID);
|
|
|
|
RwFrameForAllObjects(wheelNode, [](RwObject* object)
|
|
|
|
{
|
|
|
|
rwObjectSetFlags(object, 0);
|
|
|
|
return object;
|
|
|
|
});
|
|
|
|
}
|
2024-03-06 22:42:35 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
if (m_DamageManager.GetWheelStatus(0) == 2)
|
|
|
|
{
|
2024-10-30 19:44:13 +01:00
|
|
|
trySpawnAndHideWheel(5);
|
2024-03-06 22:42:35 +01:00
|
|
|
}
|
|
|
|
if (m_DamageManager.GetWheelStatus(2) == 2)
|
|
|
|
{
|
2024-10-30 19:44:13 +01:00
|
|
|
trySpawnAndHideWheel(2);
|
2024-03-06 22:42:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// For rear wheels, also hide and spawn the middle wheel (if it exists)
|
|
|
|
if (m_DamageManager.GetWheelStatus(1) == 2)
|
|
|
|
{
|
2024-10-30 19:44:13 +01:00
|
|
|
trySpawnAndHideWheel(6);
|
|
|
|
trySpawnAndHideWheel(7);
|
2024-03-06 22:42:35 +01:00
|
|
|
}
|
|
|
|
if (m_DamageManager.GetWheelStatus(3) == 2)
|
|
|
|
{
|
2024-10-30 19:44:13 +01:00
|
|
|
trySpawnAndHideWheel(3);
|
|
|
|
trySpawnAndHideWheel(4);
|
2024-03-06 22:42:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-11 22:44:57 +02:00
|
|
|
void CAutomobile::Fix_SilentPatch()
|
|
|
|
{
|
2014-08-12 22:30:37 +02:00
|
|
|
ResetFrames();
|
|
|
|
|
2014-08-11 22:44:57 +02:00
|
|
|
// Reset bouncing panels
|
2017-09-09 20:46:10 +02:00
|
|
|
const int32_t extID = m_nModelIndex.Get();
|
2018-05-23 00:41:50 +02:00
|
|
|
for ( ptrdiff_t i = (m_pCarNode[21] != nullptr && SVF::ModelHasFeature( extID, SVF::Feature::TOWTRUCK_HOOK )) || (m_pCarNode[17] != nullptr && SVF::ModelHasFeature( extID, SVF::Feature::TRACTOR_HOOK )) ? 1 : 0; i < 3; i++ )
|
2014-08-11 22:44:57 +02:00
|
|
|
{
|
|
|
|
// Towtruck/Tractor fix
|
|
|
|
m_aBouncingPanel[i].m_nNodeIndex = -1;
|
|
|
|
}
|
2018-05-22 22:40:23 +02:00
|
|
|
|
|
|
|
// Reset Rhino middle wheels state
|
|
|
|
if ( SVF::ModelHasFeature( extID, SVF::Feature::RHINO_WHEELS ) )
|
|
|
|
{
|
|
|
|
Door[REAR_LEFT_DOOR].SetExtraWheelPositions( 1.0f, 1.0f, 1.0f, 1.0f );
|
|
|
|
Door[REAR_RIGHT_DOOR].SetExtraWheelPositions( 1.0f, 1.0f, 1.0f, 1.0f );
|
|
|
|
|
2019-03-07 18:54:21 +01:00
|
|
|
if ( m_pCarNode[3] != nullptr )
|
|
|
|
{
|
|
|
|
RwObject* object = GetFirstObject( m_pCarNode[3] );
|
|
|
|
RpAtomicSetFlags( object, 0 );
|
|
|
|
}
|
2018-05-22 22:40:23 +02:00
|
|
|
|
2019-03-07 18:54:21 +01:00
|
|
|
if ( m_pCarNode[6] != nullptr )
|
|
|
|
{
|
|
|
|
RwObject* object = GetFirstObject( m_pCarNode[6] );
|
|
|
|
RpAtomicSetFlags( object, 0 );
|
|
|
|
}
|
2018-05-22 22:40:23 +02:00
|
|
|
}
|
2014-08-12 22:30:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CAutomobile::ResetFrames()
|
|
|
|
{
|
2017-09-09 20:46:10 +02:00
|
|
|
RpClump* pOrigClump = reinterpret_cast<RpClump*>(ms_modelInfoPtrs[ m_nModelIndex.Get() ]->pRwObject);
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( pOrigClump != nullptr )
|
2014-08-12 22:30:37 +02:00
|
|
|
{
|
|
|
|
// Instead of setting frame rotation to (0,0,0) like R* did, obtain the original frame matrix from CBaseNodelInfo clump
|
2016-04-22 21:55:15 +02:00
|
|
|
for ( ptrdiff_t i = 8; i < 25; i++ )
|
2014-08-12 22:30:37 +02:00
|
|
|
{
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( m_pCarNode[i] != nullptr )
|
2014-08-12 22:30:37 +02:00
|
|
|
{
|
|
|
|
// Find a frame in CBaseModelInfo object
|
2018-05-29 20:35:39 +02:00
|
|
|
RwFrame* origFrame = GetFrameFromID( RpClumpGetFrame(pOrigClump), static_cast<int32_t>(i) );
|
2017-03-27 21:17:43 +02:00
|
|
|
if ( origFrame != nullptr )
|
2014-08-12 22:30:37 +02:00
|
|
|
{
|
|
|
|
// Found a frame, reset it
|
2017-03-27 21:17:43 +02:00
|
|
|
*RwFrameGetMatrix(m_pCarNode[i]) = *RwFrameGetMatrix(origFrame);
|
2014-08-12 22:30:37 +02:00
|
|
|
RwMatrixUpdate(RwFrameGetMatrix(m_pCarNode[i]));
|
|
|
|
}
|
2018-05-29 20:35:39 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Same as original code
|
|
|
|
CMatrix matrix( RwFrameGetMatrix(m_pCarNode[i]) );
|
|
|
|
const CVector pos( matrix.GetPos() );
|
|
|
|
matrix.SetTranslate( pos.x, pos.y, pos.z );
|
|
|
|
matrix.UpdateRW();
|
|
|
|
}
|
2014-08-12 22:30:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-23 00:11:17 +02:00
|
|
|
}
|
|
|
|
|
2017-06-25 12:17:09 +02:00
|
|
|
void CAutomobile::ProcessPhoenixBlower( int32_t modelID )
|
2017-06-23 00:11:17 +02:00
|
|
|
{
|
|
|
|
if ( m_pCarNode[20] == nullptr ) return;
|
2018-05-29 23:51:36 +02:00
|
|
|
if ( !m_nVehicleFlags.bEngineOn ) return;
|
2017-06-23 00:11:17 +02:00
|
|
|
|
2017-06-25 12:17:09 +02:00
|
|
|
RpClump* pOrigClump = reinterpret_cast<RpClump*>(ms_modelInfoPtrs[ modelID ]->pRwObject);
|
|
|
|
if ( pOrigClump != nullptr )
|
|
|
|
{
|
2018-05-29 20:35:39 +02:00
|
|
|
RwFrame* origFrame = GetFrameFromID( RpClumpGetFrame(pOrigClump), 20 );
|
2017-06-25 12:17:09 +02:00
|
|
|
if ( origFrame != nullptr )
|
|
|
|
{
|
|
|
|
*RwFrameGetMatrix(m_pCarNode[20]) = *RwFrameGetMatrix(origFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-23 00:11:17 +02:00
|
|
|
float finalAngle = 0.0f;
|
2018-05-26 14:43:02 +02:00
|
|
|
if ( std::abs(m_fGasPedal) > 0.0f )
|
2017-06-23 00:11:17 +02:00
|
|
|
{
|
|
|
|
if ( m_fSpecialComponentAngle < 1.3f )
|
|
|
|
{
|
|
|
|
finalAngle = m_fSpecialComponentAngle = std::min( m_fSpecialComponentAngle + 0.1f * CTimer::m_fTimeStep, 1.3f );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-08 00:16:31 +02:00
|
|
|
finalAngle = m_fSpecialComponentAngle + (std::sin( (CTimer::m_snTimeInMilliseconds % 10000) / PHOENIX_FLUTTER_PERIOD ) * PHOENIX_FLUTTER_AMP);
|
2017-06-23 00:11:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( m_fSpecialComponentAngle > 0.0f )
|
|
|
|
{
|
|
|
|
finalAngle = m_fSpecialComponentAngle = std::max( m_fSpecialComponentAngle - 0.05f * CTimer::m_fTimeStep, 0.0f );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-08 00:16:31 +02:00
|
|
|
SetComponentRotation( m_pCarNode[20], ROT_AXIS_X, finalAngle, false );
|
2017-06-25 12:17:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CAutomobile::ProcessSweeper()
|
|
|
|
{
|
|
|
|
if ( !m_nVehicleFlags.bEngineOn ) return;
|
|
|
|
|
2017-09-09 20:04:48 +02:00
|
|
|
if ( GetStatus() == STATUS_PLAYER || GetStatus() == STATUS_PHYSICS || GetStatus() == STATUS_SIMPLE )
|
2017-06-25 12:17:09 +02:00
|
|
|
{
|
2017-09-09 20:04:48 +02:00
|
|
|
const float angle = CTimer::m_fTimeStep * SWEEPER_BRUSH_SPEED;
|
2017-09-08 00:16:31 +02:00
|
|
|
|
2017-09-09 20:04:48 +02:00
|
|
|
SetComponentRotation( m_pCarNode[20], ROT_AXIS_Z, angle, false );
|
|
|
|
SetComponentRotation( m_pCarNode[21], ROT_AXIS_Z, -angle, false );
|
|
|
|
}
|
2017-06-23 00:11:17 +02:00
|
|
|
}
|
2017-09-09 20:29:01 +02:00
|
|
|
|
|
|
|
void CAutomobile::ProcessNewsvan()
|
|
|
|
{
|
2018-05-23 00:28:21 +02:00
|
|
|
if ( GetStatus() == STATUS_PLAYER || GetStatus() == STATUS_PHYSICS || GetStatus() == STATUS_SIMPLE )
|
2017-09-09 20:29:01 +02:00
|
|
|
{
|
|
|
|
// TODO: Point at something? Like nearest collectable or safehouse
|
|
|
|
m_fGunOrientation += CTimer::m_fTimeStep * 0.05f;
|
|
|
|
if ( m_fGunOrientation > 2.0f * PI ) m_fGunOrientation -= 2.0f * PI;
|
|
|
|
SetComponentRotation( m_pCarNode[20], ROT_AXIS_Z, m_fGunOrientation );
|
|
|
|
}
|
2017-09-24 14:35:10 +02:00
|
|
|
}
|
|
|
|
|
2018-06-05 19:50:25 +02:00
|
|
|
bool CTrailer::GetTowBarPos(CVector& posnOut, bool defaultPos, CVehicle* trailer)
|
|
|
|
{
|
|
|
|
const int32_t modelID = m_nModelIndex.Get();
|
|
|
|
if ( SVF::ModelHasFeature( modelID, SVF::Feature::DOUBLE_TRAILER ) )
|
|
|
|
{
|
|
|
|
if ( m_pCarNode[21] != nullptr )
|
|
|
|
{
|
|
|
|
const RwMatrix* ltm = RwFrameGetLTM( m_pCarNode[21] );
|
|
|
|
posnOut.x = ltm->pos.x;
|
|
|
|
posnOut.y = ltm->pos.y;
|
|
|
|
posnOut.z = ltm->pos.z;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fallback, same as in original CTrailer::GetTowBarPos
|
|
|
|
if ( defaultPos )
|
|
|
|
{
|
|
|
|
posnOut = *GetMatrix() * CVector(0.0f, ms_modelInfoPtrs[ modelID ]->pColModel->boundingBox.vecMin.y - 0.05f, 0.5f - m_fHeightAboveRoad);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetTowBarPos_GTA(posnOut, defaultPos, trailer);
|
|
|
|
}
|
|
|
|
|
2024-02-03 20:26:50 +01:00
|
|
|
CVehicle* CStoredCar::RestoreCar_LoadBombOwnership(CVehicle* vehicle)
|
2017-09-24 14:35:10 +02:00
|
|
|
{
|
2024-02-03 20:26:50 +01:00
|
|
|
if (vehicle != nullptr)
|
2017-09-24 14:35:10 +02:00
|
|
|
{
|
2024-02-03 20:26:50 +01:00
|
|
|
if (m_bombType != 0)
|
2017-09-27 23:12:05 +02:00
|
|
|
{
|
2024-02-03 20:26:50 +01:00
|
|
|
// Fixup bomb stuff
|
|
|
|
if (vehicle->GetClass() == VEHICLE_AUTOMOBILE || vehicle->GetClass() == VEHICLE_BIKE)
|
|
|
|
{
|
|
|
|
vehicle->SetBombOnBoard(m_bombType);
|
|
|
|
vehicle->SetBombOwner(FindPlayerPed());
|
|
|
|
}
|
2017-09-27 23:12:05 +02:00
|
|
|
}
|
2017-09-24 14:35:10 +02:00
|
|
|
}
|
|
|
|
return vehicle;
|
2018-05-07 23:32:55 +02:00
|
|
|
}
|