From 334844bde2e94e3a83d426c7159fee868d0091ef Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sun, 24 May 2020 16:25:14 -0400 Subject: [PATCH] SubGBHawk: use cycle count to correctly track time --- src/BizHawk.Client.Common/movie/PlatformFrameRates.cs | 2 +- src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs | 2 +- src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs | 8 ++++++-- .../movie/conversions/MovieConversionExtensions.cs | 9 +++++++-- .../Consoles/Nintendo/SubGBHawk/SubGBHawk.IEmulator.cs | 2 +- .../Consoles/Nintendo/SubGBHawk/SubGBHawk.IStatable.cs | 2 +- .../Consoles/Nintendo/SubGBHawk/SubGBHawk.cs | 4 ++-- 7 files changed, 19 insertions(+), 10 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs b/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs index 3edc7b84ac..66c7ad19dd 100644 --- a/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs +++ b/src/BizHawk.Client.Common/movie/PlatformFrameRates.cs @@ -102,7 +102,7 @@ namespace BizHawk.Client.Common var pal = movie.HeaderEntries.ContainsKey(HeaderKeys.Pal) && movie.HeaderEntries[HeaderKeys.Pal] == "1"; - if (movie.HeaderEntries.ContainsKey(HeaderKeys.CycleCount) && core == "Gambatte") + if (movie.HeaderEntries.ContainsKey(HeaderKeys.CycleCount) && ((core == "Gambatte") || (core == "SubGBHawk"))) { system = "GB_Clock"; } diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs index bedc700e82..602b7ca45d 100644 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs @@ -175,7 +175,7 @@ namespace BizHawk.Client.Common } else if (Global.Emulator is Emulation.Cores.Nintendo.SubGBHawk.SubGBHawk subGb) { - Header[HeaderKeys.VBlankCount] = subGb.VBL_CNT.ToString(); + Header[HeaderKeys.CycleCount] = subGb.Cycle_CNT.ToString(); } var file = new FileInfo(fn); diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs index d041d5ceb5..5012537470 100644 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs @@ -61,8 +61,12 @@ namespace BizHawk.Client.Common return Convert.ToUInt64(Header[HeaderKeys.VBlankCount]); } - if (Header.ContainsKey(HeaderKeys.CycleCount) - && Header[HeaderKeys.Core] == CoreNames.Gambatte) + if (Header.ContainsKey(HeaderKeys.CycleCount) && Header[HeaderKeys.Core] == CoreNames.Gambatte) + { + return Convert.ToUInt64(Header[HeaderKeys.CycleCount]); + } + + if (Header.ContainsKey(HeaderKeys.CycleCount) && Header[HeaderKeys.Core] == CoreNames.SubGbHawk) { return Convert.ToUInt64(Header[HeaderKeys.CycleCount]); } diff --git a/src/BizHawk.Client.Common/movie/conversions/MovieConversionExtensions.cs b/src/BizHawk.Client.Common/movie/conversions/MovieConversionExtensions.cs index e1006a8609..4360ec0865 100644 --- a/src/BizHawk.Client.Common/movie/conversions/MovieConversionExtensions.cs +++ b/src/BizHawk.Client.Common/movie/conversions/MovieConversionExtensions.cs @@ -330,9 +330,14 @@ namespace BizHawk.Client.Common.MovieConversionExtensions movie.HeaderEntries.Add("IsCGBMode", "1"); } - if (emulator is SubGBHawk subgbHawk && subgbHawk._GBCore.IsCGBMode()) + if (emulator is SubGBHawk subgbHawk) { - movie.HeaderEntries.Add("IsCGBMode", "1"); + if (subgbHawk._GBCore.IsCGBMode()) + { + movie.HeaderEntries.Add("IsCGBMode", "1"); + } + + movie.HeaderEntries.Add(HeaderKeys.CycleCount, "0"); } if (emulator is Gameboy gb) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.IEmulator.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.IEmulator.cs index ef4bde0a2e..751d7858e2 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.IEmulator.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.IEmulator.cs @@ -68,7 +68,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk if (_isLag) { _lagCount++; - VBL_CNT++; } reset_frame = false; @@ -103,6 +102,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk current_cycle++; frame_cycle++; + Cycle_CNT++; if (frame_cycle == 70224) { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.IStatable.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.IStatable.cs index 560eb0e50c..12867a9359 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.IStatable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.IStatable.cs @@ -44,7 +44,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk ser.Sync(nameof(frame_cycle), ref frame_cycle); ser.Sync(nameof(input_frame_length), ref input_frame_length); ser.Sync(nameof(input_frame_length_int), ref input_frame_length_int); - ser.Sync(nameof(VBL_CNT), ref VBL_CNT); + ser.Sync(nameof(Cycle_CNT), ref Cycle_CNT); } } } diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs index 7b53953af1..4e52d9981f 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs @@ -22,7 +22,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk HardReset(); current_cycle = 0; - VBL_CNT = 0; + Cycle_CNT = 0; _GBStatable = _GBCore.ServiceProvider.GetService(); @@ -48,7 +48,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk public GBHawk.GBHawk _GBCore; // needed for movies to accurately calculate timing - public int VBL_CNT; + public long Cycle_CNT; public void HardReset() => _GBCore.HardReset();