From 66f0bf15c0b1f0cde84729e03d3e3dc80d14b06c Mon Sep 17 00:00:00 2001 From: goyuken Date: Thu, 4 Jun 2015 02:04:42 +0000 Subject: [PATCH] Fix up some junkus in appleii core init, and add stub for mGBA --- BizHawk.Client.Common/RomLoader.cs | 8 +- .../BizHawk.Emulation.Cores.csproj | 4 +- .../Computers/AppleII/AppleII.cs | 6 +- .../Consoles/Nintendo/GBA/LibmGBA.cs | 31 ++++++ .../Consoles/Nintendo/GBA/MGBAHawk.cs | 104 ++++++++++++++++++ 5 files changed, 143 insertions(+), 10 deletions(-) create mode 100644 BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs create mode 100644 BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index 0869c2eb30..f734f67945 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -349,8 +349,7 @@ namespace BizHawk.Client.Common nextEmulator = new AppleII( nextComm, assets, - roms, - GetCoreSettings()); + roms); break; default: return false; @@ -505,13 +504,10 @@ namespace BizHawk.Client.Common var c64 = new C64(nextComm, game, rom.RomData, rom.Extension); nextEmulator = c64; break; - case "AppleII": - var appleII = new AppleII(nextComm, game, rom.RomData, rom.Extension); - nextEmulator = appleII; - break; case "GBA": //core = CoreInventory.Instance["GBA", "Meteor"]; core = CoreInventory.Instance["GBA", "VBA-Next"]; + //core = CoreInventory.Instance["GBA", "mGBA"]; break; case "PSX": nextEmulator = new Octoshock(nextComm, null, null, rom.FileData, GetCoreSettings(), GetCoreSyncSettings()); diff --git a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj index dacb2de38b..1fb3735028 100644 --- a/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj +++ b/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj @@ -120,7 +120,7 @@ - AppleII.cs + AppleII.cs AppleII.cs @@ -378,6 +378,7 @@ + @@ -395,6 +396,7 @@ Meteor.cs + VBANext.cs diff --git a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs index 4caed10e23..b4479d41d3 100644 --- a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs +++ b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs @@ -16,15 +16,15 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII )] public partial class AppleII : IEmulator, IDriveLight { - public AppleII(CoreComm comm, IEnumerable gameInfoSet, IEnumerable romSet, object settings) - : this(comm, gameInfoSet.First(), romSet.First(), settings) + public AppleII(CoreComm comm, IEnumerable gameInfoSet, IEnumerable romSet) + : this(comm, gameInfoSet.First(), romSet.First()) { GameInfoSet = gameInfoSet.ToList(); RomSet = romSet.ToList(); } [CoreConstructor("AppleII")] - public AppleII(CoreComm comm, GameInfo game, byte[] rom, object Settings) + public AppleII(CoreComm comm, GameInfo game, byte[] rom) { GameInfoSet = new List(); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs new file mode 100644 index 0000000000..40898961ac --- /dev/null +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Runtime.InteropServices; +using BizHawk.Emulation.Common; + +namespace BizHawk.Emulation.Cores.Nintendo.GBA +{ + public static class LibmGBA + { + const string dll = "mgba.dll"; + const CallingConvention cc = CallingConvention.Cdecl; + + [DllImport(dll, CallingConvention=cc)] + public static extern void BizDestroy(IntPtr ctx); + + [DllImport(dll, CallingConvention = cc)] + public static extern IntPtr BizCreate(); + + [DllImport(dll, CallingConvention = cc)] + public static extern void BizReset(IntPtr ctx); + + [DllImport(dll, CallingConvention = cc)] + public static extern bool BizLoad(IntPtr ctx, byte[] data, int length); + + [DllImport(dll, CallingConvention = cc)] + public static extern void BizAdvance(IntPtr ctx, int keys, ref IntPtr vbuff); + + } +} diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs new file mode 100644 index 0000000000..3ba8871787 --- /dev/null +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs @@ -0,0 +1,104 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using BizHawk.Common; +using BizHawk.Emulation.Common; +using System.Runtime.InteropServices; + +namespace BizHawk.Emulation.Cores.Nintendo.GBA +{ + [CoreAttributes("mGBA", "endrift", true, false, "NOT DONE", "NOT DONE", false)] + public class MGBAHawk : IEmulator, IVideoProvider + { + IntPtr core; + + [CoreConstructor("GBA")] + public MGBAHawk(byte[] file, CoreComm comm) + { + var ser = new BasicServiceProvider(this); + ser.Register(new ArmV4Disassembler()); + ServiceProvider = ser; + CoreComm = comm; + + core = LibmGBA.BizCreate(); + if (core == IntPtr.Zero) + throw new InvalidOperationException("BizCreate() returned NULL!"); + try + { + if (!LibmGBA.BizLoad(core, file, file.Length)) + { + throw new InvalidOperationException("BizLoad() returned FALSE!"); + } + + } + catch + { + LibmGBA.BizDestroy(core); + throw; + } + } + + public IEmulatorServiceProvider ServiceProvider { get; private set; } + + public ISoundProvider SoundProvider { get { throw new InvalidOperationException(); } } + + public ISyncSoundProvider SyncSoundProvider { get { return new FakeSyncSound(new NullSound(), 735); } } + + public bool StartAsyncSound() { return false; } + + public void EndAsyncSound() { } + + public ControllerDefinition ControllerDefinition { get { return GBA.GBAController; } } + + public IController Controller { get; set; } + + public void FrameAdvance(bool render, bool rendersound = true) + { + IntPtr vp = IntPtr.Zero; + LibmGBA.BizAdvance(core, 0, ref vp); + Marshal.Copy(vp, videobuff, 0, 240 * 160); + } + + public int Frame { get; private set; } + + public string SystemId { get { return "GBA"; } } + + public bool DeterministicEmulation { get { return true; } } + + public string BoardName { get { return null; } } + + public void ResetCounters() + { + throw new NotImplementedException(); + } + + public CoreComm CoreComm { get; private set; } + + public void Dispose() + { + if (core != IntPtr.Zero) + { + LibmGBA.BizDestroy(core); + core = IntPtr.Zero; + } + } + + public int VirtualWidth { get { return 240; } } + public int VirtualHeight { get { return 160; } } + public int BufferWidth { get { return 240; } } + public int BufferHeight { get { return 160; } } + + public int BackgroundColor + { + get { return unchecked((int)0xff000000); } + } + + public int[] GetVideoBuffer() + { + return videobuff; + } + + private int[] videobuff = new int[240 * 160]; + } +}