mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Remove 'vengineclient_impl.h/.cpp' entirely from dedi
This commit is contained in:
parent
357e8640b0
commit
48cc2979ec
@ -46,9 +46,9 @@
|
||||
#include "vgui/vgui_debugpanel.h"
|
||||
#include "vgui/vgui_fpspanel.h"
|
||||
#include "vguimatsurface/MatSystemSurface.h"
|
||||
#include "client/vengineclient_impl.h"
|
||||
#endif // !DEDICATED
|
||||
#include "client/cdll_engine_int.h"
|
||||
#include "client/vengineclient_impl.h"
|
||||
#ifndef CLIENT_DLL
|
||||
#include "engine/server/server.h"
|
||||
#include "server/persistence.h"
|
||||
|
@ -38,8 +38,8 @@
|
||||
#include "rtech/stryder/stryder.h"
|
||||
#ifndef DEDICATED
|
||||
#include "vgui/vgui_baseui_interface.h"
|
||||
#endif // DEDICATED
|
||||
#include "client/vengineclient_impl.h"
|
||||
#endif // DEDICATED
|
||||
#include "networksystem/pylon.h"
|
||||
#include "networksystem/bansystem.h"
|
||||
#include "public/edict.h"
|
||||
|
@ -11,7 +11,9 @@
|
||||
#include "tier1/strtools.h"
|
||||
#include "engine/sys_dll.h"
|
||||
#include "engine/sys_dll2.h"
|
||||
#ifndef DEDICATED
|
||||
#include "client/vengineclient_impl.h"
|
||||
#endif // !DEDICATED
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Figure out if we're running a Valve mod or not.
|
||||
@ -31,8 +33,7 @@ static bool IsValveMod(const char* pModName)
|
||||
//-----------------------------------------------------------------------------
|
||||
static bool IsRespawnMod(const char* pModName)
|
||||
{
|
||||
return (Q_stricmp(pModName, "platform") == 0 ||
|
||||
Q_stricmp(pModName, "r1") == 0 ||
|
||||
return (Q_stricmp(pModName, "r1") == 0 ||
|
||||
Q_stricmp(pModName, "r2") == 0 ||
|
||||
Q_stricmp(pModName, "r5") == 0);
|
||||
}
|
||||
@ -48,9 +49,12 @@ bool CEngineAPI::ModInit(CEngineAPI* pEngineAPI, const char* pModName, const cha
|
||||
g_pConVar->PurgeShipped();
|
||||
|
||||
bool results = CEngineAPI_ModInit(pEngineAPI, pModName, pGameDir);
|
||||
if (!IsValveMod(pModName) && IsRespawnMod(pModName))
|
||||
if (!IsValveMod(pModName) && !IsRespawnMod(pModName))
|
||||
{
|
||||
g_pEngineClient->SetRestrictServerCommands(true); // Restrict commands.
|
||||
#ifndef DEDICATED
|
||||
g_pEngineClient->SetRestrictServerCommands(true); // Restrict server commands.
|
||||
g_pEngineClient->SetRestrictClientCommands(true); // Restrict client commands.
|
||||
#endif // !DEDICATED
|
||||
|
||||
ConCommandBase* disconnect = g_pCVar->FindCommandBase("disconnect");
|
||||
disconnect->AddFlags(FCVAR_SERVER_CAN_EXECUTE); // Make sure server is not restricted to this.
|
||||
|
@ -126,7 +126,6 @@
|
||||
<ClInclude Include="..\appframework\iappsystem.h" />
|
||||
<ClInclude Include="..\bsplib\bsplib.h" />
|
||||
<ClInclude Include="..\client\cdll_engine_int.h" />
|
||||
<ClInclude Include="..\client\vengineclient_impl.h" />
|
||||
<ClInclude Include="..\common\igameserverdata.h" />
|
||||
<ClInclude Include="..\common\netmessages.h" />
|
||||
<ClInclude Include="..\common\opcodes.h" />
|
||||
@ -473,7 +472,6 @@
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\bonesetup\bone_utils.cpp" />
|
||||
<ClCompile Include="..\bsplib\bsplib.cpp" />
|
||||
<ClCompile Include="..\client\vengineclient_impl.cpp" />
|
||||
<ClCompile Include="..\common\opcodes.cpp" />
|
||||
<ClCompile Include="..\core\dllmain.cpp" />
|
||||
<ClCompile Include="..\core\init.cpp" />
|
||||
|
@ -828,9 +828,6 @@
|
||||
<ClInclude Include="..\tier1\bitbuf.h">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\client\vengineclient_impl.h">
|
||||
<Filter>sdk\client</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\filesystem\basefilesystem.h">
|
||||
<Filter>sdk\filesystem</Filter>
|
||||
</ClInclude>
|
||||
@ -1397,9 +1394,6 @@
|
||||
<ClCompile Include="..\tier1\bitbuf.cpp">
|
||||
<Filter>sdk\tier1</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\client\vengineclient_impl.cpp">
|
||||
<Filter>sdk\client</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\game\server\ai_network.cpp">
|
||||
<Filter>sdk\game\server</Filter>
|
||||
</ClCompile>
|
||||
|
Loading…
x
Reference in New Issue
Block a user