summaryrefslogtreecommitdiff
path: root/sourcemod/scripting/include/smlib/dynarrays.inc
diff options
context:
space:
mode:
Diffstat (limited to 'sourcemod/scripting/include/smlib/dynarrays.inc')
-rw-r--r--sourcemod/scripting/include/smlib/dynarrays.inc24
1 files changed, 24 insertions, 0 deletions
diff --git a/sourcemod/scripting/include/smlib/dynarrays.inc b/sourcemod/scripting/include/smlib/dynarrays.inc
new file mode 100644
index 0000000..35a8951
--- /dev/null
+++ b/sourcemod/scripting/include/smlib/dynarrays.inc
@@ -0,0 +1,24 @@
+#if defined _smlib_dynarray_included
+ #endinput
+#endif
+#define _smlib_dynarray_included
+
+#include <sourcemod>
+
+/**
+ * Retrieves a cell value from an array.
+ * This is a wrapper around the Sourcemod Function GetArrayCell,
+ * but it casts the result as bool
+ *
+ * @param array Array Handle.
+ * @param index Index in the array.
+ * @param block Optionally specify which block to read from
+ * (useful if the blocksize > 0).
+ * @param asChar Optionally read as a byte instead of a cell.
+ * @return Value read.
+ * @error Invalid Handle, invalid index, or invalid block.
+ */
+stock bool DynArray_GetBool(ArrayList array, int index, int block=0, bool asChar=false)
+{
+ return array.Get(index, block, asChar) != 0;
+}