lua - implement emu.getboardname()

This commit is contained in:
adelikat 2017-05-12 15:18:43 -05:00
parent ed27e9d361
commit 91fb593ea1
1 changed files with 14 additions and 0 deletions
BizHawk.Client.Common/lua

View File

@ -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 "";
}
}
}