From 5e2eb7d67ae933b7566f1944d0bb7744da03d586 Mon Sep 17 00:00:00 2001 From: aura Date: Tue, 17 Feb 2026 23:42:09 +0100 Subject: move source stuff to its own folder --- sourcemod/scripting/gokz-anticheat/api.sp | 174 ------------------------------ 1 file changed, 174 deletions(-) delete mode 100644 sourcemod/scripting/gokz-anticheat/api.sp (limited to 'sourcemod/scripting/gokz-anticheat/api.sp') diff --git a/sourcemod/scripting/gokz-anticheat/api.sp b/sourcemod/scripting/gokz-anticheat/api.sp deleted file mode 100644 index 7f99724..0000000 --- a/sourcemod/scripting/gokz-anticheat/api.sp +++ /dev/null @@ -1,174 +0,0 @@ -static GlobalForward H_OnPlayerSuspected; - - - -// =====[ FORWARDS ]===== - -void CreateGlobalForwards() -{ - H_OnPlayerSuspected = new GlobalForward("GOKZ_AC_OnPlayerSuspected", ET_Ignore, Param_Cell, Param_Cell, Param_String, Param_String); -} - -void Call_OnPlayerSuspected(int client, ACReason reason, const char[] notes, const char[] stats) -{ - Call_StartForward(H_OnPlayerSuspected); - Call_PushCell(client); - Call_PushCell(reason); - Call_PushString(notes); - Call_PushString(stats); - Call_Finish(); -} - - - -// =====[ NATIVES ]===== - -void CreateNatives() -{ - CreateNative("GOKZ_AC_GetSampleSize", Native_GetSampleSize); - CreateNative("GOKZ_AC_GetHitPerf", Native_GetHitPerf); - CreateNative("GOKZ_AC_GetPerfCount", Native_GetPerfCount); - CreateNative("GOKZ_AC_GetPerfRatio", Native_GetPerfRatio); - CreateNative("GOKZ_AC_GetJumpInputs", Native_GetJumpInputs); - CreateNative("GOKZ_AC_GetAverageJumpInputs", Native_GetAverageJumpInputs); - CreateNative("GOKZ_AC_GetPreJumpInputs", Native_GetPreJumpInputs); - CreateNative("GOKZ_AC_GetPostJumpInputs", Native_GetPostJumpInputs); -} - -public int Native_GetSampleSize(Handle plugin, int numParams) -{ - int client = GetNativeCell(1); - return IntMin(gI_BhopCount[client], AC_MAX_BHOP_SAMPLES); -} - -public int Native_GetHitPerf(Handle plugin, int numParams) -{ - int client = GetNativeCell(1); - int sampleSize = IntMin(GOKZ_AC_GetSampleSize(client), GetNativeCell(3)); - - if (sampleSize == 0) - { - return 0; - } - - bool[] perfs = new bool[sampleSize]; - SortByRecent(gB_BhopHitPerf[client], AC_MAX_BHOP_SAMPLES, perfs, sampleSize, gI_BhopIndex[client]); - SetNativeArray(2, perfs, sampleSize); - return sampleSize; -} - -public int Native_GetPerfCount(Handle plugin, int numParams) -{ - int client = GetNativeCell(1); - int sampleSize = IntMin(GOKZ_AC_GetSampleSize(client), GetNativeCell(2)); - - if (sampleSize == 0) - { - return 0; - } - - bool[] perfs = new bool[sampleSize]; - GOKZ_AC_GetHitPerf(client, perfs, sampleSize); - - int perfCount = 0; - for (int i = 0; i < sampleSize; i++) - { - if (perfs[i]) - { - perfCount++; - } - } - return perfCount; -} - -public int Native_GetPerfRatio(Handle plugin, int numParams) -{ - int client = GetNativeCell(1); - int sampleSize = IntMin(GOKZ_AC_GetSampleSize(client), GetNativeCell(2)); - - if (sampleSize == 0) - { - return view_as(0.0); - } - - int perfCount = GOKZ_AC_GetPerfCount(client, sampleSize); - return view_as(float(perfCount) / float(sampleSize)); -} - -public int Native_GetJumpInputs(Handle plugin, int numParams) -{ - int client = GetNativeCell(1); - int sampleSize = IntMin(GOKZ_AC_GetSampleSize(client), GetNativeCell(3)); - - if (sampleSize == 0) - { - return 0; - } - - int[] preJumpInputs = new int[sampleSize]; - SortByRecent(gI_BhopPreJumpInputs[client], AC_MAX_BHOP_SAMPLES, preJumpInputs, sampleSize, gI_BhopIndex[client]); - int[] postJumpInputs = new int[sampleSize]; - SortByRecent(gI_BhopPostJumpInputs[client], AC_MAX_BHOP_SAMPLES, postJumpInputs, sampleSize, gI_BhopIndex[client]); - - int[] jumpInputs = new int[sampleSize]; - for (int i = 0; i < sampleSize; i++) - { - jumpInputs[i] = preJumpInputs[i] + postJumpInputs[i]; - } - - SetNativeArray(2, jumpInputs, sampleSize); - return sampleSize; -} - -public int Native_GetAverageJumpInputs(Handle plugin, int numParams) -{ - int client = GetNativeCell(1); - int sampleSize = IntMin(GOKZ_AC_GetSampleSize(client), GetNativeCell(2)); - - if (sampleSize == 0) - { - return view_as(0.0); - } - - int[] jumpInputs = new int[sampleSize]; - GOKZ_AC_GetJumpInputs(client, jumpInputs, sampleSize); - - int jumpInputCount = 0; - for (int i = 0; i < sampleSize; i++) - { - jumpInputCount += jumpInputs[i]; - } - return view_as(float(jumpInputCount) / float(sampleSize)); -} - -public int Native_GetPreJumpInputs(Handle plugin, int numParams) -{ - int client = GetNativeCell(1); - int sampleSize = IntMin(GOKZ_AC_GetSampleSize(client), GetNativeCell(3)); - - if (sampleSize == 0) - { - return 0; - } - - int[] preJumpInputs = new int[sampleSize]; - SortByRecent(gI_BhopPreJumpInputs[client], AC_MAX_BHOP_SAMPLES, preJumpInputs, sampleSize, gI_BhopIndex[client]); - SetNativeArray(2, preJumpInputs, sampleSize); - return sampleSize; -} - -public int Native_GetPostJumpInputs(Handle plugin, int numParams) -{ - int client = GetNativeCell(1); - int sampleSize = IntMin(GOKZ_AC_GetSampleSize(client), GetNativeCell(3)); - - if (sampleSize == 0) - { - return 0; - } - - int[] postJumpInputs = new int[sampleSize]; - SortByRecent(gI_BhopPostJumpInputs[client], AC_MAX_BHOP_SAMPLES, postJumpInputs, sampleSize, gI_BhopIndex[client]); - SetNativeArray(2, postJumpInputs, sampleSize); - return sampleSize; -} \ No newline at end of file -- cgit v1.2.3