From a62b3009ef37b800871db92aa7c24dcd010a1b49 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 20 Mar 2011 03:32:43 +0000 Subject: [PATCH] [NES] fix some annoying sound bugs --- .../Consoles/Nintendo/NES/APU.cs | 28 +++++++++++++------ .../Consoles/Nintendo/NES/NES.cs | 2 +- BizHawk.MultiClient/Config.cs | 2 +- 3 files changed, 22 insertions(+), 10 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/APU.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/APU.cs index 51e7942acc..d6c8b8e5f2 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/APU.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/APU.cs @@ -238,6 +238,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo case 1: break; case 2: timer_cnt = (timer_cnt & ~0xFF) | val; + timer_cnt_reload = timer_cnt + 1; break; case 3: timer_cnt = (timer_cnt & 0xFF) | ((val & 0x7) << 8); @@ -246,6 +247,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo halt_flag = 1; break; } + //Console.WriteLine("tri timer_reload_value: {0}", timer_cnt_reload); } int linear_counter, timer, timer_cnt_reload; @@ -265,19 +267,17 @@ namespace BizHawk.Emulation.Consoles.Nintendo //is clocked in frame counter. if (en) { - timer--; + if(timer>0) timer--; if (timer == 0) { seq = (seq + 1) & 0x1F; timer = timer_cnt_reload; } - if(CFG_DECLICK) - sample = TRIANGLE_TABLE[(seq+8)&0x1F]; - else + //if(CFG_DECLICK) + // sample = TRIANGLE_TABLE[(seq+8)&0x1F]; + //else sample = TRIANGLE_TABLE[seq]; } - else - sample = 0; } @@ -290,7 +290,6 @@ namespace BizHawk.Emulation.Consoles.Nintendo // Console.WriteLine("linear_counter: {0}", linear_counter); if (halt_flag == 1) { - timer = timer_cnt_reload; linear_counter = linear_counter_reload; } else if (linear_counter != 0) @@ -459,8 +458,18 @@ namespace BizHawk.Emulation.Consoles.Nintendo double timer; Queue squeue = new Queue(); int last_hwsamp; + int panic_sample, panic_count; void EmitSample(int samp) { + //kill the annoying hum that is a consequence of the shitty code below + if (samp == panic_sample) + panic_count++; + else panic_count = 0; + if (panic_count > 178977) + samp = 0; + else + panic_sample = samp; + int this_samp = samp; const double kMixRate = 44100.0/1789772.0; const double kInvMixRate = (1 / kMixRate); @@ -490,8 +499,11 @@ namespace BizHawk.Emulation.Consoles.Nintendo void ISoundProvider.GetSamples(short[] samples) { - if(CFG_USE_METASPU) + if (CFG_USE_METASPU) + { metaspu.GetSamples(samples); + //foreach(short sample in samples) bw.Write((short)sample); + } else MyGetSamples(samples); } diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs index f23eccdc6e..2675e07201 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs @@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo public partial class NES : IEmulator { - static readonly bool USE_DATABASE = false; + static readonly bool USE_DATABASE = true; //Game issues: //3-D World Runner - UNROM - weird lines in gameplay (scanlines off?) diff --git a/BizHawk.MultiClient/Config.cs b/BizHawk.MultiClient/Config.cs index ebd70fa2c8..de8cd5de3f 100644 --- a/BizHawk.MultiClient/Config.cs +++ b/BizHawk.MultiClient/Config.cs @@ -181,7 +181,7 @@ //GameBoy Settings public NESControllerTemplate GameBoyController = new NESControllerTemplate(true); - public string NESReset = "Tab"; + public string NESReset = "Backspace"; public NESControllerTemplate[] NESController = new NESControllerTemplate[4]; }