diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.ISettable.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.ISettable.cs index b9ad515d5c..0f8f80a61a 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.ISettable.cs @@ -120,6 +120,11 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME { _core.mame_lua_execute($"{ s.LuaCode }.user_value = { setting.Value }"); } + + if (s != null && s.Type == SettingType.VIEW) + { + _core.mame_lua_execute($"{ s.LuaCode } = { setting.Value }"); + } } } @@ -189,6 +194,35 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME } } + private void GetViewsInfo() + { + var ViewsInfo = MameGetString(MAMELuaCommand.GetViewsInfo); + var Views = ViewsInfo.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries); + + var setting = new DriverSetting + { + Name = "View", + GameName = _gameShortName, + LuaCode = "manager.machine.video.snapshot_target.view_index", + Type = SettingType.VIEW, + DefaultValue = "1" + }; + + foreach (var View in Views) + { + if (View != string.Empty) + { + var substrings = View.Split(','); + setting.Options.Add(substrings[0], substrings[1]); + } + } + + if (setting.Options.Count > 0) + { + CurrentDriverSettings.Add(setting); + } + } + public class DriverSetting { public string Name { get; set; } @@ -210,7 +244,7 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME public enum SettingType { - DIPSWITCH, BIOS + DIPSWITCH, BIOS, VIEW } } } \ No newline at end of file diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs index 3c85e2f3be..485f841de9 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs @@ -240,6 +240,7 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME GetNVRAMFilenames(); GetInputFields(); GetROMsInfo(); + GetViewsInfo(); FetchDefaultGameSettings(); OverrideGameSettings(); @@ -363,10 +364,10 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME "return v.refresh_attoseconds " + "end"; public const string GetBoundX = - "local b = manager.machine.render.ui_target.current_view.bounds " + + "local b = manager.machine.video.snapshot_target.current_view.bounds " + "return b.x1-b.x0"; public const string GetBoundY = - "local b = manager.machine.render.ui_target.current_view.bounds " + + "local b = manager.machine.video.snapshot_target.current_view.bounds " + "return b.y1-b.y0"; public const string GetROMsInfo = "local final = {} " + @@ -413,6 +414,13 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME "end " + "table.sort(final) " + "return table.concat(final)"; + public const string GetViewsInfo = + "local final = {} " + + "for index, name in pairs(manager.machine.video.snapshot_target.view_names) do " + + "table.insert(final, string.format(\"%s,%s;\", index, name)) " + + "end " + + "table.sort(final) " + + "return table.concat(final)"; public static string GetFramerateDenominator(int frequency) => "for k,v in pairs(manager.machine.screens) do " +