X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftape.c;h=63b9e402962925224d05a1f51f91f57cde8d647f;hb=effd5d5c5bcf0edefb1bccf031510d9839d7789c;hp=3d6774dd95390f6ca92f930bfbd64f8935311978;hpb=2cfee1e01acbf98c4ff8bb0f9fc04b7b5605751f;p=rocksndiamonds.git diff --git a/src/tape.c b/src/tape.c index 3d6774dd..63b9e402 100644 --- a/src/tape.c +++ b/src/tape.c @@ -471,8 +471,42 @@ void TapeDeactivateDisplayOff(boolean redraw_display) // tape logging functions // ============================================================================ +struct AutoPlayInfo +{ + LevelDirTree *leveldir; + boolean initialized; + int last_level_nr; + int level_nr; + int num_levels_played; + int num_levels_solved; + int num_tapes_patched; + int num_tape_missing; + boolean level_failed[MAX_TAPES_PER_SET]; + char *tape_filename; +}; + static char tape_patch_info[MAX_OUTPUT_LINESIZE]; +static void PrintTapeReplayHeader(struct AutoPlayInfo *autoplay) +{ + PrintLine("=", 79); + + if (global.autoplay_mode == AUTOPLAY_MODE_FIX) + Print("Automatically fixing level tapes\n"); + else if (global.autoplay_mode == AUTOPLAY_MODE_UPLOAD) + Print("Automatically uploading level tapes\n"); + else + Print("Automatically playing level tapes\n"); + + PrintLine("-", 79); + Print("Level series identifier: '%s'\n", autoplay->leveldir->identifier); + Print("Level series name: '%s'\n", autoplay->leveldir->name); + Print("Level series author: '%s'\n", autoplay->leveldir->author); + Print("Number of levels: %d\n", autoplay->leveldir->levels); + PrintLine("=", 79); + Print("\n"); +} + static void PrintTapeReplayProgress(boolean replay_finished) { static unsigned int counter_last = -1; @@ -513,6 +547,58 @@ static void PrintTapeReplayProgress(boolean replay_finished) } } +static void PrintTapeReplaySummary(struct AutoPlayInfo *autoplay) +{ + char *autoplay_status = + (autoplay->num_levels_played == autoplay->num_levels_solved && + autoplay->num_levels_played > 0 ? " OK " : "WARN"); + int autoplay_percent = + (autoplay->num_levels_played ? + autoplay->num_levels_solved * 100 / autoplay->num_levels_played : 0); + int i; + + Print("\n"); + PrintLine("=", 79); + Print("Number of levels played: %d\n", autoplay->num_levels_played); + Print("Number of levels solved: %d (%d%%)\n", autoplay->num_levels_solved, + (autoplay->num_levels_played ? + autoplay->num_levels_solved * 100 / autoplay->num_levels_played : 0)); + if (global.autoplay_mode == AUTOPLAY_MODE_FIX) + Print("Number of tapes fixed: %d\n", autoplay->num_tapes_patched); + PrintLine("-", 79); + Print("Summary (for automatic parsing by scripts):\n"); + + if (autoplay->tape_filename) + { + Print("TAPEFILE [%s] '%s', %d, %d, %d", + autoplay_status, + autoplay->leveldir->identifier, + autoplay->last_level_nr, + game.score_final, + game.score_time_final); + } + else + { + Print("LEVELDIR [%s] '%s', SOLVED %d/%d (%d%%)", + autoplay_status, + autoplay->leveldir->identifier, + autoplay->num_levels_solved, + autoplay->num_levels_played, + autoplay_percent); + + if (autoplay->num_levels_played != autoplay->num_levels_solved) + { + Print(", FAILED:"); + for (i = 0; i < MAX_TAPES_PER_SET; i++) + if (autoplay->level_failed[i]) + Print(" %03d", i); + } + } + + Print("\n"); + PrintLine("=", 79); +} + static FILE *tape_log_file; static void OpenTapeLogfile(void) @@ -1319,16 +1405,7 @@ static void AutoPlayTapes_WaitForUpload(void) void AutoPlayTapes(void) { - static LevelDirTree *autoplay_leveldir = NULL; - static boolean autoplay_initialized = FALSE; - static int autoplay_last_level_nr = -1; - static int autoplay_level_nr = -1; - static int num_levels_played = 0; - static int num_levels_solved = 0; - static int num_tapes_patched = 0; - static int num_tape_missing = 0; - static boolean level_failed[MAX_TAPES_PER_SET]; - static char *tape_filename = NULL; + static struct AutoPlayInfo autoplay; static int patch_nr = 0; static char *patch_name[] = { @@ -1364,7 +1441,7 @@ void AutoPlayTapes(void) }; int i; - if (autoplay_initialized) + if (autoplay.initialized) { if (global.autoplay_mode == AUTOPLAY_MODE_FIX) { @@ -1383,7 +1460,7 @@ void AutoPlayTapes(void) SaveTapeToFilename(filename); tape.auto_play_level_fixed = TRUE; - num_tapes_patched++; + autoplay.num_tapes_patched++; } // continue with next tape @@ -1435,13 +1512,13 @@ void AutoPlayTapes(void) } if (patch_nr == 0) - num_levels_played++; + autoplay.num_levels_played++; if (tape.auto_play_level_solved) - num_levels_solved++; + autoplay.num_levels_solved++; if (level_nr >= 0 && level_nr < MAX_TAPES_PER_SET) - level_failed[level_nr] = !tape.auto_play_level_solved; + autoplay.level_failed[level_nr] = !tape.auto_play_level_solved; } else { @@ -1460,16 +1537,16 @@ void AutoPlayTapes(void) if (strSuffix(global.autoplay_leveldir, ".tape")) { - tape_filename = global.autoplay_leveldir; + autoplay.tape_filename = global.autoplay_leveldir; - LoadTapeFromFilename(tape_filename); + LoadTapeFromFilename(autoplay.tape_filename); if (tape.no_valid_file) { - if (!fileExists(tape_filename)) - Fail("tape file '%s' does not exist", tape_filename); + if (!fileExists(autoplay.tape_filename)) + Fail("tape file '%s' does not exist", autoplay.tape_filename); else - Fail("cannot load tape file '%s'", tape_filename); + Fail("cannot load tape file '%s'", autoplay.tape_filename); } global.autoplay_leveldir = tape.level_identifier; @@ -1480,52 +1557,39 @@ void AutoPlayTapes(void) global.autoplay_all = FALSE; } - autoplay_leveldir = getTreeInfoFromIdentifier(leveldir_first, + autoplay.leveldir = getTreeInfoFromIdentifier(leveldir_first, global.autoplay_leveldir); - if (autoplay_leveldir == NULL) + if (autoplay.leveldir == NULL) Fail("no such level identifier: '%s'", global.autoplay_leveldir); - leveldir_current = autoplay_leveldir; + leveldir_current = autoplay.leveldir; - if (autoplay_leveldir->first_level < 0) - autoplay_leveldir->first_level = 0; - if (autoplay_leveldir->last_level >= MAX_TAPES_PER_SET) - autoplay_leveldir->last_level = MAX_TAPES_PER_SET - 1; + if (autoplay.leveldir->first_level < 0) + autoplay.leveldir->first_level = 0; + if (autoplay.leveldir->last_level >= MAX_TAPES_PER_SET) + autoplay.leveldir->last_level = MAX_TAPES_PER_SET - 1; - autoplay_level_nr = autoplay_leveldir->first_level; + autoplay.level_nr = autoplay.leveldir->first_level; - PrintLine("=", 79); - if (global.autoplay_mode == AUTOPLAY_MODE_FIX) - Print("Automatically fixing level tapes\n"); - else if (global.autoplay_mode == AUTOPLAY_MODE_UPLOAD) - Print("Automatically uploading level tapes\n"); - else - Print("Automatically playing level tapes\n"); - PrintLine("-", 79); - Print("Level series identifier: '%s'\n", autoplay_leveldir->identifier); - Print("Level series name: '%s'\n", autoplay_leveldir->name); - Print("Level series author: '%s'\n", autoplay_leveldir->author); - Print("Number of levels: %d\n", autoplay_leveldir->levels); - PrintLine("=", 79); - Print("\n"); + PrintTapeReplayHeader(&autoplay); for (i = 0; i < MAX_TAPES_PER_SET; i++) - level_failed[i] = FALSE; + autoplay.level_failed[i] = FALSE; // only private tapes may be modified if (global.autoplay_mode == AUTOPLAY_MODE_FIX) options.mytapes = TRUE; - autoplay_initialized = TRUE; + autoplay.initialized = TRUE; } while (1) { if (global.autoplay_mode != AUTOPLAY_MODE_FIX || patch_nr == 0) - level_nr = autoplay_level_nr++; + level_nr = autoplay.level_nr++; - if (level_nr > autoplay_leveldir->last_level) + if (level_nr > autoplay.leveldir->last_level) break; // set patch info (required for progress output) @@ -1554,8 +1618,8 @@ void AutoPlayTapes(void) continue; #endif - if (tape_filename) - LoadTapeFromFilename(tape_filename); + if (autoplay.tape_filename) + LoadTapeFromFilename(autoplay.tape_filename); else if (options.mytapes) LoadTape(level_nr); else @@ -1563,7 +1627,7 @@ void AutoPlayTapes(void) if (tape.no_valid_file) { - num_tape_missing++; + autoplay.num_tape_missing++; Print("Tape %03d: (no tape found)\n", level_nr); @@ -1629,20 +1693,37 @@ void AutoPlayTapes(void) if (global.autoplay_mode == AUTOPLAY_MODE_UPLOAD) { + boolean use_temporary_tape_file = FALSE; + Print("Tape %03d:\n", level_nr); AutoPlayTapes_SetScoreEntry(0, 0); - if (tape_filename == NULL) - tape_filename = (options.mytapes ? getTapeFilename(level_nr) : - getSolutionTapeFilename(level_nr)); + if (autoplay.tape_filename == NULL) + { + autoplay.tape_filename = (options.mytapes ? getTapeFilename(level_nr) : + getDefaultSolutionTapeFilename(level_nr)); + + if (!fileExists(autoplay.tape_filename)) + { + // non-standard solution tape -- save to temporary file + autoplay.tape_filename = getTemporaryTapeFilename(); + + SaveTapeToFilename(autoplay.tape_filename); + + use_temporary_tape_file = TRUE; + } + } - SaveServerScoreFromFile(level_nr, tape_filename); + SaveServerScoreFromFile(level_nr, autoplay.tape_filename); AutoPlayTapes_WaitForUpload(); + if (use_temporary_tape_file) + unlink(autoplay.tape_filename); + // required for uploading multiple tapes - tape_filename = NULL; + autoplay.tape_filename = NULL; continue; } @@ -1655,55 +1736,12 @@ void AutoPlayTapes(void) TapeStartGamePlaying(); TapeStartWarpForward(global.autoplay_mode); - autoplay_last_level_nr = level_nr; + autoplay.last_level_nr = level_nr; return; } - char *autoplay_status = (num_levels_played == num_levels_solved && - num_levels_played > 0 ? " OK " : "WARN"); - int autoplay_percent = (num_levels_played ? - num_levels_solved * 100 / num_levels_played : 0); - - Print("\n"); - PrintLine("=", 79); - Print("Number of levels played: %d\n", num_levels_played); - Print("Number of levels solved: %d (%d%%)\n", num_levels_solved, - (num_levels_played ? num_levels_solved * 100 / num_levels_played : 0)); - if (global.autoplay_mode == AUTOPLAY_MODE_FIX) - Print("Number of tapes fixed: %d\n", num_tapes_patched); - PrintLine("-", 79); - Print("Summary (for automatic parsing by scripts):\n"); - - if (tape_filename) - { - Print("TAPEFILE [%s] '%s', %d, %d, %d", - autoplay_status, - autoplay_leveldir->identifier, - autoplay_last_level_nr, - game.score_final, - game.score_time_final); - } - else - { - Print("LEVELDIR [%s] '%s', SOLVED %d/%d (%d%%)", - autoplay_status, - autoplay_leveldir->identifier, - num_levels_solved, - num_levels_played, - autoplay_percent); - - if (num_levels_played != num_levels_solved) - { - Print(", FAILED:"); - for (i = 0; i < MAX_TAPES_PER_SET; i++) - if (level_failed[i]) - Print(" %03d", i); - } - } - - Print("\n"); - PrintLine("=", 79); + PrintTapeReplaySummary(&autoplay); CloseAllAndExit(0); }