From 08b6dadd490fa967dfefa2eed7a878112acc5be9 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 6 Jul 2017 17:53:14 -0400 Subject: [PATCH] Gambatte: Add core picker option Replaces ForceDMG so that you can play gameboy roms in color game boy as well --- .../Nintendo/Gameboy/Gambatte.IEmulator.cs | 3 --- .../Nintendo/Gameboy/Gambatte.ISettable.cs | 14 ++++++++++---- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 19 +++++++++++++++++-- 3 files changed, 27 insertions(+), 9 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.IEmulator.cs index 38c11b0234..b13d7e4dc8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.IEmulator.cs @@ -95,11 +95,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy { if (GambatteState != IntPtr.Zero) { - Console.WriteLine("disposing"); LibGambatte.gambatte_destroy(GambatteState); - Console.WriteLine("step2"); GambatteState = IntPtr.Zero; - Console.WriteLine("disposed"); } DisposeSound(); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.ISettable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.ISettable.cs index f213b6cdb1..3cb8414cb4 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.ISettable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.ISettable.cs @@ -85,10 +85,16 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy [DefaultValue(false)] public bool EnableBIOS { get; set; } - [DisplayName("Force DMG Mode")] - [Description("Force the game to run on DMG hardware, even if it's detected as a CGB game. Relevant for games that are \"CGB Enhanced\" but do not require CGB.")] - [DefaultValue(false)] - public bool ForceDMG { get; set; } + [DisplayName("Console Mode")] + [Description("Pick which console to run, 'Default' chooses from ROM extension, 'GB' and 'GBC' chooses the respective system")] + [DefaultValue("Default")] + public string ConsoleMode + { + get { return _ConsoleMode; } + set { _ConsoleMode = value;} + } + [JsonIgnore] + private string _ConsoleMode; [DisplayName("CGB in GBA")] [Description("Emulate GBA hardware running a CGB game, instead of CGB hardware. Relevant only for titles that detect the presense of a GBA, such as Shantae.")] diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index d7e3812de6..7b2d03c371 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -80,17 +80,32 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy LibGambatte.LoadFlags flags = 0; - if (_syncSettings.ForceDMG) + if (_syncSettings.ConsoleMode=="GB") { flags |= LibGambatte.LoadFlags.FORCE_DMG; - + // we need to change the BIOS to GB bios if (game.System == "GBC") { BiosRom = null; BiosRom = new byte[256]; BiosRom = comm.CoreFileProvider.GetFirmware("GB", "World", false); + bios_length = BiosRom.Length; } + + } + else if (_syncSettings.ConsoleMode == "GBC") + { + BiosRom = null; + BiosRom = new byte[2304]; + BiosRom = comm.CoreFileProvider.GetFirmware("GBC", "World", false); + bios_length = BiosRom.Length; + + } + else + { + if(game.System == "GB") + flags |= LibGambatte.LoadFlags.FORCE_DMG; } if (_syncSettings.EnableBIOS && BiosRom == null)