From 4269098e8a35b78aa8ee4e25a0d280f355b68be3 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 28 Apr 2014 16:02:11 +0000 Subject: [PATCH] Gambatte core experimental change to the definition of a frame. gambatte runs the number of cycles it feels like even when you tell it. So track the difference between the desired amount of actual run and adjust the next frame. This way, in thoery it should average out to the desired 35112 cycles per frame. Also track the cycle count and expose it for future api to use --- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index ba6aba84ed..fcdaa78371 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -221,14 +221,24 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy endofframecallback(LibGambatte.gambatte_cpuread(GambatteState, 0xff40)); } + ulong _cycleCount = 0; + uint _nextRunAdjust = 0; + + public ulong CycleCount { get { return _cycleCount; } } + public void FrameAdvance(bool render, bool rendersound) { FrameAdvancePrep(); - uint nsamp = 35112; // according to gambatte docs, this is the nominal length of a frame in 2mhz clocks + uint nsamp = 35112 + _nextRunAdjust; // according to gambatte docs, this is the nominal length of a frame in 2mhz clocks + // Gambatte is going to run whatever it feels like, and report what it ran into nsamp + // Therefore we should track it and factor this in next frame, to keep a consistent definition of 1 frame = 35112 cycles LibGambatte.gambatte_runfor(GambatteState, VideoBuffer, 160, soundbuff, ref nsamp); + _cycleCount += (ulong)nsamp; + _nextRunAdjust = 35112 - nsamp; + if (rendersound) { soundbuffcontains = (int)nsamp;