added extreme speedup when uploading all existing private tapes
[rocksndiamonds.git] / src / tape.c
index 0fc6c782478d68746c997e2625359ab2f9900cfe..ef7e8a5ab942f1c457c41a9b3328c57b818efaa4 100644 (file)
@@ -1694,6 +1694,19 @@ static int AutoPlayTapesExt(boolean initialize)
     if (!global.autoplay_all && !global.autoplay_level[level_nr])
       continue;
 
+    if (global.autoplay_mode == AUTOPLAY_MODE_UPLOAD)
+    {
+      // speed things up when uploading all existing private tapes
+      if (autoplay.all_levelsets && !fileExists(getTapeFilename(level_nr)))
+      {
+       autoplay.num_tape_missing++;
+
+       Print("Tape %03d: (no tape found)\n", level_nr);
+
+       continue;
+      }
+    }
+
     TapeErase();
     TapeRewind();      // needed to reset "tape.auto_play_level_solved"
 
@@ -1800,20 +1813,7 @@ static int AutoPlayTapesExt(boolean initialize)
        autoplay.tape_filename = (options.mytapes ? getTapeFilename(level_nr) :
                                  getDefaultSolutionTapeFilename(level_nr));
 
-       boolean correct_info_chunk =
-         (!tape.no_info_chunk &&
-          strEqual(leveldir_current->identifier, tape.level_identifier) &&
-          level_nr == tape.level_nr);
-
-       if (!correct_info_chunk)
-       {
-         strncpy(tape.level_identifier, leveldir_current->identifier,
-                 MAX_FILENAME_LEN);
-         tape.level_identifier[MAX_FILENAME_LEN] = '\0';
-         tape.level_nr = level_nr;
-       }
-
-       if (!fileExists(autoplay.tape_filename) || !correct_info_chunk)
+       if (!fileExists(autoplay.tape_filename))
        {
          // non-standard or incorrect solution tape -- save to temporary file
          autoplay.tape_filename = getTemporaryTapeFilename();