Cvars: Remove global forward
This commit is contained in:
parent
cdc7d550eb
commit
0db5963641
|
@ -329,7 +329,6 @@ extern int FF_PluginEnd;
|
||||||
extern int FF_InconsistentFile;
|
extern int FF_InconsistentFile;
|
||||||
extern int FF_ClientAuthorized;
|
extern int FF_ClientAuthorized;
|
||||||
extern int FF_ChangeLevel;
|
extern int FF_ChangeLevel;
|
||||||
extern int FF_CvarChanged;
|
|
||||||
|
|
||||||
extern bool g_coloredmenus;
|
extern bool g_coloredmenus;
|
||||||
|
|
||||||
|
|
|
@ -15,20 +15,13 @@ CvarManager g_CvarManager;
|
||||||
|
|
||||||
DETOUR_DECL_STATIC2(Cvar_DirectSet, void, struct cvar_s*, var, const char*, value)
|
DETOUR_DECL_STATIC2(Cvar_DirectSet, void, struct cvar_s*, var, const char*, value)
|
||||||
{
|
{
|
||||||
static bool calledFromCallback = false;
|
// Sanity checks against bogus pointers.
|
||||||
|
if (var && value)
|
||||||
if (!calledFromCallback && var && value)
|
|
||||||
{
|
{
|
||||||
|
// Make sure old and new values are different to not trigger callbacks.
|
||||||
if (strcmp(var->string, value) != 0)
|
if (strcmp(var->string, value) != 0)
|
||||||
{
|
{
|
||||||
calledFromCallback = true;
|
|
||||||
|
|
||||||
if (executeForwards(FF_CvarChanged, reinterpret_cast<cell>(var), var->string, value, var->name) > 0)
|
|
||||||
{
|
|
||||||
//return;
|
|
||||||
}
|
|
||||||
|
|
||||||
calledFromCallback = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -142,7 +142,6 @@ int FF_PluginEnd = -1;
|
||||||
int FF_InconsistentFile = -1;
|
int FF_InconsistentFile = -1;
|
||||||
int FF_ClientAuthorized = -1;
|
int FF_ClientAuthorized = -1;
|
||||||
int FF_ChangeLevel = -1;
|
int FF_ChangeLevel = -1;
|
||||||
int FF_CvarChanged = -1;
|
|
||||||
|
|
||||||
bool ColoredMenus(String & ModName)
|
bool ColoredMenus(String & ModName)
|
||||||
{
|
{
|
||||||
|
@ -503,7 +502,6 @@ int C_Spawn(edict_t *pent)
|
||||||
FF_InconsistentFile = registerForward("inconsistent_file", ET_STOP, FP_CELL, FP_STRING, FP_STRINGEX, FP_DONE);
|
FF_InconsistentFile = registerForward("inconsistent_file", ET_STOP, FP_CELL, FP_STRING, FP_STRINGEX, FP_DONE);
|
||||||
FF_ClientAuthorized = registerForward("client_authorized", ET_IGNORE, FP_CELL, FP_DONE);
|
FF_ClientAuthorized = registerForward("client_authorized", ET_IGNORE, FP_CELL, FP_DONE);
|
||||||
FF_ChangeLevel = registerForward("server_changelevel", ET_STOP, FP_STRING, FP_DONE);
|
FF_ChangeLevel = registerForward("server_changelevel", ET_STOP, FP_STRING, FP_DONE);
|
||||||
FF_CvarChanged = registerForward("OnCvarChanged", ET_STOP, FP_CELL, FP_STRING, FP_STRING, FP_STRING, FP_DONE);
|
|
||||||
|
|
||||||
#if defined BINLOG_ENABLED
|
#if defined BINLOG_ENABLED
|
||||||
if (!g_BinLog.Open())
|
if (!g_BinLog.Open())
|
||||||
|
|
|
@ -421,6 +421,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\..\plugins\include\cellstack.inc" />
|
<None Include="..\..\plugins\include\cellstack.inc" />
|
||||||
|
<None Include="..\..\plugins\include\cvars.inc" />
|
||||||
<None Include="..\..\plugins\include\datapack.inc" />
|
<None Include="..\..\plugins\include\datapack.inc" />
|
||||||
<None Include="..\..\plugins\include\textparse_ini.inc" />
|
<None Include="..\..\plugins\include\textparse_ini.inc" />
|
||||||
<None Include="..\..\plugins\include\textparse_smc.inc" />
|
<None Include="..\..\plugins\include\textparse_smc.inc" />
|
||||||
|
|
|
@ -453,6 +453,9 @@
|
||||||
<None Include="..\..\plugins\include\textparse_smc.inc">
|
<None Include="..\..\plugins\include\textparse_smc.inc">
|
||||||
<Filter>Pawn Includes</Filter>
|
<Filter>Pawn Includes</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\plugins\include\cvars.inc">
|
||||||
|
<Filter>Pawn Includes</Filter>
|
||||||
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Object Include="..\Jit\helpers-x86.obj">
|
<Object Include="..\Jit\helpers-x86.obj">
|
||||||
|
|
|
@ -19,5 +19,6 @@
|
||||||
* @param oldValue String containing the value of the cvar before it was changed
|
* @param oldValue String containing the value of the cvar before it was changed
|
||||||
* @param newValue String containing the new value of the cvar
|
* @param newValue String containing the new value of the cvar
|
||||||
* @param cvarName String containing the name of the cvar
|
* @param cvarName String containing the name of the cvar
|
||||||
|
*
|
||||||
|
* public OnCvarChanged(cvarHandle, const oldValue[], const newValue[], const cvarName[]);
|
||||||
*/
|
*/
|
||||||
forward OnCvarChanged(cvarHandle, const oldValue[], const newValue[], const cvarName[]);
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user