From 08ee1c8170171e00dd1462dfb0652fbc775114f3 Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 8 Feb 2020 15:36:06 +0300 Subject: [PATCH] show proper movie length for cycle based timing (gambatte) --- BizHawk.Client.Common/movie/HeaderKeys.cs | 2 ++ .../movie/PlatformFrameRates.cs | 7 +++++++ BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs | 4 ++-- BizHawk.Client.Common/movie/bk2/Bk2Movie.cs | 18 +++++++++++++++--- .../conversions/MovieConversionExtensions.cs | 4 ++-- .../movie/interfaces/IMovie.cs | 2 +- 6 files changed, 29 insertions(+), 8 deletions(-) diff --git a/BizHawk.Client.Common/movie/HeaderKeys.cs b/BizHawk.Client.Common/movie/HeaderKeys.cs index 351bb1ec33..4633252db1 100644 --- a/BizHawk.Client.Common/movie/HeaderKeys.cs +++ b/BizHawk.Client.Common/movie/HeaderKeys.cs @@ -19,6 +19,8 @@ namespace BizHawk.Client.Common public const string BOARDNAME = "BoardName"; public const string SYNCSETTINGS = "SyncSettings"; public const string LOOPOFFSET = "LoopOffset"; + public const string VBLANKCOUNT = "VBlankCount"; + public const string CYCLECOUNT = "CycleCount"; // Core Setting public const string CORE = "Core"; diff --git a/BizHawk.Client.Common/movie/PlatformFrameRates.cs b/BizHawk.Client.Common/movie/PlatformFrameRates.cs index e2511f1077..b82f85eefa 100644 --- a/BizHawk.Client.Common/movie/PlatformFrameRates.cs +++ b/BizHawk.Client.Common/movie/PlatformFrameRates.cs @@ -38,6 +38,7 @@ namespace BizHawk.Client.Common ["WSWAN"] = (3072000.0 / (159 * 256)), // 75.4716981132 ["GB"] = 262144.0 / 4389.0, // 59.7275005696 ["GBC"] = 262144.0 / 4389.0, // 59.7275005696 + ["GB_Clock"] = 2097152.0, ["GBA"] = 262144.0 / 4389.0, // 59.7275005696 ["GEN"] = 53693175 / (3420.0 * 262), ["GEN_PAL"] = 53203424 / (3420.0 * 313), @@ -102,9 +103,15 @@ namespace BizHawk.Client.Common private double Fps(IMovie movie) { var system = movie.HeaderEntries[HeaderKeys.PLATFORM]; + var core = movie.HeaderEntries[HeaderKeys.CORE]; var pal = movie.HeaderEntries.ContainsKey(HeaderKeys.PAL) && movie.HeaderEntries[HeaderKeys.PAL] == "1"; + if (movie.HeaderEntries.ContainsKey(HeaderKeys.CYCLECOUNT) && core == "Gambatte") + { + system = "GB_Clock"; + } + return this[system, pal]; } diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs index 05bcdd9a24..2815d3240c 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs @@ -169,12 +169,12 @@ namespace BizHawk.Client.Common if (Global.Emulator is Emulation.Cores.Nintendo.SubNESHawk.SubNESHawk) { var _subnes = (Emulation.Cores.Nintendo.SubNESHawk.SubNESHawk)Global.Emulator; - Header["VBlankCount"] = _subnes.VBL_CNT.ToString(); + Header[HeaderKeys.VBLANKCOUNT] = _subnes.VBL_CNT.ToString(); } else if (Global.Emulator is Emulation.Cores.Nintendo.Gameboy.Gameboy) { var _gameboy = (Emulation.Cores.Nintendo.Gameboy.Gameboy)Global.Emulator; - Header["CycleCount"] = _gameboy.CycleCount.ToString(); + Header[HeaderKeys.CYCLECOUNT] = _gameboy.CycleCount.ToString(); } var file = new FileInfo(fn); diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs index ac75a5e49e..024020f95c 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using BizHawk.Emulation.Common; +using BizHawk.Emulation.Cores.Nintendo.Gameboy; namespace BizHawk.Client.Common { @@ -69,12 +70,23 @@ namespace BizHawk.Client.Common public int InputLogLength => Log.Count; - public int TimeLength + public ulong TimeLength { get { - if (Header.ContainsKey("VBlankCount")) { return Convert.ToInt32(Header["VBlankCount"]); } - return Log.Count; + if (Header.ContainsKey(HeaderKeys.VBLANKCOUNT)) + { + return Convert.ToUInt64(Header[HeaderKeys.VBLANKCOUNT]); + } + else if (Header.ContainsKey(HeaderKeys.CYCLECOUNT)) + { + var gambatteName = ((CoreAttribute)Attribute.GetCustomAttribute(typeof(Gameboy), typeof(CoreAttribute))).CoreName; + if (Header[HeaderKeys.CORE] == gambatteName) + { + return Convert.ToUInt64(Header[HeaderKeys.CYCLECOUNT]); + } + } + return (ulong)Log.Count; } } diff --git a/BizHawk.Client.Common/movie/conversions/MovieConversionExtensions.cs b/BizHawk.Client.Common/movie/conversions/MovieConversionExtensions.cs index 9d9269c60f..2dd076ede3 100644 --- a/BizHawk.Client.Common/movie/conversions/MovieConversionExtensions.cs +++ b/BizHawk.Client.Common/movie/conversions/MovieConversionExtensions.cs @@ -343,7 +343,7 @@ namespace BizHawk.Client.Common.MovieConversionExtensions if (Global.Emulator is Gameboy) { - movie.HeaderEntries.Add("CycleCount", "0"); + movie.HeaderEntries.Add(HeaderKeys.CYCLECOUNT, "0"); } if (Global.Emulator is SMS && ((SMS) Global.Emulator).IsSG1000) @@ -368,7 +368,7 @@ namespace BizHawk.Client.Common.MovieConversionExtensions if (Global.Emulator is SubNESHawk) { - movie.HeaderEntries.Add("VBlankCount", "0"); + movie.HeaderEntries.Add(HeaderKeys.VBLANKCOUNT, "0"); } movie.Core = ((CoreAttribute)Attribute diff --git a/BizHawk.Client.Common/movie/interfaces/IMovie.cs b/BizHawk.Client.Common/movie/interfaces/IMovie.cs index d7a8af2a75..41937cf5d7 100644 --- a/BizHawk.Client.Common/movie/interfaces/IMovie.cs +++ b/BizHawk.Client.Common/movie/interfaces/IMovie.cs @@ -62,7 +62,7 @@ namespace BizHawk.Client.Common /// /// Gets the actual length of time a movie lasts for. For subframe cores, this will be different then the above two options /// - int TimeLength { get; } + ulong TimeLength { get; } /// /// Gets the file extension for the current implementation