From 78cbb9aac50bfbce4d857b1b9868645940982ef3 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 9 Oct 2019 16:37:09 -0400 Subject: [PATCH] GBHawk: fix window timing, special cases still need work --- .../Consoles/Nintendo/GBHawk/GBC_PPU.cs | 20 ++++++++++++++----- .../Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs | 13 ++++++++++-- .../Consoles/Nintendo/GBHawk/GB_PPU.cs | 11 ++++++++-- 3 files changed, 35 insertions(+), 9 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU.cs index 09442d581e..75f1324678 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU.cs @@ -651,10 +651,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk if (Core.REG_FFFF.Bit(1)) { Core.cpu.FlagI = true; } Core.REG_FF0F |= 0x02; - //if (Core.cpu.cur_instr[Core.cpu.instr_pntr] == 46) + //if (LY == 46) //{ - //Console.Write(VBL_INT + " " + LYC_INT + " " + HBL_INT + " " + OAM_INT + " "); - //Core.last_rise = Core.cpu.TotalExecutedCycles; + //Console.Write(VBL_INT + " " + LYC_INT + " " + HBL_INT + " " + OAM_INT + " " + LY + " "); + //Console.Write(render_offset + " " + scroll_x + " " + total_counter + " "); //Console.WriteLine(STAT + " " + cycle + " " + Core.cpu.TotalExecutedCycles); //} } @@ -718,6 +718,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk window_pre_render = false; window_latch = LCDC.Bit(5); + total_counter = 0; + // TODO: If Window is turned on midscanline what happens? When is this check done exactly? if ((window_started && window_latch) || (window_is_reset && !window_latch && (LY >= window_y))) { @@ -750,17 +752,25 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk Console.Write(" "); Console.WriteLine(pixel_counter); */ - if (window_x_latch <= 7) + if (window_x_latch == 0) { // if the window starts at zero, we still do the first access to the BG // but then restart all over again at the window - read_case = 9; + if ((render_offset % 7) <= 6) + { + read_case = 9; + } + else + { + read_case = 9; + } } else { // otherwise, just restart the whole process as if starting BG again read_case = 4; } + window_pre_render = true; window_counter = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs index f5e7b86a11..b47861885d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs @@ -713,6 +713,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk window_pre_render = false; window_latch = LCDC.Bit(5); + total_counter = 0; + // TODO: If Window is turned on midscanline what happens? When is this check done exactly? if ((window_started && window_latch) || (window_is_reset && !window_latch && (LY >= window_y))) { @@ -745,11 +747,18 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk Console.Write(" "); Console.WriteLine(pixel_counter); */ - if (window_x_latch <= 7) + if (window_x_latch == 0) { // if the window starts at zero, we still do the first access to the BG // but then restart all over again at the window - read_case = 9; + if ((render_offset % 7) <= 6) + { + read_case = 9; + } + else + { + read_case = 9; + } } else { diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GB_PPU.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GB_PPU.cs index a436d4045b..97bf6eb17e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GB_PPU.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GB_PPU.cs @@ -495,11 +495,18 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk Console.Write(" "); Console.WriteLine(pixel_counter); */ - if (window_x_latch <= 7) + if (window_x_latch == 0) { // if the window starts at zero, we still do the first access to the BG // but then restart all over again at the window - read_case = 9; + if ((render_offset % 7) <= 6) + { + read_case = 9; + } + else + { + read_case = 9; + } } else {