added command line options for level identifier/nr for tape tests/uploads
authorHolger Schemel <info@artsoft.org>
Thu, 16 Sep 2021 14:49:42 +0000 (16:49 +0200)
committerHolger Schemel <info@artsoft.org>
Thu, 16 Sep 2021 14:51:20 +0000 (16:51 +0200)
src/libgame/misc.c
src/libgame/system.h

index e27c3e7e60280e71a295dbd27206f69e6345530d..8bc457216de7448418ad5cebd885728e562b5b60 100644 (file)
@@ -1300,6 +1300,8 @@ void GetOptions(int argc, char *argv[],
   options.special_flags = NULL;
   options.debug_mode = NULL;
   options.player_name = NULL;
+  options.identifier = NULL;
+  options.level_nr = NULL;
 
   options.mytapes = FALSE;
   options.serveronly = FALSE;
@@ -1446,6 +1448,24 @@ void GetOptions(int argc, char *argv[],
       if (option_arg == next_option)
        options_left++;
     }
+    else if (strncmp(option, "-identifier", option_len) == 0)
+    {
+      if (option_arg == NULL)
+       FailWithHelp("option '%s' requires an argument", option_str);
+
+      options.identifier = getStringCopy(option_arg);
+      if (option_arg == next_option)
+       options_left++;
+    }
+    else if (strncmp(option, "-level-nr", option_len) == 0)
+    {
+      if (option_arg == NULL)
+       FailWithHelp("option '%s' requires an argument", option_str);
+
+      options.level_nr = getStringCopy(option_arg);
+      if (option_arg == next_option)
+       options_left++;
+    }
     else if (strncmp(option, "-verbose", option_len) == 0)
     {
       options.verbose = TRUE;
index 2943e645c14033521ab84e12d65032ffb50dc67c..32180326631362a6aca8a9fe2eed0ad1587fb496 100644 (file)
@@ -1065,6 +1065,8 @@ struct OptionInfo
   char *debug_mode;
 
   char *player_name;
+  char *identifier;
+  char *level_nr;
 
   boolean mytapes;
   boolean serveronly;