Add a CoreAttributes class with a CoreName field, and apply it to all cores, when recording a new movie, add a core header line that captures this name

This commit is contained in:
adelikat 2014-04-22 00:38:59 +00:00
parent b87e0fb3c0
commit c74019a54d
25 changed files with 45 additions and 2 deletions

View File

@ -20,6 +20,9 @@ namespace BizHawk.Client.Common
public const string PAL = "PAL";
public const string BOARDNAME = "BoardName";
// Core Setting
public const string CORE = "Core";
// Gameboy Settings that affect sync
public const string GB_FORCEDMG = "Force_DMG_Mode";
public const string GB_GBA_IN_CGB = "GBA_In_CGB";

View File

@ -12,6 +12,8 @@ using BizHawk.Emulation.Cores.Nintendo.SNES;
using BizHawk.Emulation.Cores.Sega.MasterSystem;
using BizHawk.Emulation.Cores.Consoles.Sega.gpgx;
using System.Reflection;
namespace BizHawk.Client.EmuHawk
{
public partial class RecordMovie : Form
@ -178,6 +180,10 @@ namespace BizHawk.Client.EmuHawk
}
}
_movieToRecord.Header[HeaderKeys.CORE] = ((CoreAttributes)Attribute
.GetCustomAttribute(Global.Emulator.GetType(), typeof(CoreAttributes)))
.CoreName;
GlobalWin.MainForm.StartNewMovie(_movieToRecord, true);
Global.Config.UseDefaultAuthor = DefaultAuthorCheckBox.Checked;

View File

@ -45,6 +45,7 @@
<Compile Include="..\VersionInfo.cs">
<Link>VersionInfo.cs</Link>
</Compile>
<Compile Include="CoreAttributes.cs" />
<Compile Include="Database\CRC32.cs" />
<Compile Include="Database\Database.cs" />
<Compile Include="Database\FirmwareDatabase.cs" />

View File

@ -0,0 +1,14 @@
using System;
namespace BizHawk.Emulation.Common
{
public class CoreAttributes : Attribute
{
public CoreAttributes(string name)
{
CoreName = name;
}
public string CoreName { get; private set; }
}
}

View File

@ -5,6 +5,7 @@ using BizHawk.Common;
namespace BizHawk.Emulation.Common
{
[CoreAttributes("NullHawk")]
public class NullEmulator : IEmulator, IVideoProvider, ISyncSoundProvider, ISoundProvider
{
public string SystemId { get { return "NULL"; } }

View File

@ -11,6 +11,7 @@ using BizHawk.Emulation.Cores.Components.Z80;
namespace BizHawk.Emulation.Cores.Calculators
{
[CoreAttributes("TI83Hawk")]
public class TI83 : IEmulator
{
//hardware

View File

@ -6,6 +6,7 @@ using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.Commodore64
{
[CoreAttributes("C64Hawk")]
sealed public partial class C64 : IEmulator
{
// internal variables

View File

@ -9,6 +9,7 @@ using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Atari.Atari2600
{
[CoreAttributes("Atari2600Hawk")]
public partial class Atari2600 : IEmulator
{
private readonly GameInfo _game;

View File

@ -8,6 +8,7 @@ using EMU7800.Core;
namespace BizHawk.Emulation.Cores.Atari.Atari7800
{
[CoreAttributes("EMU7800")]
public partial class Atari7800 : IEmulator
{
// TODO:

View File

@ -9,6 +9,7 @@ using BizHawk.Emulation.Cores.Components.Z80;
namespace BizHawk.Emulation.Cores.ColecoVision
{
[CoreAttributes("ColecoHawk")]
public sealed partial class ColecoVision : IEmulator
{
// ROM

View File

@ -7,6 +7,7 @@ using BizHawk.Emulation.Cores.Components.CP1610;
namespace BizHawk.Emulation.Cores.Intellivision
{
[CoreAttributes("IntelliHawk")]
public sealed partial class Intellivision : IEmulator
{
byte[] Rom;

View File

@ -8,6 +8,7 @@ using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Nintendo.GBA
{
[CoreAttributes("Meteor")]
public class GBA : IEmulator, IVideoProvider, ISyncSoundProvider
{
public Dictionary<string, int> GetCpuFlagsAndRegisters()

View File

@ -10,6 +10,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
/// <summary>
/// a gameboy/gameboy color emulator wrapped around native C++ libgambatte
/// </summary>
[CoreAttributes("Gambatte")]
public class Gameboy : IEmulator, IVideoProvider, ISyncSoundProvider
{
/// <summary>

View File

@ -9,6 +9,7 @@ using BizHawk.Emulation.Cores.Nintendo.SNES;
namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
{
[CoreAttributes("DualGambatte")]
public class GambatteLink : IEmulator, IVideoProvider, ISyncSoundProvider
{
bool disposed = false;

View File

@ -11,6 +11,7 @@ using BizHawk.Emulation.Cores.Nintendo.N64.NativeApi;
namespace BizHawk.Emulation.Cores.Nintendo.N64
{
[CoreAttributes("Mupen64Plus")]
public class N64 : IEmulator
{
public Dictionary<string, int> GetCpuFlagsAndRegisters()

View File

@ -9,7 +9,7 @@ using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Nintendo.NES
{
[CoreAttributes("NesHawk")]
public partial class NES : IEmulator
{
static readonly bool USE_DATABASE = true;

View File

@ -10,6 +10,7 @@ using Newtonsoft.Json;
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES
{
[CoreAttributes("QuickNes")]
public class QuickNES : IEmulator, IVideoProvider, ISyncSoundProvider
{
#region FPU precision

View File

@ -20,7 +20,6 @@ using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Nintendo.SNES
{
public class ScanlineHookManager
{
public void Register(object tag, Action<int> callback)
@ -58,6 +57,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
}
}
[CoreAttributes("BSNES")]
public unsafe class LibsnesCore : IEmulator, IVideoProvider
{
public bool IsSGB { get; private set; }

View File

@ -13,6 +13,7 @@ namespace BizHawk.Emulation.Cores.PCEngine
{
public enum NecSystemType { TurboGrafx, TurboCD, SuperGrafx }
[CoreAttributes("PCEHawk")]
public sealed partial class PCEngine : IEmulator
{
// ROM

View File

@ -14,6 +14,7 @@ using Native68000;
namespace BizHawk.Emulation.Cores.Sega.Genesis
{
[CoreAttributes("GenesisHawk")]
public sealed partial class Genesis : IEmulator
{
private int _lagcount = 0;

View File

@ -19,6 +19,7 @@ using BizHawk.Emulation.Cores.Components.Z80;
namespace BizHawk.Emulation.Cores.Sega.MasterSystem
{
[CoreAttributes("SMSHawk")]
public sealed partial class SMS : IEmulator
{
// Constants

View File

@ -11,6 +11,7 @@ using BizHawk.Emulation.DiscSystem;
namespace BizHawk.Emulation.Cores.Sega.Saturn
{
[CoreAttributes("Yabause")]
public class Yabause : IEmulator, IVideoProvider, ISyncSoundProvider
{
public static ControllerDefinition SaturnController = new ControllerDefinition

View File

@ -15,6 +15,7 @@ using System.ComponentModel;
namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
{
[CoreAttributes("Genplus-gx")]
public class GPGX : IEmulator, ISyncSoundProvider, IVideoProvider
{
static GPGX AttachedCore = null;

View File

@ -8,6 +8,7 @@ using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Sony.PSP
{
[CoreAttributes("PPSSPP")]
public class PSP : IEmulator, IVideoProvider, ISyncSoundProvider
{
public static readonly ControllerDefinition PSPController = new ControllerDefinition

View File

@ -9,6 +9,7 @@ using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Sony.PSX
{
[CoreAttributes("MednafenPSX")]
public unsafe class Octoshock : IEmulator, IVideoProvider, ISoundProvider
{
public string SystemId { get { return "NULL"; } }