]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/_all.inc
Cleanup: further split default columns layout and move the space separator to the...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / _all.inc
index 2c943e01bcfaab3444a4230d64ba53eed321542b..fb7122fd8be2c5f5b6a3d7ee8dd7dc0bf059922c 100644 (file)
-#include "../warpzonelib/mathlib.qc"
-
-#include "Accumulate.qh"
-#include "Counting.qh"
-#include "Cvar.qh"
-#include "Defer.qh"
-#include "Draw.qh"
-#include "I18N.qh"
-#include "Lazy.qh"
-#include "Math.qh"
-#include "Nil.qh"
-#include "noise.qc"
-#include "OO.qh"
+#ifndef NOCOMPAT
+       #define COMPAT_NO_MOD_IS_XONOTIC
+#endif
+
+#include "compiler.qh"
+
+#ifndef QCC_SUPPORT_INT
+       #define int float
+#endif
+
+#ifndef QCC_SUPPORT_BOOL
+       #define bool float
+#endif
+
+#if defined(CSQC)
+       #include <dpdefs/csprogsdefs.qh>
+       #include <dpdefs/keycodes.qh>
+#elif defined(SVQC)
+       #include <server/sys-pre.qh>
+       #include <dpdefs/progsdefs.qh>
+       #include <dpdefs/dpextensions.qh>
+       #include <server/sys-post.qh>
+#elif defined(MENUQC)
+       #include <dpdefs/menudefs.qh>
+       #include <dpdefs/keycodes.qh>
+#endif
+
+#define USING(name, T) typedef T name
+
+#include "bool.qh"
+#include "int.qh"
+
+#include "macro.qh"
+
+#if NDEBUG
+    #define TC(T, sym) MACRO_BEGIN MACRO_END
+#else
+    #define TC(T, sym) MACRO_BEGIN \
+        if (!is_##T(sym)) { \
+            LOG_WARNINGF("Type check failed: " #sym " :: " #T); \
+            isnt_##T(sym); \
+        } \
+    MACRO_END
+#endif
+
+#define   is_float(        this) (true || ftoe(this))
+#define isnt_float(        this)
+#define   is_vector(       this) (true || vtos(this))
+#define isnt_vector(       this)
+#define   is_string(       this) (true || stof(this))
+#define isnt_string(       this)
+#define   is_entity(       this) (true || etof(this))
+#define isnt_entity(       this)
+bool      is_int(    float this) { return this == floor(this); }
+void    isnt_int(    float this) { print(ftos(this)); }
+bool      is_bool(   float this) { return this == true || this == false; }
+void    isnt_bool(   float this) { print(ftos(this)); }
+
+#include "warpzone/mathlib.qc"
+
+#include "accumulate.qh"
+#include "angle.qc"
+#include "arraylist.qh"
+#include "bits.qh"
+#include "color.qh"
+#include "counting.qh"
+#include "cvar.qh"
+#include "defer.qh"
+#include "draw.qh"
+#include "enumclass.qh"
+#include "file.qh"
+#include "functional.qh"
+#include "i18n.qh"
+#include "iter.qh"
+#include "json.qc"
+#include "lazy.qh"
+#include "linkedlist.qh"
+#include "log.qh"
+#include "map.qh"
+#include "markdown.qh"
+#include "math.qh"
+#include "misc.qh"
+#include "net.qh"
+#include "nil.qh"
+#include "noise.qh"
+#include "oo.qh"
 #include "p2mathlib.qc"
-#include "Player.qh"
-#include "prandom.qc"
-#include "Progname.qh"
-#include "Registry.qh"
+#include "progname.qh"
+#include "random.qc"
+#include "registry.qh"
+#include "registry_net.qh"
+#include "replicate.qh"
+#include "self.qh"
 #include "sortlist.qc"
-#include "String.qh"
-#include "Struct.qh"
+#include "sort.qh"
+#include "spawnfunc.qh"
+#include "static.qh"
+#include "stats.qh"
+#include "string.qh"
+#include "struct.qh"
 #include "test.qc"
+#include "unsafe.qh"
 #include "urllib.qc"
-#include "Vector.qh"
+#include "vector.qh"
+#include "yenc.qh"