From eec86ad81ac6c70d7db9342f93bcdcfb88c02d29 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Tue, 15 Nov 2022 00:57:30 -0800 Subject: [PATCH] Use actual doubles for figuring out aspect ratio Fixes issues when mame sends over < 1 bounds which round down to 0 with a long cast (resulting in div by 0 exceptions) Also fix some oopsies with incorrect function signatures. Remove MAME string docs as they aren't really relevant anymore, as only MameGetString handles lua string handling now --- .../Arcades/MAME/LibMAME.cs | 33 ++++++++++--------- .../Arcades/MAME/MAME.IVideoProvider.cs | 10 +++--- 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs index 47fc03f341..0f3762ccd3 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs @@ -44,10 +44,10 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME public abstract int mame_sound_get_samples(short[] buffer); [BizImport(cc)] - public abstract int mame_video_get_dimensions(out int width, out int height); + public abstract void mame_video_get_dimensions(out int width, out int height); [BizImport(cc)] - public abstract int mame_video_get_pixels(int[] buffer); + public abstract void mame_video_get_pixels(int[] buffer); [UnmanagedFunctionPointer(cc)] public delegate void FilenameCallbackDelegate(string name); @@ -86,30 +86,31 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME [BizImport(cc)] public abstract void mame_lua_execute(string code); + // get bool + [BizImport(cc)] + public abstract bool mame_lua_get_bool(string code); + // get int [BizImport(cc)] public abstract int mame_lua_get_int(string code); // get long - // nb: this is actually a double cast to long internally [BizImport(cc)] public abstract long mame_lua_get_long(string code); - // get bool - [BizImport(cc)] - public abstract bool mame_lua_get_bool(string code); - /// - /// MAME's luaengine uses lua strings to return C strings as well as - /// binary buffers. You're meant to know which you're going to get and - /// handle that accordingly. When we want to get a C string, we - /// Marshal.PtrToStringAnsi(). With buffers, we Marshal.Copy() - /// to our new buffer. MameGetString() only covers the former - /// because it's the same steps every time, while buffers use to - /// need aditional logic. In both cases MAME wants us to manually - /// free the string buffer. It's made that way to make the buffer - /// persist actoss C API calls. + /// Struct for indirectly returning doubles + /// This is needed due to floating point types + /// being unsupported by the msabi to sysv adapter /// + public struct IndirectDouble + { + public double val; + } + + // get double + [BizImport(cc)] + public abstract void mame_lua_get_double(string code, out IndirectDouble ret); // get string [BizImport(cc)] diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.IVideoProvider.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.IVideoProvider.cs index 6e169ea89f..a7f1f0e20b 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.IVideoProvider.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.IVideoProvider.cs @@ -34,12 +34,12 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME private void UpdateAspect() { - int x = (int)_core.mame_lua_get_long(MAMELuaCommand.GetBoundX); - int y = (int)_core.mame_lua_get_long(MAMELuaCommand.GetBoundY); - VirtualHeight = BufferWidth > BufferHeight * x / y - ? BufferWidth * y / x + _core.mame_lua_get_double(MAMELuaCommand.GetBoundX, out var x); + _core.mame_lua_get_double(MAMELuaCommand.GetBoundY, out var y); + VirtualHeight = BufferWidth > BufferHeight * x.val / y.val + ? (int)Math.Round(BufferWidth * y.val / x.val) : BufferHeight; - VirtualWidth = VirtualHeight * x / y; + VirtualWidth = (int)Math.Round(VirtualHeight * x.val / y.val); } private void UpdateVideo()