mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add CUserCmd class to SDK
Implemented CUserCmd to SDK. Constructor resets the class using the game's 'Reset' implementation as the majority of the structure is unknown.
This commit is contained in:
parent
b2ffab07c3
commit
afe8efbc2a
76
r5dev/game/shared/usercmd.h
Normal file
76
r5dev/game/shared/usercmd.h
Normal file
@ -0,0 +1,76 @@
|
||||
//====== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. =======//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//
|
||||
//=============================================================================//
|
||||
#if !defined( USERCMD_H )
|
||||
#define USERCMD_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include "public/utility/memaddr.h"
|
||||
#include "mathlib/vector.h"
|
||||
|
||||
//-------------------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
//-------------------------------------------------------------------------------------
|
||||
class CUserCmd;
|
||||
|
||||
inline CMemory p_CUserCmd__Reset;
|
||||
inline auto v_CUserCmd__Reset = p_CUserCmd__Reset.RCast<void(*)(CUserCmd* pUserCmd)>();
|
||||
|
||||
//-------------------------------------------------------------------------------------
|
||||
//
|
||||
//-------------------------------------------------------------------------------------
|
||||
class CUserCmd
|
||||
{
|
||||
public:
|
||||
CUserCmd() // Cannot be constructed during DLL init.
|
||||
{
|
||||
v_CUserCmd__Reset(this);
|
||||
}
|
||||
|
||||
int32_t command_number;
|
||||
int32_t tick_count;
|
||||
float curtime;
|
||||
QAngle viewangles;
|
||||
char pad_0x0018[12];
|
||||
float forwardmove;
|
||||
float sidemove;
|
||||
float upmove;
|
||||
int32_t buttons;
|
||||
char pad_0x0034[336];
|
||||
int32_t randomseed;
|
||||
char pad_0x0188[8];
|
||||
Vector3D headposition;
|
||||
float maxpitch;
|
||||
char pad_0x01A0[224];
|
||||
};
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
class VUserCmd : public IDetour
|
||||
{
|
||||
virtual void GetAdr(void) const
|
||||
{
|
||||
spdlog::debug("| FUN: CUserCmd::Reset : {:#18x} |\n", p_CUserCmd__Reset.GetPtr());
|
||||
spdlog::debug("+----------------------------------------------------------------+\n");
|
||||
}
|
||||
virtual void GetFun(void) const
|
||||
{
|
||||
p_CUserCmd__Reset = g_GameDll.FindPatternSIMD("E8 ?? ?? ?? ?? 83 FD FF 74 0A").FollowNearCallSelf();
|
||||
v_CUserCmd__Reset = p_CUserCmd__Reset.RCast<void(*)(CUserCmd*)>();
|
||||
}
|
||||
virtual void GetVar(void) const { }
|
||||
virtual void GetCon(void) const { }
|
||||
virtual void Attach(void) const { }
|
||||
virtual void Detach(void) const { }
|
||||
};
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
REGISTER(VUserCmd);
|
||||
|
||||
#endif // USERCMD_H
|
@ -241,6 +241,7 @@
|
||||
<ClInclude Include="..\game\shared\shareddefs.h" />
|
||||
<ClInclude Include="..\game\shared\shared_classnames.h" />
|
||||
<ClInclude Include="..\game\shared\takedamageinfo.h" />
|
||||
<ClInclude Include="..\game\shared\usercmd.h" />
|
||||
<ClInclude Include="..\inputsystem\ButtonCode.h" />
|
||||
<ClInclude Include="..\inputsystem\inputsystem.h" />
|
||||
<ClInclude Include="..\launcher\IApplication.h" />
|
||||
|
@ -1931,6 +1931,9 @@
|
||||
<ClInclude Include="..\game\shared\shareddefs.h">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\game\shared\usercmd.h">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
@ -197,6 +197,7 @@
|
||||
<ClInclude Include="..\game\shared\shareddefs.h" />
|
||||
<ClInclude Include="..\game\shared\shared_classnames.h" />
|
||||
<ClInclude Include="..\game\shared\takedamageinfo.h" />
|
||||
<ClInclude Include="..\game\shared\usercmd.h" />
|
||||
<ClInclude Include="..\launcher\IApplication.h" />
|
||||
<ClInclude Include="..\launcher\launcher.h" />
|
||||
<ClInclude Include="..\launcher\prx.h" />
|
||||
|
@ -1362,6 +1362,9 @@
|
||||
<ClInclude Include="..\game\shared\shareddefs.h">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\game\shared\usercmd.h">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\common\opcodes.cpp">
|
||||
|
@ -273,6 +273,7 @@
|
||||
<ClInclude Include="..\game\shared\shareddefs.h" />
|
||||
<ClInclude Include="..\game\shared\shared_classnames.h" />
|
||||
<ClInclude Include="..\game\shared\takedamageinfo.h" />
|
||||
<ClInclude Include="..\game\shared\usercmd.h" />
|
||||
<ClInclude Include="..\inputsystem\ButtonCode.h" />
|
||||
<ClInclude Include="..\inputsystem\inputsystem.h" />
|
||||
<ClInclude Include="..\launcher\IApplication.h" />
|
||||
|
@ -2075,6 +2075,9 @@
|
||||
<ClInclude Include="..\game\shared\shareddefs.h">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\game\shared\usercmd.h">
|
||||
<Filter>sdk\game\shared</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\shared\resource\lockedserver.png">
|
||||
|
Loading…
x
Reference in New Issue
Block a user