X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftape.c;h=69356b0bfcf5b0e1a45eda034a16818197ef9a55;hb=431e165c85738667ec2bd03e3020d6c4e410d6e4;hp=cb6a9f9271b6b3f08d614f3c7a6b8ea7b72c581c;hpb=fa64f97687b19543379b872003cd66a2a351e326;p=rocksndiamonds.git diff --git a/src/tape.c b/src/tape.c index cb6a9f92..69356b0b 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1529,6 +1529,7 @@ static int AutoPlayTapesExt(boolean initialize) // save score tape to upload to server; may be required for some reasons: // * level set identifier in solution tapes may differ from level set + // * level set identifier is missing (old-style tape without INFO chunk) // * solution tape may have native format (like Supaplex solution files) SaveScoreTape(level_nr); @@ -1578,15 +1579,16 @@ static int AutoPlayTapesExt(boolean initialize) { autoplay.tape_filename = global.autoplay_leveldir; + if (!fileExists(autoplay.tape_filename)) + Fail("tape file '%s' does not exist", autoplay.tape_filename); + LoadTapeFromFilename(autoplay.tape_filename); if (tape.no_valid_file) - { - if (!fileExists(autoplay.tape_filename)) - Fail("tape file '%s' does not exist", autoplay.tape_filename); - else - Fail("cannot load tape file '%s'", autoplay.tape_filename); - } + Fail("cannot load tape file '%s'", autoplay.tape_filename); + + if (tape.no_info_chunk) + Fail("cannot get levelset from tape file '%s'", autoplay.tape_filename); global.autoplay_leveldir = tape.level_identifier; @@ -1615,6 +1617,9 @@ static int AutoPlayTapesExt(boolean initialize) if (global.autoplay_mode == AUTOPLAY_MODE_FIX) options.mytapes = TRUE; + // set timestamp for batch tape upload + global.autoplay_time = time(NULL); + num_tapes = 0; init_level_set = TRUE; @@ -1786,9 +1791,21 @@ static int AutoPlayTapesExt(boolean initialize) autoplay.tape_filename = (options.mytapes ? getTapeFilename(level_nr) : getDefaultSolutionTapeFilename(level_nr)); - if (!fileExists(autoplay.tape_filename)) + boolean correct_info_chunk = + (strEqual(leveldir_current->identifier, tape.level_identifier) && + level_nr == tape.level_nr); + + if (!correct_info_chunk) { - // non-standard solution tape -- save to temporary file + 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) + { + // non-standard or incorrect solution tape -- save to temporary file autoplay.tape_filename = getTemporaryTapeFilename(); SaveTapeToFilename(autoplay.tape_filename); @@ -1823,6 +1840,9 @@ static int AutoPlayTapesExt(boolean initialize) return num_tapes; } + // clear timestamp for batch tape upload (required after interactive upload) + global.autoplay_time = 0; + if (program.headless) CloseAllAndExit(0);