added key shortcut to dump identifiers for all gadgets on current screen
[rocksndiamonds.git] / src / libgame / gadgets.c
index cba655f874a89a29d9c31d0001c5a75506ef9088..c793ce13c599ecc2adb7050d98fcf9f7165d9796 100644 (file)
@@ -13,6 +13,7 @@
 #include <string.h>
 
 #include "gadgets.h"
+#include "image.h"
 #include "text.h"
 #include "misc.h"
 
@@ -2272,3 +2273,16 @@ boolean HandleGadgetsKeyInput(Key key)
 
   return TRUE;
 }
+
+void DumpGadgetIdentifiers()
+{
+  struct GadgetInfo *gi;
+
+  printf("Gadgets on current screen (any prefix 'gfx.' can be omitted):\n");
+
+  for (gi = gadget_list_first_entry; gi != NULL; gi = gi->next)
+    if (gi->mapped && gi->image_id != -1)
+      printf("- '%s'\n", getTokenFromImageID(gi->image_id));
+
+  printf("Done.\n");
+}