mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-11-22 05:22:32 +01:00
b7cf823ee7
Use make_checked_array_iterator properly where applicable
156 lines
5.3 KiB
C++
156 lines
5.3 KiB
C++
#include "StdAfxSA.h"
|
|
#include "ModelInfoSA.h"
|
|
|
|
#include <iterator>
|
|
|
|
static void* BaseModelInfoShutdown = AddressByVersion<void*>(0x4C4D50, 0x4C4DD0, 0x4CF590);
|
|
WRAPPER void CBaseModelInfo::Shutdown() { VARJMP(BaseModelInfoShutdown); }
|
|
|
|
// static unsigned char* ms_currentCol = *AddressByVersion<unsigned char**>(0x4C84C8, 0x4C86C8, 0x4D2DC8);
|
|
static void* varSetVehicleColour = AddressByVersion<void*>( 0x4C84B0, 0, 0 ); // TODO: DO
|
|
WRAPPER void CVehicleModelInfo::SetVehicleColour( int32_t color1, int32_t color2, int32_t color3, int32_t color4 ) { VARJMP(varSetVehicleColour); }
|
|
|
|
RwTexture* (*CCustomCarPlateMgr::CreatePlateTexture)(const char* pText, signed char nDesign) = AddressByVersion<RwTexture*(*)(const char*,signed char)>(0x6FDEA0, 0x6FE6D0, 0x736AC0);
|
|
signed char (*CCustomCarPlateMgr::GetMapRegionPlateDesign)() = AddressByVersion<signed char(*)()>(0x6FD7A0, 0x6FDFD0, 0x7363E0);
|
|
void (*CCustomCarPlateMgr::SetupMaterialPlatebackTexture)(RpMaterial* pMaterial, signed char nDesign) = AddressByVersion<void(*)(RpMaterial*,signed char)>(0x6FDE50, 0x6FE680, 0x736A80);
|
|
|
|
bool (*CCustomCarPlateMgr::GeneratePlateText)(char* pBuf, int nLen); // Read from InjectDelayedPatches
|
|
|
|
CBaseModelInfo** const ms_modelInfoPtrs = *AddressByVersion<CBaseModelInfo***>(0x509CB1, 0x4C0C96, 0x403DB7);
|
|
const uint32_t m_numModelInfoPtrs = *AddressByVersion<uint32_t*>(0x4C5956+2, 0, 0);
|
|
|
|
|
|
static RwTexture** const ms_aDirtTextures = *AddressByVersion<RwTexture***>( 0x5D5DCC + 3, 0, 0x5F259C + 3 );
|
|
void RemapDirt( CVehicleModelInfo* modelInfo, uint32_t dirtID )
|
|
{
|
|
RpMaterial** materials = modelInfo->m_numDirtMaterials > CVehicleModelInfo::IN_PLACE_BUFFER_DIRT_SIZE ? modelInfo->m_dirtMaterials : modelInfo->m_staticDirtMaterials;
|
|
|
|
for ( size_t i = 0; i < modelInfo->m_numDirtMaterials; i++ )
|
|
{
|
|
RpMaterialSetTexture( materials[i], ms_aDirtTextures[dirtID] );
|
|
}
|
|
}
|
|
|
|
void CVehicleModelInfo::Shutdown()
|
|
{
|
|
CBaseModelInfo::Shutdown();
|
|
|
|
delete m_dirtMaterials;
|
|
m_dirtMaterials = nullptr;
|
|
|
|
delete m_apPlateMaterials;
|
|
m_apPlateMaterials = nullptr;
|
|
}
|
|
|
|
void CVehicleModelInfo::FindEditableMaterialList()
|
|
{
|
|
std::vector<RpMaterial*> editableMaterials;
|
|
|
|
auto GetEditableMaterialListCB = [&]( RpAtomic* atomic ) -> RpAtomic* {
|
|
RpGeometryForAllMaterials( RpAtomicGetGeometry(atomic), [&]( RpMaterial* material ) -> RpMaterial* {
|
|
if ( RwTexture* texture = RpMaterialGetTexture(material) )
|
|
{
|
|
if ( const char* texName = RwTextureGetName(texture) )
|
|
{
|
|
if ( _stricmp(texName, "vehiclegrunge256") == 0 )
|
|
{
|
|
editableMaterials.push_back( material );
|
|
}
|
|
}
|
|
}
|
|
return material;
|
|
} );
|
|
return atomic;
|
|
};
|
|
|
|
RpClumpForAllAtomics(reinterpret_cast<RpClump*>(pRwObject), GetEditableMaterialListCB);
|
|
|
|
for ( uint32_t i = 0; i < m_pVehicleStruct->m_nNumExtras; i++ )
|
|
GetEditableMaterialListCB(m_pVehicleStruct->m_apExtras[i]);
|
|
|
|
m_numDirtMaterials = editableMaterials.size();
|
|
if ( m_numDirtMaterials > IN_PLACE_BUFFER_DIRT_SIZE )
|
|
{
|
|
m_dirtMaterials = new RpMaterial* [m_numDirtMaterials];
|
|
std::copy( editableMaterials.begin(), editableMaterials.end(), stdext::make_checked_array_iterator(m_dirtMaterials, m_numDirtMaterials) );
|
|
}
|
|
else
|
|
{
|
|
m_dirtMaterials = nullptr;
|
|
|
|
// Use existing space instead of allocating new space
|
|
std::copy( editableMaterials.begin(), editableMaterials.end(), m_staticDirtMaterials );
|
|
}
|
|
|
|
m_nPrimaryColor = -1;
|
|
m_nSecondaryColor = -1;
|
|
m_nTertiaryColor = -1;
|
|
m_nQuaternaryColor = -1;
|
|
}
|
|
|
|
void CVehicleModelInfo::SetCarCustomPlate()
|
|
{
|
|
m_plateText[0] = '\0';
|
|
m_nPlateType = -1;
|
|
|
|
m_apPlateMaterials = new PlateMaterialsData;
|
|
|
|
CCustomCarPlateMgr::SetupClump(reinterpret_cast<RpClump*>(pRwObject), m_apPlateMaterials);
|
|
}
|
|
|
|
void CCustomCarPlateMgr::PollPlates( RpClump* clump, PlateMaterialsData* materials )
|
|
{
|
|
std::vector<RpMaterial*> carplates;
|
|
std::vector<RpMaterial*> carpbacks;
|
|
|
|
RpClumpForAllAtomics( clump, [&] ( RpAtomic* atomic ) -> RpAtomic* {
|
|
RpGeometryForAllMaterials( RpAtomicGetGeometry(atomic), [&] ( RpMaterial* material ) -> RpMaterial* {
|
|
if ( RwTexture* texture = RpMaterialGetTexture(material) )
|
|
{
|
|
if ( const char* texName = RwTextureGetName(texture) )
|
|
{
|
|
if ( _stricmp( texName, "carplate" ) == 0 )
|
|
{
|
|
carplates.push_back( material );
|
|
}
|
|
else if ( _stricmp( texName, "carpback" ) == 0 )
|
|
{
|
|
carpbacks.push_back( material );
|
|
}
|
|
}
|
|
}
|
|
|
|
return material;
|
|
} );
|
|
return atomic;
|
|
} );
|
|
|
|
materials->m_numPlates = carplates.size();
|
|
materials->m_numPlatebacks = carpbacks.size();
|
|
|
|
if ( materials->m_numPlates > 0 )
|
|
{
|
|
materials->m_plates = new RpMaterial* [materials->m_numPlates];
|
|
std::copy( carplates.begin(), carplates.end(), stdext::make_checked_array_iterator(materials->m_plates, materials->m_numPlates) );
|
|
}
|
|
|
|
if ( materials->m_numPlatebacks > 0 )
|
|
{
|
|
materials->m_platebacks = new RpMaterial* [materials->m_numPlatebacks];
|
|
std::copy( carpbacks.begin(), carpbacks.end(), stdext::make_checked_array_iterator(materials->m_platebacks, materials->m_numPlatebacks) );
|
|
}
|
|
}
|
|
|
|
void CCustomCarPlateMgr::SetupClump(RpClump* pClump, PlateMaterialsData* pMatsArray)
|
|
{
|
|
PollPlates( pClump, pMatsArray );
|
|
}
|
|
|
|
void CCustomCarPlateMgr::SetupClumpAfterVehicleUpgrade(RpClump* pClump, PlateMaterialsData* pMatsArray, signed char nDesign)
|
|
{
|
|
UNREFERENCED_PARAMETER(nDesign);
|
|
if ( pMatsArray != nullptr )
|
|
{
|
|
PollPlates( pClump, pMatsArray );
|
|
}
|
|
} |