From 3218085682d1e4ac3cf0652a720d97939f18d460 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 23 Jul 2014 03:02:44 +0000 Subject: [PATCH] Quicknes: clean up previous commit --- .../Consoles/Nintendo/NES/BoardSystem.cs | 35 ++++++++++++++----- .../Consoles/Nintendo/QuickNES/QuickNES.cs | 2 +- 2 files changed, 27 insertions(+), 10 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs index 3ca902eb77..1dea4e399a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/BoardSystem.cs @@ -543,14 +543,28 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public class BootGodDB { + static object staticsyncroot = new object(); + object syncroot = new object(); + bool validate = true; - public static BootGodDB Instance; - public static Func GetDatabaseBytes; + private static BootGodDB _Instance; + public static BootGodDB Instance + { + get { lock (staticsyncroot) { return _Instance; } } + } + private static Func _GetDatabaseBytes; + public static Func GetDatabaseBytes + { + set { lock (staticsyncroot) { _GetDatabaseBytes = value; } } + } public static void Initialize() { - if(Instance == null) - Instance = new BootGodDB(); + lock (staticsyncroot) + { + if (_Instance == null) + _Instance = new BootGodDB(); + } } int ParseSize(string str) { @@ -571,7 +585,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES //in anticipation of any slowness annoying people, and just for shits and giggles, i made a super fast parser int state=0; - var xmlreader = XmlReader.Create(new MemoryStream(GetDatabaseBytes())); + var xmlreader = XmlReader.Create(new MemoryStream(_GetDatabaseBytes())); CartInfo currCart = null; string currName = null; while (xmlreader.Read()) @@ -655,16 +669,19 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES break; } } //end xmlreader loop - - } Bag sha1_table = new Bag(); public List Identify(string sha1) { - if (!sha1_table.ContainsKey(sha1)) return new List(); - return sha1_table[sha1]; + lock (syncroot) + { + if (!sha1_table.ContainsKey(sha1)) + return new List(); + else + return sha1_table[sha1]; + } } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs index 30551470ce..ea7bbd2fd4 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs @@ -57,7 +57,6 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES static QuickNES() { LibQuickNES.qn_setup_mappers(); - Emulation.Cores.Nintendo.NES.NES.BootGodDB.Initialize(); } public QuickNES(CoreComm nextComm, byte[] Rom, object Settings) @@ -396,6 +395,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES void ComputeBootGod() { // inefficient, sloppy, etc etc + Emulation.Cores.Nintendo.NES.NES.BootGodDB.Initialize(); var chrrom = MemoryDomains["CHR VROM"]; var prgrom = MemoryDomains["PRG ROM"];