GBHawk: properly fade to white in GBC mode

This commit is contained in:
alyosha-tas 2020-12-08 10:41:37 -05:00
parent 28af57de18
commit 401d635afc
5 changed files with 24 additions and 4 deletions

View File

@ -130,6 +130,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
OAM_access_write = true;
clear_screen = true;
Core.clear_counter = 0;
// turing off the screen causes HDMA to run for one cycle
HDMA_run_once = true;
@ -139,6 +140,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
{
// don't draw for one frame after turning on
blank_frame = true;
clear_screen = false;
}
LCDC = value;
break;

View File

@ -130,12 +130,16 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
// turing off the screen causes HDMA to run for one cycle
HDMA_run_once = true;
clear_screen = true;
Core.clear_counter = 0;
}
if (!LCDC.Bit(7) && value.Bit(7))
{
// don't draw for one frame after turning on
blank_frame = true;
clear_screen = false;
}
LCDC = value;

View File

@ -163,12 +163,24 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
// turn off the screen so the image doesnt persist
// but don't turn off blank_frame yet, it still needs to be true until the next VBL
// this doesn't run for GBC, some games, ex MIB the series 2, rely on the screens persistence while off to make video look smooth.
// But some GB gams, ex Battletoads, turn off the screen for a long time from the middle of the frame, so need to be cleared.
// GBC games need to clear slow enough that games that turn the screen off briefly for cinematics still look smooth
if (ppu.clear_screen)
{
for (int j = 0; j < frame_buffer.Length; j++) { frame_buffer[j] = (int)ppu.color_palette[0]; }
ppu.clear_screen = false;
if (is_GBC)
{
for (int j = 0; j < frame_buffer.Length; j++) { frame_buffer[j] = (int)(frame_buffer[j] | (0x30303 << (clear_counter * 2))); }
clear_counter++;
if (clear_counter == 4)
{
ppu.clear_screen = false;
}
}
else
{
for (int j = 0; j < frame_buffer.Length; j++) { frame_buffer[j] = (int)ppu.color_palette[0]; }
ppu.clear_screen = false;
}
}
}

View File

@ -32,6 +32,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
ser.Sync(nameof(delays_to_process), ref delays_to_process);
ser.Sync(nameof(controller_delay_cd), ref controller_delay_cd);
ser.Sync(nameof(cpu_state_hold), ref cpu_state_hold);
ser.Sync(nameof(clear_counter), ref clear_counter);
ser.Sync(nameof(REG_FFFF), ref REG_FFFF);
ser.Sync(nameof(REG_FF0F), ref REG_FF0F);

View File

@ -328,6 +328,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
RAM_Bank = 1; // RAM bank always starts as 1 (even writing zero still sets 1)
delays_to_process = false;
controller_delay_cd = 0;
clear_counter = 0;
Register_Reset();
timer.Reset();