SilentPatch/SilentPatchSA/VehicleSA.cpp

482 lines
13 KiB
C++
Raw Normal View History

2014-08-03 15:38:53 +02:00
#include "StdAfxSA.h"
2014-05-30 20:14:47 +02:00
#include <functional>
2016-11-12 18:28:46 +01:00
#include <algorithm>
#include <vector>
2014-08-03 15:38:53 +02:00
#include "VehicleSA.h"
#include "TimerSA.h"
#include "PedSA.h"
2017-03-23 11:30:06 +01:00
#include "DelimStringReader.h"
2014-05-30 20:14:47 +02:00
2017-09-08 00:16:31 +02:00
static constexpr float PHOENIX_FLUTTER_PERIOD = 70.0f;
static constexpr float PHOENIX_FLUTTER_AMP = 0.13f;
static constexpr float SWEEPER_BRUSH_SPEED = 0.3f;
static constexpr float PI = 3.14159265358979323846f;
2017-09-08 00:16:31 +02:00
2017-06-20 18:33:31 +02:00
std::vector<int32_t> vecRotorExceptions;
2016-11-12 18:28:46 +01:00
float CAutomobile::ms_engineCompSpeed;
2017-06-20 18:33:31 +02:00
static bool ShouldIgnoreRotor( int32_t id )
2016-11-12 18:28:46 +01:00
{
return std::find( vecRotorExceptions.begin(), vecRotorExceptions.end(), id ) != vecRotorExceptions.end();
}
2015-05-05 23:29:15 +02:00
2014-08-22 00:10:23 +02:00
static void* varVehicleRender = AddressByVersion<void*>(0x6D0E60, 0x6D1680, 0x70C0B0);
WRAPPER void CVehicle::Render() { VARJMP(varVehicleRender); }
2014-08-22 00:10:23 +02:00
static void* varIsLawEnforcementVehicle = AddressByVersion<void*>(0x6D2370, 0x6D2BA0, 0x70D8C0);
WRAPPER bool CVehicle::IsLawEnforcementVehicle() { VARJMP(varIsLawEnforcementVehicle); }
auto FindPlayerPed = AddressByVersion<CPed*(*)(int)>( 0x56E210, 0, 0 ); // TODO: DO
void (CVehicle::*CVehicle::orgVehiclePreRender)();
void (CAutomobile::*CAutomobile::orgAutomobilePreRender)();
void (CPlane::*CPlane::orgPlanePreRender)();
CVehicle* (CStoredCar::*CStoredCar::orgRestoreCar)();
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)
{
2017-03-09 00:53:03 +01:00
return from + ( Int32Rand() % (to-from) );
2016-11-12 18:28:46 +01:00
}
static RwObject* GetCurrentAtomicObject( RwFrame* frame )
2014-05-30 20:14:47 +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
}
static RwFrame* GetFrameFromName( RwFrame* topFrame, const char* name )
{
class GetFramePredicate
{
public:
RwFrame* foundFrame = nullptr;
GetFramePredicate( const char* name )
: m_name( name )
{
}
RwFrame* operator() ( RwFrame* frame )
{
if ( _stricmp( m_name, GetFrameNodeName(frame) ) == 0 )
{
foundFrame = frame;
return nullptr;
}
2017-04-02 18:59:08 +02:00
RwFrameForAllChildren( frame, *this );
return foundFrame != nullptr ? nullptr : frame;
}
private:
const char* const m_name;
};
GetFramePredicate p( name );
2017-04-02 18:59:08 +02:00
RwFrameForAllChildren( topFrame, p );
return p.foundFrame;
}
2015-05-05 23:29:15 +02:00
void ReadRotorFixExceptions(const wchar_t* pPath)
{
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() )
{
2017-06-20 18:33:31 +02:00
int32_t toList = wcstol( str, nullptr, 0 );
if ( toList > 0 )
2016-11-12 18:28:46 +01:00
vecRotorExceptions.push_back( toList );
2015-05-05 23:29:15 +02:00
}
}
void CVehicle::SetComponentAtomicAlpha(RpAtomic* pAtomic, int nAlpha)
{
RpGeometry* pGeometry = RpAtomicGetGeometry(pAtomic);
pGeometry->flags |= rpGEOMETRYMODULATEMATERIALCOLOR;
RpGeometryForAllMaterials( pGeometry, [nAlpha] (RpMaterial* material) {
material->color.alpha = RwUInt8(nAlpha);
return material;
} );
}
2014-06-23 02:37:03 +02:00
bool CVehicle::CustomCarPlate_TextureCreate(CVehicleModelInfo* pModelInfo)
{
char PlateText[CVehicleModelInfo::PLATE_TEXT_LEN+1];
2014-06-23 02:37:03 +02:00
const char* pOverrideText = pModelInfo->GetCustomCarPlateText();
if ( pOverrideText )
strncpy_s(PlateText, pOverrideText, CVehicleModelInfo::PLATE_TEXT_LEN);
2014-06-23 02:37:03 +02:00
else
CCustomCarPlateMgr::GeneratePlateText(PlateText, CVehicleModelInfo::PLATE_TEXT_LEN);
2014-06-23 02:37:03 +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
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;
}
void CVehicle::CustomCarPlate_BeforeRenderingStart(CVehicleModelInfo* pModelInfo)
{
for ( size_t i = 0; i < pModelInfo->m_apPlateMaterials->m_numPlates; i++ )
2014-06-23 02:37:03 +02:00
{
RpMaterialSetTexture(pModelInfo->m_apPlateMaterials->m_plates[i], PlateTexture);
}
2014-06-23 02:37:03 +02:00
for ( size_t i = 0; i < pModelInfo->m_apPlateMaterials->m_numPlatebacks; i++ )
{
CCustomCarPlateMgr::SetupMaterialPlatebackTexture(pModelInfo->m_apPlateMaterials->m_platebacks[i], PlateDesign);
2014-06-23 02:37:03 +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();
}
2014-05-30 20:14:47 +02:00
void CHeli::Render()
{
double dRotorsSpeed, dMovingRotorSpeed;
2017-09-09 20:46:10 +02:00
bool bDisplayRotors = !ShouldIgnoreRotor( m_nModelIndex.Get() );
2016-11-12 18:28:46 +01:00
bool bHasMovingRotor = m_pCarNode[13] != nullptr && bDisplayRotors;
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
if ( m_pCarNode[12] != nullptr )
2014-05-30 20:14:47 +02:00
{
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[12] );
if ( pOutAtomic != nullptr )
SetComponentAtomicAlpha(pOutAtomic, bHasMovingRotor ? nStaticRotorAlpha : 255);
2014-05-30 20:14:47 +02:00
}
if ( m_pCarNode[14] != nullptr )
2014-05-30 20:14:47 +02:00
{
RpAtomic* pOutAtomic = (RpAtomic*)GetCurrentAtomicObject( m_pCarNode[14] );
if ( pOutAtomic != nullptr )
SetComponentAtomicAlpha(pOutAtomic, bHasMovingRotor2 ? nStaticRotorAlpha : 255);
2014-05-30 20:14:47 +02:00
}
if ( m_pCarNode[13] != nullptr )
2014-05-30 20:14:47 +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
}
if ( m_pCarNode[15] != nullptr )
2014-05-30 20:14:47 +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;
2017-09-09 20:46:10 +02:00
bool bDisplayRotors = !ShouldIgnoreRotor( m_nModelIndex.Get() );
2016-11-12 18:28:46 +01:00
bool bHasMovingProp = m_pCarNode[13] != nullptr && bDisplayRotors;
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
if ( m_pCarNode[12] != nullptr )
2014-05-30 20:14:47 +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
}
if ( m_pCarNode[14] != nullptr )
2014-05-30 20:14:47 +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
}
if ( m_pCarNode[13] != nullptr )
2014-05-30 20:14:47 +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
}
if ( m_pCarNode[15] != nullptr )
2014-05-30 20:14:47 +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();
}
void CPlane::Fix_SilentPatch()
{
// Reset bouncing panels
// No reset on Vortex
2017-09-09 20:46:10 +02:00
for ( ptrdiff_t i = m_nModelIndex.Get() == 539 ? 1 : 0; i < 3; i++ )
{
m_aBouncingPanel[i].m_nNodeIndex = -1;
}
}
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 );
}
};
2017-09-10 00:16:16 +02:00
if ( extID == 511 )
{
copyRotation( 18, 21 );
}
if ( extID == 513 )
{
copyRotation( 19, 23 );
copyRotation( 20, 24 );
}
}
void CBoat::PreRender_SilentPatch()
{
(this->*(orgVehiclePreRender))();
// Fixed moving prop for Predator/Tropic/Reefer
const int32_t extID = m_nModelIndex.Get();
if ( (extID == 430 || extID == 453 || extID == 454) && m_pBoatNode[1] == nullptr )
{
m_pBoatNode[1] = GetFrameFromName( RpClumpGetFrame(m_pRwObject), "boat_moving" );
}
}
2017-06-23 00:11:17 +02:00
void CAutomobile::PreRender()
{
// For rotating engine components
ms_engineCompSpeed = m_nVehicleFlags.bEngineOn ? CTimer::m_fTimeStep : 0.0f;
(this->*(orgAutomobilePreRender))();
2017-06-23 00:11:17 +02:00
2017-09-09 20:46:10 +02:00
const int32_t extID = m_nModelIndex.Get();
if ( extID == 603 )
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
}
2017-09-09 20:46:10 +02:00
if ( extID == 574 )
2017-06-25 12:17:09 +02:00
{
ProcessSweeper();
2017-06-23 00:11:17 +02:00
}
2017-09-09 20:46:10 +02:00
if ( extID == 582 )
{
ProcessNewsvan();
}
2017-06-23 00:11:17 +02:00
}
void CAutomobile::Fix_SilentPatch()
{
ResetFrames();
// Reset bouncing panels
2017-09-09 20:46:10 +02:00
const int32_t extID = m_nModelIndex.Get();
2017-06-20 18:33:31 +02:00
for ( ptrdiff_t i = (extID == 525 && m_pCarNode[21]) || (extID == 531 && m_pCarNode[17]) ? 1 : 0; i < 3; i++ )
{
// Towtruck/Tractor fix
m_aBouncingPanel[i].m_nNodeIndex = -1;
}
}
void CAutomobile::ResetFrames()
{
2017-09-09 20:46:10 +02:00
RpClump* pOrigClump = reinterpret_cast<RpClump*>(ms_modelInfoPtrs[ m_nModelIndex.Get() ]->pRwObject);
if ( pOrigClump != nullptr )
{
// Instead of setting frame rotation to (0,0,0) like R* did, obtain the original frame matrix from CBaseNodelInfo clump
for ( ptrdiff_t i = 8; i < 25; i++ )
{
if ( m_pCarNode[i] != nullptr )
{
// Find a frame in CBaseModelInfo object
RwFrame* origFrame = GetFrameFromName( RpClumpGetFrame(pOrigClump), GetFrameNodeName(m_pCarNode[i]) );
if ( origFrame != nullptr )
{
// Found a frame, reset it
*RwFrameGetMatrix(m_pCarNode[i]) = *RwFrameGetMatrix(origFrame);
RwMatrixUpdate(RwFrameGetMatrix(m_pCarNode[i]));
}
}
}
}
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;
2017-06-25 12:17:09 +02:00
RpClump* pOrigClump = reinterpret_cast<RpClump*>(ms_modelInfoPtrs[ modelID ]->pRwObject);
if ( pOrigClump != nullptr )
{
RwFrame* origFrame = GetFrameFromName( RpClumpGetFrame(pOrigClump), GetFrameNodeName(m_pCarNode[20]) );
if ( origFrame != nullptr )
{
*RwFrameGetMatrix(m_pCarNode[20]) = *RwFrameGetMatrix(origFrame);
}
}
2017-06-23 00:11:17 +02:00
float finalAngle = 0.0f;
if ( m_fGasPedal > 0.0f )
{
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;
if ( GetStatus() == STATUS_PLAYER || GetStatus() == STATUS_PHYSICS || GetStatus() == STATUS_SIMPLE )
2017-06-25 12:17:09 +02:00
{
if ( m_pCarNode[20] == nullptr )
{
m_pCarNode[20] = GetFrameFromName( RpClumpGetFrame(m_pRwObject), "misca" );
}
if ( m_pCarNode[21] == nullptr )
{
m_pCarNode[21] = GetFrameFromName( RpClumpGetFrame(m_pRwObject), "miscb" );
}
2017-06-25 12:17:09 +02:00
const float angle = CTimer::m_fTimeStep * SWEEPER_BRUSH_SPEED;
2017-09-08 00:16:31 +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
}
void CAutomobile::ProcessNewsvan()
{
if ( GetStatus() == STATUS_PLAYER )
{
// 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 );
}
}
CVehicle* CStoredCar::RestoreCar_SilentPatch()
{
CVehicle* vehicle = (this->*(orgRestoreCar))();
if ( vehicle == nullptr ) return nullptr;
if ( m_bombType != 0 )
{
// Fixup bomb stuff
if ( vehicle->GetClass() == VEHICLE_AUTOMOBILE || vehicle->GetClass() == VEHICLE_BIKE )
{
vehicle->SetBombOnBoard( m_bombType );
vehicle->SetBombOwner( FindPlayerPed(-1) );
}
}
return vehicle;
}