added printing summary after uploading tapes to server
[rocksndiamonds.git] / src / tape.c
index cf65474af537c6af772c7ab44f81eaac952222fb..4c7dec9874b4822a349a7cc2bd72829cd4b23f82 100644 (file)
@@ -1464,6 +1464,7 @@ static int AutoPlayTapesExt(boolean initialize)
 
     -1
   };
+  LevelDirTree *leveldir_current_last = leveldir_current;
   boolean init_level_set = FALSE;
   int i;
 
@@ -1694,6 +1695,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"
 
@@ -1837,12 +1851,23 @@ static int AutoPlayTapesExt(boolean initialize)
     return num_tapes;
   }
 
+  if (global.autoplay_mode == AUTOPLAY_MODE_UPLOAD)
+  {
+    Print("\n");
+    PrintLine("=", 79);
+    Print("SUMMARY: %d tapes uploaded.\n", num_tapes);
+    PrintLine("=", 79);
+  }
+
   // clear timestamp for batch tape upload (required after interactive upload)
   global.autoplay_time = 0;
 
   if (program.headless)
     CloseAllAndExit(0);
 
+  // when running interactively, restore last selected level set
+  leveldir_current = leveldir_current_last;
+
   return num_tapes;
 }