IEmulator now has a string type so that emulators can return a string representing the platform they emulate

This commit is contained in:
andres.delikat 2011-02-16 02:42:58 +00:00
parent 2369634572
commit 48bb648ff9
8 changed files with 36 additions and 0 deletions

View File

@ -27,6 +27,10 @@ namespace BizHawk.Emulation.Consoles.Calculator
bool m_CursorMoved;
//-------
public string type
{
get { return "TI83"; }
}
public byte ReadMemory(ushort addr)
{

View File

@ -2,6 +2,11 @@
{
public partial class Gameboy
{
public string type
{
get { return "GB"; }
}
public static readonly ControllerDefinition GbController = new ControllerDefinition
{
Name = "Gameboy Controller",

View File

@ -9,6 +9,11 @@
// (ie, the IOBuffer)
// However, I believe more fixes will be made in the future, and SF2 works, so this is not
// currently a priority.
public string type
{
get { return "PCE"; }
}
private byte SF2MapperLatch;

View File

@ -10,6 +10,11 @@ namespace BizHawk.Emulation.Consoles.Sega
{
public sealed partial class Genesis : IEmulator, IMemoryController
{
public string type
{
get { return "GEN"; }
}
// ROM
public byte[] RomData;

View File

@ -13,6 +13,11 @@
}
};
public string type
{
get { return "SMS"; }
}
public ControllerDefinition ControllerDefinition { get { return SmsController; } }
public IController Controller { get; set; }

View File

@ -6,6 +6,11 @@ namespace BizHawk
{
public class NullEmulator : IEmulator, IVideoProvider, ISoundProvider
{
public string type
{
get { return "NULL"; }
}
private static readonly ControllerDefinition NullController = new ControllerDefinition { Name = "Null Controller" };
private int[] frameBuffer = new int[256 * 192];

View File

@ -12,6 +12,8 @@ namespace BizHawk
ControllerDefinition ControllerDefinition { get; }
IController Controller { get; set; }
string type { get; }
void LoadGame(IGame game);
void FrameAdvance(bool render);

View File

@ -251,6 +251,11 @@ namespace BizHawk.MultiClient
//TODO: If movie loaded use that frame counter, and also display total movie frame count if read-only
if (Global.Config.DisplayFrameCounter)
MessageFont.DrawString(null, Global.Emulator.Frame.ToString(), 1, 1, new Color4(Color.White)); //TODO: Allow user to set screen coordinates?
if (Global.Config.DisplayInput)
{
}
}
private List<UIMessage> messages = new List<UIMessage>(5);