X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftape.c;h=1c691867378923c3b35a5093a0e98eb9c59cf2b5;hb=0feae4f4d0bc1f62266a0508306a87c78c6e41f9;hp=2300f00b2d89b9f34015ca76998fbeac4de6e7e9;hpb=580cc0293954391cf0cfd2f99638d8134f88f76c;p=rocksndiamonds.git diff --git a/src/tape.c b/src/tape.c index 2300f00b..1c691867 100644 --- a/src/tape.c +++ b/src/tape.c @@ -312,7 +312,8 @@ static void DrawVideoDisplay_DateTime(unsigned int state, unsigned int value) char s[MAX_DATETIME_STRING_SIZE]; int year2 = value / 10000; int year4 = (year2 < 70 ? 2000 + year2 : 1900 + year2); - int month_index = (value / 100) % 100; + int month_index_raw = (value / 100) % 100; + int month_index = month_index_raw % 12; // prevent invalid index int month = month_index + 1; int day = value % 100; @@ -512,6 +513,27 @@ static void PrintTapeReplayProgress(boolean replay_finished) } } +static FILE *tape_log_file; + +static void OpenTapeLogfile(void) +{ + if (!(tape_log_file = fopen(options.tape_log_filename, MODE_WRITE))) + Warn("cannot write tape logfile '%s'", options.tape_log_filename); +} + +static void WriteTapeLogfile(byte action[MAX_TAPE_ACTIONS]) +{ + int i; + + for (i = 0; i < MAX_TAPE_ACTIONS; i++) + putFile8Bit(tape_log_file, action[i]); +} + +static void CloseTapeLogfile(void) +{ + fclose(tape_log_file); +} + // ============================================================================ // tape control functions @@ -540,8 +562,14 @@ void TapeErase(void) tape.length_frames = 0; tape.length_seconds = 0; + tape.score_tape_basename[0] = '\0'; + if (leveldir_current) - setString(&tape.level_identifier, leveldir_current->identifier); + { + strncpy(tape.level_identifier, leveldir_current->identifier, + MAX_FILENAME_LEN); + tape.level_identifier[MAX_FILENAME_LEN] = '\0'; + } tape.level_nr = level_nr; tape.pos[tape.counter].delay = 0; @@ -553,6 +581,8 @@ void TapeErase(void) tape.game_version = GAME_VERSION_ACTUAL; tape.engine_version = level.game_version; + tape.property_bits = TAPE_PROPERTY_NONE; + TapeSetDateFromNow(); for (i = 0; i < MAX_PLAYERS; i++) @@ -644,6 +674,8 @@ static void TapeAppendRecording(void) // set current delay (for last played move) tape.pos[tape.counter].delay = tape.delay_played; + tape.property_bits |= TAPE_PROPERTY_REPLAYED; + // set current date TapeSetDateFromNow(); @@ -734,6 +766,12 @@ void TapeRecordAction(byte action_raw[MAX_TAPE_ACTIONS]) tape.set_centered_player = FALSE; } + if (GameFrameDelay != GAME_FRAME_DELAY) + tape.property_bits |= TAPE_PROPERTY_GAME_SPEED; + + if (setup.small_game_graphics || SCR_FIELDX >= 2 * SCR_FIELDX_DEFAULT) + tape.property_bits |= TAPE_PROPERTY_SMALL_GRAPHICS; + if (!TapeAddAction(action)) TapeStopRecording(); } @@ -755,6 +793,12 @@ void TapeTogglePause(boolean toggle_mode) if (tape.single_step && (toggle_mode & TAPE_TOGGLE_MANUAL)) tape.single_step = FALSE; + if (tape.single_step) + tape.property_bits |= TAPE_PROPERTY_SINGLE_STEP; + + if (tape.pausing) + tape.property_bits |= TAPE_PROPERTY_PAUSE_MODE; + DrawVideoDisplayCurrentState(); if (tape.deactivate_display) @@ -930,6 +974,9 @@ byte *TapePlayAction(void) if (tape.auto_play) PrintTapeReplayProgress(FALSE); + if (options.tape_log_filename != NULL) + WriteTapeLogfile(action); + return action; } @@ -1037,6 +1084,8 @@ void TapeQuickSave(void) return; } + tape.property_bits |= TAPE_PROPERTY_SNAPSHOT; + if (SaveTapeChecked(tape.level_nr)) SaveEngineSnapshotSingle(); } @@ -1095,6 +1144,7 @@ void TapeQuickLoad(void) TapeStartWarpForward(AUTOPLAY_MODE_WARP_NO_DISPLAY); tape.quick_resume = TRUE; + tape.property_bits |= TAPE_PROPERTY_SNAPSHOT; } else // this should not happen (basically checked above) { @@ -1160,12 +1210,7 @@ static boolean checkTapesFromSameLevel(struct TapeInfo *t1, struct TapeInfo *t2) static void CopyTape(struct TapeInfo *tape_from, struct TapeInfo *tape_to) { - if (tape_to->level_identifier != NULL) - checked_free(tape_to->level_identifier); - *tape_to = *tape_from; - - tape_to->level_identifier = getStringCopy(tape_from->level_identifier); } static void SwapTapes(struct TapeInfo *t1, struct TapeInfo *t2) @@ -1224,16 +1269,64 @@ void FixTape_ForceSinglePlayer(void) // tape autoplay functions // ---------------------------------------------------------------------------- +static void AutoPlayTapes_SetScoreEntry(int score, int time) +{ + // set unique basename for score tape (for uploading to score server) + strcpy(tape.score_tape_basename, getScoreTapeBasename(setup.player_name)); + + // store score in first score entry + scores.last_added = 0; + + struct ScoreEntry *entry = &scores.entry[scores.last_added]; + + strncpy(entry->tape_basename, tape.score_tape_basename, MAX_FILENAME_LEN); + strncpy(entry->name, setup.player_name, MAX_PLAYER_NAME_LEN); + + entry->score = score; + entry->time = time; + + PrintNoLog("- uploading score tape to score server ... "); + + server_scores.uploaded = FALSE; +} + +static void AutoPlayTapes_WaitForUpload(void) +{ + unsigned int upload_delay = 0; + unsigned int upload_delay_value = 10000; + + ResetDelayCounter(&upload_delay); + + // wait for score tape to be successfully uploaded (and fail on timeout) + while (!server_scores.uploaded) + { + if (DelayReached(&upload_delay, upload_delay_value)) + { + PrintNoLog("\r"); + Print("- uploading score tape to score server - TIMEOUT.\n"); + + Fail("cannot upload score tape to score server"); + } + + Delay(20); + } + + PrintNoLog("\r"); + Print("- uploading score tape to score server - uploaded.\n"); +} + 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 int patch_nr = 0; static char *patch_name[] = { @@ -1310,6 +1403,35 @@ void AutoPlayTapes(void) // just finished auto-playing tape PrintTapeReplayProgress(TRUE); + if (options.tape_log_filename != NULL) + CloseTapeLogfile(); + + if (global.autoplay_mode == AUTOPLAY_MODE_SAVE && + tape.auto_play_level_solved) + { + AutoPlayTapes_SetScoreEntry(game.score_final, game.score_time_final); + + if (leveldir_current) + { + // the tape's level set identifier may differ from current level set + strncpy(tape.level_identifier, leveldir_current->identifier, + MAX_FILENAME_LEN); + tape.level_identifier[MAX_FILENAME_LEN] = '\0'; + + // the tape's level number may differ from current level number + tape.level_nr = level_nr; + } + + // save score tape to upload to server; may be required for some reasons: + // * level set identifier in solution tapes may differ from level set + // * solution tape may have native format (like Supaplex solution files) + + SaveScoreTape(level_nr); + SaveServerScore(level_nr); + + AutoPlayTapes_WaitForUpload(); + } + if (patch_nr == 0) num_levels_played++; @@ -1326,6 +1448,28 @@ void AutoPlayTapes(void) audio.sound_enabled = FALSE; setup.engine_snapshot_mode = getStringCopy(STR_SNAPSHOT_MODE_OFF); + if (strSuffix(global.autoplay_leveldir, ".tape")) + { + tape_filename = global.autoplay_leveldir; + + LoadTapeFromFilename(tape_filename); + + if (tape.no_valid_file) + { + if (!fileExists(tape_filename)) + Fail("tape file '%s' does not exist", tape_filename); + else + Fail("cannot load tape file '%s'", tape_filename); + } + + global.autoplay_leveldir = tape.level_identifier; + + if (tape.level_nr >= 0 && tape.level_nr < MAX_TAPES_PER_SET) + global.autoplay_level[tape.level_nr] = TRUE; + + global.autoplay_all = FALSE; + } + autoplay_leveldir = getTreeInfoFromIdentifier(leveldir_first, global.autoplay_leveldir); @@ -1344,6 +1488,8 @@ void AutoPlayTapes(void) 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); @@ -1398,7 +1544,9 @@ void AutoPlayTapes(void) continue; #endif - if (options.mytapes) + if (tape_filename) + LoadTapeFromFilename(tape_filename); + else if (options.mytapes) LoadTape(level_nr); else LoadSolutionTape(level_nr); @@ -1469,14 +1617,44 @@ void AutoPlayTapes(void) } } + if (global.autoplay_mode == AUTOPLAY_MODE_UPLOAD) + { + Print("Tape %03d:\n", level_nr); + + AutoPlayTapes_SetScoreEntry(0, 0); + + if (tape_filename == NULL) + tape_filename = (options.mytapes ? getTapeFilename(level_nr) : + getSolutionTapeFilename(level_nr)); + + SaveServerScoreFromFile(level_nr, tape_filename); + + AutoPlayTapes_WaitForUpload(); + + // required for uploading multiple tapes + tape_filename = NULL; + + continue; + } + InitCounter(); + if (options.tape_log_filename != NULL) + OpenTapeLogfile(); + TapeStartGamePlaying(); TapeStartWarpForward(global.autoplay_mode); + 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); @@ -1486,17 +1664,32 @@ void AutoPlayTapes(void) Print("Number of tapes fixed: %d\n", num_tapes_patched); PrintLine("-", 79); Print("Summary (for automatic parsing by scripts):\n"); - Print("LEVELDIR [%s] '%s', SOLVED %d/%d (%d%%)", - (num_levels_played == num_levels_solved ? " OK " : "WARN"), - autoplay_leveldir->identifier, num_levels_solved, num_levels_played, - (num_levels_played ? num_levels_solved * 100 / num_levels_played : 0)); - if (num_levels_played != num_levels_solved) + if (tape_filename) { - Print(", FAILED:"); - for (i = 0; i < MAX_TAPES_PER_SET; i++) - if (level_failed[i]) - Print(" %03d", i); + 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");