mame: print more rom info
This commit is contained in:
parent
76a29d3563
commit
fadc445f9c
|
@ -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()
|
||||
|
|
|
@ -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}"));
|
||||
|
||||
|
|
Loading…
Reference in New Issue