mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix rare crash
Rare crash when the sqvm tries to look for an animation sequence on a missing prop_dynamic model (mdl/error.rmdl doesn't support animations), its purely to indicate there is a problem).
This commit is contained in:
parent
97fb3fd8d4
commit
7dd107916c
@ -86,6 +86,7 @@
|
||||
#include "engine/gl_rsurf.h"
|
||||
#include "engine/debugoverlay.h"
|
||||
#endif // !DEDICATED
|
||||
#include "game/shared/animation.h"
|
||||
#ifndef CLIENT_DLL
|
||||
#include "game/server/ai_node.h"
|
||||
#include "game/server/ai_network.h"
|
||||
@ -201,6 +202,7 @@ void Systems_Init()
|
||||
RSurf_Attach();
|
||||
#endif // !DEDICATED
|
||||
|
||||
Animation_Attach();
|
||||
#ifndef CLIENT_DLL
|
||||
CAI_Utility_Attach();
|
||||
CAI_Network_Attach();
|
||||
@ -311,6 +313,7 @@ void Systems_Shutdown()
|
||||
RSurf_Detach();
|
||||
#endif // !DEDICATED
|
||||
|
||||
Animation_Detach();
|
||||
#ifndef CLIENT_DLL
|
||||
CAI_Utility_Detach();
|
||||
CAI_Network_Detach();
|
||||
|
30
r5dev/game/shared/animation.cpp
Normal file
30
r5dev/game/shared/animation.cpp
Normal file
@ -0,0 +1,30 @@
|
||||
//=============================================================================//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
#include "core/stdafx.h"
|
||||
#include "public/include/studio.h"
|
||||
#include "game/shared/animation.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
int CStudioHdr::LookupSequence(CStudioHdr* pStudio, const char* pszName)
|
||||
{
|
||||
if (!pStudio->m_pMdlCacheVTable)
|
||||
return -1; // animations are unavailable for missing dynamic props! (mdl/error.rmdl).
|
||||
|
||||
return v_CStudioHdr__LookupSequence(pStudio, pszName);
|
||||
}
|
||||
|
||||
void Animation_Attach()
|
||||
{
|
||||
DetourAttach((LPVOID*)&v_CStudioHdr__LookupSequence, &CStudioHdr::LookupSequence);
|
||||
}
|
||||
|
||||
void Animation_Detach()
|
||||
{
|
||||
DetourDetach((LPVOID*)&v_CStudioHdr__LookupSequence, &CStudioHdr::LookupSequence);
|
||||
}
|
31
r5dev/game/shared/animation.h
Normal file
31
r5dev/game/shared/animation.h
Normal file
@ -0,0 +1,31 @@
|
||||
#ifndef ANIMATION_H
|
||||
#define ANIMATION_H
|
||||
|
||||
inline CMemory p_CStudioHdr__LookupSequence;
|
||||
inline auto v_CStudioHdr__LookupSequence = p_CStudioHdr__LookupSequence.RCast<int(*)(CStudioHdr* pStudio, const char* pszName)>();
|
||||
|
||||
void Animation_Attach();
|
||||
void Animation_Detach();
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
class HAnimation : public IDetour
|
||||
{
|
||||
virtual void GetAdr(void) const
|
||||
{
|
||||
std::cout << "| FUN: CStudioHdr::LookupSequence : 0x" << std::hex << std::uppercase << p_CStudioHdr__LookupSequence.GetPtr() << std::setw(nPad) << " |" << std::endl;
|
||||
std::cout << "+----------------------------------------------------------------+" << std::endl;
|
||||
}
|
||||
virtual void GetFun(void) const
|
||||
{
|
||||
p_CStudioHdr__LookupSequence = g_mGameDll.FindPatternSIMD(reinterpret_cast<rsig_t>("\x40\x53\x48\x83\xEC\x20\x48\x8B\xD9\x4C\x8B\xC2\x48\x8B\x89\x00\x00\x00\x00"), "xxxxxxxxxxxxxxx????");
|
||||
v_CStudioHdr__LookupSequence = p_CStudioHdr__LookupSequence.RCast<int(*)(CStudioHdr*, const char*)>(); /*40 53 48 83 EC 20 48 8B D9 4C 8B C2 48 8B 89 ?? ?? ?? ??*/
|
||||
}
|
||||
virtual void GetVar(void) const { }
|
||||
virtual void GetCon(void) const { }
|
||||
virtual void Attach(void) const { }
|
||||
virtual void Detach(void) const { }
|
||||
};
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
REGISTER(HAnimation);
|
||||
|
||||
#endif // ANIMATION_H
|
@ -67,4 +67,15 @@ struct studiohdr_t
|
||||
};
|
||||
#pragma pack(pop)
|
||||
|
||||
class CStudioHdr
|
||||
{
|
||||
public:
|
||||
static int LookupSequence(CStudioHdr* pStudio, const char* pszName);
|
||||
|
||||
int64_t m_nUnk0;
|
||||
studiohdr_t* m_pStudioHdr;
|
||||
uint8_t m_Pad[0x85A]; // Compatible between S0 - S3.
|
||||
void* m_pMdlCacheVTable;
|
||||
};
|
||||
|
||||
#endif // STUDIO_H
|
||||
|
@ -54,6 +54,7 @@
|
||||
<ClCompile Include="..\game\server\ai_networkmanager.cpp" />
|
||||
<ClCompile Include="..\game\server\ai_utility.cpp" />
|
||||
<ClCompile Include="..\game\server\gameinterface.cpp" />
|
||||
<ClCompile Include="..\game\shared\animation.cpp" />
|
||||
<ClCompile Include="..\inputsystem\inputsystem.cpp" />
|
||||
<ClCompile Include="..\launcher\IApplication.cpp" />
|
||||
<ClCompile Include="..\launcher\launcher.cpp" />
|
||||
@ -180,6 +181,7 @@
|
||||
<ClInclude Include="..\game\server\detour_impl.h" />
|
||||
<ClInclude Include="..\game\server\fairfight_impl.h" />
|
||||
<ClInclude Include="..\game\server\gameinterface.h" />
|
||||
<ClInclude Include="..\game\shared\animation.h" />
|
||||
<ClInclude Include="..\inputsystem\ButtonCode.h" />
|
||||
<ClInclude Include="..\inputsystem\inputsystem.h" />
|
||||
<ClInclude Include="..\launcher\IApplication.h" />
|
||||
|
@ -181,6 +181,9 @@
|
||||
<Filter Include="sdk\public\avi">
|
||||
<UniqueIdentifier>{67444ecb-b115-4231-a33b-aab424f785fc}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="sdk\game\shared">
|
||||
<UniqueIdentifier>{bb7fbc8a-906a-4322-b8d6-04a495e69a12}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\client\vengineclient_impl.cpp">
|
||||
@ -474,6 +477,9 @@
|
||||
<ClCompile Include="..\engine\gl_rsurf.cpp">
|
||||
<Filter>sdk\engine</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\game\shared\animation.cpp">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\client\cdll_engine_int.h">
|
||||
@ -1328,6 +1334,9 @@
|
||||
<ClInclude Include="..\tier0\threadtools.h">
|
||||
<Filter>sdk\tier0</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\game\shared\animation.h">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
Loading…
x
Reference in New Issue
Block a user