mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-02-03 09:10:35 +03:00
66 lines
1.9 KiB
C++
66 lines
1.9 KiB
C++
// vim: set ts=4 sw=4 tw=99 noet:
|
|
//
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
//
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
//
|
|
// Counter-Strike Module
|
|
//
|
|
|
|
#include "amxxmodule.h"
|
|
#include "CstrikeUtils.h"
|
|
|
|
extern AMX_NATIVE_INFO CstrikeNatives[];
|
|
|
|
extern int ForwardInternalCommand;
|
|
extern int ForwardOnBuy;
|
|
extern int ForwardOnBuyAttempt;
|
|
|
|
void InitializeHacks();
|
|
void ShutdownHacks();
|
|
void ToggleDetour_ClientCommands(bool enable);
|
|
void ToggleDetour_BuyCommands(bool enable);
|
|
|
|
|
|
int AmxxCheckGame(const char *game)
|
|
{
|
|
if (strcasecmp(game, "cstrike") == 0 ||
|
|
strcasecmp(game, "czero") == 0)
|
|
{
|
|
return AMXX_GAME_OK;
|
|
}
|
|
return AMXX_GAME_BAD;
|
|
}
|
|
|
|
void OnAmxxAttach()
|
|
{
|
|
MF_AddNatives(CstrikeNatives);
|
|
InitializeHacks();
|
|
}
|
|
|
|
void OnPluginsLoaded()
|
|
{
|
|
ForwardInternalCommand = MF_RegisterForward("CS_InternalCommand", ET_STOP, FP_CELL, FP_STRING, FP_DONE);
|
|
ForwardOnBuy = MF_RegisterForward("CS_OnBuy" , ET_STOP, FP_CELL, FP_CELL, FP_DONE);
|
|
ForwardOnBuyAttempt = MF_RegisterForward("CS_OnBuyAttempt" , ET_STOP, FP_CELL, FP_CELL, FP_DONE);
|
|
|
|
// Checking whether such public forwards are used in plugins.
|
|
// Resetting variable to -1 to avoid running unnecessary code in ClientCommand.
|
|
if (!UTIL_CheckForPublic("CS_InternalCommand")) { ForwardInternalCommand = -1; }
|
|
if (!UTIL_CheckForPublic("CS_OnBuy")) { ForwardOnBuy = -1; }
|
|
if (!UTIL_CheckForPublic("CS_OnBuyAttempt")) { ForwardOnBuyAttempt = -1; }
|
|
|
|
// And enable/disable detours when necessary.
|
|
ToggleDetour_ClientCommands(ForwardInternalCommand != -1 || ForwardOnBuy != -1 || ForwardOnBuy != -1);
|
|
ToggleDetour_BuyCommands(ForwardOnBuy != -1);
|
|
}
|
|
|
|
void OnAmxxDetach()
|
|
{
|
|
ShutdownHacks();
|
|
}
|