From 91fb593ea1b539300e1edede8a6d4eda1e605071 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 12 May 2017 15:18:43 -0500 Subject: [PATCH] lua - implement emu.getboardname() --- BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs index 3edc77cd9f..4613400bf5 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs @@ -34,6 +34,9 @@ namespace BizHawk.Client.Common [OptionalService] public IRegionable RegionableCore { get; set; } + [OptionalService] + public IBoardInfo BoardInfo { get; set; } + public Action FrameAdvanceCallback { get; set; } public Action YieldCallback { get; set; } @@ -342,5 +345,16 @@ namespace BizHawk.Client.Common return ""; } + + [LuaMethodAttributes("getboardname", "returns (if available) the board name of the loaded ROM")] + public string GetBoardName() + { + if (BoardInfo != null) + { + return BoardInfo.BoardName; + } + + return ""; + } } }