mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Macro for ArraySizes and CFactory Methods are virtual now for later usage.
This commit is contained in:
parent
c614d75a4f
commit
a2cb0b62c8
@ -134,6 +134,8 @@
|
||||
#endif // Max BSP file name len.
|
||||
#define MAX_MAP_NAME 64
|
||||
|
||||
#define SDK_ARRAYSIZE(arr) ((int)(sizeof(arr) / sizeof(*arr))) // Name due to IMGUI implementation and NT implementation that we shouldn't share across everywhere.
|
||||
|
||||
#define SDK_VERSION "beta 1.6"/*"VGameSDK001"*/ // Increment this with every /breaking/ SDK change (i.e. security/backend changes breaking compatibility).
|
||||
|
||||
#ifndef DEDICATED
|
||||
|
@ -196,7 +196,7 @@ void ConVar::PurgeShipped(void) const
|
||||
"voice_enabled",
|
||||
};
|
||||
|
||||
for (int i = 0; i < (&pszToPurge)[1] - pszToPurge; i++)
|
||||
for (int i = 0; i < SDK_ARRAYSIZE(pszToPurge); i++)
|
||||
{
|
||||
ConVar* pCVar = g_pCVar->FindVar(pszToPurge[i]);
|
||||
|
||||
@ -233,7 +233,7 @@ void ConVar::PurgeHostNames(void) const
|
||||
"users_hostname"
|
||||
};
|
||||
|
||||
for (int i = 0; i < (&pszHostNames)[1] - pszHostNames; i++)
|
||||
for (int i = 0; i < SDK_ARRAYSIZE(pszHostNames); i++)
|
||||
{
|
||||
ConVar* pCVar = g_pCVar->FindVar(pszHostNames[i]);
|
||||
|
||||
|
@ -21,7 +21,7 @@ int CCommand::MaxCommandLength(void)
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: returns argument count
|
||||
//-----------------------------------------------------------------------------
|
||||
std::int64_t CCommand::ArgC(void) const
|
||||
int64_t CCommand::ArgC(void) const
|
||||
{
|
||||
return m_nArgc;
|
||||
}
|
||||
|
@ -77,11 +77,11 @@ struct FactoryInfo
|
||||
class CFactory
|
||||
{
|
||||
public:
|
||||
void AddFactory(const string& svFactoryName, void* pFactory);
|
||||
void AddFactory(FactoryInfo factoryInfo);
|
||||
size_t GetVersionIndex(const string& svInterfaceName) const;
|
||||
void GetFactoriesFromRegister(void);
|
||||
CMemory GetFactoryPtr(const string& factoryName, bool versionLess = true) const;
|
||||
virtual void AddFactory(const string& svFactoryName, void* pFactory);
|
||||
virtual void AddFactory(FactoryInfo factoryInfo);
|
||||
virtual size_t GetVersionIndex(const string& svInterfaceName) const;
|
||||
virtual void GetFactoriesFromRegister(void);
|
||||
virtual CMemory GetFactoryPtr(const string& svFactoryName, bool versionLess = true) const;
|
||||
|
||||
private:
|
||||
vector<FactoryInfo> m_vFactories;
|
||||
|
Loading…
x
Reference in New Issue
Block a user