From 9a8db42575e719caed100f839548cf00ef2e4e29 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 13 Feb 2023 23:46:37 +0100 Subject: [PATCH] Improve and fix 'CStudioHdr' * Fixed crash that occurred due to misaligned member 'm_pMdlCacheVTable' which has been retyped to 'CMDLCache*' and renamed to 'm_pMDLCache' (actual object). * Added mapped out member 'm_pModelName'. --- r5dev/public/studio.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/r5dev/public/studio.h b/r5dev/public/studio.h index a5d04e64..e75146d3 100644 --- a/r5dev/public/studio.h +++ b/r5dev/public/studio.h @@ -94,6 +94,11 @@ // If this flag is present the model has a secondary UV layer, and by extension (previously) a VVC (IDVC) file. #define STUDIOHDR_FLAGS_USES_UV2 (1 << 25) // 0x2000000 +//------------------------------------------------------------------------------------- +// Forward declarations +//------------------------------------------------------------------------------------- +class CMDLCache; + enum { STUDIODATA_FLAGS_STUDIOMESH_LOADED = 0x0001, @@ -1049,13 +1054,16 @@ private: void* vtbl; studiohdr_t* m_pStudioHdr; void* m_pVModel; // !TODO: 'virtualmodel_t'. - char gap0[156]; + char gap_18[156]; mstudiobbox_t m_pHitBox; - char gap_10[1896]; + char gap_e0[1888]; + const char* m_pModelName; int m_nPerfAnimatedBones; int m_nPerfUsedBones; int m_nPerfAnimationLayers; - void* m_pMdlCacheVTable; + void* m_pAnimData_Maybe; + char gap_860[16]; + CMDLCache* m_pMDLCache; }; class CStudioHWDataRef