create an ICreateGameDBEntires specialized service and have Atari2600 implement it. Use this in the log window instead of sneaky reflection to access the method
This commit is contained in:
parent
d95edc273e
commit
54eb678387
|
@ -5,11 +5,10 @@ using System.IO;
|
|||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using BizHawk.Common;
|
||||
using BizHawk.Client.Common;
|
||||
using BizHawk.Emulation.Common;
|
||||
|
||||
using BizHawk.Common.ReflectionExtensions;
|
||||
using BizHawk.Emulation.Common;
|
||||
using BizHawk.Emulation.Common.IEmulatorExtensions;
|
||||
using BizHawk.Client.Common;
|
||||
|
||||
//todo - perks - pause, copy to clipboard, backlog length limiting
|
||||
|
||||
|
@ -138,7 +137,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void HideShowGameDbButton()
|
||||
{
|
||||
AddToGameDbBtn.Visible = Global.Emulator.HasExposedMethod("GenerateGameDbEntry")
|
||||
AddToGameDbBtn.Visible = Global.Emulator.CanGenerateGameDBEntries()
|
||||
&& (Global.Game.Status == RomStatus.Unknown || Global.Game.Status == RomStatus.NotInDatabase);
|
||||
}
|
||||
|
||||
|
@ -148,10 +147,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
var result = picker.ShowDialog();
|
||||
if (result == DialogResult.OK)
|
||||
{
|
||||
var entryObj = (CompactGameInfo)Global.Emulator.InvokeMethod("GenerateGameDbEntry", null);
|
||||
var gameDbEntry = Global.Emulator.AsGameDBEntryGenerator().GenerateGameDbEntry();
|
||||
var userDb = Path.Combine(PathManager.GetExeDirectoryAbsolute(), "gamedb", "gamedb_user.txt");
|
||||
Global.Game.Status = entryObj.Status = picker.PickedStatus;
|
||||
Database.SaveDatabaseEntry(userDb, entryObj);
|
||||
Global.Game.Status = gameDbEntry.Status = picker.PickedStatus;
|
||||
Database.SaveDatabaseEntry(userDb, gameDbEntry);
|
||||
GlobalWin.MainForm.UpdateDumpIcon();
|
||||
HideShowGameDbButton();
|
||||
}
|
||||
|
|
|
@ -125,6 +125,7 @@
|
|||
<Compile Include="Interfaces\IInputCallbackSystem.cs" />
|
||||
<Compile Include="Interfaces\IMemoryCallbackSystem.cs" />
|
||||
<Compile Include="Interfaces\IEmulatorServiceProvider.cs" />
|
||||
<Compile Include="Interfaces\Services\ICreateGameDBEntries.cs" />
|
||||
<Compile Include="Interfaces\Services\ISoundProvider.cs" />
|
||||
<Compile Include="Interfaces\IAsyncSoundProvider.cs" />
|
||||
<Compile Include="Interfaces\Services\ICodeDataLogger.cs" />
|
||||
|
|
|
@ -325,6 +325,21 @@ namespace BizHawk.Emulation.Common.IEmulatorExtensions
|
|||
return core.ServiceProvider.HasService<ILinkable>();
|
||||
}
|
||||
|
||||
public static bool CanGenerateGameDBEntries(this IEmulator core)
|
||||
{
|
||||
if (core == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
return core.ServiceProvider.HasService<ICreateGameDBEntries>();
|
||||
}
|
||||
|
||||
public static ICreateGameDBEntries AsGameDBEntryGenerator(this IEmulator core)
|
||||
{
|
||||
return core.ServiceProvider.GetService<ICreateGameDBEntries>();
|
||||
}
|
||||
|
||||
// TODO: a better place for these
|
||||
public static bool IsImplemented(this MethodInfo info)
|
||||
{
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
namespace BizHawk.Emulation.Common
|
||||
{
|
||||
/// <summary>
|
||||
/// This service provides a means for the current core to generate a
|
||||
/// game database entry and return the result
|
||||
/// If available, the client will expose functionality for the user to add the current rom
|
||||
/// to the user game database if it is currently unknown. This UI should expose a feature
|
||||
/// that allow them to set to override the unknown status and set it to something they feel
|
||||
/// is more accurate. The intent of the feature is to easily allow users
|
||||
/// to mark unknown ROMs themselves (in their local database for their personal use)
|
||||
/// </summary>
|
||||
public interface ICreateGameDBEntries : ISpecializedEmulatorService
|
||||
{
|
||||
CompactGameInfo GenerateGameDbEntry();
|
||||
}
|
||||
}
|
|
@ -16,7 +16,8 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
isReleased: true
|
||||
)]
|
||||
[ServiceNotApplicable(typeof(ISaveRam), typeof(IDriveLight))]
|
||||
public partial class Atari2600 : IEmulator, IStatable, IDebuggable, IInputPollable, IRegionable, ISettable<Atari2600.A2600Settings, Atari2600.A2600SyncSettings>
|
||||
public partial class Atari2600 : IEmulator, IStatable, IDebuggable, IInputPollable,
|
||||
IRegionable, ICreateGameDBEntries, ISettable<Atari2600.A2600Settings, Atari2600.A2600SyncSettings>
|
||||
{
|
||||
private readonly GameInfo _game;
|
||||
private int _frame;
|
||||
|
@ -100,6 +101,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
}
|
||||
};
|
||||
|
||||
// ICreateGameDBEntries
|
||||
public CompactGameInfo GenerateGameDbEntry()
|
||||
{
|
||||
return new CompactGameInfo
|
||||
|
|
Loading…
Reference in New Issue