mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
ConVar/ConCommand class refactor and bug fixes
* Refactored ConCommandBase, ConCommand and ConVar class to make them all virtual, so it could interface with the game's implementation. * Properly initialize members for ConCommand and ConVar instead of just calling memset. * Fixed bug in ConVar registration function causing the virtual base table pointer to point to the ConCommand implementation instead of the ConVar implementation.
This commit is contained in:
parent
c86122f63e
commit
9e7fbdca54
@ -382,7 +382,6 @@ void DetourRegister() // Register detour classes to be searched and hooked.
|
||||
// Tier1
|
||||
REGISTER(VCommandLine);
|
||||
REGISTER(VConCommand);
|
||||
REGISTER(VConVar);
|
||||
REGISTER(VCVar);
|
||||
|
||||
// VPC
|
||||
|
@ -40,7 +40,7 @@ bool CSourceAppSystemGroup::PreInit(CSourceAppSystemGroup* pSourceAppSystemGroup
|
||||
{
|
||||
ConVar::InitShipped();
|
||||
ConVar::PurgeShipped();
|
||||
ConCommand::Init();
|
||||
ConCommand::StaticInit();
|
||||
ConCommand::InitShipped();
|
||||
ConCommand::PurgeShipped();
|
||||
return CSourceAppSystemGroup__PreInit(pSourceAppSystemGroup);
|
||||
|
@ -129,7 +129,7 @@ typedef void (*FnChangeCallback_t)(IConVar* var, const char* pOldValue, float fl
|
||||
abstract_class IConVar
|
||||
{
|
||||
public:
|
||||
virtual ~IConVar() = 0;
|
||||
virtual ~IConVar() { };
|
||||
|
||||
// Value set
|
||||
virtual void SetValue(const char* pValue) = 0;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,157 +1 @@
|
||||
#pragma once
|
||||
#include "tier1/cmd.h"
|
||||
#include "mathlib/color.h"
|
||||
#include "public/iconvar.h"
|
||||
#include "tier1/utlvector.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: A console variable
|
||||
//-----------------------------------------------------------------------------
|
||||
class ConVar : public ConCommandBase
|
||||
{
|
||||
public:
|
||||
static ConVar* Create(const char* pszName, const char* pszDefaultValue, int nFlags, const char* pszHelpString,
|
||||
bool bMin, float fMin, bool bMax, float fMax, FnChangeCallback_t pCallback, const char* pszUsageString);
|
||||
void Destroy(void);
|
||||
|
||||
ConVar(void);
|
||||
~ConVar(void);
|
||||
|
||||
static void Init(void);
|
||||
static void InitShipped(void);
|
||||
|
||||
static void PurgeShipped(void);
|
||||
static void PurgeHostNames(void);
|
||||
|
||||
void AddFlags(int nFlags);
|
||||
void RemoveFlags(int nFlags);
|
||||
|
||||
const char* GetBaseName(void) const;
|
||||
const char* GetHelpText(void) const;
|
||||
const char* GetUsageText(void) const;
|
||||
|
||||
bool GetBool(void) const;
|
||||
float GetFloat(void) const;
|
||||
double GetDouble(void) const;
|
||||
int GetInt(void) const;
|
||||
int64_t GetInt64(void) const;
|
||||
size_t GetSizeT(void) const;
|
||||
Color GetColor(void) const;
|
||||
const char* GetString(void) const;
|
||||
|
||||
void SetMax(float flMaxValue);
|
||||
void SetMin(float flMinValue);
|
||||
bool GetMin(float& flMinValue) const;
|
||||
bool GetMax(float& flMaxValue) const;
|
||||
float GetMinValue(void) const;
|
||||
float GetMaxValue(void) const;
|
||||
bool HasMin(void) const;
|
||||
bool HasMax(void) const;
|
||||
|
||||
void SetValue(int nValue);
|
||||
void SetValue(float flValue);
|
||||
void SetValue(const char* pszValue);
|
||||
void SetValue(Color clValue);
|
||||
|
||||
void InternalSetValue(const char* pszValue);
|
||||
void InternalSetIntValue(int nValue);
|
||||
void InternalSetFloatValue(float flValue);
|
||||
void InternalSetColorValue(Color value);
|
||||
|
||||
void Revert(void);
|
||||
bool ClampValue(float& flValue);
|
||||
|
||||
const char* GetDefault(void) const;
|
||||
void SetDefault(const char* pszDefault);
|
||||
bool SetColorFromString(const char* pszValue);
|
||||
|
||||
void ChangeStringValue(const char* pszTempValue);
|
||||
void ChangeStringValueUnsafe(const char* pszNewValue);
|
||||
|
||||
void InstallChangeCallback(FnChangeCallback_t callback, bool bInvoke);
|
||||
void RemoveChangeCallback(FnChangeCallback_t callback);
|
||||
|
||||
bool IsRegistered(void) const;
|
||||
bool IsCommand(void) const;
|
||||
|
||||
bool IsFlagSet(int nFlags) const { return IsFlagSetInternal(this, nFlags); };
|
||||
static bool IsFlagSetInternal(const ConVar* pConVar, int nFlags);
|
||||
|
||||
struct CVValue_t
|
||||
{
|
||||
char* m_pszString;
|
||||
size_t m_iStringLength;
|
||||
float m_fValue;
|
||||
int m_nValue;
|
||||
};
|
||||
|
||||
IConVar* m_pIConVarVFTable; //0x0040
|
||||
ConVar* m_pParent ; //0x0048
|
||||
const char* m_pszDefaultValue; //0x0050
|
||||
CVValue_t m_Value ; //0c0058
|
||||
bool m_bHasMin ; //0x0070
|
||||
float m_fMinVal ; //0x0074
|
||||
bool m_bHasMax ; //0x0078
|
||||
float m_fMaxVal ; //0x007C
|
||||
CUtlVector<FnChangeCallback_t> m_fnChangeCallbacks; //0x0080
|
||||
}; //Size: 0x00A0
|
||||
static_assert(sizeof(ConVar) == 0xA0);
|
||||
|
||||
/* ==== ICONVAR ========================================================================================================================================================= */
|
||||
inline CMemory p_ConVar_Register;
|
||||
inline auto v_ConVar_Register = p_ConVar_Register.RCast<void* (*)(ConVar* thisptr, const char* szName, const char* szDefaultValue, int nFlags, const char* szHelpString, bool bMin, float fMin, bool bMax, float fMax, FnChangeCallback_t pCallback, const char* pszUsageString)>();
|
||||
|
||||
inline CMemory p_ConVar_Unregister;
|
||||
inline auto v_ConVar_Unregister = p_ConVar_Unregister.RCast<void (*)(ConVar* thisptr)>();
|
||||
|
||||
inline CMemory p_ConVar_IsFlagSet;
|
||||
inline auto v_ConVar_IsFlagSet = p_ConVar_IsFlagSet.RCast<bool (*)(ConVar* pConVar, int nFlag)>();
|
||||
|
||||
inline CMemory p_ConVar_PrintDescription;
|
||||
inline auto v_ConVar_PrintDescription = p_ConVar_PrintDescription.RCast<void* (*)(ConCommandBase* pVar)>();
|
||||
|
||||
inline CMemory g_pConVarVBTable;
|
||||
inline CMemory g_pConVarVFTable;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
void ConVar_PrintDescription(ConCommandBase* pVar);
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
class VConVar : public IDetour
|
||||
{
|
||||
virtual void GetAdr(void) const
|
||||
{
|
||||
LogConAdr("ConVar::`vbtable'", g_pConVarVBTable.GetPtr());
|
||||
LogConAdr("ConVar::`vftable'", g_pConVarVFTable.GetPtr());
|
||||
LogFunAdr("ConVar::Register", p_ConVar_Register.GetPtr());
|
||||
LogFunAdr("ConVar::Unregister", p_ConVar_Unregister.GetPtr());
|
||||
LogFunAdr("ConVar::IsFlagSet", p_ConVar_IsFlagSet.GetPtr());
|
||||
LogFunAdr("ConVar_PrintDescription", p_ConVar_PrintDescription.GetPtr());
|
||||
}
|
||||
virtual void GetFun(void) const
|
||||
{
|
||||
#if defined (GAMEDLL_S0) || defined (GAMEDLL_S1)
|
||||
p_ConVar_Register = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 48 89 7C 24 ?? 41 56 48 83 EC 30 F3 0F 10 44 24 ??");
|
||||
p_ConVar_Unregister = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 57 48 83 EC 20 48 8B 59 58 48 8D 05 ?? ?? ?? ??");
|
||||
#elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3)
|
||||
p_ConVar_Register = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 83 EC 40 F3 0F 10 84 24 ?? ?? ?? ??");
|
||||
p_ConVar_Unregister = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 8B 79 58");
|
||||
#endif
|
||||
p_ConVar_IsFlagSet = g_GameDll.FindPatternSIMD("48 8B 41 48 85 50 38");
|
||||
p_ConVar_PrintDescription = g_GameDll.FindPatternSIMD("B8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 2B E0 48 8B 01 48 89 9C 24 ?? ?? ?? ??");
|
||||
|
||||
v_ConVar_IsFlagSet = p_ConVar_IsFlagSet.RCast<bool (*)(ConVar*, int)>();
|
||||
v_ConVar_Register = p_ConVar_Register.RCast<void* (*)(ConVar*, const char*, const char*, int, const char*, bool, float, bool, float, FnChangeCallback_t, const char*)>();
|
||||
v_ConVar_Unregister = p_ConVar_Unregister.RCast<void (*)(ConVar*)>();
|
||||
v_ConVar_PrintDescription = p_ConVar_PrintDescription.RCast<void* (*)(ConCommandBase*)>();
|
||||
}
|
||||
virtual void GetVar(void) const { }
|
||||
virtual void GetCon(void) const
|
||||
{
|
||||
g_pConVarVBTable = g_GameDll.GetVirtualMethodTable(".?AVConVar@@", 0);
|
||||
g_pConVarVFTable = g_GameDll.GetVirtualMethodTable(".?AVConVar@@", 1);
|
||||
}
|
||||
virtual void Attach(void) const;
|
||||
virtual void Detach(void) const;
|
||||
};
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
1088
r5dev/tier1/cmd.cpp
1088
r5dev/tier1/cmd.cpp
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,23 @@
|
||||
#pragma once
|
||||
//===== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ======//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $Workfile: $
|
||||
// $Date: $
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
// $NoKeywords: $
|
||||
//===========================================================================//
|
||||
|
||||
#ifndef CONVAR_H
|
||||
#define CONVAR_H
|
||||
|
||||
#include "tier1/utlvector.h"
|
||||
#include "tier1/utlstring.h"
|
||||
#include "tier1/characterset.h"
|
||||
#include "public/iconvar.h"
|
||||
#include "public/iconcommand.h"
|
||||
#include "mathlib/color.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Forward declarations
|
||||
@ -91,35 +105,44 @@ private:
|
||||
class ConCommandBase
|
||||
{
|
||||
public:
|
||||
virtual ~ConCommandBase(void) { };
|
||||
|
||||
virtual bool IsCommand(void) const = 0;
|
||||
virtual bool IsFlagSet(int nFlags) const = 0;
|
||||
|
||||
virtual void AddFlags(int nFlags) = 0;
|
||||
virtual void RemoveFlags(int nFlags) = 0;
|
||||
|
||||
virtual int GetFlags(void) const = 0;
|
||||
// Official name 'GetName', couldn't be used due to name ambiguity
|
||||
// with the 'GetName' function in the IConVar class.
|
||||
virtual const char* GetName(void) const = 0;
|
||||
virtual const char* GetHelpText(void) const = 0;
|
||||
virtual const char* GetUsageText(void) const = 0;
|
||||
|
||||
virtual void SetAccessor(IConCommandBaseAccessor* pAccessor) = 0;
|
||||
virtual bool IsRegistered(void) const = 0;
|
||||
|
||||
virtual int GetDLLIdentifier() const = 0;
|
||||
virtual ConCommandBase* Create (const char* szName, const char* szHelpString,
|
||||
int nFlags, const char* pszUsageString) = 0;
|
||||
|
||||
virtual void Init() = 0;
|
||||
|
||||
bool HasFlags(int nFlags) const;
|
||||
void AddFlags(int nFlags);
|
||||
void RemoveFlags(int nFlags);
|
||||
|
||||
bool IsCommand(void) const;
|
||||
bool IsRegistered(void) const;
|
||||
|
||||
bool IsFlagSet(int nFlags) const { return IsFlagSetInternal(this, nFlags); };
|
||||
static bool IsFlagSetInternal(const ConCommandBase* pCommandBase, int nFlags);
|
||||
|
||||
int GetFlags(void) const;
|
||||
ConCommandBase* GetNext(void) const;
|
||||
const char* GetName(void) const;
|
||||
const char* GetHelpText(void) const;
|
||||
const char* GetUsageText(void) const;
|
||||
|
||||
char* CopyString(const char* szFrom) const;
|
||||
|
||||
IConCommandBase* m_pConCommandBaseVFTable; //0x0000
|
||||
ConCommandBase* m_pNext; //0x0008
|
||||
bool m_bRegistered; //0x0010
|
||||
char pad_0011[7]; //0x0011
|
||||
const char* m_pszName; //0x0018
|
||||
const char* m_pszHelpString; //0x0020
|
||||
const char* m_pszUsageString; //0x0028
|
||||
IConCommandBaseAccessor* s_pAccessor; //0x0030 <-- unused since executable is monolithic.
|
||||
int m_nFlags; //0x0038
|
||||
char pad_003C[4]; //0x003C
|
||||
}; //Size: 0x0040
|
||||
static_assert(sizeof(ConCommandBase) == 0x40);
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: The console invoked command
|
||||
@ -128,19 +151,17 @@ class ConCommand : public ConCommandBase
|
||||
{
|
||||
friend class CCvar;
|
||||
public:
|
||||
static ConCommand* Create(const char* szName, const char* szHelpString, const char* pszUsageString,
|
||||
ConCommand(void);
|
||||
|
||||
static ConCommand* StaticCreate(const char* szName, const char* szHelpString, const char* pszUsageString,
|
||||
int nFlags, FnCommandCallback_t pCallback, FnCommandCompletionCallback pCommandCompletionCallback);
|
||||
|
||||
ConCommand(void);
|
||||
~ConCommand(void);
|
||||
|
||||
static void Init(void);
|
||||
static void StaticInit(void);
|
||||
static void InitShipped(void);
|
||||
static void PurgeShipped(void);
|
||||
bool IsCommand(void) const;
|
||||
|
||||
/*virtual*/ int AutoCompleteSuggest(const char* partial, CUtlVector< CUtlString >& commands);
|
||||
/*virtual*/ bool CanAutoComplete(void) const;
|
||||
virtual int AutoCompleteSuggest(const char* partial, CUtlVector< CUtlString >& commands) = 0;
|
||||
virtual bool CanAutoComplete(void) const = 0;
|
||||
|
||||
void* m_nNullCallBack; //0x0040
|
||||
void* m_pSubCallback; //0x0048
|
||||
@ -154,7 +175,7 @@ public:
|
||||
|
||||
union
|
||||
{
|
||||
FnCommandCompletionCallback m_fnCompletionCallback;
|
||||
FnCommandCompletionCallback m_fnCompletionCallback;
|
||||
ICommandCompletionCallback* m_pCommandCompletionCallback;
|
||||
};
|
||||
|
||||
@ -163,6 +184,99 @@ public:
|
||||
bool m_bUsingCommandCallbackInterface : 1;
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: A console variable
|
||||
//-----------------------------------------------------------------------------
|
||||
class ConVar : public ConCommandBase, public IConVar
|
||||
{
|
||||
friend class CCvar;
|
||||
friend class ConVarRef;
|
||||
|
||||
public:
|
||||
static ConVar* StaticCreate(const char* pszName, const char* pszDefaultValue, int nFlags, const char* pszHelpString,
|
||||
bool bMin, float fMin, bool bMax, float fMax, FnChangeCallback_t pCallback, const char* pszUsageString);
|
||||
void Destroy(void);
|
||||
|
||||
ConVar(void);
|
||||
virtual ~ConVar(void) { };
|
||||
|
||||
static void Init(void);
|
||||
static void InitShipped(void);
|
||||
|
||||
static void PurgeShipped(void);
|
||||
static void PurgeHostNames(void);
|
||||
|
||||
bool GetBool(void) const;
|
||||
float GetFloat(void) const;
|
||||
double GetDouble(void) const;
|
||||
int GetInt(void) const;
|
||||
int64_t GetInt64(void) const;
|
||||
size_t GetSizeT(void) const;
|
||||
Color GetColor(void) const;
|
||||
const char* GetString(void) const;
|
||||
|
||||
void SetMax(float flMaxValue);
|
||||
void SetMin(float flMinValue);
|
||||
bool GetMin(float& flMinValue) const;
|
||||
bool GetMax(float& flMaxValue) const;
|
||||
float GetMinValue(void) const;
|
||||
float GetMaxValue(void) const;
|
||||
bool HasMin(void) const;
|
||||
bool HasMax(void) const;
|
||||
|
||||
void SetValue(int nValue);
|
||||
void SetValue(float flValue);
|
||||
void SetValue(const char* pszValue);
|
||||
void SetValue(Color clValue);
|
||||
|
||||
virtual void InternalSetValue(const char* pszValue) = 0;
|
||||
virtual void InternalSetFloatValue(float flValue) = 0;
|
||||
virtual void InternalSetIntValue(int nValue) = 0;
|
||||
void InternalSetColorValue(Color value);
|
||||
|
||||
virtual __int64 Unknown0(unsigned int a2) = 0;
|
||||
virtual __int64 Unknown1(const char* a2) = 0;
|
||||
|
||||
void Revert(void);
|
||||
virtual bool ClampValue(float& flValue) = 0;
|
||||
|
||||
const char* GetDefault(void) const;
|
||||
void SetDefault(const char* pszDefault);
|
||||
bool SetColorFromString(const char* pszValue);
|
||||
|
||||
virtual void ChangeStringValue(const char* pszTempValue) = 0;
|
||||
virtual void Create(const char* pszName, const char* pszDefaultValue, int nFlags, const char* pszHelpString,
|
||||
bool bMin, float fMin, bool bMax, float fMax, FnChangeCallback_t pCallback, const char* pszUsageString) = 0;
|
||||
|
||||
void InstallChangeCallback(FnChangeCallback_t callback, bool bInvoke);
|
||||
void RemoveChangeCallback(FnChangeCallback_t callback);
|
||||
|
||||
virtual bool IsFlagSet(int nFlags) { return (nFlags & m_pParent->m_nFlags) ? true : false; };
|
||||
virtual const char* GetName(void) const { return m_pParent->m_pszName; };
|
||||
|
||||
struct CVValue_t
|
||||
{
|
||||
char* m_pszString;
|
||||
size_t m_iStringLength;
|
||||
float m_fValue;
|
||||
int m_nValue;
|
||||
};
|
||||
|
||||
ConVar* m_pParent; //0x0048
|
||||
const char* m_pszDefaultValue; //0x0050
|
||||
CVValue_t m_Value; //0c0058
|
||||
bool m_bHasMin; //0x0070
|
||||
float m_fMinVal; //0x0074
|
||||
bool m_bHasMax; //0x0078
|
||||
float m_fMaxVal; //0x007C
|
||||
CUtlVector<FnChangeCallback_t> m_fnChangeCallbacks; //0x0080
|
||||
}; //Size: 0x00A0
|
||||
static_assert(sizeof(ConVar) == 0xA0);
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
void ConVar_PrintDescription(ConCommandBase* pVar);
|
||||
|
||||
|
||||
/* ==== COMMAND_BUFFER ================================================================================================================================================== */
|
||||
inline CMemory p_Cbuf_AddText;
|
||||
inline auto Cbuf_AddText = p_Cbuf_AddText.RCast<void (*)(ECommandTarget_t eTarget, const char* pText, cmd_source_t cmdSource)>();
|
||||
@ -186,7 +300,23 @@ inline auto NullSub = p_NullSub.RCast<void(*)(void)>();
|
||||
inline CMemory p_CallbackStub;
|
||||
inline FnCommandCompletionCallback CallbackStub = p_CallbackStub.RCast<FnCommandCompletionCallback>();
|
||||
|
||||
inline CMemory g_pConCommandVFTable;
|
||||
inline ConCommandBase* g_pConCommandVFTable;
|
||||
|
||||
/* ==== ICONVAR ========================================================================================================================================================= */
|
||||
inline CMemory p_ConVar_Register;
|
||||
inline auto v_ConVar_Register = p_ConVar_Register.RCast<void* (*)(ConVar* thisptr, const char* szName, const char* szDefaultValue, int nFlags, const char* szHelpString, bool bMin, float fMin, bool bMax, float fMax, FnChangeCallback_t pCallback, const char* pszUsageString)>();
|
||||
|
||||
inline CMemory p_ConVar_Unregister;
|
||||
inline auto v_ConVar_Unregister = p_ConVar_Unregister.RCast<void (*)(ConVar* thisptr)>();
|
||||
|
||||
inline CMemory p_ConVar_IsFlagSet;
|
||||
inline auto v_ConVar_IsFlagSet = p_ConVar_IsFlagSet.RCast<bool (*)(ConVar* pConVar, int nFlag)>();
|
||||
|
||||
inline CMemory p_ConVar_PrintDescription;
|
||||
inline auto v_ConVar_PrintDescription = p_ConVar_PrintDescription.RCast<void* (*)(ConCommandBase* pVar)>();
|
||||
|
||||
inline ConVar* g_pConVarVBTable;
|
||||
inline IConVar* g_pConVarVFTable;
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
ECommandTarget_t Cbuf_GetCurrentPlayer(void);
|
||||
@ -196,9 +326,15 @@ class VConCommand : public IDetour
|
||||
{
|
||||
virtual void GetAdr(void) const
|
||||
{
|
||||
LogConAdr("ConCommand::`vftable'", g_pConCommandVFTable.GetPtr());
|
||||
LogConAdr("ConCommand::AutoCompleteSuggest", p_ConCommand_AutoCompleteSuggest.GetPtr());
|
||||
LogConAdr("ConCommand::`vftable'", reinterpret_cast<uintptr_t>(g_pConCommandVFTable));
|
||||
LogConAdr("ConVar::`vbtable'", reinterpret_cast<uintptr_t>(g_pConVarVBTable));
|
||||
LogConAdr("ConVar::`vftable'", reinterpret_cast<uintptr_t>(g_pConVarVFTable));
|
||||
LogFunAdr("ConCommandBase::IsFlagSet", p_ConCommandBase_IsFlagSet.GetPtr());
|
||||
LogConAdr("ConCommand::AutoCompleteSuggest", p_ConCommand_AutoCompleteSuggest.GetPtr());
|
||||
LogFunAdr("ConVar::Register", p_ConVar_Register.GetPtr());
|
||||
LogFunAdr("ConVar::Unregister", p_ConVar_Unregister.GetPtr());
|
||||
LogFunAdr("ConVar::IsFlagSet", p_ConVar_IsFlagSet.GetPtr());
|
||||
LogFunAdr("ConVar_PrintDescription", p_ConVar_PrintDescription.GetPtr());
|
||||
LogFunAdr("Cbuf_AddText", p_Cbuf_AddText.GetPtr());
|
||||
LogFunAdr("Cbuf_Execute", p_Cbuf_Execute.GetPtr());
|
||||
LogFunAdr("Cmd_ForwardToServer", p_Cmd_ForwardToServer.GetPtr());
|
||||
@ -209,26 +345,47 @@ class VConCommand : public IDetour
|
||||
{
|
||||
p_ConCommand_AutoCompleteSuggest = g_GameDll.FindPatternSIMD("40 ?? B8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 2B E0 F6 41 60 04");
|
||||
p_ConCommandBase_IsFlagSet = g_GameDll.FindPatternSIMD("85 51 38 0F 95 C0 C3");
|
||||
|
||||
#if defined (GAMEDLL_S0) || defined (GAMEDLL_S1)
|
||||
p_ConVar_Register = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 48 89 7C 24 ?? 41 56 48 83 EC 30 F3 0F 10 44 24 ??");
|
||||
p_ConVar_Unregister = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 57 48 83 EC 20 48 8B 59 58 48 8D 05 ?? ?? ?? ??");
|
||||
#elif defined (GAMEDLL_S2) || defined (GAMEDLL_S3)
|
||||
p_ConVar_Register = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 83 EC 40 F3 0F 10 84 24 ?? ?? ?? ??");
|
||||
p_ConVar_Unregister = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 8B 79 58");
|
||||
#endif
|
||||
p_ConVar_IsFlagSet = g_GameDll.FindPatternSIMD("48 8B 41 48 85 50 38");
|
||||
p_ConVar_PrintDescription = g_GameDll.FindPatternSIMD("B8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 2B E0 48 8B 01 48 89 9C 24 ?? ?? ?? ??");
|
||||
|
||||
p_Cbuf_AddText = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 63 D9 41 8B F8 48 8D 0D ?? ?? ?? ?? 48 8B F2 FF 15 ?? ?? ?? ?? 48 8D 05 ?? ?? ?? ?? 41 B9 ?? ?? ?? ??");
|
||||
p_Cbuf_Execute = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 FF 15 ?? ?? ?? ??");
|
||||
p_Cmd_ForwardToServer = g_GameDll.FindPatternSIMD("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 81 EC ?? ?? ?? ?? 44 8B 59 04");
|
||||
p_NullSub = g_GameDll.FindPatternSIMD("C2 ?? ?? CC CC CC CC CC CC CC CC CC CC CC CC CC 40 53 48 83 EC 20 48 8D 05 ?? ?? ?? ??");
|
||||
p_CallbackStub = g_GameDll.FindPatternSIMD("33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC 80 49 68 08");
|
||||
|
||||
ConCommand_AutoCompleteSuggest = p_ConCommand_AutoCompleteSuggest.RCast<bool (*)(ConCommand*, const char*, CUtlVector< CUtlString >&)>();
|
||||
Cbuf_AddText = p_Cbuf_AddText.RCast<void (*)(ECommandTarget_t, const char*, cmd_source_t)>(); /*48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 63 D9 41 8B F8 48 8D 0D ?? ?? ?? ?? 48 8B F2 FF 15 ?? ?? ?? ?? 48 8D 05 ?? ?? ?? ?? 41 B9 ?? ?? ?? ??*/
|
||||
Cbuf_Execute = p_Cbuf_Execute.RCast<void (*)(void)>(); /*48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 FF 15 ?? ?? ?? ??*/
|
||||
v_Cmd_ForwardToServer = p_Cmd_ForwardToServer.RCast<bool (*)(const CCommand*)>(); /*48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 81 EC ?? ?? ?? ?? 44 8B 59 04*/
|
||||
ConCommandBase_IsFlagSet = p_ConCommandBase_IsFlagSet.RCast<bool (*)(ConCommandBase*, int)>(); /*85 51 38 0F 95 C0 C3*/
|
||||
NullSub = p_NullSub.RCast<void(*)(void)>(); /*C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC 40 53 48 83 EC 20 48 8D 05 ?? ?? ?? ??*/
|
||||
CallbackStub = p_CallbackStub.RCast<FnCommandCompletionCallback>(); /*33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC 80 49 68 08*/ /*UserMathErrorFunction*/
|
||||
ConCommandBase_IsFlagSet = p_ConCommandBase_IsFlagSet.RCast<bool (*)(ConCommandBase*, int)>(); /*85 51 38 0F 95 C0 C3*/
|
||||
ConCommand_AutoCompleteSuggest = p_ConCommand_AutoCompleteSuggest.RCast<bool (*)(ConCommand*, const char*, CUtlVector< CUtlString >&)>();
|
||||
|
||||
v_ConVar_IsFlagSet = p_ConVar_IsFlagSet.RCast<bool (*)(ConVar*, int)>();
|
||||
v_ConVar_Register = p_ConVar_Register.RCast<void* (*)(ConVar*, const char*, const char*, int, const char*, bool, float, bool, float, FnChangeCallback_t, const char*)>();
|
||||
v_ConVar_Unregister = p_ConVar_Unregister.RCast<void (*)(ConVar*)>();
|
||||
v_ConVar_PrintDescription = p_ConVar_PrintDescription.RCast<void* (*)(ConCommandBase*)>();
|
||||
|
||||
Cbuf_AddText = p_Cbuf_AddText.RCast<void (*)(ECommandTarget_t, const char*, cmd_source_t)>(); /*48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 63 D9 41 8B F8 48 8D 0D ?? ?? ?? ?? 48 8B F2 FF 15 ?? ?? ?? ?? 48 8D 05 ?? ?? ?? ?? 41 B9 ?? ?? ?? ??*/
|
||||
Cbuf_Execute = p_Cbuf_Execute.RCast<void (*)(void)>(); /*48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 FF 15 ?? ?? ?? ??*/
|
||||
v_Cmd_ForwardToServer = p_Cmd_ForwardToServer.RCast<bool (*)(const CCommand*)>(); /*48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 57 48 81 EC ?? ?? ?? ?? 44 8B 59 04*/
|
||||
NullSub = p_NullSub.RCast<void(*)(void)>(); /*C2 00 00 CC CC CC CC CC CC CC CC CC CC CC CC CC 40 53 48 83 EC 20 48 8D 05 ?? ?? ?? ??*/
|
||||
CallbackStub = p_CallbackStub.RCast<FnCommandCompletionCallback>(); /*33 C0 C3 CC CC CC CC CC CC CC CC CC CC CC CC CC 80 49 68 08*/ /*UserMathErrorFunction*/
|
||||
}
|
||||
virtual void GetVar(void) const { }
|
||||
virtual void GetCon(void) const
|
||||
{
|
||||
g_pConCommandVFTable = g_GameDll.GetVirtualMethodTable(".?AVConCommand@@");
|
||||
g_pConCommandVFTable = g_GameDll.GetVirtualMethodTable(".?AVConCommand@@").RCast<ConCommandBase*>();
|
||||
g_pConVarVBTable = g_GameDll.GetVirtualMethodTable(".?AVConVar@@", 0).RCast<ConVar*>();
|
||||
g_pConVarVFTable = g_GameDll.GetVirtualMethodTable(".?AVConVar@@", 1).RCast<IConVar*>();
|
||||
}
|
||||
virtual void Attach(void) const;
|
||||
virtual void Detach(void) const;
|
||||
};
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#endif // CONVAR_H
|
||||
|
@ -11,7 +11,6 @@
|
||||
ConVar* sdk_fixedframe_tickinterval = nullptr;
|
||||
ConVar* single_frame_shutdown_for_reload = nullptr;
|
||||
ConVar* old_gather_props = nullptr;
|
||||
ConVar* cm_unset_all_cmdquery = nullptr;
|
||||
|
||||
ConVar* enable_debug_overlays = nullptr;
|
||||
ConVar* debug_draw_box_depth_test = nullptr;
|
||||
|
@ -7,7 +7,6 @@
|
||||
extern ConVar* sdk_fixedframe_tickinterval;
|
||||
extern ConVar* single_frame_shutdown_for_reload;
|
||||
extern ConVar* old_gather_props;
|
||||
extern ConVar* cm_unset_all_cmdquery;
|
||||
|
||||
extern ConVar* enable_debug_overlays;
|
||||
extern ConVar* debug_draw_box_depth_test;
|
||||
@ -282,7 +281,7 @@ protected:
|
||||
ConVarSetType_t m_nType;
|
||||
int m_nInt;
|
||||
float m_flFloat;
|
||||
//CUtlString m_String; // !TODO:
|
||||
CUtlString m_String;
|
||||
};
|
||||
|
||||
class CCVarIteratorInternal : public ICVarIteratorInternal
|
||||
|
@ -61,6 +61,14 @@ public:
|
||||
// Copy the array.
|
||||
CUtlVector<T, A>& operator=(const CUtlVector<T, A>& other);
|
||||
|
||||
// NOTE<R5SDK>:
|
||||
// Do not call after initialization or after adding elements.
|
||||
// This is added so it could be constructed nicely. Since the
|
||||
// game executable in monolithic, we couldn't import the malloc
|
||||
// functions, and thus not construct automatically when using
|
||||
// the game's memalloc singleton.
|
||||
void Init();
|
||||
|
||||
// element access
|
||||
T& operator[](int i);
|
||||
const T& operator[](int i) const;
|
||||
@ -655,6 +663,14 @@ inline CUtlVector<T, A>& CUtlVector<T, A>::operator=(const CUtlVector<T, A>& oth
|
||||
return *this;
|
||||
}
|
||||
|
||||
template< typename T, class A >
|
||||
void CUtlVector<T, A>::Init()
|
||||
{
|
||||
m_Memory.m_pMemory = nullptr;
|
||||
m_Memory.m_nAllocationCount = 0;
|
||||
m_Memory.m_nGrowSize = 0;
|
||||
m_Size = 0;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// element access
|
||||
|
Loading…
x
Reference in New Issue
Block a user