From c38d598739f5035edb56d5dd804868c3e3184849 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 29 Jul 2017 15:49:06 -0400 Subject: [PATCH] A7800Hawk: Light Gun -Use Barnyard Blaster algorithm to guess at actual behaviour. --- .../Atari/A7800Hawk/A7800Hawk.IEmulator.cs | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs index 0d74411edd..669564dc88 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs @@ -39,7 +39,8 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk public float p2_lightgun_x; public float p2_lightgun_y; public int lg_counting_down; - public int lg_counting_down2; + public int lg_counting_down_2; + public int lg_counting_down_3; public bool lg_trigger_hit; public bool lg_do_once = true; @@ -105,14 +106,22 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk if (lg_counting_down==0) { lg_trigger_hit = true; - lg_counting_down2 = 454*4; + lg_counting_down_2 = 454; + lg_counting_down_3 = 8; } } - if (lg_counting_down2 > 0) + if (lg_counting_down_2 > 0) { - lg_counting_down2--; - if (lg_counting_down2 == 0) + lg_counting_down_2--; + if (lg_counting_down_2 == 0 && lg_counting_down_3 > 0) + { + lg_counting_down_3--; + lg_counting_down_2 = 454; + lg_trigger_hit = true; + } + + if (lg_counting_down_2 == 424) { lg_trigger_hit = false; } @@ -252,12 +261,12 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk float x = p_x == 1 ? p1_lightgun_x : p2_lightgun_x; float y = p_x == 1 ? p1_lightgun_y : p2_lightgun_y; - if ((maria.scanline - 20) == y) + if ((maria.scanline - 20) == y-4) { if (maria.cycle >= (133 + x) && lg_do_once) { // return true 61 cycles into the future - lg_counting_down = 61 - (maria.cycle - (int)(133 + x)); + lg_counting_down = 64 - (maria.cycle - (int)(133 + x)); lg_do_once = false; } }