From fd7a0b2fe7b6b623d325370de00d7441b60e8043 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 11 Jul 2012 21:37:35 +0000 Subject: [PATCH] change CoreOutputComm to use exact integers to specify VsyncRate. Helps for AV dumping with formats that require exact integer rates (AVI), and for emulators that aren't exactly 50hz/60hz (none yet). --- BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs | 3 ++- BizHawk.Emulation/Interfaces/CoreComms.cs | 10 +++++++++- BizHawk.MultiClient/MainForm.cs | 20 ++++++++++++-------- 3 files changed, 23 insertions(+), 10 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs b/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs index 22719ac3ce..c26149be07 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs +++ b/BizHawk.Emulation/Consoles/Sega/SMS/SMS.cs @@ -74,7 +74,8 @@ namespace BizHawk.Emulation.Consoles.Sega Array.Resize(ref RomData, ((RomData.Length / BankSize) + 1) * BankSize); RomBanks = (byte)(RomData.Length / BankSize); DisplayType = DisplayType.NTSC; - CoreOutputComm.VsyncRate = DisplayType == DisplayType.NTSC ? 60d : 50d; + CoreOutputComm.VsyncNum = DisplayType == DisplayType.NTSC ? 60 : 50; + CoreOutputComm.VsyncDen = 1; if (game["PAL"]) DisplayType = DisplayType.PAL; if (game["Japan"]) Region = "Japan"; if (game.NotInDatabase || game["FM"] && game["UseFM"]) diff --git a/BizHawk.Emulation/Interfaces/CoreComms.cs b/BizHawk.Emulation/Interfaces/CoreComms.cs index a043535428..e857e0a4fc 100644 --- a/BizHawk.Emulation/Interfaces/CoreComms.cs +++ b/BizHawk.Emulation/Interfaces/CoreComms.cs @@ -11,7 +11,15 @@ public class CoreOutputComm { - public double VsyncRate = 60; + public double VsyncRate + { + get + { + return VsyncNum / (double)VsyncDen; + } + } + public int VsyncNum = 60; + public int VsyncDen = 1; public string RomStatusAnnotation; public string RomStatusDetails; } diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index c49eeb7a9c..5967fdc9c1 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -43,7 +43,8 @@ namespace BizHawk.MultiClient /// an audio proxy used for dumping /// Emulation.Sound.Utilities.DualSound DumpProxy = null; - + /// audio timekeeping for video dumping + long SoundRemainder = 0; //runloop control bool exit; @@ -366,6 +367,7 @@ namespace BizHawk.MultiClient bool fastforward = Global.ClientControls["Fast Forward"] || FastForward; Global.ForceNoVsync = unthrottled || fastforward; + // realtime throttle is never going to be so exact that using a double here is wrong throttle.SetCoreFps(Global.Emulator.CoreOutputComm.VsyncRate); throttle.signal_paused = EmulatorPaused || Global.Emulator is NullEmulator; @@ -1940,9 +1942,12 @@ namespace BizHawk.MultiClient //======================================= if (CurrAviWriter != null) { - //TODO - this will stray over time! have AviWriter keep an accumulation! - int samples = (int)(44100 / Global.Emulator.CoreOutputComm.VsyncRate); - short[] temp = new short[samples * 2]; + long nsampnum = 44100 * (long)Global.Emulator.CoreOutputComm.VsyncDen + SoundRemainder; + long nsamp = nsampnum / Global.Emulator.CoreOutputComm.VsyncNum; + // exactly remember fractional parts of an audio sample + SoundRemainder = nsampnum % Global.Emulator.CoreOutputComm.VsyncNum; + + short[] temp = new short[nsamp * 2]; //Global.Emulator.SoundProvider.GetSamples(temp); DumpProxy.GetSamples(temp); //genSound = false; @@ -2767,10 +2772,7 @@ namespace BizHawk.MultiClient try { - //TODO - cores should be able to specify exact values for these instead of relying on this to calculate them - int fps = (int)(Global.Emulator.CoreOutputComm.VsyncRate * 0x01000000); - - aw.SetMovieParameters(fps, 0x01000000); + aw.SetMovieParameters(Global.Emulator.CoreOutputComm.VsyncNum, Global.Emulator.CoreOutputComm.VsyncDen); aw.SetVideoParameters(Global.Emulator.VideoProvider.BufferWidth, Global.Emulator.VideoProvider.BufferHeight); aw.SetAudioParameters(44100, 2, 16); @@ -2828,6 +2830,7 @@ namespace BizHawk.MultiClient // buffersize here is entirely guess DumpProxy = new Emulation.Sound.Utilities.DualSound(Global.Emulator.SoundProvider, 8192); + SoundRemainder = 0; } public void StopAVI() @@ -2843,6 +2846,7 @@ namespace BizHawk.MultiClient AVIStatusLabel.Image = BizHawk.MultiClient.Properties.Resources.Blank; AVIStatusLabel.ToolTipText = ""; DumpProxy = null; // return to normal sound output + SoundRemainder = 0; } private void SwapBackupSavestate(string path)