mame: print more rom info

This commit is contained in:
vadosnaprimer 2023-04-09 23:40:59 +03:00
parent 76a29d3563
commit fadc445f9c
2 changed files with 13 additions and 6 deletions

View File

@ -18,6 +18,8 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
public int VsyncDenominator { get; private set; } = 1;
private int[] _frameBuffer = new int[0];
private double _wAspect = 1;
private double _hAspect = 1;
/// <summary>
/// Attoseconds for the emulated system's vsync rate.
@ -34,12 +36,12 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
private void UpdateAspect()
{
var x = _core.mame_lua_get_double(MAMELuaCommand.GetBoundX);
var y = _core.mame_lua_get_double(MAMELuaCommand.GetBoundY);
VirtualHeight = BufferWidth > BufferHeight * x / y
? (int)Math.Round(BufferWidth * y / x)
_wAspect = _core.mame_lua_get_double(MAMELuaCommand.GetBoundX);
_hAspect = _core.mame_lua_get_double(MAMELuaCommand.GetBoundY);
VirtualHeight = BufferWidth > BufferHeight * _wAspect / _hAspect
? (int)Math.Round(BufferWidth * _hAspect / _wAspect)
: BufferHeight;
VirtualWidth = (int)Math.Round(VirtualHeight * x / y);
VirtualWidth = (int)Math.Round(VirtualHeight * _wAspect / _hAspect);
}
private void UpdateVideo()

View File

@ -36,7 +36,12 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
var text = info.Replace(". ", "\n").Replace("\n\n", "\n");
lp.Comm.Notify(text, 4 * Regex.Matches(text, "\n").Count);
RomDetails =
_gameFullName + "\r\n\r\n" +
$"Full Name: { _gameFullName }\r\n" +
$"Short Name: { _gameShortName }\r\n" +
$"Resolution: { BufferWidth }x{ BufferHeight }\r\n" +
$"Aspect Ratio: { _wAspect }:{ _hAspect }\r\n" +
$"Framerate: { (float)VsyncNumerator / VsyncDenominator } " +
$"({ VsyncNumerator } / { VsyncDenominator })\r\n\r\n" +
text + (text == "" ? "" : "\r\n") +
string.Join("\r\n", _romHashes.Select(static r => $"{r.Value} - {r.Key}"));