summaryrefslogtreecommitdiff
path: root/sourcemod/scripting/include/glib/assertutils.inc
diff options
context:
space:
mode:
authoraura <nw@moneybot.cc>2026-02-17 23:42:09 +0100
committeraura <nw@moneybot.cc>2026-02-17 23:42:09 +0100
commit5e2eb7d67ae933b7566f1944d0bb7744da03d586 (patch)
tree054acff1113270a9cd07933df760f3768c1b6853 /sourcemod/scripting/include/glib/assertutils.inc
parent341db13a008dc12bb22ceb50452d93d01476308c (diff)
move source stuff to its own folder
Diffstat (limited to 'sourcemod/scripting/include/glib/assertutils.inc')
-rw-r--r--sourcemod/scripting/include/glib/assertutils.inc61
1 files changed, 0 insertions, 61 deletions
diff --git a/sourcemod/scripting/include/glib/assertutils.inc b/sourcemod/scripting/include/glib/assertutils.inc
deleted file mode 100644
index 83cd90d..0000000
--- a/sourcemod/scripting/include/glib/assertutils.inc
+++ /dev/null
@@ -1,61 +0,0 @@
-#if defined _assertutils_included
-#endinput
-#endif
-#define _assertutils_included
-
-/* Compile time settings for this include. Should be defined before including this file.
-* #define ASSERTUTILS_DISABLE //Disables all assertions
-* #define ASSERTUTILS_FAILSTATE_FUNC //Define the name of the function that should be called when assertion is hit
-*/
-
-#if !defined SNAME
-#define __SNAME ""
-#else
-#define __SNAME SNAME
-#endif
-
-#define ASSERT_FMT_STRING_LEN 512
-
-#if defined ASSERTUTILS_DISABLE
-
-#define ASSERT(%1)%2;
-#define ASSERT_MSG(%1,%2)%3;
-#define ASSERT_FMT(%1,%2)%3;
-#define ASSERT_FINAL(%1)%2;
-#define ASSERT_FINAL_MSG(%1,%2)%3;
-
-#elseif defined ASSERTUTILS_FAILSTATE_FUNC
-
-#define ASSERT(%1) if(!(%1)) ASSERTUTILS_FAILSTATE_FUNC(__SNAME..."Assertion failed: \""...#%1..."\"")
-#define ASSERT_MSG(%1,%2) if(!(%1)) ASSERTUTILS_FAILSTATE_FUNC(__SNAME...%2)
-#define ASSERT_FMT(%1,%2) if(!(%1)) ASSERTUTILS_FAILSTATE_FUNC(__SNAME...%2)
-#define ASSERT_FINAL(%1) if(!(%1)) SetFailState(__SNAME..."Assertion failed: \""...#%1..."\"")
-#define ASSERT_FINAL_MSG(%1,%2) if(!(%1)) SetFailState(__SNAME...%2)
-
-#else
-
-#define ASSERT(%1) if(!(%1)) SetFailState(__SNAME..."Assertion failed: \""...#%1..."\"")
-#define ASSERT_MSG(%1,%2) if(!(%1)) SetFailState(__SNAME...%2)
-#define ASSERT_FMT(%1,%2) if(!(%1)) SetFailState(__SNAME...%2)
-#define ASSERT_FINAL(%1) ASSERT(%1)
-#define ASSERT_FINAL_MSG(%1,%2) ASSERT_MSG(%1,%2)
-
-#endif
-
-// Might be redundant as default ASSERT_MSG accept format arguments just fine.
-#if 0
-stock void ASSERT_FMT(bool result, char[] fmt, any ...)
-{
-#if !defined ASSERTUTILS_DISABLE
- if(!result)
- {
- char buff[ASSERT_FMT_STRING_LEN];
- VFormat(buff, sizeof(buff), fmt, 3);
-
- SetFailState(__SNAME..."%s", buff);
- }
-#endif
-}
-#endif
-
-#undef ASSERT_FMT_STRING_LEN \ No newline at end of file