]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/items/all.qc
Merge branch 'master' into terencehill/keyhunt
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / items / all.qc
index 37cd93b3fc62df7b702dc6b497c754972c1112cc..0a26a75b5a7fd33aeee0f0b35a3dfd4b8ec92b8b 100644 (file)
@@ -1,15 +1,27 @@
-#ifndef ALL_C
-#define ALL_C
 #include "all.qh"
 
-#include "all.inc"
+void Dump_Items()
+{
+    FOREACH(Items, true, ITEM_HANDLE(Show, it));
+}
 
-void ItemTest()
+string Item_Model(string item_mdl)
 {
-    ITEMS_FOREACH(it != NULL, LAMBDA({
-        print(strcat(etos(it), "\n"));
-        ITEM_HANDLE(Show, it);
-    }));
+    string output = strcat("models/items/", item_mdl);
+#ifdef SVQC
+    MUTATOR_CALLHOOK(ItemModel, item_mdl, output);
+    output = M_ARGV(1, string);
+#endif
+    return output;
 }
 
+string Item_Sound(string it_snd)
+{
+       string output = strcat("misc/", it_snd);
+#ifdef SVQC
+               MUTATOR_CALLHOOK(ItemSound, it_snd, output);
+               return M_ARGV(1, string);
+#else
+               return output;
 #endif
+}