From 45ab3a8bbd5882cc5a2279fe49bd87cf549d8907 Mon Sep 17 00:00:00 2001 From: goyuken Date: Fri, 16 Jan 2015 01:25:41 +0000 Subject: [PATCH] core features: show all uncaught pokeymans --- BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs | 31 ++++++++++++++++--- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs b/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs index 80984e45c0..f122e2dfe7 100644 --- a/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs +++ b/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs @@ -181,13 +181,13 @@ namespace BizHawk.Client.EmuHawk CurrentCoreTree.EndUpdate(); } - private static int CountAllEmuCores() + private static IEnumerable GetAllEmuCores() { - return Assembly + return + Assembly .Load("BizHawk.Emulation.Cores") .GetTypes() - .Where(t => typeof(IEmulator).IsAssignableFrom(t) && !t.IsAbstract) - .Count(); + .Where(t => typeof(IEmulator).IsAssignableFrom(t) && !t.IsAbstract); } @@ -196,9 +196,12 @@ namespace BizHawk.Client.EmuHawk CoreTree.ImageList = new ImageList(); CoreTree.ImageList.Images.Add("Good", Properties.Resources.GreenCheck); CoreTree.ImageList.Images.Add("Bad", Properties.Resources.ExclamationRed); + CoreTree.ImageList.Images.Add("Unknown", Properties.Resources.RetroQuestion); + + var possiblecoretypes = GetAllEmuCores().ToList(); toolStripStatusLabel1.Text = string.Format("Total: {0} Released: {1} Profiled: {2}", - CountAllEmuCores(), + possiblecoretypes.Count, KnownCores.Values.Count(c => c.Released), KnownCores.Count); @@ -215,6 +218,24 @@ namespace BizHawk.Client.EmuHawk } CoreTree.Nodes.Add(coreNode); } + foreach (Type t in possiblecoretypes) + { + var coreattr = (CoreAttributes)t.GetCustomAttributes(typeof(CoreAttributes), false)[0]; + if (!KnownCores.ContainsKey(coreattr.CoreName)) + { + string img = "Unknown"; + var coreNode = new TreeNode + { + Text = coreattr.CoreName + (coreattr.Released ? string.Empty : " (UNRELEASED)"), + ForeColor = coreattr.Released ? Color.Black : Color.DarkGray, + ImageKey = img, + SelectedImageKey = img, + StateImageKey = img + }; + CoreTree.Nodes.Add(coreNode); + } + } + CoreTree.EndUpdate(); }